.preventive-health-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.program-header .section-tag {
    display: inline-block;
    background: #2b3c6b;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: #2b3c6b;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    color:#2b3c6b;;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    color: #2b3c6b;
    font-size: 16px;
}

/* Image Styles */
.health-image-wrapper {
    position: relative;
}

.health-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.image-overlay-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 250px;
}

.image-overlay-card h5 {
    color: #2b3c6b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.image-overlay-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.image-overlay-card i {
    color: #4CAF50;
}

/* Program Highlights */
.program-highlights h3 {
    color: #2b3c6b;
    font-size: 32px;
    font-weight: 700;
}

.lead-text {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.highlight-cards {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: #e8f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 24px;
    color: #2b3c6b;
}

.highlight-content h5 {
    color: #2b3c6b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.highlight-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Screening Components */
.screening-components {
    padding: 40px 0;
}

.screening-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.screening-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.card-icon.vision { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.card-icon.dental { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.card-icon.hearing { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.card-icon.cardio { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.card-icon.cns { background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%); }
.card-icon.respiratory { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
.card-icon.abdominal { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.card-icon.physical { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }

.screening-card h4 {
    color: #2b3c6b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.screening-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-header h3 {
    color: #2b3c6b;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.feature-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Feature List */
.feature-list {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    color: #4CAF50;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item span {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Report Types */
.report-types {
    display: grid;
    gap: 25px;
}

.report-type {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #2b3c6b;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.report-header i {
    font-size: 28px;
    color: #2b3c6b;
}

.report-header h5 {
    color: #2b3c6b;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.report-type ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-type li {
    color: #666;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.report-type li:before {
    content: "•";
    color: #4CAF50;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .health-image-wrapper img {
        height: 350px;
    }
    
    .image-overlay-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -30px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    
    .program-highlights h3 {
        font-size: 28px;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-header h3 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .screening-card {
        padding: 25px 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
}

/* Spacing Utilities */
.mb-6 {
    margin-bottom: 60px;
}


/* Developmental Domains Section */
.developmental-domains-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

/* Hexagon Grid Layout */
.hexagon-grid {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.hexagon-center {
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 120px;
    background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(43, 60, 107, 0.3);
    animation: pulse 2s infinite;
}

.hexagon-center .hexagon-inner {
    text-align: center;
    color: white;
}

.hexagon-center i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.hexagon-center span {
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.hexagon-item {
    position: absolute;
    width: 100px;
    height: 115px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.hexagon-item:hover {
    transform: scale(1.1);
    z-index: 3;
}

.hexagon-content {
    text-align: center;
    color: #2b3c6b;
}

.hexagon-content i {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.hexagon-content span {
    font-size: 14px;
    font-weight: 600;
}

/* Position hexagons */
.hexagon-item.cognitive {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hexagon-item.social {
    top: 25%;
    right: 10%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hexagon-item.physical {
    bottom: 25%;
    right: 10%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hexagon-item.language {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
}

.hexagon-item.creative {
    bottom: 25%;
    left: 10%;
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.hexagon-item.behavioral {
    top: 25%;
    left: 10%;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

/* Color text for hexagons */
.hexagon-item.cognitive .hexagon-content,
.hexagon-item.social .hexagon-content,
.hexagon-item.physical .hexagon-content,
.hexagon-item.language .hexagon-content,
.hexagon-item.creative .hexagon-content,
.hexagon-item.behavioral .hexagon-content {
    color: white;
}

/* Domains Description */
.domains-description h3 {
    color: #2b3c6b;
    font-size: 32px;
    font-weight: 700;
}

.lead-text {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.assessment-benefits {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    color: #4CAF50;
    font-size: 18px;
}

.benefit-item span {
    color: #555;
    font-size: 15px;
}

/* CTA Button */
.cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(43, 60, 107, 0.3);
}

.cta-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 60, 107, 0.4);
}

/* Domain Cards */
.domain-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.domain-card[data-domain="cognitive"]::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.domain-card[data-domain="social"]::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.domain-card[data-domain="physical"]::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.domain-card[data-domain="language"]::before {
    background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
}

.domain-card[data-domain="creative"]::before {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.domain-card[data-domain="behavioral"]::before {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.domain-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.domain-icon.cognitive {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.domain-icon.social {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.domain-icon.physical {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.domain-icon.language {
    background: linear-gradient(135deg, #5ee7df 0%, #b490ca 100%);
}

.domain-icon.creative {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.domain-icon.behavioral {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.card-header h4 {
    color: #2b3c6b;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.domain-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.domain-features li {
    color: #555;
    font-size: 13px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.domain-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(43, 60, 107, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(43, 60, 107, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(43, 60, 107, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hexagon-grid {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hexagon-grid {
        width: 320px;
        height: 320px;
    }
    
    .domains-description {
        padding-left: 0 !important;
        margin-top: 40px;
    }
    
    .domains-description h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hexagon-grid {
        width: 280px;
        height: 280px;
    }
    
    .hexagon-center {
        width: 100px;
        height: 115px;
    }
    
    .hexagon-item {
        width: 85px;
        height: 98px;
    }
    
    .hexagon-content i {
        font-size: 20px;
    }
    
    .hexagon-content span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 32px;
    }
    
    .domain-card {
        padding: 20px;
    }
}

/* Spacing Utilities */
.mb-7 {
    margin-bottom: 70px;
}
.csr-commitment-section {
        padding: 30px 0;
        background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    }
    
    /* Image Container with 4:3 Ratio */
    .image-container {
        position: relative;
        width: 100%;
        padding-top: 75%; /* 4:3 Aspect Ratio (3/4 = 0.75) */
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(43, 60, 107, 0.15);
    }
    
    .image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .image-container:hover img {
        transform: scale(1.05);
    }
    
    /* Image Overlay */
    .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(43, 60, 107, 0.9), transparent);
        color: white;
        padding: 25px;
        border-radius: 0 0 12px 12px;
    }
    
    .overlay-text {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .overlay-text i {
        font-size: 20px;
        color: #ffd166;
    }
    
    /* Content Styling */
    .section-tag {
        display: inline-block;
        background: #2b3c6b;
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .section-title {
        color: #2b3c6b;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .lead-text {
        font-size: 18px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
        font-weight: 500;
    }
    
    .text-content p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Icon Highlights */
    .highlight-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .highlight-icon i {
        font-size: 22px;
        color: white;
    }
    
    .highlight-content h5 {
        color: #2b3c6b;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
    }
    
    .highlight-content p {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .csr-content-wrapper {
            padding-left: 0 !important;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .image-container {
            max-width: 600px;
            margin: 0 auto;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 28px;
        }
        
        .lead-text {
            font-size: 16px;
        }
        
        .highlight-item {
            padding: 15px;
        }
    }
    
    @media (max-width: 576px) {
        .csr-commitment-section {
            padding: 60px 0;
        }
        
        .image-container {
            padding-top: 75%; /* Maintain 4:3 ratio */
        }
        
        .overlay-text {
            font-size: 12px;
        }
    }

    .csr-focus-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    /* Section Header */
    .section-tag {
        display: inline-block;
        background: #2b3c6b;
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .section-title {
        color: #2b3c6b;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-subtitle {
        color: #666;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Focus Cards */
    .focus-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        position: relative;
        overflow: hidden;
        margin-top: 10px;
    }

    .focus-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(43, 60, 107, 0.15);
    }

    .focus-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #2b3c6b, #3a4f8c);
    }

    .card-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .card-icon i {
        font-size: 32px;
        color: white;
    }

    .card-content h4 {
        color: #2b3c6b;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.3;
        min-height: 52px;
    }

    .card-content p {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .card-stats {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }

    .card-stats span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #f0f5ff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        color: #2b3c6b;
        font-weight: 500;
    }

    .card-stats i {
        font-size: 12px;
        color: #3a4f8c;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .card-content h4 {
            font-size: 18px;
            min-height: 50px;
        }
    }

    @media (max-width: 992px) {
        .section-title {
            font-size: 32px;
        }
        
        .focus-card {
            padding: 25px;
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
        }
        
        .card-icon i {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .csr-focus-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .section-subtitle {
            font-size: 16px;
        }
        
        .card-content h4 {
            min-height: auto;
            font-size: 18px;
        }
    }

    @media (max-width: 576px) {
        .focus-card {
            padding: 20px;
        }
        
        .card-stats {
            flex-direction: column;
            gap: 8px;
        }
        
        .card-stats span {
            width: fit-content;
        }
    }

    /* Animation */
    .focus-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .focus-card:nth-child(1) { animation-delay: 0.1s; }
    .focus-card:nth-child(2) { animation-delay: 0.2s; }
    .focus-card:nth-child(3) { animation-delay: 0.3s; }
    .focus-card:nth-child(4) { animation-delay: 0.4s; }
    .focus-card:nth-child(5) { animation-delay: 0.5s; }
    .focus-card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

     .csr-impact-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .csr-impact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><path fill="white" d="M0,0 L100,0 L100,100 Z"/></svg>');
        background-size: cover;
    }

    /* Impact Header */
    .impact-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        backdrop-filter: blur(10px);
    }

    .impact-title {
        color: white;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .impact-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* KPI Cards */
    .kpi-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 35px 25px;
        text-align: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        height: 100%;
    }

    .kpi-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .kpi-card:hover .kpi-glow {
        opacity: 1;
    }

    .kpi-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        border-radius: 20px;
    }

    .kpi-icon {
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 32px;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .counter {
        font-size: 56px;
        font-weight: 800;
        color: white;
        line-height: 1;
        margin-bottom: 10px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .counter::after {
        content: '+';
        font-size: 42px;
        vertical-align: super;
        margin-left: 2px;
    }

    .kpi-label {
        font-size: 16px;
        font-weight: 700;
        color: white;
        margin-bottom: 8px;
        line-height: 1.3;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .kpi-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }

    /* Special formatting for KPI 2 */
    .kpi-card:nth-child(2) .counter {
        font-size: 52px;
    }

    .kpi-card:nth-child(2) .counter::after {
        content: ',000+';
        font-size: 36px;
        vertical-align: super;
    }

    /* Special formatting for KPI 3 */
    .kpi-card:nth-child(3) .counter::before {
        content: '₹';
        font-size: 42px;
        vertical-align: super;
        margin-right: 2px;
    }

    .kpi-card:nth-child(3) .counter::after {
        content: '+ Lakhs';
        font-size: 28px;
        vertical-align: super;
    }

    /* SDG Section */
    .sdg-section {
        padding-top: 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 60px;
    }

    .sdg-title {
        color: white;
        font-size: 24px;
        font-weight: 600;
    }

    .sdg-icons {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .sdg-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        transition: transform 0.3s ease;
    }

    .sdg-icon:hover {
        transform: translateY(-5px);
    }

    .sdg-icon i {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .sdg-icon span {
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.1);
        padding: 4px 12px;
        border-radius: 12px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .counter {
            font-size: 48px;
        }
        
        .kpi-card:nth-child(2) .counter {
            font-size: 44px;
        }
    }

    @media (max-width: 992px) {
        .impact-title {
            font-size: 36px;
        }
        
        .kpi-card {
            padding: 30px 20px;
        }
        
        .counter {
            font-size: 42px;
        }
        
        .kpi-card:nth-child(2) .counter {
            font-size: 38px;
        }
        
        .kpi-label {
            font-size: 15px;
            min-height: 40px;
        }
        
        .sdg-icons {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .csr-impact-section {
            padding: 60px 0;
        }
        
        .impact-title {
            font-size: 32px;
        }
        
        .impact-subtitle {
            font-size: 16px;
        }
        
        .counter {
            font-size: 38px;
        }
        
        .kpi-card:nth-child(2) .counter {
            font-size: 34px;
        }
        
        .kpi-icon {
            width: 60px;
            height: 60px;
            font-size: 28px;
        }
        
        .sdg-title {
            font-size: 20px;
        }
    }

    @media (max-width: 576px) {
        .kpi-strip .row {
            gap: 20px;
        }
        
        .kpi-card {
            padding: 25px 15px;
        }
        
        .counter {
            font-size: 32px;
        }
        
        .kpi-card:nth-child(2) .counter {
            font-size: 28px;
        }
        
        .kpi-card:nth-child(3) .counter::after {
            font-size: 20px;
        }
        
        .sdg-icons {
            gap: 15px;
        }
        
        .sdg-icon i {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
    }

    /* Animation for counters */
    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .counter.animated {
        animation: countUp 1s ease forwards;
    }

    .partnership-models-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    /* Section Header */
    .section-tag {
        display: inline-block;
        background: #2b3c6b;
        color: white;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .section-title {
        color: #2b3c6b;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-subtitle {
        color: #666;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Partnership Cards */
    .partnership-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
        border: 1px solid #e9ecef;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .partnership-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(43, 60, 107, 0.15);
    }

    .partnership-card.featured {
        border: 2px solid #2b3c6b;
        position: relative;
    }

    .card-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        z-index: 2;
    }

    .card-number {
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 64px;
        font-weight: 900;
        color: rgba(43, 60, 107, 0.05);
        line-height: 1;
        z-index: 1;
    }

    .card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 36px;
        color: white;
        position: relative;
        z-index: 2;
    }

    .card-content {
        position: relative;
        z-index: 2;
    }

    .card-content h3 {
        color: #2b3c6b;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.3;
    }

    .card-desc {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: center;
        min-height: 75px;
    }

    .card-features {
        margin-bottom: 30px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .feature-item i {
        color: #4CAF50;
        font-size: 16px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .feature-item span {
        color: #555;
        font-size: 14px;
        line-height: 1.5;
    }

    .card-stats {
        display: flex;
        justify-content: center;
        gap: 30px;
        padding-top: 25px;
        border-top: 1px solid #eee;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        display: block;
        font-size: 28px;
        font-weight: 800;
        color: #2b3c6b;
        line-height: 1;
    }

    .stat-label {
        display: block;
        font-size: 13px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 5px;
    }

    /* CTA Section */
    .cta-section {
        padding-top: 60px;
    }

    .cta-content {
        background: white;
        border-radius: 20px;
        padding: 50px;
        box-shadow: 0 15px 40px rgba(43, 60, 107, 0.1);
        border: 2px solid #2b3c6b;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title {
        color: #2b3c6b;
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .cta-text {
        color: #666;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 10px 30px rgba(43, 60, 107, 0.3);
    }

    .cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(43, 60, 107, 0.4);
        color: white;
    }

    .cta-note {
        color: #888;
        font-size: 14px;
        margin-top: 20px;
        font-style: italic;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .card-content h3 {
            font-size: 22px;
        }
        
        .card-desc {
            min-height: 90px;
        }
    }

    @media (max-width: 992px) {
        .section-title {
            font-size: 32px;
        }
        
        .partnership-card {
            padding: 35px 25px;
        }
        
        .card-icon {
            width: 70px;
            height: 70px;
            font-size: 32px;
        }
        
        .card-number {
            font-size: 56px;
        }
        
        .cta-content {
            padding: 40px 30px;
        }
        
        .cta-title {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        .partnership-models-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .section-subtitle {
            font-size: 16px;
        }
        
        .partnership-card {
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .card-desc {
            min-height: auto;
        }
        
        .cta-button {
            padding: 16px 35px;
            font-size: 16px;
        }
    }

    @media (max-width: 576px) {
        .partnership-card {
            padding: 30px 20px;
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            font-size: 28px;
        }
        
        .card-number {
            font-size: 48px;
            top: 20px;
            left: 20px;
        }
        
        .card-content h3 {
            font-size: 20px;
        }
        
        .stat-number {
            font-size: 24px;
        }
        
        .cta-content {
            padding: 30px 20px;
        }
        
        .cta-title {
            font-size: 24px;
        }
        
        .cta-text {
            font-size: 16px;
        }
    }

    /* Animation */
    .partnership-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .partnership-card:nth-child(1) { animation-delay: 0.1s; }
    .partnership-card:nth-child(2) { animation-delay: 0.2s; }
    .partnership-card:nth-child(3) { animation-delay: 0.3s; }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Custom animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Active tab styling */
    #csrTabs .nav-link.active {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2) !important;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .tabs-navigation .nav {
            flex-direction: column;
            gap: 15px;
        }
        
        #csrTabs .nav-link {
            margin: 5px 0 !important;
            width: 100%;
        }
    }
    
    @media (max-width: 768px) {
        .csr-accountability-section .card .row {
            flex-direction: column;
        }
        
        .csr-accountability-section .col-lg-4 {
            padding: 30px !important;
        }
    }

    .tech-solutions-section {
        padding: 80px 0;
        background: #f8fafc;
        position: relative;
    }

    .tech-solutions-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
        z-index: 0;
    }

    /* Section Header */
    .section-header {
        position: relative;
        z-index: 2;
        color: white;
    }

    .section-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        color: white;
        padding: 10px 24px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .section-title {
        color: white;
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .section-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Tech Modules */
    .modules-container {
        position: relative;
        z-index: 3;
        margin-top: 30px;
    }

    .tech-module {
        background: white;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #eef2ff;
        position: relative;
    }

    .tech-module:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(43, 60, 107, 0.15);
        border-color: #2b3c6b;
    }

    .module-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(43, 60, 107, 0.1);
        padding: 8px 16px;
        border-radius: 30px;
        z-index: 2;
    }

    .tag-number {
        font-size: 14px;
        font-weight: 800;
        color: #2b3c6b;
        background: white;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(43, 60, 107, 0.2);
    }

    .tag-text {
        font-size: 12px;
        font-weight: 700;
        color: #2b3c6b;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .module-content {
        padding: 40px 30px;
    }

    .module-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .module-icon-bg {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 10px 25px rgba(43, 60, 107, 0.3);
    }

    .module-icon-bg i {
        font-size: 32px;
        color: white;
    }

    .module-title {
        color: #2b3c6b;
        font-size: 22px;
        font-weight: 800;
        margin: 0;
        line-height: 1.3;
    }

    .module-desc {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eef2ff;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        background: #f0f5ff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #2b3c6b;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .tech-module:hover .feature-icon {
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        color: white;
        transform: scale(1.1);
    }

    .feature-content h5 {
        color: #2b3c6b;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .feature-content p {
        color: #666;
        font-size: 13px;
        line-height: 1.5;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .features-grid {
            gap: 20px;
        }
    }

    @media (max-width: 992px) {
        .tech-solutions-section::before {
            height: 250px;
        }
        
        .section-title {
            font-size: 36px;
        }
        
        .module-content {
            padding: 35px 25px;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .tech-solutions-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 32px;
        }
        
        .section-subtitle {
            font-size: 16px;
        }
        
        .tech-module {
            margin-bottom: 30px;
        }
        
        .module-header {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .module-title {
            text-align: center;
        }
        
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 28px;
        }
        
        .module-content {
            padding: 30px 20px;
        }
        
        .module-icon-bg {
            width: 60px;
            height: 60px;
        }
        
        .module-icon-bg i {
            font-size: 26px;
        }
        
        .module-title {
            font-size: 20px;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .feature {
            flex-direction: column;
            text-align: center;
        }
        
        .feature-icon {
            margin: 0 auto;
        }
    }

    /* Animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .tech-module {
        animation: fadeIn 0.6s ease forwards;
        opacity: 0;
    }

    .tech-module:nth-child(1) { animation-delay: 0.1s; }
    .tech-module:nth-child(2) { animation-delay: 0.2s; }
    .tech-module:nth-child(3) { animation-delay: 0.3s; }
    .tech-module:nth-child(4) { animation-delay: 0.4s; }


    .impact-scale-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .impact-scale-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.03"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
        background-size: 200px 200px;
    }

    /* Header Styles */
    .impact-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        color: white;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 25px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .impact-title {
        color: white;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.1;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .impact-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* Metrics Cards */
    .metrics-strip {
        position: relative;
        z-index: 2;
    }

    .metric-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 40px 30px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.4s ease;
        height: 100%;
    }

    .metric-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .metric-card:hover .metric-glow {
        opacity: 1;
    }

    .metric-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        border-radius: 24px;
        pointer-events: none;
    }

    .metric-content {
        position: relative;
        z-index: 2;
    }

    .counter {
        display: inline;
        font-size: 64px;
        font-weight: 800;
        color: white;
        line-height: 1;
        text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .counter-suffix {
        display: inline;
        font-size: 32px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
        vertical-align: baseline;
        margin-left: 5px;
    }

    .metric-info {
        margin-top: 20px;
    }

    .metric-title {
        color: white;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .metric-desc {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    .metric-icon {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: white;
    }

    /* Statewide Reach */
    .statewide-reach {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 50px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 80px;
    }

    .visual-title {
        color: white;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .visual-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
    }

    .districts-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        margin-top: 40px;
    }

    .district-highlights {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .highlight-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .highlight-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(10px);
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        flex-shrink: 0;
    }

    .highlight-content h5 {
        color: white;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .highlight-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    /* Karnataka Map Visualization */
    .karnataka-map {
        position: relative;
        width: 100%;
        height: 300px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        overflow: hidden;
    }

    .map-dots {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .map-dot {
        position: absolute;
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        animation: pulse 2s infinite;
    }

    .map-dot:nth-child(1) { animation-delay: 0s; }
    .map-dot:nth-child(2) { animation-delay: 0.5s; }
    .map-dot:nth-child(3) { animation-delay: 1s; }
    .map-dot:nth-child(4) { animation-delay: 1.5s; }
    .map-dot:nth-child(5) { animation-delay: 0.2s; }
    .map-dot:nth-child(6) { animation-delay: 0.7s; }
    .map-dot:nth-child(7) { animation-delay: 1.2s; }
    .map-dot:nth-child(8) { animation-delay: 1.7s; }

    .map-label {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        font-size: 14px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.3);
        padding: 8px 20px;
        border-radius: 20px;
    }

    /* Animations */
    @keyframes pulse {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.3);
            opacity: 0.7;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .counter.animated {
        animation: countUp 1s ease forwards;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .counter {
            font-size: 56px;
        }
        
        .counter-suffix {
            font-size: 28px;
        }
    }

    @media (max-width: 992px) {
        .impact-title {
            font-size: 36px;
        }
        
        .counter {
            font-size: 48px;
        }
        
        .counter-suffix {
            font-size: 24px;
        }
        
        .districts-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .karnataka-map {
            height: 250px;
        }
    }

    @media (max-width: 768px) {
        .impact-scale-section {
            padding: 80px 0;
        }
        
        .impact-title {
            font-size: 32px;
        }
        
        .impact-subtitle {
            font-size: 16px;
        }
        
        .metric-card {
            padding: 30px 25px;
        }
        
        .metric-icon {
            width: 50px;
            height: 50px;
            font-size: 24px;
            top: 25px;
            right: 25px;
        }
        
        .statewide-reach {
            padding: 40px 30px;
        }
        
        .visual-title {
            font-size: 28px;
        }
    }

    @media (max-width: 576px) {
        .impact-title {
            font-size: 28px;
        }
        
        .impact-badge {
            padding: 8px 20px;
            font-size: 12px;
        }
        
        .counter {
            font-size: 40px;
        }
        
        .counter-suffix {
            font-size: 20px;
        }
        
        .metric-title {
            font-size: 16px;
        }
        
        .highlight-item {
            flex-direction: column;
            text-align: center;
        }
        
        .highlight-icon {
            margin: 0 auto;
        }
        
        .karnataka-map {
            height: 200px;
        }
    }

    .school-partners-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    }

    /* Header Styles */
    .section-badge {
        display: inline-block;
        background: rgba(43, 60, 107, 0.1);
        color: #2b3c6b;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .section-title {
        color: #2b3c6b;
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-subtitle {
        color: #666;
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    /* School Cards - Added mb-4 class to columns for better spacing */
    .school-card {
        background: white;
        border-radius: 16px;
        padding: 25px 20px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #eef2ff;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        position: relative;
        overflow: hidden;
        margin-bottom: 10px; /* Added 10px margin bottom */
    }

    .school-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(43, 60, 107, 0.15);
        border-color: #2b3c6b;
    }

    .school-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2b3c6b, #3a4f8c);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .school-card:hover::before {
        opacity: 1;
    }

    .school-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 24px;
    }

    .school-name {
        color: #2b3c6b;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .school-location {
        color: #666;
        font-size: 14px;
        font-weight: 500;
        background: #f0f5ff;
        padding: 4px 12px;
        border-radius: 20px;
        display: inline-block;
    }

    /* View More Button */
    .view-more-btn {
        background: linear-gradient(135deg, #2b3c6b 0%, #3a4f8c 100%);
        color: white;
        border: none;
        padding: 14px 35px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 10px 30px rgba(43, 60, 107, 0.2);
    }

    .view-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(43, 60, 107, 0.3);
    }

    .view-more-btn i {
        transition: transform 0.3s ease;
    }

    .view-more-btn.active i {
        transform: rotate(180deg);
    }

    /* School Count */
    .school-count {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .count-number {
        font-size: 40px;
        font-weight: 800;
        color: #2b3c6b;
        line-height: 1;
    }

    .count-label {
        color: #666;
        font-size: 16px;
        font-weight: 500;
        max-width: 200px;
        text-align: left;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .section-title {
            font-size: 32px;
        }
        
        .school-card {
            padding: 20px 15px;
        }
        
        .school-name {
            font-size: 15px;
            min-height: 38px;
        }
    }

    @media (max-width: 768px) {
        .school-partners-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .section-subtitle {
            font-size: 16px;
        }
        
        .school-count {
            flex-direction: column;
            text-align: center;
        }
        
        .count-label {
            text-align: center;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 24px;
        }
        
        .school-icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
        
        .view-more-btn {
            padding: 12px 25px;
            font-size: 14px;
        }
        
        .count-number {
            font-size: 32px;
        }
    }


    .partner-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2b3c6b, #10b981, #f59e0b);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.partner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 1.5rem;
}

.tag {
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tag:hover {
    transform: translateY(-1px);
}

.logo-grid .logo-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.logo-grid .logo-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.logo-grid img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-grid .logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.cta-box {
    box-shadow: 0 12px 32px rgba(43, 60, 107, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gray-600 {
    color: #64748b;
}

.text-blue-100 {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .partner-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle i {
        font-size: 1.5rem !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .logo-grid .logo-wrapper {
        height: 80px;
        padding: 1rem;
    }
    
    .logo-grid img {
        max-height: 40px;
    }
}

.impact-stats-section .col-lg-3 {
        transition: transform 0.3s ease;
    }
    
    .impact-stats-section .col-lg-3:hover {
        transform: translateY(-5px);
    }
    
    .impact-stats-section .rounded-circle {
        transition: all 0.3s ease;
    }
    
    .impact-stats-section .col-lg-3:hover .rounded-circle {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .impact-stats-section h2 {
            font-size: 32px !important;
            line-height: 40px !important;
        }
    }
    
    @media (max-width: 768px) {
        .impact-stats-section h2 {
            font-size: 28px !important;
            line-height: 36px !important;
        }
        
        .impact-stats-section .col-lg-3 {
            margin-bottom: 30px;
        }
        
        .impact-stats-section h5.text-uppercase {
            padding: 0px 20px !important;
        }
    }
    

/* abouts us  */

    .program-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .card-corner {
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        clip-path: polygon(0 0, 0% 100%, 100% 0);
    }
    
    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        border-color: #e0e0e0;
    }
    
    .icon-wrapper {
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .program-card:hover .icon-wrapper {
        transform: scale(1.08);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }
    
    .feature-dot {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin-right: 10px;
        vertical-align: middle;
    }
    
    .program-features li {
        font-size: 0.9rem;
        color: #555;
        padding: 4px 0;
    }
    
    .program-image-item {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .program-image-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .image-caption {
        background: white;
        border-top: 1px solid #f5f5f5;
    }
    
    @media (max-width: 768px) {
        .program-card {
            margin-bottom: 20px;
        }
    }


    /* our partner section  */


    .partner-block .inner-box {
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    }
    
    .partner-block .inner-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: #e0e0e0;
    }
    
    .partner-block .image-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: all 0.3s ease;
    }
    
    .partner-block .inner-box:hover .image-box img {
        transform: scale(1.05);
    }
    
    .partner-block .lower-content {
        padding: 20px;
    }
    
    .partner-block h3 a {
        color: #2b3c6b;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .partner-block h3 a:hover {
        color: #118ed3;
    }
    
    .category {
        display: inline-block;
        background: #f0f7ff;
        color: #2b3c6b;
        padding: 3px 10px;
        border-radius: 4px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .partner-description {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .partner-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .partner-list li {
        color: #555;
        font-size: 0.85rem;
        padding: 5px 0;
        position: relative;
        padding-left: 20px;
    }
    
    .partner-list li:before {
        content: "✓";
        color: #28a745;
        position: absolute;
        left: 0;
    }
    
    .logo-item:hover img {
        filter: grayscale(0%) !important;
        opacity: 1 !important;
    }


    /* about us  */

    .col-lg-4 > div:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(43, 60, 107, 0.15) !important;
    }
    
    .col-lg-4 > div:hover h3 {
        color: #118ed3 !important;
    }
    
    .col-lg-4 > div:hover .fa-2x {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }



    /* solution section */


    .coverage-services-section {
        padding: 80px 0;
        background: #f8fafc;
    }
    
    .section-tag {
        display: inline-block;
        background: #118ed3;
        color: white;
        padding: 6px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        color: #666;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .education-levels-grid {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .level-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    
    .level-inner {
        width: 160px;
        height: 160px;
        background: linear-gradient(135deg, #2b3c6b 0%, #118ed3 100%);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        box-shadow: 0 10px 30px rgba(43, 60, 107, 0.3);
    }
    
    .level-inner i {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .level-inner span {
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        padding: 0 10px;
    }
    
    .level-item {
        position: absolute;
        width: 140px;
        height: 140px;
        background: white;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .level-item:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
    
    .level-item.school {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        border: 3px solid #4caf50;
    }
    
    .level-item.college {
        bottom: 20px;
        left: 20%;
        border: 3px solid #2196f3;
    }
    
    .level-item.university {
        bottom: 20px;
        right: 20%;
        border: 3px solid #9c27b0;
    }
    
    .level-item .level-content {
        text-align: center;
        padding: 15px;
    }
    
    .level-item i {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .level-item.school i { color: #4caf50; }
    .level-item.college i { color: #2196f3; }
    .level-item.university i { color: #9c27b0; }
    
    .level-item span {
        display: block;
        font-weight: 700;
        color: #2b3c6b;
        margin-bottom: 5px;
    }
    
    .level-item small {
        color: #666;
        font-size: 12px;
    }
    
    .services-description h3 {
        color: #2b3c6b;
        font-size: 28px;
        font-weight: 700;
    }
    
    .lead-text {
        color: #555;
        font-size: 16px;
        line-height: 1.6;
    }
    
    .service-benefits {
        margin-top: 30px;
    }
    
    .benefit-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .benefit-item i {
        color: #28a745;
        margin-right: 12px;
        margin-top: 3px;
    }
    
    .benefit-item span {
        color: #555;
        font-size: 15px;
        line-height: 1.5;
    }
    
    .btn-primary {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #2b3c6b 0%, #118ed3 100%);
        color: white;
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(43, 60, 107, 0.2);
        color: white;
    }
    
    .service-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }
    
    .service-card.core-services {
        margin-top: 20px;
    }
    
    .service-card .card-header {
        padding: 25px 25px 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: white;
        font-size: 24px;
    }
    
    .service-icon.coverage { background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%); }
    .service-icon.duration { background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%); }
    .service-icon.delivery { background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%); }
    .service-icon.core { background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%); }
    
    .service-card h4 {
        color: #2b3c6b;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .service-card .card-body {
        padding: 0 25px 25px;
    }
    
    .service-card p {
        color: #666;
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .service-features {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    
    .service-features li {
        color: #555;
        font-size: 14px;
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
    }
    
    .service-features li:before {
        content: "✓";
        color: #28a745;
        position: absolute;
        left: 0;
        font-weight: bold;
    }
    
    .core-service-item {
        display: flex;
        align-items: flex-start;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .core-service-item:hover {
        background: #f0f7ff;
        transform: translateX(5px);
    }
    
    .core-service-item i {
        color: #118ed3;
        margin-right: 12px;
        margin-top: 3px;
        font-size: 16px;
    }
    
    .core-service-item span {
        color: #555;
        font-size: 14px;
        line-height: 1.4;
    }


    /* partner section */

    .partnership-card {
        transition: all 0.3s ease;
    }
    
    .partnership-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    }
    
    .partnership-card:hover h4 {
        color: #118ed3 !important;
    }
    
    .ecosystem-item {
        color: white;
        padding: 12px 25px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-align: center;
        min-width: 150px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .ecosystem-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    
    @media (max-width: 768px) {
        .ecosystem-visual {
            flex-direction: column !important;
        }
        
        .fa-arrow-right {
            transform: rotate(90deg);
            margin: 10px 0;
        }
    }

    /* why choose us */

    .benefit-card {
        transition: all 0.3s ease;
    }
    
    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }
    
    .benefit-card:hover h4 {
        color: #118ed3 !important;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(43, 60, 107, 0.2) !important;
        color: white !important;
    }



    /* technology section  */

    .technology-health {
        padding: 80px 0;
        background: #f8fafc;
    }
    
    .highlight-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .highlight-card:hover h4 {
        color: #118ed3 !important;
    }
    
    .highlight-icon div {
        transition: all 0.3s ease;
    }
    
    .highlight-card:hover .highlight-icon div {
        transform: scale(1.05);
    }

.outcome-card {
        transition: all 0.3s ease;
    }
    
    .outcome-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        background: white !important;
    }
    
    .outcome-card:hover h4 {
        color: #118ed3 !important;
    }
    
    .outcome-card:hover i {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }



    .p-3 {
        transition: all 0.3s ease;
    }
    
    .p-3:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    }
    
    .p-3:hover h5 {
        color: #118ed3 !important;
    }


    .security-card {
        transition: all 0.3s ease;
    }
    
    .security-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    }
    
    .security-card:hover h4 {
        color: #118ed3 !important;
    }
    
    .trust-item {
        transition: all 0.3s ease;
    }
    
    .trust-item:hover {
        background: #f0f7ff;
        border-radius: 8px;
    }
    
    @media (max-width: 768px) {
        .security-card {
            margin-bottom: 20px;
        }
    }



    .p-4 {
        transition: all 0.3s ease;
    }
    
    .p-4:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }
    
    .p-4:hover h4 {
        color: #118ed3 !important;
    }
    
    @media (max-width: 768px) {
        h2 {
            font-size: 32px !important;
        }
        
        .p-4 {
            margin-bottom: 20px;
        }
    }



    /* impact metrics section  */

    .impact-metrics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.metrics-header {
    position: relative;
    margin-bottom: 50px;
}

.metrics-title {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.metrics-subtitle {
    color: #7b8a8b;
    font-size: 16px;
    font-style: italic;
}

.metrics-strip .row {
    justify-content: center;
}

.metric-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
    color: #667eea;
}

.metric-icon {
    font-size: 36px;
    color: #3498db;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.metric-content {
    position: relative;
    z-index: 2;
}

.counter {
    display: inline;
    font-size: 36px;
    font-weight: 900;
    color: #2b3c6b;
    line-height: 30px;
}

.counter-suffix {
    display: inline;
    font-size: 24px;
    font-weight: 900;
    color: #3498db;
    margin-left: 2px;
    line-height: 30px;
}

.metric-label {
    font-size: 14px;
    font-weight: 600;
    color: #5d6778;
    margin-top: 10px;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover .metric-glow {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .metrics-title {
        font-size: 36px;
    }
    
    .counter {
        font-size: 32px;
        line-height: 28px;
    }
    
    .counter-suffix {
        font-size: 20px;
        line-height: 28px;
    }
    
    .metric-icon {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .impact-metrics-section {
        padding: 60px 0;
    }
    
    .metrics-title {
        font-size: 32px;
    }
    
    .counter {
        font-size: 28px;
        line-height: 26px;
    }
    
    .counter-suffix {
        font-size: 18px;
        line-height: 26px;
    }
    
    .metric-label {
        font-size: 13px;
        min-height: 35px;
    }
}

@media (max-width: 575px) {
    .metric-card {
        padding: 20px 15px;
    }
    
    .counter {
        font-size: 24px;
        line-height: 24px;
    }
    
    .counter-suffix {
        font-size: 16px;
        line-height: 24px;
    }
    
    .metric-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }
}


.digital-health-approach {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2b3c6b;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #3498db;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.lead-text {
    font-size: 18px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 16px;
    color: #7b8a8b;
    font-style: italic;
    padding: 15px 25px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.icon-grid-section {
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2b3c6b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2b3c6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2b3c6b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-content p {
    color: #5d6778;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .digital-health-approach {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .digital-health-approach {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .intro-text {
        margin-bottom: 40px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}



.case-insights-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #2b3c6b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 8px;
}

.section-note {
    color: #7b8a8b;
    font-style: italic;
    font-size: 14px;
    padding-top: 12px;
    border-top: 1px solid #eef2f7;
    margin-top: 12px;
}

/* Compact Card Design */
.compact-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    height: 320px; /* Fixed reduced height */
}

.compact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Card Top Section */
.card-top {
    padding: 20px 20px 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid #f0f4f8;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.rural-card .card-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.urban-card .card-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.awareness-card .card-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.card-header-content {
    flex: 1;
}

.card-header-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2b3c6b;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.rural-card .card-tag {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.urban-card .card-tag {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.awareness-card .card-tag {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

/* Card Body */
.card-body {
    padding: 20px;
    flex: 1;
    overflow: hidden;
}

.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.outcome-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #f0f4f8;
}

.outcome-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.outcome-list i {
    color: #27ae60;
    font-size: 14px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.urban-card .outcome-list i {
    color: #3498db;
}

.awareness-card .outcome-list i {
    color: #9b59b6;
}

.outcome-list span {
    color: #34495e;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

/* Card Footer */
.card-footer {
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #f0f4f8;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: white;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #2b3c6b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.location-tag i {
    margin-right: 6px;
    font-size: 12px;
}

.rural-card .location-tag i {
    color: #27ae60;
}

.urban-card .location-tag i {
    color: #3498db;
}

.awareness-card .location-tag i {
    color: #9b59b6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .case-insights-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .compact-card {
        height: 300px;
    }
    
    .card-top {
        padding: 18px 18px 12px;
    }
    
    .card-body {
        padding: 18px;
    }
    
    .card-footer {
        padding: 12px 18px;
    }
}

@media (max-width: 767px) {
    .case-insights-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .compact-card {
        height: auto;
        min-height: 280px;
        margin-bottom: 20px;
    }
    
    .card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .card-header-content h3 {
        font-size: 18px;
    }
    
    .outcome-list span {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .compact-card {
        height: auto;
        min-height: 260px;
    }
    
    .card-top {
        padding: 16px 16px 12px;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .outcome-list li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
}


/* Impact Strip Styles */
    .impact-strip {
        background: white;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .single-strip-item {
        padding: 15px;
        transition: all 0.3s ease;
    }
    
    .single-strip-item:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(52, 211, 153, 0.05) 100%);
        border-radius: 8px;
        transform: translateY(-2px);
    }
    
    .strip-icon-box i {
        font-size: 2rem;
        color: #2b3c6b;
        transition: all 0.3s ease;
    }
    
    .single-strip-item:hover .strip-icon-box i {
        color: #3b82f6;
        transform: scale(1.1);
    }
    
    .strip-stat h3 {
        color: #2b3c6b;
        font-weight: 700;
        font-size: 1.8rem;
        margin: 0;
    }
    
    .strip-label {
        color: #6b7280;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .strip-text small {
        color: #4b5563;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .strip-text strong {
        color: #2b3c6b;
    }
    
    /* Border for desktop only */
    @media (min-width: 768px) {
        .border-end {
            border-right: 1px solid #e5e7eb !important;
        }
    }
    
    /* Remove border on mobile */
    @media (max-width: 767px) {
        .border-end {
            border-right: none !important;
        }
        
        .single-strip-item {
            padding: 10px;
            margin-bottom: 10px;
        }
        
        .strip-stat h3 {
            font-size: 1.5rem;
        }
    }
    
    /* Description Styles */
    .impact-descriptions {
        background: rgba(59, 130, 246, 0.03);
        border-radius: 10px;
        padding: 20px;
        border-left: 4px solid #3b82f6;
    }
    
    .description-item h6 {
        color: #2b3c6b;
        font-weight: 600;
        display: inline-block;
    }
    
    .description-item span {
        color: #6b7280;
        font-size: 0.95rem;
    }
    
    .description-item strong {
        color: #2b3c6b;
        font-weight: 600;
    }
    
    /* Color coding for terms */
    .description-item strong:nth-child(1) {
        color: #3b82f6; /* Blue for scientifically designed */
    }
    
    .description-item strong:nth-child(2) {
        color: #10b981; /* Green for preventive healthcare */
    }
    
    .description-item strong:nth-child(3) {
        color: #f59e0b; /* Orange for early detection */
    }



    /* our program  */

    .partner-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid transparent;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .partner-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-color: #e0f2fe;
    }
    
    .card-icon {
        text-align: center;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
    
    .partner-card:hover .icon-circle {
        transform: scale(1.1) rotate(5deg);
    }
    
    .program-tag {
        display: inline-flex;
        align-items: center;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-family: 'Arial', sans-serif;
        text-align: center;
    }
    
    .partner-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid #f3f4f6;
    }
    
    .tag {
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        white-space: nowrap;
        transition: all 0.3s ease;
    }
    
    .tag:hover {
        transform: translateY(-2px);
    }
    
    .overview-item {
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .overview-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .icon-circle-sm {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .overview-icon i {
        font-size: 1.5rem;
    }
    
    .overview-item h4 {
        font-weight: 600;
    }
    
    /* Animation for icons */
    @keyframes iconFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
    
    .partner-card:hover .icon-circle i {
        animation: iconFloat 0.5s ease-in-out;
    }
    
    @media (max-width: 768px) {
        .partner-card {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .partner-tags {
            justify-content: center;
        }
        
        .overview-item {
            padding: 15px;
        }
        
        .icon-circle {
            width: 70px;
            height: 70px;
        }
        
        .icon-circle i {
            font-size: 1.5rem;
        }
    }

    /* our aodivcs */

    /* Equal Card Height CSS */
    .services-carousel .owl-stage {
        display: flex;
        align-items: stretch;
    }

    .services-carousel .owl-item {
        display: flex;
        height: auto;
    }

    .service-block-one {
        height: 100%;
    }

    .service-block-one .inner-box {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .service-block-one h3 {
        flex-shrink: 0;
    }

    .service-block-one .text {
        flex-grow: 1;
    }

    /* This is about us code */

    .unified-stats {
        background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
        border-radius: 12px;
        padding: 20px;
        border-left: 4px solid #3b82f6;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-item:hover .stat-number {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }
    
    @media (max-width: 768px) {
        .stat-number {
            font-size: 1.5rem !important;
        }
        
        .stat-label {
            font-size: 0.8rem !important;
        }
    }



    /* our vision and mission */

    .vm-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        height: 100%;
    }
    
    .vm-card h2 {
        font-weight: 700;
        font-size: 1.8rem;
        border-bottom: 3px solid;
        padding-bottom: 10px;
        display: inline-block;
    }
    
    .vm-card h4 {
        font-weight: 600;
        font-size: 1.2rem;
    }
    
    .vm-card ul li {
        margin-bottom: 10px;
    }
    
    .vm-card strong {
        color: #2b3c6b;
        font-weight: 600;
    }
    
    .governance-statement strong {
        color: #2b3c6b;
        font-weight: 700;
    }
    
    @media (max-width: 768px) {
        .vm-card {
            padding: 20px;
        }
        
        .vm-card h2 {
            font-size: 1.5rem;
        }
        
        .governance-statement {
            padding: 20px !important;
        }
        
        .governance-statement p {
            font-size: 1rem !important;
        }
    }

    /* leadership */

       /* Leadership Section Styles */
.leadership-section {
    background-color: #f8f9fa;
}

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.advisor-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-top: 3px solid #28a745;
    transition: all 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.advisor-icon {
    width: 70px;
    height: 70px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.leader-qualifications .badge {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Vision & Mission Section Styles */
.vm-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.vm-card h2 {
    font-weight: 700;
    font-size: 1.8rem;
    border-bottom: 3px solid;
    padding-bottom: 10px;
    display: inline-block;
}

.vm-card h4 {
    font-weight: 600;
    font-size: 1.2rem;
}

.vm-card ul li {
    margin-bottom: 10px;
}

.vm-card strong {
    color: #2b3c6b;
    font-weight: 600;
}

.governance-statement strong {
    color: #2b3c6b;
    font-weight: 700;
}

@media (max-width: 768px) {
    .vm-card {
        padding: 20px;
    }
    
    .vm-card h2 {
        font-size: 1.5rem;
    }
    
    .governance-statement {
        padding: 20px !important;
    }
    
    .governance-statement p {
        font-size: 1rem !important;
    }
    
    .privacy-statement {
        padding: 15px !important;
    }
    
    .privacy-statement p {
        font-size: 0.9rem !important;
    }
}


/* medical team css  */


.doctor-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #f0f0f0;
    }
    
    .doctor-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .image-holder {
        position: relative;
        overflow: hidden;
        height: 300px;
    }
    
    .image-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .doctor-card:hover .image-holder img {
        transform: scale(1.05);
    }
    
    .doctor-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 123, 255, 0.8));
        padding: 20px;
        color: white;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .doctor-card:hover .doctor-overlay {
        transform: translateY(0);
    }
    
    .specialty-badge {
        background: linear-gradient(45deg, #007bff, #00bfff);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        display: inline-block;
        margin: 5px 0;
        letter-spacing: 0.5px;
    }
    
    .lower-content {
        padding: 25px;
        background: white;
    }
    
    .doctor-name {
        color: #2c3e50;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }
    
    .doctor-name:hover {
        color: #007bff;
    }
    
    .qualification {
        color: #007bff;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
    }
    
    .preventive-focus {
        background: #f8f9fa;
        padding: 12px 15px;
        border-radius: 10px;
        margin: 15px 0;
        border-left: 4px solid #007bff;
    }
    
    .preventive-focus strong {
        color: #2c3e50;
        font-size: 14px;
    }
    
    .preventive-focus p {
        color: #666;
        font-size: 13px;
        margin: 5px 0 0 0;
        line-height: 1.5;
    }
    
    .experience-badge {
        background: #fff3cd;
        color: #856404;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }
    
    .experience-badge i {
        font-size: 14px;
    }
    
    /* Focus Areas Section */
    .focus-area-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        padding: 30px;
        height: 100%;
        text-align: center;
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }
    
    .focus-area-card:hover {
        background: linear-gradient(135deg, #007bff 0%, #00bfff 100%);
        transform: translateY(-5px);
        color: white;
    }
    
    .focus-area-card:hover h4,
    .focus-area-card:hover p {
        color: white;
    }
    
    .focus-icon {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 30px;
        color: #007bff;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    }
    
    .focus-area-card:hover .focus-icon {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .focus-area-card h4 {
        color: #2c3e50;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }
    
    .focus-area-card p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        transition: color 0.3s ease;
    }
    
    /* Section Headers */
    .sec-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .sec-title h5 {
        color: #007bff;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .sec-title h1 {
        color: #2c3e50;
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        position: relative;
        padding-bottom: 20px;
    }
    
    .sec-title h1:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #007bff, #00bfff);
        border-radius: 2px;
    }
    
    /* CTA Button */
    .cta-button {
        background: linear-gradient(45deg, #007bff, #00bfff);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
        color: white;
    }
    
    /* Compliance Box */
    .compliance-box {
        background: linear-gradient(135deg, #fff8e1 0%, #ffe8a1 100%);
        border-radius: 15px;
        padding: 30px;
        margin: 40px 0;
        border-left: 5px solid #ffc107;
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
    }
    
    .compliance-box h4 {
        color: #856404;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .compliance-box strong {
        color: #d35400;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .doctor-card {
            margin-bottom: 30px;
        }
        
        .sec-title h1 {
            font-size: 28px;
        }
        
        .focus-area-card {
            margin-bottom: 20px;
        }
    }


    /* whatsapp css  */

    #whatsapp-widget:hover #whatsapp-tooltip {
        opacity: 1;
        transform: translateX(0);
    }
    #whatsapp-widget:hover a {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    @media (max-width: 768px) {
        #whatsapp-widget {
            bottom: 15px;
            right: 15px;
        }
        #whatsapp-widget a {
            width: 55px;
            height: 55px;
            line-height: 55px;
            font-size: 28px;
        }
        #whatsapp-tooltip {
            font-size: 12px;
            padding: 6px 10px;
        }
    }

    /* unival css  */

    /* Update all p tags */
    p {
        font-size: 15px !important;
        line-height: 28px !important;
        color: #4c4c4c !important;
    }
    
    /* Update all h1 tags */
    h1 {
        color: #2c3e50 !important;
        font-size: 36px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        position: relative !important;
        padding-bottom: 20px !important;
    }
    
    /* Remove padding-bottom for h1 in specific sections if needed */
    .page-title h1,
    .cta-section h1 {
        padding-bottom: 0 !important;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 15px;
            right: 15px;
            font-size: 25px;
        }
        
        h1 {
            font-size: 28px !important;
            padding-bottom: 15px !important;
        }
        
        p {
            font-size: 16px !important;
            line-height: 26px !important;
        }
    }
    
    @media (max-width: 480px) {
        h1 {
            font-size: 24px !important;
            padding-bottom: 12px !important;
        }
        
        p {
            font-size: 15px !important;
            line-height: 24px !important;
        }
    }


    /* video css  */

    .video-design-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 8px;
        cursor: pointer;
    }
    
    .elegant-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .video-design-wrapper:hover .elegant-video {
        transform: scale(1.05);
    }
    
    .video-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(43, 60, 107, 0.4), rgba(43, 60, 107, 0.1));
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
    
    .video-design-wrapper:hover .video-gradient-overlay {
        opacity: 0.5;
    }
    
    .play-button-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        z-index: 2;
    }
    
    .play-button-circle {
        position: relative;
        width: 70px;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .video-design-wrapper:hover .play-button-circle {
        background: white;
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .play-button-inner {
        width: 60px;
        height: 60px;
        background: #2b3c6b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .video-design-wrapper:hover .play-button-inner {
        background: #3a4f8c;
    }
    
    .play-button-inner i {
        font-size: 22px;
        color: white;
        margin-left: 4px;
    }
    
    .play-button-ripple {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: ripple 2s infinite;
    }
    
    .video-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(43, 60, 107, 0.9);
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 2;
        backdrop-filter: blur(5px);
    }
    
    .video-badge i {
        font-size: 14px;
    }
    
    /* Ripple animation */
    @keyframes ripple {
        0% {
            transform: scale(0.8);
            opacity: 1;
        }
        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }


    /* health css  */

    /* Custom Styles for Institutional Health Programs Page */
:root {
    --primary: #2a6e3f;
    --primary-light: #4a9d5f;
    --secondary: #1a4d8c;
    --accent: #f8c146;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #343a40;
}

.institutional-hero {
    background: linear-gradient(135deg, rgba(42, 110, 63, 0.9), rgba(26, 77, 140, 0.8)), url('images/main-slider/aboutUs.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.institutional-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.institutional-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-center h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title-center p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
}

/* About Program Section */
.about-program-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.highlight-box {
    background-color: white;
    border-left: 5px solid var(--primary);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.highlight-box p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

/* Program Scope Section */
.scope-section {
    padding: 100px 0;
    background-color: white;
}

.institution-levels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.level-card {
    background-color: var(--light);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-light);
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.level-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.level-card h4 {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.coverage-note {
    text-align: center;
    background-color: #e8f4ec;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.coverage-note p {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 0;
}

/* Health Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    background-color: var(--primary);
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    color: var(--gray);
}

.service-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Why Partner Section */
.benefits-section {
    padding: 100px 0;
    background-color: white;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    border-radius: 8px;
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent);
}

.benefit-item h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card:before {
    content: "\201C";
    font-size: 80px;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    font-size: 17px;
}

/* Commitment Section */
.commitment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.commitment-section .section-title-center h2 {
    color: white;
}

.commitment-section .section-title-center h2:after {
    background-color: var(--accent);
}

.commitment-section .section-title-center p {
    color: rgba(255, 255, 255, 0.9);
}

.commitment-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-box p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.signature {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    color: var(--accent);
}

/* CTA Section */
.cta-section-institutional {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-section-institutional h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section-institutional p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.btn-custom {
    background-color: var(--accent);
    color: var(--dark);
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

.btn-custom:hover {
    background-color: transparent;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .institutional-hero h1 {
        font-size: 36px;
    }
    
    .section-title-center h2 {
        font-size: 30px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .institutional-hero {
        padding: 80px 0 60px;
    }
    
    .institutional-hero h1 {
        font-size: 30px;
    }
    
    .institutional-hero p {
        font-size: 18px;
    }
    
    .section-title-center h2 {
        font-size: 26px;
    }
    
    .institution-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .commitment-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .institution-levels {
        grid-template-columns: 1fr;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
}


/* program css  */

/* Program Categories Section Styles */
.program-categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
}

.program-categories-section .sec-title h5 {
    color: #118ed3;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.program-categories-section .sec-title h1 {
    color: #2b3c6b;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.program-categories-section .sec-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.program-category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #2b3c6b;
}

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

.program-category-card .category-icon {
    margin-bottom: 20px;
}

.program-category-card .category-icon i {
    font-size: 48px;
    color: #2b3c6b;
}

.program-category-card h4 {
    color: #2b3c6b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.program-category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Child Development Section Styles */
.child-development-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f2ff 100%);
}

.child-development-section .sec-title h5 {
    color: #f59e0b;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.child-development-section .sec-title h1 {
    color: #2b3c6b;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.child-development-section .sec-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.development-content h3 {
    color: #2b3c6b;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.development-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-item .feature-icon {
    margin-right: 15px;
    color: #f59e0b;
    font-size: 20px;
    min-width: 30px;
}

.feature-item h6 {
    color: #2b3c6b;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.program-info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.program-info-card h4 {
    color: #2b3c6b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f59e0b;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item .info-icon {
    margin-right: 15px;
    color: #f59e0b;
    font-size: 20px;
    min-width: 30px;
}

.info-item h6 {
    color: #2b3c6b;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Developmental Domains Section Styles */
.developmental-domains-section {
    padding: 80px 0;
    background: white;
}

.developmental-domains-section .sec-title h5 {
    color: #2b3c6b;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.developmental-domains-section .sec-title h1 {
    color: #2b3c6b;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.developmental-domains-section .sec-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.domain-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #2b3c6b;
}

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

.domain-card .domain-icon {
    margin-bottom: 20px;
}

.domain-card .domain-icon i {
    font-size: 48px;
    color: #2b3c6b;
}

.domain-card h4 {
    color: #2b3c6b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.domain-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Research & Screening Projects Section Styles */
.research-projects-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.research-projects-section .sec-title h5 {
    color: #2b3c6b;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.research-projects-section .sec-title h1 {
    color: #2b3c6b;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.research-projects-section .sec-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #2b3c6b;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.project-header h4 {
    color: #2b3c6b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    flex: 1;
}

.project-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.project-status.completed {
    background: #10b981;
    color: white;
}

.project-status.ongoing {
    background: #f59e0b;
    color: white;
}

.project-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-details {
    display: flex;
    gap: 20px;
}

.detail-item {
    flex: 1;
}

.detail-item h6 {
    color: #2b3c6b;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.detail-item p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Impact & Statistics Section Styles */
.impact-statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2b3c6b 0%, #1a284b 100%);
    color: white;
}

.impact-statistics-section .sec-title h5 {
    color: #93c5fd;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.impact-statistics-section .sec-title h1 {
    color: white;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.impact-statistics-section .sec-title p {
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 48px;
    color: white;
}

.stat-card h2 {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-card h4 {
    color: #93c5fd;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    color: #d1d5db;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.additional-stats {
    margin-top: 30px;
}

.additional-stat {
    text-align: center;
    padding: 20px;
}

.additional-stat h5 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.additional-stat p {
    color: #93c5fd;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .program-categories-section .sec-title h1,
    .child-development-section .sec-title h1,
    .developmental-domains-section .sec-title h1,
    .research-projects-section .sec-title h1,
    .impact-statistics-section .sec-title h1 {
        font-size: 28px;
    }
    
    .stat-card h2 {
        font-size: 36px;
    }
    
    .project-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .project-status {
        align-self: flex-start;
    }
}


/* impart css */

/* Hover effects for metric cards */
    .metric-card-new:hover {
        transform: translateY(-10px) scale(1.02) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
        border-color: rgba(16, 185, 129, 0.3) !important;
    }

    /* Gradient text for main numbers */
    .counter {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .counter {
            font-size: 48px !important;
        }
        .counter-suffix {
            font-size: 28px !important;
        }
    }

    @media (max-width: 992px) {
        .counter {
            font-size: 42px !important;
        }
        .counter-suffix {
            font-size: 24px !important;
        }
        .metric-card-new {
            padding: 25px !important;
        }
        .metric-label-new {
            font-size: 18px !important;
        }
    }

    @media (max-width: 768px) {
        .metrics-title {
            font-size: 36px !important;
        }
        .metrics-subtitle {
            font-size: 16px !important;
        }
        .counter {
            font-size: 36px !important;
        }
        .counter-suffix {
            font-size: 20px !important;
        }
    }

    @media (max-width: 576px) {
        .metrics-title {
            font-size: 28px !important;
        }
        .counter {
            font-size: 32px !important;
        }
        .counter-suffix {
            font-size: 18px !important;
        }
        .metric-icon-new div {
            width: 60px !important;
            height: 60px !important;
        }
    }

    /* Icon bounce animation on hover */
    .metric-card-new:hover .metric-icon-new div {
        animation: bounce 0.6s ease;
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }


    /* Modern card design */
    .event-card-modern {
        position: relative;
    }

    .event-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
    }

    .event-card-modern:hover .event-action {
        background: linear-gradient(135deg, #10b98115, #10b98108) !important;
        border-color: #10b98130 !important;
    }

    .event-card-modern:hover h3 {
        color: #10b981 !important;
    }

    .event-image {
        position: relative;
    }

    .event-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    }

    .event-tag {
        position: relative;
        overflow: hidden;
    }

    .event-tag::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 40%;
        height: 200%;
        background: rgba(255,255,255,0.2);
        transform: rotate(30deg);
        transition: all 0.5s ease;
    }

    .event-card-modern:hover .event-tag::after {
        left: 120%;
    }

    .event-action:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }

    .btn-view-all:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3) !important;
    }

    /* Responsive design */
    @media (max-width: 1200px) {
        .col-xl-3 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 768px) {
        .col-xl-3, .col-lg-6, .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .event-card-modern {
            max-width: 320px;
            margin: 0 auto;
        }
        
        .section-header h2 {
            font-size: 28px !important;
        }
        
        .event-image {
            height: 180px !important;
        }
    }

    @media (max-width: 576px) {
        .event-info {
            flex-direction: column !important;
            gap: 8px !important;
        }
        
        .section-header h2 {
            font-size: 24px !important;
        }
        
        .section-header p {
            font-size: 14px !important;
        }
    }

    /* Animation effects */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .event-card-modern {
        animation: fadeIn 0.5s ease;
    }

    /* Hover image effect */
    .event-card-modern:hover .event-image img {
        transform: scale(1.05);
    }

    .event-image img {
        transition: transform 0.5s ease;
    }

    /* Card corner accent */
    .event-card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, transparent 50%, #f1f5f9 50%);
        border-radius: 0 0 0 12px;
        pointer-events: none;
    }



    /* Completed event card design */
    .completed-event-card {
        position: relative;
        overflow: hidden;
    }

    .completed-event-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    }

    .completed-event-card:hover .event-action {
        background: #059669 !important;
        color: white !important;
        transform: translateY(-2px);
    }

    .completed-event-card:hover .event-image img {
        transform: scale(1.05);
    }

    .completed-event-card:hover h3 {
        color: #059669 !important;
    }

    .event-image {
        position: relative;
    }

    .event-image img {
        transition: transform 0.5s ease;
    }

    /* Status badge animation */
    .event-status {
        animation: badgePulse 2s infinite;
    }

    @keyframes badgePulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    /* Event type indicator */
    .event-type div {
        animation: indicatorPulse 3s infinite;
    }

    @keyframes indicatorPulse {
        0%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0.5;
        }
    }

    /* View more button */
    .btn-view-more:hover {
        background: #059669 !important;
        color: white !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3) !important;
    }

    /* Responsive design */
    @media (max-width: 1200px) {
        .col-xl-4 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 768px) {
        .col-xl-4, .col-lg-6, .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        
        .completed-event-card {
            max-width: 320px;
            margin: 0 auto;
        }
        
        .section-header h2 {
            font-size: 28px !important;
        }
        
        .event-image {
            height: 200px !important;
        }
    }

    @media (max-width: 576px) {
        .event-details {
            flex-direction: column !important;
            gap: 10px !important;
            align-items: flex-start !important;
        }
        
        .section-header h2 {
            font-size: 24px !important;
        }
        
        .section-header p {
            font-size: 14px !important;
        }
    }

    /* Card corner accent */
    .completed-event-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #059669 50%, transparent 50%);
        z-index: 1;
    }

    /* Card content animation */
    .event-content {
        position: relative;
        z-index: 2;
    }



    /* program css Your impact  */


    .impact-statistics-section {
    background-color: #f8f9fa;
}

.sec-title h5 {
    color: #2b3c6b;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-title h1 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.sec-title .lead {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    .sec-title h1 {
        font-size: 26px;
    }
    
    .stat-card {
        padding: 20px !important;
    }
    
    .stat-card h2 {
        font-size: 36px !important;
    }
}


/* location css  */

/* Contact Info Section Styles */
.contact-info-section {
    padding: 80px 0;
}

.sec-title h5 {
    color: #2b3c6b;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-title h1 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Contact Cards */
.single-info-box {
    height: 100%;
}

.single-info-box .inner-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.single-info-box .inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.single-info-box .icon-box {
    font-size: 48px;
    color: #2b3c6b;
    margin-bottom: 20px;
}

.single-info-box h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-info-box .text {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.single-info-box .text a {
    color: #2b3c6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.single-info-box .text a:hover {
    color: #1a2a4a;
    text-decoration: underline;
}

/* Map Styles */
.map-container {
    margin-top: 40px;
}

.map-wrapper iframe {
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .sec-title h1 {
        font-size: 28px;
    }
    
    .single-info-box .inner-box {
        padding: 25px 20px;
    }
    
    .single-info-box .icon-box {
        font-size: 40px;
    }
    
    .map-wrapper iframe {
        min-height: 300px;
    }
    
    .map-footer .row {
        text-align: center;
    }
    
    .map-footer .col-md-4 {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .map-wrapper iframe {
        min-height: 250px;
    }
}


/* faq  */

/* FAQ Custom Styles - Improved Design */
:root {
    --primary-color: #2b3c6b;
    --secondary-color: #3a5285;
    --accent-color: #4CAF50;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #eaeaea;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.faq-category-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-category-section:nth-child(even) {
    background: var(--light-bg);
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow);
}

.category-icon i {
    font-size: 36px;
    color: var(--white);
}

.category-header h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.category-header p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 800px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: var(--white);
}

.accordion-header:hover {
    background: var(--light-bg);
}

.accordion-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    line-height: 1.5;
    padding-right: 20px;
}

.accordion-header .icon {
    width: 30px;
    height: 30px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-header.active {
    background: var(--primary-color);
}

.accordion-header.active h3 {
    color: var(--white);
}

.accordion-header.active .icon {
    background: var(--white);
    color: var(--primary-color);
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-content .content-wrapper {
    padding: 30px;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.accordion-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.accordion-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.6;
}

.accordion-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 16px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(43, 60, 107, 0.1), rgba(76, 175, 80, 0.1));
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-box p {
    margin: 0;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.program-highlights {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    margin: 60px 0;
    text-align: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--white);
}

.highlight-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-card p {
    opacity: 0.9;
    font-size: 15px;
    margin: 0;
}

.contact-cta {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(43, 60, 107, 0.05)"/></svg>');
    background-size: cover;
}

.contact-cta .container {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 18px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(43, 60, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 60, 107, 0.4);
    color: var(--white);
}

/* FAQ Quick Links */
.faq-quick-links {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    position: sticky;
    top: 20px;
}

.faq-quick-links h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.quick-link {
    display: block;
    padding: 12px 20px;
    margin-bottom: 10px;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.quick-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-hero {
        padding: 80px 0;
    }
    
    .faq-hero h1 {
        font-size: 38px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 0;
    }
    
    .faq-hero h1 {
        font-size: 32px;
    }
    
    .category-header h2 {
        font-size: 28px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 30px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-content .content-wrapper {
        padding: 20px;
    }
    
    .contact-cta h2 {
        font-size: 32px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .faq-hero h1 {
        font-size: 28px;
    }
    
    .category-header h2 {
        font-size: 24px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .contact-cta {
        padding: 60px 0;
    }
    
    .contact-cta h2 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Animation for accordion */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item {
    animation: fadeIn 0.3s ease-out;
}

/* Print styles */
@media print {
    .accordion-content {
        max-height: none !important;
        display: block !important;
    }
    
    .accordion-header .icon {
        display: none;
    }
}