/* ==========================================================================
   GOOGLE FONTS MOUNT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   CORE SITE RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   GLOBAL DESIGN VARIABLES (UPDATED SPARC BRAND IDENTITY)
   ========================================================================== */
:root {
   --primary-blue: #004D4D;
    --dark-blue: #004D4D;
    
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --white: #ffffff;
    
    --light-bg: #fafafa;
    --card-bg: #ffffff;
    --border-color: #f0edf0;
    
    --shadow-sm: 0 4px 15px rgba(92, 29, 92, 0.04);
    --shadow-md: 0 10px 30px rgba(92, 29, 92, 0.08);
    --shadow-lg: 0 15px 35px rgba(92, 29, 92, 0.14);
    
    --transition-speed: 0.35s;
}

/* ==========================================================================
   COMMON LAYOUT REUSABLES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1400px; /* Locked standard viewport boundary width */
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
    padding: 0 15px;
}

.section-header span {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 34px;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.25;
}

/* ==========================================================================
   ULTRA-PREMIUM BRAND SUMMARY LAYOUT ENGINE (SPACING OPTIMIZED)
   ========================================================================== */
.sparc-summary-section {
    width: 100%;
    position: relative;
    padding: 50px 0; /* 100px se 50px kiya taaki bada gap khatam ho sake */
    background-color: #faf9fa; 
    border-bottom: 1px solid #efebee;
    overflow: hidden;
    margin: 0 !important;
    display: block;
}

.sparc-summary-section .container {
    position: relative;
    z-index: 2;
    max-width: 1100px; 
}

.summary-wrapper {
    text-align: center;
    padding: 0 10px;
}

.summary-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #004D4D;
    
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px; /* Gap slightly reduced */
}

.summary-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--primary-blue);
    margin-bottom: 20px; /* Gap slightly reduced */
    letter-spacing: -0.02em;
}

.summary-divider {
    width: 50px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 0 auto 30px; /* Gap optimized */
    border-radius: 10px;
}

.summary-text-engine {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Symmetrical text gap */
    max-width: 920px;
    margin: 0 auto;
    border-left: 3px solid var(--soft-lavender); 
    padding: 5px 0 5px 35px;
    text-align: left; 
}

.summary-paragraph {
    font-size: 16.5px;
    line-height: 1.85;
    font-weight: 400;
    color: #4a4a4a; 
}

.summary-paragraph strong {
    font-weight: 600;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   MISSION VISION ARCHITECTURE
   ========================================================================== */
.mission-vision {
    background-color: var(--white);
    padding-top: 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start; /* Better vertical alignment for varying text heights */
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease, 
                box-shadow var(--transition-speed) ease, 
                border-color var(--transition-speed) ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.icon-box i {
    color: #fff;
    font-size: 34px;
}

.mission-card:hover .icon-box {
    background-color: var(--primary-blue);
}

.mission-card:hover .icon-box i {
    color: var(--white);
}

.mission-content {
    flex-grow: 1;
}

.mission-content h3 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mission-content p {
    color: #000;
    line-height: 1.65;
    font-size: 15px;
}




/* ==========================================================================
   STATS COMPONENT STRIP
   ========================================================================== */
.stats-bar {
    padding: 20px;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease, 
                border-color var(--transition-speed) ease, 
                box-shadow var(--transition-speed) ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

/* ==========================================================================
   EXPERTS CLINICAL GRID MODULE
   ========================================================================== */
.experts-section {
    background-color: var(--light-bg);
}

.experts-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.doctor-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-speed) ease, 
                border-color var(--transition-speed) ease, 
                box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.doctor-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
}

.doctor-card h3 {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 15px 12px 6px;
    line-height: 1.35;
}

.doctor-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    padding: 0 14px 20px;
    flex-grow: 1;
}

/* ==========================================================================
   MODERN HIGH-CONVERSION CTA RADIANTS
   ========================================================================== */
.cta-banner {
    width: 100%;
    padding: 20px;
    background-color: var(--white);
}

.cta-container.no-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    
    /* Clean brand dark purple 3-stop vibrant linear engine */
    background: var(--primary-blue);
    
    border-radius: 16px; 
    padding: 20px 30px;  
    box-shadow: 0 12px 40px rgba(92, 29, 92, 0.15);
}

.cta-text-group {
    max-width: 65%;
}

.cta-title {
    font-size: 32px; 
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.cta-description {
    font-size: 15.5px;
    color: #fff; 
    line-height: 1.55;
    font-weight: 400;
}

.cta-actions {
    flex-shrink: 0;
    margin-left: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: background-color 0.25s ease, 
                transform 0.25s ease, 
                box-shadow 0.25s ease;
}

.cta-arrow {
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.cta-button:hover {
    background-color: #fff;
    color:var(--primary-blue);
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   UNIFIED RESPONSIVE MEDIA BREAKPOINT ENGINE
   ========================================================================== */

/* Widescreen Displays */
@media (max-width: 1400px) {
    .experts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Desktops & Large Tablets */
@media (max-width: 1100px) {
    /* section {
        padding: 60px 0;
    } */
    
    .section-header h2 {
        font-size: 32px;
    }

    .experts-title {
        font-size: 32px;
        margin-bottom: 45px;
    }

    .experts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablets (Portrait Profile) */
@media (max-width: 900px) {
    /* About & Contextual Structural Fallbacks */
    .about-grid, .mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .shape-box {
        clip-path: none;
        border-radius: 20px;
    }
}

/* Medium & Small Tablets */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 45px;
    }

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container.no-image {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 40px 30px;
    }

    .cta-text-group {
        max-width: 100%;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-actions {
        margin-left: 0;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Smart Mobile Interfaces */
@media (max-width: 576px) {
    /* section {
        padding: 50px 0;
    } */

    .section-header h2, .experts-title {
        font-size: 26px;
    }

    .mission-card {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
    }

    .stats-grid, .experts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 20px;
    }

    .doctor-card img {
        height: 260px;
    }

    .cta-container.no-image {
        padding: 35px 20px;
    }
}