/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.carousel-item {
    width: 100%;
    height: auto;
    min-height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.carousel-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    text-decoration: none;
    color: inherit;
    z-index: 1;
}

.carousel-link:hover {
    text-decoration: none;
    color: inherit;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #333;
    text-align: left;
    z-index: 2;
    max-width: 600px;
    width: calc(100% - 100px);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #00BF63;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1565C0;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: #1565C0;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #00BF63 100%);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #00BF63 100%);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.5);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover::before {
    left: 100%;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.features-intro {
    text-align: center;
    margin-bottom: 50px;
}

.features-intro h2 {
    color: #4CAF50;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
    background: transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    
   
  
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
   
}

.feature-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.feature-subtitle {
    color: #4CAF50;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-item {
        min-height: 300px;
    }
    .hero-content {
        left: 20px;
        width: calc(100% - 40px);
        max-width: none;
    }
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }
    .features-intro h2 {
        font-size: 1.8rem;
    }
}
