/* ==============================================
   RESET & BASE STYLES
   ============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate Professional Palette */
    --primary-navy: #1a2332;
    --secondary-navy: #2d3e50;
    --accent-teal: #2B7A78;
    --accent-teal-light: #3d9c99;
    --accent-blue: #4a90e2;
    --success-green: #27ae60;
    --white: #FFFFFF;
    --off-white: #f8f9fa;
    --light-gray: #e8eef2;
    --text-dark: #2c3e50;
    --text-medium: #546e7a;
    --text-light: #7f8c8d;
    --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    --gradient-teal: linear-gradient(135deg, #3d9c99 0%, #2B7A78 100%);
    --gradient-blue: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);

    /* Professional Shadows */
    --shadow-subtle: 0 2px 4px rgba(26, 35, 50, 0.04);
    --shadow-sm: 0 4px 12px rgba(26, 35, 50, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 35, 50, 0.12);
    --shadow-lg: 0 12px 40px rgba(26, 35, 50, 0.16);
    --shadow-xl: 0 20px 60px rgba(26, 35, 50, 0.20);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    max-width: 100vw;
}

html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Custom Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-teal) var(--light-gray);
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #f3f4f6;
}

*::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary);
}


/* ==============================================
    NAVBAR - FIXED VERSION
   ============================================== */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.nav-bar {
    position: relative;
}

.nav-inner {
    max-width: 1290px;
    padding: 0.5rem 1.5rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 65px;
    width: auto;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    border-radius: 999px;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-teal);
}

.nav-links a.active::after {
    width: 100%;
}

/* Desktop CTA Button */
.nav-cta {
    margin-left: 1.25rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: var(--accent-teal);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(43, 122, 120, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--accent-teal);
    letter-spacing: 0.25px;
}

.nav-cta:hover {
    box-shadow: 0 8px 22px #fff;
    color: var(--accent-teal);
    background: #fff;
    border: 2px solid var(--accent-teal);
}

/* Mobile Toggle Button */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    margin-left: auto;
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
    padding: 8px;
}

.nav-toggle-label span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary-navy);
    transition: all 0.3s ease;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-toggle:checked~.mobile-menu {
    display: flex;
    max-height: 500px;
}

.mobile-menu a {
    color: var(--primary-navy);
    text-decoration: none;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--off-white);
    color: var(--accent-teal);
    padding-left: 2rem;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Toggle Animation - X icon when opened */
.nav-toggle:checked+.nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary-navy);
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary-navy);
}

/* ================================
    NAVBAR - STICKY/FIXED VERSION
   ================================ */

.site-header {
    position: fixed; /* Sticky की जगह Fixed करें */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* सबसे ऊपर रखने के लिए */
    
    /* डिजाइन */
    background: rgba(255, 255, 255, 0.98); /* थोड़ा सा ट्रांसपेरेंट वाइट */
    backdrop-filter: blur(18px); /* पीछे का कंटेंट धुंधला दिखेगा */
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* हल्की परछाई ताकि अलग दिखे */
    transition: all 0.3s ease;
}


/* ==============================================
   SECTIONS / LAYOUT GENERAL
   ============================================== */

section {
    padding: 4.5rem 1.5rem !important;
}

.section-header {
    max-width: 750px;
    margin: 0 auto 2.8rem;
    text-align: center;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 0.4rem;
}

.section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.6rem;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* ==============================================
   PROFESSIONAL HERO SLIDER
   ============================================== */

.hero-section {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
    padding: 0px 4% 50px;
    background-image: url(../images/slider.png);
    background-size: cover;
    background-repeat: no-repeat;

}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 64, 66, 0.85);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 20px 5% 20px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.hero-slide.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

/* Content animations */
.hero-slide.active .hero-badge,
.hero-slide.active .hero-title,
.hero-slide.active .hero-description,
.hero-slide.active .hero-features,
.hero-slide.active .hero-cta,
.hero-slide.active .trust-badges {
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.hero-slide.active .hero-badge {
    animation-delay: 0.2s;
}
.hero-slide.active .hero-title {
    animation-delay: 0.3s;
}
.hero-slide.active .hero-description {
    animation-delay: 0.4s;
}
.hero-slide.active .hero-features {
    animation-delay: 0.5s;
}
.hero-slide.active .hero-cta {
    animation-delay: 0.6s;
}
.hero-slide.active .trust-badges {
    animation-delay: 0.7s;
}

.hero-slide.active .hero-visual {
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    background-color: rgba(13, 64, 66, 0.55);
    padding: 2rem;
    border-radius: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-teal);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: white;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-professional {
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-primary-pro {
    background: var(--gradient-teal);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary-pro:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-pro i {
    transition: transform 0.3s ease;
}

.btn-primary-pro:hover i {
    transform: translateX(4px);
}

.btn-outline-pro {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-pro:hover {
    background: var(--accent-teal-light);
    color: white;
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 2px solid var(--light-gray);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 0.7;
}

.slider-dot.active {
    background: #fff;
    width: 40px;
    border-radius: 6px;
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    color: var(--primary-navy);
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }


/* ==============================================
   STATS SECTION
   ============================================== */

.stats {
    padding: 2rem 2rem;
    background: white;
    
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.stat-card {
    text-align: center;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(29, 76, 124, 0.15) 0%, rgba(29, 76, 124, 0.35) 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center;
    cursor: pointer;
    align-content: center;
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(43, 122, 120, 0.15) 0%, rgba(43, 122, 120, 0.35) 100%);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(196, 119, 60, 0.18) 0%, rgba(196, 119, 60, 0.45) 100%);
}

.stat-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(226, 227, 229, 0.45) 0%, rgba(226, 227, 229, 0.85) 100%);
}

.stat-card:hover {
    transform: translateY(-8px) rotate(3deg) scale(1.03) !important;
    box-shadow: 0 20px 50px rgba(26, 35, 50, 0.20);
}

.stat-card h3,
.stat-card p {
    color: #1A2332;
}


/* ==============================================
   SERVICES SECTION - ACCORDION STYLE
   ============================================== */

.services {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(43, 122, 120, 0.05), transparent);
    pointer-events: none;
}

.engagement-options-wrapper {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.engagement-option {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.4rem 1.4rem 1.4rem 2rem;
    background: #ffffff;
    border-radius: 14px;
    border-left: 6px solid var(--accent-teal);
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
    position: relative;
}

.engagement-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(26, 35, 50, 0.1);
    border-left-color: var(--primary-navy);
}

.engagement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.engagement-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.engagement-option.is-active .engagement-header h3 {
    color: var(--accent-teal);
}

.toggle-icon {
    font-size: 1.1rem;
    color: var(--accent-teal);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.engagement-option.is-active .toggle-icon {
    transform: rotate(180deg);
}

.engagement-content {
    /* Base style for collapsed state */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease;
    opacity: 0;
    padding-top: 0;
}

.engagement-option.is-active .engagement-content {
    max-height: 500px; /* Large enough to accommodate content */
    opacity: 1;
    padding-top: 0.75rem;
}

.engagement-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.engagement-content ul {
    margin-top: 0.5rem;
    padding-left: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.engagement-content li {
    list-style: none;
    position: relative;
    font-size: 0.93rem;
    color: var(--text-dark);
}

.engagement-content li::before {
    content: "•";
    font-weight: bold;
    color: var(--accent-teal);
    position: absolute;
    left: -1rem;
    top: 0; 
}


/* ==============================================
   ABOUT SECTION
   ============================================== */

.about-meet {
    background: #f1f1ff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* 40% Left, 60% Right */
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    
    /* Strict Top Alignment */
    align-items: start;
    align-content: start;
}

.about-image {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: white;
    width: 100%;
    max-width: 440px;
    height: auto;
    max-height: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.about-img-wrapper:hover {
    box-shadow: 0 40px 80px rgba(0, 90, 135, 0.3);
    transform: translateY(-10px);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    max-height: 520px;
    display: block;
    object-fit: contain;
    object-position: center top;
    border-radius: 18px;
    background: transparent;
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    right: -30px;
    background: var(--gradient-teal);
    color: white;
    padding: 1.35rem 1.6rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(43, 122, 120, 0.3);
    transform: translateZ(30px);
}

.experience-badge h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: white;
}

.experience-badge p {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: white;
    line-height: 20px;
}

.about-text {
    /* Removes any default spacing to ensure alignment with image top */
    padding-top: 0;
    margin-top: 0;
}

.about-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    margin-top: 0; /* Ensures heading starts at very top */
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-text strong {
    color: var(--text-dark);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(43, 122, 120, 0.08), rgba(74, 144, 226, 0.08));
    border-left: 4px solid var(--accent-teal);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

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


/* ==============================================
   PROCESS SECTION
   ============================================== */

.process {
    background: white;
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent-teal);
    transition: all 0.3s ease;
}

.process-step:hover::after {
    transform: translateY(-50%) translateX(5px);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(43, 122, 120, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover .process-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(43, 122, 120, 0.5);
}

.process-step h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.8;
}


/* ==============================================
   TESTIMONIALS
   ============================================== */

.testimonials {
    background: var(--accent-teal-light);
}
.testimonials .section-header, .testimonials .section-header h2 {
    color: #fff;
}
.testimonials .section-header p {
    color: #d1d5db;
}
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-item {
    display: none;
    background: var(--glass-bg);
    color: #333;
    border-radius: 20px;
    padding: 2.3rem 2rem;
    box-shadow: var(--shadow-soft);
}
.testimonial-item.active {
    display: block;
}
.testimonial-text {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.author-image {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.25);
    font-weight: 600;
}
.author-info h4 {
    font-size: 0.95rem;
}
.author-info p {
    font-size: 0.82rem;
    color: var(--accent-teal);
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
}
.testimonial-dot.active {
    width: 26px;
    background: #fff;
}


/* ==============================================
   CONTACT
   ============================================== */

.contact {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.contact-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
}

/* --- LEFT INFO CARD --- */
.contact-info {
    background: linear-gradient(135deg, #E59F62 0%, #CB5800 45%, #9F4A07 100%);
    color: #fff;
    border-radius: 18px;
    padding: 2.2rem 2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
    transition: .25s ease;
}

.info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: .25s ease;
}

.info-item:hover .info-icon {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.65);
    transform: scale(1.1);
}

.info-item:hover h4,
.info-item:hover p {
    color: #ffffff;
}

.info-content h4 {
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.info-content p,
.info-content a {
    font-size: 0.86rem;
    color: #FEF3E7;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.1rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #ffffff;
    color: #CB5800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: .25s ease;
}

.social-links a:hover {
    background: #1D4C7C;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- RIGHT FORM CARD --- */
.contact-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.1rem 1.9rem;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #f9fafb;
    padding: 0.7rem 0.8rem;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-teal);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(43, 122, 120, 0.16);
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    border-radius: 999px;
    background: var(--accent-teal);
    color: #f9fafb;
    border: none;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: .25s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(43,122,120,0.25);
}


/* ==============================================
   FOOTER
   ============================================== */

footer {
    background: #020617;
    color: #e5e7eb;
    padding: 2.5rem 1.5rem 2rem;
}
.footer-content {
    max-width: 1180px;
    margin: 0 auto 1.8rem;
    display: grid;
    grid-template-columns: 1.7fr repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
}
.footer-about p {
    font-size: 0.88rem;
    color: #9ca3af;
}
.footer-tagline {
    margin-top: 0.3rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
}
.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.footer-links ul {
    list-style: none;
}
.footer-links li + li {
    margin-top: 0.2rem;
}
.footer-links a {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: none;
}
.footer-links a:hover {
    color: #f9fafb;
}
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    border-top: 1px solid #111827;
    padding-top: 0.9rem;
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
}

/* ==============================================
   SCROLL TO TOP
   ============================================== */

.scroll-top {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: #0f172a;
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}


/* Remove underline + color for clickable rows in contact */
.info-clickable {
    display: flex;
    text-decoration: none !important;
    color: inherit !important;
    align-items: center;
    border-radius: 10px;
    transition: .25s ease;
}
.info-clickable h4,
.info-clickable p {
    text-decoration: none !important;
    color: #fff !important;
}


/* ==============================================
    CLIENT INTAKE SECTION (NEW)
   ============================================== */
.client-intake-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.intake-header {
    text-align: center;
    margin-bottom: 3rem;
}
.intake-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 0.8rem;
}
.intake-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}
.intake-header p {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.intake-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(43, 122, 120, 0.1);
}
.intake-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}
.intake-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-teal-light), var(--accent-teal));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(43, 122, 120, 0.3);
}
.intake-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 700;
}
.intake-description {
    background: linear-gradient(135deg, rgba(43, 122, 120, 0.05), rgba(74, 144, 226, 0.05));
    border-left: 4px solid var(--accent-teal);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}
.intake-description p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}
.intake-description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}
.intake-description li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.95rem;
}
.intake-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 800;
    font-size: 1.1rem;
}
.google-form-embed {
    width: 100%;
    min-height: 1200px;
    border: none;
    border-radius: 12px;
    background: #f9fafb;
}
.intake-cta {
    text-align: center;
    margin-top: 2rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--accent-teal);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(43, 122, 120, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(43, 122, 120, 0.4);
}


/* ==============================================
   RESPONSIVE LAYOUT
   ============================================== */

/* Large tablets and below (1024px) */
@media (max-width: 1200px) {
  .hero-section {
    padding: 100px 1.5rem 50px;
    background-image:
      linear-gradient(135deg, rgb(13, 64, 66) 0%, #0d6065 100%),
      url('../images/slider-phone.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
  }
  .hero-section::before {
    opacity: 1;
  }
  .hero-section h1,
  .hero-section p,
  .hero-section .btn,
  .hero-section * {
    color: #ffffff !important;
  }
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 2.6rem;
    line-height: 1.25;
    max-width: 620px;
  }
  .hero-description {
    font-size: 1.05rem;
    max-width: 600px;
  }
  .hero-cta a {
    padding: 0.85rem 1.7rem;
    font-size: 0.95rem;
  }
  .hero-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    gap: 0.4rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
  }
  .slider-arrow.prev { left: 16px; }
  .slider-arrow.next { right: 16px; }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tablets and small devices (768px) */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 1.25rem;
  }
  .hero-section {
    padding: 100px 1.2rem 40px;
    background-position: center;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
  }
  .hero-description {
    font-size: 0.98rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .hero-cta a {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle-label {
    display: flex;
  }
  
  /* Engagement Options Mobile */
  .engagement-option {
    padding: 1.6rem 1.4rem 1.6rem 1.6rem;
  }
  .engagement-option h3 {
    font-size: 1.25rem;
  }
  .engagement-option li {
    font-size: 0.85rem;
  }
  
  /* Contact / Intake Mobile */
  .intake-card {
    padding: 1.8rem 1.4rem;
  }
  .intake-header h2 {
    font-size: 1.6rem;
  }
  .google-form-embed {
    min-height: 1500px;
  }
}

/* Small phones (600px) */
@media (max-width: 600px) {
  .hero-section {
    padding-top: 120px;
    background-size: 120%;
  }
}

/* Mobile phones (480px) */
@media (max-width: 480px) {
  .hero-section {
    min-height: unset;
    padding-top: 10px !important;
    padding-bottom: 20px !important;
    background-size: cover;
    background-position: top center;
  }
  .hero-content {
    margin: 0 auto;
    text-align: left;
    gap: 0.5rem;
    padding: 10px;
  }
  .hero-badge {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.7rem !important;
    border-radius: 999px;
    gap: 0.35rem;
    margin-bottom: 0.55rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  }
  .hero-badge i {
    font-size: 0.95rem;
  }
  .hero-tagline {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.85rem !important;
    border-radius: 999px;
    margin-bottom: 0.5rem;
  }
  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
    width: 100%;
  }
  .hero-title strong {
    font-size: 1.78rem !important;
  }
  .hero-description {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
  }
  .hero-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
  }
  .hero-cta a {
    width: 100%;
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
  }
  .slider-arrow {
    display: none !important;
  }
  .stat-card {
    padding: 1.8rem 1.4rem;
  }
  .contact-info,
  .contact-form {
    padding: 1.6rem 1.4rem;
  }
  .section-label {
    font-size: 0.7rem !important;
    letter-spacing: 1.8px !important;
    margin-bottom: 0.6rem;
  }
  .section-header h2,
  .service-card h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.8rem !important;
  }
  .section-header p,
  .service-intro {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    max-width: 90%;
  }
  .service-card li {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
    padding: 0.5rem 1.75rem !important;
  }
  .service-card li::before {
    font-size: 0.95rem !important;
  }
  .service-card {
    padding: 1.6rem 1.2rem !important;
    border-radius: 18px;
  }
}




/* ==============================================
   ZIG-ZAG SERVICES SECTION
   ============================================== */

.services-zigzag {
    background: var(--light-gray);
    padding: 5rem 1.5rem;
}

.zigzag-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Gap between service rows */
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% Image, 50% Text */
    gap: 4rem;
    align-items: center; /* Vertically center the text */
}

/* ZIG-ZAG LOGIC: Every EVEN child (2nd, 4th) swaps direction */
.service-item:nth-child(even) .service-image {
    order: 2; /* Image moves to right */
}
.service-item:nth-child(even) .service-content {
    order: 1; /* Text moves to left */
}

/* Image Styling */
.service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.service-item:hover .service-image img {
    transform: scale(1.02);
}

/* Content Styling */
.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Accordion Trigger Button */
.zigzag-toggle-btn {
    background: transparent;
    border: none;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: color 0.3s ease;
}

.zigzag-toggle-btn i {
    transition: transform 0.3s ease;
}

.service-item.active .zigzag-toggle-btn i {
    transform: rotate(180deg);
}

/* Hidden Details (Accordion) */
.service-hidden-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* Smooth Transition */
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out; 
}

.service-item.active .service-hidden-details {
    max-height: 1000px; /* Big enough to fit content */
    opacity: 1;
    margin-top: 1.5rem;
}

/* Bullet Points inside Hidden Area */
.service-hidden-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-hidden-details li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-hidden-details li::before {
    content: "•";
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Link Button */
.btn-text-arrow {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}

.btn-text-arrow:hover {
    color: var(--accent-teal);
    gap: 12px;
}

.service-cta-block {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
    font-size: 0.95rem;
    color: var(--primary-navy);
}

.service-cta-block strong {
    display: block;
    margin-bottom: 0.5rem;
}

/* Update this part in your CSS */

.service-image img {
    width: 100%;
    height: 350px; /* Fixed Height: इससे सारी इमेज एक बराबर दिखेंगी */
    object-fit: cover; /* इससे इमेज कटेगी नहीं, बस फिट हो जाएगी */
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Mobile के लिए हाइट थोड़ी कम कर सकते हैं */
@media (max-width: 900px) {
    .service-image img {
        height: 250px;
    }
}
/* ==============================================
   RESPONSIVE (MOBILE)
   ============================================== */
@media (max-width: 900px) {
    .service-item {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 2rem;
    }

    /* Reset order so Image is always TOP on mobile */
    .service-item:nth-child(even) .service-image {
        order: unset; 
    }
    .service-item:nth-child(even) .service-content {
        order: unset;
    }
    
    .zigzag-wrapper {
        gap: 4rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
}


/* Hero card */
.hero-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 1.3rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.hero-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-photo {
  width: 96px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}
.hero-photo img {
  width: 100%;
  height: auto
  /* object-fit: cover; */
}
.hero-profile-text h2 {
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}
.hero-role {
  font-size: 0.85rem;
  color: var(--accent-teal);
  margin-bottom: 0.4rem;
}
.hero-profile-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.metric {
  padding: 0.8rem 0.7rem;
  border-radius: 14px;
  background: #f9fafb;
  text-align: left;
}
.metric-num {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
}
.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ==============================================
   NEW "MEET SAPNA" DESIGN (Reference Style)
   ============================================== */

:root {
    --sapna-bg-soft: #fff6f3; /* Soft Peach/Warm background */
    --sapna-text-dark: #2c3e50;
    --sapna-accent: #d88d7f; /* Muted Terra-cotta/Pinkish accent to match reference */
    --sapna-teal: #2B7A78;    /* Keeping your brand teal for small accents */
}

/* .meet-sapna-section {
    width: 100%;
    font-family: 'Inter', sans-serif; 
} */

/* --- TOP HERO SECTION --- */
.sapna-hero {
    background: linear-gradient(180deg, var(--sapna-bg-soft) 0%, #fffbf9 100%);
    padding: 4rem 2.5rem 6rem 2.5rem; /* Large bottom padding for flow */
    position: relative;
}

.sapna-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Left Text Side */
.hero-text {
    flex: 1;
    max-width: 550px;
}

.eyebrow-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--sapna-accent);
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif; /* Use a Serif font for the "Hi" to match image */
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--sapna-accent); /* Using the pinkish color for headline */
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #556b79;
    margin-bottom: 2rem;
}

.hero-signature p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sapna-teal);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
    display: inline-block;
}

/* Right Image Side (The Arch) */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.arch-frame {
    width: 100%;
    max-width: 380px;
    height: 500px; /* Fixed height for the arch look */
    /* THIS CREATES THE ARCH SHAPE */
    border-radius: 200px 200px 20px 20px; 
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    border: 5px solid #fff; /* White border like a photo frame */
}

.arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the arch without stretching */
    object-position: top center; /* Focus on face */
    transition: transform 0.5s ease;
}

.arch-frame:hover .arch-img {
    transform: scale(1.03);
}

/* ==============================================
   MEET SAPNA SECTION (Exact Content Fit)
   ============================================== */

:root {
    --sapna-bg-soft: #fff6f3; /* Soft Peach background like reference */
    --sapna-text-dark: #2c3e50;
    --sapna-accent: #d88d7f; /* Muted Terra-cotta/Pinkish accent */
    --sapna-teal: #2B7A78;    /* Your Brand Teal */
}

.meet-sapna-section {
    width: 100%;
    font-family: 'Inter', sans-serif;
}

/* --- HERO SECTION --- */
.sapna-hero {
    background: linear-gradient(180deg, var(--sapna-bg-soft) 0%, #fffbf9 100%);
    padding: 5rem 1.5rem 6rem 1.5rem;
    position: relative;
}

.sapna-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Text wider than image */
    gap: 4rem;
    align-items: center;
}

.eyebrow-text {
    display: block;
    color: var(--sapna-teal);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* ARCH IMAGE STYLE */
.hero-image-container {
    display: flex;
    justify-content: center;
}

.arch-frame {
    width: 100%;
    max-width: 400px;
    height: 520px;
    /* THE ARCH SHAPE */
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 8px solid #fff;
}

.arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.arch-frame:hover .arch-img {
    transform: scale(1.03);
}

/* --- WHITE CONTENT SECTION --- */
.sapna-narrative {
    background: #ffffff;
    padding: 4rem 1.5rem;
}

.narrative-content {
    max-width: 850px;
    margin: 0 auto;
}

.narrative-content p {
    color: #4a5568;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.lead-paragraph {
    font-size: 1.15rem;
    color: #2d3748;
    font-weight: 500;
}

/* QUOTE BOX */
.highlight-quote-box {
    background: linear-gradient(135deg, rgba(43, 122, 120, 0.06), rgba(216, 141, 127, 0.08));
    border-left: 4px solid var(--sapna-teal);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    text-align: center;
}

.quote-text {
    font-size: 1.2rem !important;
    font-style: italic;
    color: var(--sapna-text-dark);
    margin: 0 !important;
}

/* SERVICES LIST */
.services-block {
    margin: 3rem 0;
}

.services-block h3 {
    font-family: 'Playfair Display', serif;
    color: var(--sapna-teal);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.custom-check-list {
    list-style: none;
    padding: 0;
}

.custom-check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.custom-check-list li::before {
    content: '✔'; /* You can replace this with a FontAwesome icon if you have it */
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--sapna-accent); /* Checkmark color */
    font-weight: bold;
}

/* PERSONAL SECTION */
.divider-line {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 3rem 0;
}

.personal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--sapna-accent);
    margin-bottom: 1.5rem;
}

.final-cta {
    margin-top: 2rem;
    font-weight: 700;
    color: var(--sapna-teal) !important;
    font-size: 1.2rem !important;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .sapna-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .arch-frame {
        height: 400px;
        max-width: 300px;
        margin: 0 auto;
    }

    .custom-check-list li {
        text-align: left; /* Keep list left aligned on mobile */
    }
}





/* ==============================================
   ENGAGEMENT OPTIONS (Modern Crystal UI)
   ============================================== */

/* --- Section & Background --- */
.engagement-section {
    position: relative;
    padding: 3rem 1.5rem;
    background: #f8fbfb; /* Very light base */
    overflow: hidden;
}

/* Ambient Blobs for Glass Effect */
.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(43, 122, 120, 0.15); /* Teal tint */
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(216, 141, 127, 0.15); /* Peach/Terra tint */
}

.glass-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

/* --- Typography --- */
.section-header-crystal {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem auto;
}

.badge-pill {
    background: rgba(43, 122, 120, 0.1);
    color: var(--sapna-teal);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header-crystal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(45deg, #2c3e50, #2B7A78);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text-crystal {
    font-size: 1.15rem;
    color: #556b79;
    line-height: 1.8;
}

/* --- The Crystal Grid --- */
.crystal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

/* --- Crystal Card Logic --- */
.crystal-card {
    background: rgba(255, 255, 255, 0.75); /* Semi-transparent */
    backdrop-filter: blur(12px);         /* The Frosted Glass Blur */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5); /* Inner shine */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.crystal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(43, 122, 120, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

/* Optional: Make the middle card pop */
.featured-card {
    border: 1px solid rgba(43, 122, 120, 0.3);
    background: rgba(255, 255, 255, 0.85);
}

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

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--sapna-teal);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.crystal-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.role-subtitle {
    font-size: 0.9rem;
    color: var(--sapna-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.desc {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.crystal-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.crystal-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Custom bullet points */
.crystal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sapna-teal);
    box-shadow: 0 0 10px rgba(43, 122, 120, 0.4);
}

/* --- Buttons --- */
.card-action {
    margin-top: 2rem;
}

.btn-crystal {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--sapna-teal);
    background: transparent;
    color: var(--sapna-teal);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-crystal:hover {
    background: rgba(43, 122, 120, 0.05);
}

.btn-crystal.filled {
    background: var(--sapna-teal);
    color: white;
    box-shadow: 0 10px 20px rgba(43, 122, 120, 0.2);
    border: none;
}

.btn-crystal.filled:hover {
    background: #236361; /* Darker shade */
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(43, 122, 120, 0.3);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .section-header-crystal h2 {
        font-size: 2.2rem;
    }
    .crystal-grid {
        grid-template-columns: 1fr;
    }
}





/* ==============================================
   COMPACT & ALIGNED UI (Google Form Style)
   ============================================== */

:root {
    --sapna-teal: #2B7A78;
    --sapna-bg: #f0ebf8;
    --error-red: #d93025;
    --text-main: #202124;
    --text-light: #5f6368;
    --focus-blue: #1a73e8; 
    --glass-bg: rgba(255, 255, 255, 0.95);
}


/* --- SECTION CONTAINERS --- */
.intake-section {
    padding: 3rem 1rem;
    max-width: 800px; /* Thoda wide kiya taaki cramped na lage */
    margin: 0 auto;
}

/* --- ENGAGEMENT CARDS (Compact Crystal) --- */
.section-header-crystal {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header-crystal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* Smaller heading */
    color: var(--sapna-teal);
    margin-bottom: 0.5rem;
}

.lead-text-crystal {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.crystal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Smaller cards */
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.crystal-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.crystal-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

.crystal-card h3 {
    font-size: 1.1rem;
    color: var(--sapna-teal);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.crystal-card .desc { font-size: 0.85rem; color: #555; margin-bottom: 1rem; }

.crystal-list { padding-left: 0; list-style: none; }
.crystal-list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    color: #444;
}
.crystal-list li::before {
    content: '•'; color: var(--sapna-teal); position: absolute; left: 0; font-weight: bold;
}

/* --- FORM CONTAINER --- */
.form-glass-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.form-header-bar {
    height: 10px;
    background: var(--sapna-teal);
    width: 100%;
}

.form-header-content {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    background: white;
}

.form-header-content h2 { font-size: 1.8rem; margin-bottom: 0.5rem; color: #202124; }
.form-header-content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.5rem; }

/* --- QUESTION CARDS --- */
.form-step { padding: 1.5rem; display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.section-divider-title {
    background: var(--sapna-teal);
    color: white;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    margin: 1.5rem 0 1rem 0;
}

.question-card {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 1.25rem; /* Compact padding */
    margin-bottom: 1rem; /* Less gap between questions */
    position: relative;
    transition: box-shadow 0.2s;
    border-left: 4px solid #dadce0;
}

.question-card:focus-within {
    border-left: 4px solid var(--focus-blue);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.question-card label {
    font-weight: 500;
    font-size: 0.95rem; /* Balanced Label Size */
    margin-bottom: 0.8rem;
    display: block;
    color: #202124;
}

.req { color: var(--error-red); margin-left: 3px; }

/* --- INPUTS & TEXT AREAS --- */
.text-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 6px 0;
    font-size: 0.9rem;
    outline: none;
    background: transparent;
    transition: border 0.3s;
}

.text-input:focus { border-bottom: 2px solid var(--sapna-teal); background: #f8fcfc; }
.text-input::placeholder { color: #ccc; }

/* --- RADIO & CHECKBOX ALIGNMENT (FIXED) --- */
.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem; /* Compact gap */
}

.radio-row {
    display: flex;
    align-items: flex-start; /* Aligns top if text wraps */
    cursor: pointer;
    font-size: 0.9rem;
    color: #3c4043;
    padding: 2px 0;
}

/* Custom Input Styling to align properly */
.radio-row input[type="radio"], 
.radio-row input[type="checkbox"] {
    margin-top: 2px; /* Slight push to align with text line-height */
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--sapna-teal);
    flex-shrink: 0; /* Prevents squishing */
    cursor: pointer;
    position: absolute;
}

.radio-row span {
    line-height: 1.5;
    margin-left: 30px;
}

/* --- OTHER FIELD STYLING --- */
.other-row {
    align-items: center; 
    flex-wrap: wrap; 
}

.inline-other {
    border: none;
    border-bottom: 1px dotted #ccc;
    margin-left: 8px;
    padding: 4px 0;
    flex-grow: 1;
    font-size: 0.9rem;
    min-width: 150px;
}
.inline-other:focus { border-bottom: 2px solid var(--sapna-teal); outline: none; }
.inline-other:disabled { background: transparent; cursor: default; opacity: 0.6; }

/* --- ERROR STATES --- */
.question-card.error-state .text-input { border-bottom: 2px solid var(--error-red); }
.question-card.error-state label { color: var(--error-red); }
.error-msg {
    color: var(--error-red);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
    align-items: center;
}
.error-msg::before { content: '⚠'; margin-right: 6px; font-size: 14px; }
.question-card.error-state .error-msg { display: flex; }

/* --- NAVIGATION --- */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.nav-btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.nav-btn.primary { background: var(--sapna-teal); color: white; }
.nav-btn.secondary { background: transparent; color: var(--sapna-teal); }
.nav-btn:disabled { color: #ccc; cursor: not-allowed; }

/* Progress Bar */
.progress-container { flex-grow: 1; margin: 0 2rem; display: flex; flex-direction: column; gap: 4px; }
.progress-track { height: 4px; background: #e0e0e0; border-radius: 2px; width: 100%; }
.progress-fill { height: 100%; background: var(--sapna-teal); width: 20%; transition: width 0.3s; }
.progress-text { font-size: 0.75rem; color: #777; text-align: right; }

/* --- TOGGLE SWITCH --- */
.switch { position: relative; display: inline-block; width: 40px; height: 20px; margin-left: auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 14px; width: 14px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--sapna-teal); }
input:checked + .slider:before { transform: translateX(20px); }

/* RESPONSIVE */
@media (max-width: 600px) {
    .nav-buttons { flex-direction: column-reverse; gap: 1rem; }
    .progress-container { width: 100%; margin: 0; }
    .form-header-content h2 { font-size: 1.5rem; }
}

/* ==============================================
   HOME & ABOUT STYLES (Based on Content)
   ============================================== */

:root {
    --primary-navy: #2c3e50;
    --primary-teal: #2B7A78;
    --highlight-gold: #f1c40f; /* Yellow/Gold marker style */
    --bg-gray: #f9f9f9;
}

/* --- HERO SECTION --- */
/* .hero-section-2 {
    padding: 5rem 1.5rem;
    background: var(--bg-gray);
    text-align: center;
    url(../images/wave.mp4)
} */
.hero-section-2 {
    position: relative; /* Zaroori hai */
    padding: 5rem 1.5rem;
    text-align: center;
    overflow: hidden; /* Video bahar na nikle */
    /* background: var(--bg-gray); Fallback color agar video na chale */
}

/* Video Container */
.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Content ke piche */
}

/* Actual Video */
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Background-size: cover jaisa kaam karega */
}

/* Light Overlay (White layer) */
.light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* 80% White opacity */
    z-index: 1;
}

/* Text ko video ke upar lane ke liye */
.content-relative {
    position: relative;
    z-index: 2; /* Video (0) aur Overlay (1) ke upar */
}
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.tagline-pill {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    background: #e0f2f1;
    padding: 6px 16px;
    border-radius: 20px;
}

.hero-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.sub-headline {
    font-size: 1.25rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 3rem;
}

.hero-body {
    text-align: left; /* Better readability */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.highlight-gold {
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, #fff176 50%);
    font-weight: 700;
    padding: 0 4px;
    line-height: 20px;
}


/* Parent wrapper for both sections */
.bg-video-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
    padding: 0;
}

/* Video container */
.video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Video */
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* White overlay */
.light-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

/* Content above video */
.content-relative {
    position: relative;
    z-index: 2;
}
.stats .section-header{
    position: relative;
}

/* Optional spacing */
/* .stats,
.hero-section-2 {
    padding: 5rem 1.5rem;
    text-align: center;
} */


/* --- ABOUT SECTION --- */
.about-section-new {
    padding: 5rem 1.5rem;
    background: var(--sapna-bg);
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-teal);
    margin-top: 8px;
}

.mission-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.mission-box {
    background: white;
    border-left: 5px solid var(--primary-teal);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1.2rem;
    color: var(--primary-navy);
}

.about-text-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

/* Image Frame */
.image-placeholder-frame {
    width: 100%;
    height: 450px;
    background: white;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    transform: rotate(2deg); /* Slight style tilt */
}

.sapna-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-header h1 { font-size: 2rem; }
    .split-layout { grid-template-columns: 1fr; }
    .image-placeholder-frame { height: 350px; transform: rotate(0deg); }
}