/* ===================================
   Hero Section - Modern Design
   =================================== */

.hero-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    padding: 0px 0 0px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.hero-features .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.hero-features .feature-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary {
    background: white;
    /* color: #667eea; */
    color: #0dcaf0;
    border: none;
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-outline-dark {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-cta .btn-outline-dark:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card.stat-highlight {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(135deg, #f8df6f 0%, #ee9f6a 100%);
    /* background: linear-gradient(135deg, #98f5c2 0%, #2a8854 100%); */
    
}

.stat-card.stat-highlight .stat-number,
.stat-card.stat-highlight .stat-label {
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

/* Hero Services */
.hero-services {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-item:hover {
    /* background: #667eea; */
    background: #28a745;
    transform: translateX(5px);
}

.service-item:hover .service-icon-wrapper {
    background: white;
    /* color: #667eea; */
    color: #28a745;
}

.service-item:hover .service-info h6,
.service-item:hover .service-info p,
.service-item:hover .bi-arrow-right {
    color: white;
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    /* background: #667eea; */
    background: #28a745;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon-success {
    background: #28a745;
}

.service-icon-info {
    background: #17a2b8;
}

.service-info {
    flex: 1;
}

.service-info h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.service-info p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.service-item .bi-arrow-right {
    font-size: 20px;
    /* color: #667eea; */
    color: #28a745;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 30px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        font-size:1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta .btn {
        padding: 12px 24px;
        font-size:1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-features .feature-item span {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 20px 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-services {
        padding: 24px;
    }
    
    .services-title {
        font-size: 1.125rem;
    }
    
    .service-item {
        padding: 16px;
    }
    
    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .service-info h6 {
        font-size: 0.9rem;
    }
    
    .service-info p {
        font-size: 0.8rem;
    }
}
/*
@media (max-width: 575px) {
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-features .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .hero-features .feature-item span {
        font-size: 13px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}
*/
/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-features {
    animation-delay: 0.4s;
}

.hero-cta {
    animation-delay: 0.5s;
}

.stat-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }

.hero-services {
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    opacity: 0;
}


