/* ==========================================
   SARTH - PREMIUM CORPORATE WEBSITE
   Modern Design System & Styles
   ========================================== */

:root {
    /* Color Palette - Warm & Inviting */
    --primary-orange: #F9A825;
    --primary-orange-dark: #F57C00;
    --primary-orange-light: #FFB74D;

    --cream-bg: #F5EFE7;
    --cream-light: #fff6e9;
    --white: #FFFFFF;
    --card-bg: #fff6e9;

    /* Ultra-light warm cream shades for sections */
    --section-bg-light: #FFFBF5;
    --section-bg-cream: #FFF6E9;
    --section-bg-warm: #FFEFD5;

    --text-primary: #2D2D2D;
    --text-secondary: #7D7D7D;
    --text-light: #A0A0A0;

    --border-light: #E8DFD6;
    --shadow-subtle: rgba(0, 0, 0, 0.08);

    /* Typography - Elegant Premium Fonts */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1400px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background: var(--cream-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ==========================================
   NAVIGATION - CLEAN & MODERN
   ========================================== */

.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 14px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 64px;
}

.nav-logo h1 {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    padding: 2px 0;
    transition: var(--transition-smooth);
    white-space: nowrap;
    line-height: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-orange);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--cream-bg);
    border-radius: 20px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 6px 10px;
    border-radius: 14px;
}

.lang-btn.active {
    color: var(--white);
    background: var(--primary-orange);
}

.lang-separator {
    color: var(--text-secondary);
    font-weight: 300;
}

.cta-btn {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.primary-cta {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(205, 127, 50, 0.25);
}

.primary-cta:hover {
    background: var(--primary-orange-dark);
    box-shadow: 0 4px 20px rgba(205, 127, 50, 0.4);
    transform: translateY(-1px);
}

.nav-right .cta-btn {
    width: 280px;
    /* Fixed width for exact language consistency */
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    /* Fixed height for alignment */
    padding: 0 10px;
    /* Reduced padding to rely on width */
    white-space: nowrap;
}

.secondary-cta {
    background: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.secondary-cta:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(205, 127, 50, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ==========================================
   HERO SECTION WITH CAROUSEL
   ========================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--section-bg-light);
    padding: 100px 48px 50px;
    position: relative;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-content {
    z-index: 10;
}

.hero-headline {
    font-family: var(--font-primary);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 26px;
    letter-spacing: -2px;
    min-height: 220px;
    /* Fixed height to prevent layout shift between languages */
    display: flex;
    align-items: center;
}

.hero-subheadline {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 400;
    min-height: 280px;
    /* Fixed height container for consistent spacing */
}

/* ==========================================
   INTIMATION BOX
   ========================================== */

.intimation-box {
    border-left: 4px solid var(--primary-orange);
    padding: 15px 25px;
    margin: 0 auto 30px;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

.intimation-box p {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hindi-specific adjustments for layout consistency */
body.lang-hi .hero-headline {
    font-size: 48px;
    /* Reduced from 58px to fit same height */
    line-height: 1.15;
    letter-spacing: -1px;
}

body.lang-hi .hero-subheadline {
    font-size: 17px;
    /* Reduced from 19px */
    line-height: 1.65;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   CAROUSEL STYLES
   ========================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.carousel-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 60px 40px 40px;
    color: var(--white);
}

.carousel-caption h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.carousel-caption p {
    font-size: 16px;
    opacity: 0.95;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.indicator.active {
    background: var(--white);
    width: 32px;
    border-radius: 5px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   VALUE PROPOSITION SECTION
   ========================================== */

.value-section {
    padding: var(--section-padding);
    background: var(--section-bg-cream);
}

.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 48px;
}

.section-headline {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 700;
    text-align: left;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.section-headline.white {
    color: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.value-card {
    background: var(--card-bg);
    padding: 36px 28px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(205, 127, 50, 0.15);
    border-color: rgba(205, 127, 50, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-orange);
    border-radius: 16px;
    margin-bottom: 22px;
    position: relative;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(205, 127, 50, 0.3);
}

/* WhatsApp Global Override (White Logo / Orange Bg) */
.value-card:first-child .value-icon {
    background-color: var(--primary-orange) !important;
    /* Official WhatsApp Path (FontAwesome) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='white'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") !important;
    background-size: 55% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: none !important;
}

/* AI Voice Screening Icon Global Override (White Logic / Orange Bg) */
.value-card:nth-child(2) .value-icon {
    background-color: var(--primary-orange) !important;
    /* Custom Icon: Just "AI" Text (Bold, Centered) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Arial, sans-serif' font-weight='bold' font-size='14' dy='1'%3EAI%3C/text%3E%3C/svg%3E") !important;
    background-size: 55% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: none !important;
}

/* Hide default geometric shapes for these specific cards */
.value-card:first-child .value-icon::before,
.value-card:nth-child(2) .value-icon::before,
.value-card:nth-child(3) .value-icon::before,
.value-card:nth-child(4) .value-icon::before,
.value-card:nth-child(5) .value-icon::before,
.value-card:nth-child(6) .value-icon::before {
    display: none !important;
}

/* 3. Selfie Virtual ID (Face/ID Scan) */
.value-card:nth-child(3) .value-icon {
    background-color: var(--primary-orange) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7V5a2 2 0 0 1 2-2h2'/%3E%3Cpath d='M17 3h2a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M21 17v2a2 2 0 0 1-2 2h-2'/%3E%3Cpath d='M7 21H5a2 2 0 0 1-2-2v-2'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M8 17v-1a4 4 0 0 1 8 0v1'/%3E%3C/svg%3E") !important;
    background-size: 55% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: none !important;
}

/* 4. Hyper-Local Matching (Map Pin) */
.value-card:nth-child(4) .value-icon {
    background-color: var(--primary-orange) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") !important;
    background-size: 55% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: none !important;
}

/* 5. Zero-Spam Talent Pipeline (Funnel/Filter) */
.value-card:nth-child(5) .value-icon {
    background-color: var(--primary-orange) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z'/%3E%3C/svg%3E") !important;
    background-size: 55% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: none !important;
}

/* 6. Full Compliance Shield (Shield/Check) */
.value-card:nth-child(6) .value-icon {
    background-color: var(--primary-orange) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E") !important;
    background-size: 55% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    border: none !important;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Elegant geometric icons */
.visual-icon::before {
    width: 24px;
    height: 24px;
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow:
        0 0 0 2px var(--white) inset,
        8px 0 0 -1px var(--white),
        -8px 0 0 -1px var(--white);
}

.ai-icon::before {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.7) 100%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%,
            79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.shield-icon::before {
    width: 26px;
    height: 30px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 0 2px var(--white) inset;
}

.geo-icon::before {
    width: 20px;
    height: 28px;
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: -6px 6px 0 -3px var(--white) inset;
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ==========================================
   OPERATIONAL ARCHITECTURE
   ========================================== */

.architecture-section {
    padding: var(--section-padding);
    background: var(--section-bg-warm);
}

.tabs-container {
    margin-top: 48px;
}

.tab-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    justify-content: center;
}

.tab-btn {
    flex: 1;
    max-width: 380px;
    padding: 22px 32px;
    background: var(--white);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
    text-align: left;
}

.tab-btn span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.tab-btn small {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.tab-btn.active {
    background: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(205, 127, 50, 0.25);
}

.tab-btn.active span,
.tab-btn.active small {
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-intro {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-orange-dark);
    text-align: center;
    margin-bottom: 44px;
    padding: 18px;
    background: rgba(205, 127, 50, 0.08);
    border-radius: 14px;
    border-left: 3px solid var(--primary-orange);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 0;
}

/* Vertical timeline connector REMOVED */
.flow-steps::before {
    display: none;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--card-bg);
    border-radius: 20px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 0;
    margin-left: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.flow-step:nth-child(1) {
    animation-delay: 0.1s;
}

.flow-step:nth-child(2) {
    animation-delay: 0.2s;
}

.flow-step:nth-child(3) {
    animation-delay: 0.3s;
}

.flow-step:nth-child(4) {
    animation-delay: 0.4s;
}

.flow-step:nth-child(5) {
    animation-delay: 0.5s;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.flow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(205, 127, 50, 0.25);
    border-left-width: 6px;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(205, 127, 50, 0.4);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
    z-index: 2;
    border: 4px solid var(--card-bg);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    opacity: 0.3;
    animation: ringPulse 3s ease-in-out infinite;
    z-index: -1;
}

.step-content {
    flex: 1;
    padding-left: 8px;
}

.step-content h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-arrow {
    display: none;
}

.step-content p:not(.flow-arrow) {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.8;
    }

    20% {
        transform: translateX(-50%) translateY(-8px) scale(1.1);
        opacity: 1;
    }

    40% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) translateY(4px) scale(0.95);
        opacity: 0.7;
    }

    60% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.8;
    }
}

@keyframes timelinePulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

/* ==========================================
   ENTERPRISE TIERS
   ========================================== */

.tiers-section {
    padding: var(--section-padding);
    background: var(--section-bg-light);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.tier-card {
    background: var(--card-bg);
    padding: 40px 36px;
    border-radius: 24px;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.tier-card.featured {
    background: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 16px 48px rgba(205, 127, 50, 0.18);
}

.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tier-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 18px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(205, 127, 50, 0.35);
}

.tier-card h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tier-subtitle {
    font-size: 15px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 26px;
}

.tier-best-for,
.tier-mechanics,
.tier-value {
    margin-bottom: 22px;
}

.tier-best-for strong,
.tier-mechanics strong,
.tier-value strong {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.tier-best-for span,
.tier-mechanics p,
.tier-value p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ==========================================
   LEADERSHIP
   ========================================== */

.leadership-section {
    padding: var(--section-padding);
    background: var(--section-bg-cream);
}

.leadership-section .section-headline {
    margin-bottom: 32px;
}

.leadership-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    background: var(--card-bg);
    padding: 36px 32px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(205, 127, 50, 0.16);
}

.leader-avatar {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-orange) 100%);
    border-radius: 50%;
    margin: 0 auto 22px;
    position: relative;
}

.leader-avatar::before {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
}

.leader-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.leader-title {
    font-size: 15px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 4px;
}

.leader-credentials {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* About Content Detailed Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-content h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-orange-dark);
    margin: 32px 0 16px 0;
}

.about-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-list {
    margin: 20px 0 24px 20px;
    padding: 0;
    list-style-type: none;
}

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9em;
    /* Vertically centered with first line of 1.8 line-height text */
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-mission {
    font-size: 17px;
    line-height: 1.9;
    margin: 32px 0 24px 0;
    font-weight: 500;
    color: var(--text-primary);
}

.about-women-led {
    margin-top: 32px;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(249, 168, 37, 0.08), rgba(255, 182, 77, 0.08));
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.7;
}

.about-women-led em {
    font-style: normal;
}

.about-women-led strong {
    color: var(--primary-orange-dark);
    font-weight: 700;
}

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

.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--text-primary) 0%, #1A1A1A 100%);
    color: var(--white);
}

.contact-subheadline {
    font-size: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 54px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.12);
}

.form-group label {
    position: absolute;
    top: 14px;
    left: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group select:focus+label,
.form-group select:valid+label {
    top: -9px;
    left: 14px;
    font-size: 12px;
    background: var(--text-primary);
    padding: 0 6px;
    color: var(--primary-orange);
}

.form-group select option {
    background: var(--text-primary);
    color: var(--white);
}

/* Professional Phone Input Styles */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 50px;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.12);
}

.country-code-select {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    flex-shrink: 0 !important;
    border: none !important;
    background: transparent !important;
    padding: 0 5px 0 15px !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    height: 100% !important;
    cursor: pointer;
    color: var(--white);
}

.phone-input-wrapper input {
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 15px !important;
    flex: 1 !important;
    min-width: 0;
    /* Allow shrinking if needed, but flex:1 will expand it */
    height: 100% !important;
    color: var(--white);
    font-size: 15px;
}

/* Fix Label Overlap for Phone Group */
.phone-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Move the label to the right of the country code by default */
.phone-group label {
    left: 110px !important;
    z-index: 10;
    transition: var(--transition-smooth);
}

/* Float label to the corner when .active (focused or has value via JS) */
.phone-group.active label {
    top: -9px !important;
    left: 12px !important;
    font-size: 12px !important;
    background: var(--text-primary) !important;
    padding: 0 6px !important;
    color: var(--primary-orange) !important;
    opacity: 1 !important;
}

/* Fallback for better focus visibility */
.phone-input-wrapper:focus-within+label {
    top: -9px !important;
    left: 12px !important;
    font-size: 12px !important;
    background: var(--text-primary) !important;
}


.submit-btn {
    background: var(--primary-orange);
    color: var(--white);
    font-size: 15px;
    padding: 16px 36px;
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.35);
}

.submit-btn:hover {
    background: var(--primary-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.5);
}

.submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding-left: 60px;
}

/* Vertical separator line */
.contact-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(205, 127, 50, 0.3) 20%,
            rgba(205, 127, 50, 0.6) 50%,
            rgba(205, 127, 50, 0.3) 80%,
            transparent 100%);
}

.contact-info-header {
    margin-bottom: 8px;
}

.contact-info-header h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(205, 127, 50, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(205, 127, 50, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(205, 127, 50, 0.2);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(205, 127, 50, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card:hover .contact-card-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.5);
}

.contact-card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.contact-card:hover .contact-card-icon::before {
    opacity: 0.6;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.contact-label {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-value {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value:hover {
    color: var(--primary-orange);
}

.info-item {
    display: none;
}

.info-icon {
    display: none;
}

.info-icon::before {
    display: none;
}

.email-icon::before {
    display: none;
}

.web-icon::before {
    display: none;
}

.info-item a {
    display: none;
}

.info-item a:hover {
    display: none;
}

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

.footer {
    background: var(--cream-bg);
    /* Match site background */
    padding: 28px 48px;
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-container p {
    color: var(--text-primary);
    /* Changed to black/dark for visibility */
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-headline {
        font-size: 46px;
    }

    .hero-carousel {
        height: 450px;
    }

    .section-headline {
        font-size: 36px;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        max-width: 100%;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-left: 40px;
        gap: 24px;
    }

    .contact-info::before {
        left: 0;
    }

    .contact-info-header h3 {
        font-size: 20px;
    }

    .contact-card {
        padding: 20px;
        gap: 16px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 14px 24px;
    }

    .nav-logo h1 {
        font-size: 26px;
    }

    .nav-right .primary-cta {
        display: none;
    }

    .hero-section {
        padding: 110px 24px 50px;
    }

    .hero-headline {
        font-size: 38px;
    }

    .hero-subheadline {
        font-size: 17px;
    }

    .section-container {
        padding: 0 24px;
    }

    .section-headline {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        height: 350px;
    }

    .carousel-caption {
        padding: 40px 24px 24px;
    }

    .carousel-caption h3 {
        font-size: 22px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .flow-steps {
        padding-left: 48px;
    }

    .flow-steps::before {
        left: 24px;
        top: 48px;
    }

    .flow-step {
        flex-direction: row;
        padding: 24px;
        padding-left: 0;
        margin-bottom: 24px;
        margin-left: -24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-content h4 {
        font-size: 18px;
    }

    .step-content p:not(.flow-arrow) {
        font-size: 15px;
    }

    .tier-card {
        padding: 32px 24px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-16px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--shadow-subtle);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 168, 37, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Location Disclaimer Styling */
.location-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    width: 100%;
    margin-left: 5px;
    /* Shift slightly right per user request */
}

/* Fix for spacing below Office Location to make bars equidistant */
.address-form-group {
    margin-bottom: -28px !important;
    /* Pulls the next field up to compensate for disclaimer height */
}

/* Mobile Adjustments for Floating Buttons */
@media (max-width: 768px) {

    .whatsapp-float,
    .back-to-top {
        right: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 90px;
        width: 45px;
    }

    /* Professional 1-inch selector and alignment for mobile - HIGHEST SPECIFICITY */
    .contact-form .form-group select.country-code-select {
        width: 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        text-align: center !important;
        padding-left: 5px !important;
        padding-right: 20px !important;
        font-size: 14px !important;
        background-position: right 8px center !important;
        background-size: 12px !important;
    }

    /* Shift label and avoid overlaps with the 1-inch selector */
    .contact-form .form-group.phone-group label {
        left: 105px !important;
    }

    /* Float label to top-left on mobile */
    .contact-form .form-group.phone-group.active label,
    .contact-form .form-group.phone-group .phone-input-wrapper:focus-within+label {
        left: 12px !important;
    }

    /* Fix Overflow Bug: Ensure form containers don't exceed viewport */
    .contact-section,
    .contact-container,
    .contact-form-container,
    .contact-form {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ==========================================
   FULL PAGE HERO CAROUSEL (CENTERED OVERLAY)
   ========================================== */

.hero-carousel-full {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.carousel-track-full {
    width: 100%;
    height: 100%;
}

.carousel-slide-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
    display: block;
    /* No more flex split */
}

.carousel-slide-full.active {
    opacity: 1;
    z-index: 2;
}

/* --- Full Screen Background Image --- */

.slide-image-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Center default, can be tweaked */
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 8s ease-out;
    opacity: 0.15;
    /* Subtle texture effect blending into black - reduced per request */
}

.carousel-slide-full.active .slide-image-side {
    transform: scale(1);
}

/* --- Centered Content Overlay --- */

.slide-content-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: transparent;
    /* No overlay needed as image is dark */
    /* Minimal gradient overlay for text readability without hiding image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically Center */
    align-items: center;
    /* Horizontally Center */
    text-align: center;
    padding: 0 20px;
}

/* Remove old separate overlay class usage if any remain in HTML logic for effects */
.carousel-overlay {
    display: none;
}

/* --- Typography (Centered & Smaller) --- */

.slide-content-side h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    /* Reduced from 3.5rem */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for readability */
}

.slide-content-side p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

/* Specific to Slide 2 Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations Trigger */
.carousel-slide-full.active .slide-content-side h1,
.carousel-slide-full.active .slide-content-side p,
.carousel-slide-full.active .stats-row,
.carousel-slide-full.active .cta-btn {
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide-full.active .cta-btn {
    transition-delay: 0.7s;
}

/* --- Navigation & Indicators --- */

.carousel-indicators-full {
    position: absolute;
    bottom: 40px;
    left: 50%;
    /* Center */
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicators-full .indicator {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicators-full .indicator.active {
    background: var(--primary-orange);
    width: 80px;
}

/* Arrows (Far Edges) */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    /* Ensure above content overlay */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 40px;
    /* Far Left */
    bottom: unset;
    /* Remove previous split layout styles */
}

.carousel-arrow.next {
    right: 40px;
    /* Far Right */
    left: unset;
    bottom: unset;
}

/* Hindi Typography Adjustments */
body.lang-hi .slide-content-side h1 {
    font-size: 2.8rem;
    line-height: 1.3;
}

body.lang-hi .slide-content-side p {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .slide-content-side h1 {
        font-size: 2.5rem;
    }

    .carousel-indicators-full {
        left: 50%;
        /* Center on smaller screens */
    }

    /* On tablet, keep arrows or hide them? User wants arrows. */
    .carousel-arrow.prev {
        left: 20px;
        bottom: unset;
    }

    .carousel-arrow.next {
        right: 20px;
        left: unset;
        bottom: unset;
    }
}

@media (max-width: 768px) {
    .slide-content-side h1 {
        font-size: 2.2rem;
    }

    .carousel-arrow {
        display: none;
        /* Hide arrows on mobile to show full image */
    }

    .slide-content-side {
        background: rgba(0, 0, 0, 0.5);
        /* Slightly darker on mobile for readability */
    }
}

/* ==========================================
   MOBILE RESPONSIVENESS (Max-Width: 768px)
   ========================================== */

@media (max-width: 768px) {

    /* Global Typography Reductions */
    :root {
        --section-padding: 50px 0;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    p {
        font-size: 15px !important;
    }

    /* Navigation - Mobile Menu */
    .nav-container {
        padding: 10px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    /* Navigation - Mobile Menu (Floating Card) */
    .nav-menu {
        position: fixed;
        top: 80px;
        /* Below global nav */
        right: 20px;
        width: auto;
        min-width: 250px;
        /* Narrower width */
        max-width: 300px;
        height: auto;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 24px;
        z-index: 1001;

        /* Aesthetic Styling */
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(249, 168, 37, 0.1);
        border: 1px solid var(--cream-bg);

        /* Animation State: Hidden */
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s;
    }

    .nav-menu.active {
        /* Animation State: Visible */
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        visibility: visible;
        right: 20px;
    }

    .nav-link {
        font-family: var(--font-primary);
        font-size: 16px !important;
        /* Professional size */
        font-weight: 500;
        color: var(--text-primary);
        margin: 8px 0 !important;
        width: 100%;
        text-align: center;
        padding: 10px 16px;
        border-radius: 12px;
        transition: all 0.2s ease;
    }

    .nav-link:active {
        background-color: var(--cream-bg);
        color: var(--primary-orange);
    }

    /* Mobile Toggle Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Hero Section Stacking */
    .hero-container,
    .hero-carousel-full .split-layout {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: 80px;
    }

    .hero-headline {
        font-size: 36px !important;
        margin-bottom: 15px;
        justify-content: center;
        min-height: auto;
    }

    .hero-subheadline {
        font-size: 16px;
        min-height: auto;
    }

    .slide-image-side {
        height: 300px;
        /* Reduced height for mobile */
        width: 100%;
        order: -1;
        /* Image on top */
    }

    .slide-content-side {
        padding: 0 20px;
    }

    /* Stats Row - Side-by-Side on Mobile to save space */
    .stats-row {
        flex-direction: row;
        /* Changed from column to row as requested */
        gap: 20px;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 32px !important;
        /* Smaller size */
        line-height: 1.2;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Reduce Image Height to give more room for text */
    .slide-image-side {
        height: 250px;
        /* Reduced from 300px */
        width: 100%;
        order: -1;
    }

    .hero-container,
    .hero-carousel-full .split-layout {
        padding-top: 70px;
        /* Slightly less padding */
        gap: 20px;
        /* Reduced gap */
    }

    .hero-headline {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-subheadline,
    .slide-content-side p {
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    /* Ensure content is centered and doesn't cut */
    .slide-content-side {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-bottom: 40px;
    }

    /* Engagement Models (Tab Buttons) - Side-by-Side */
    .tab-buttons {
        flex-direction: row !important;
        gap: 10px;
        width: 100%;
        padding: 0;
    }

    .tab-btn {
        width: 50% !important;
        max-width: 50% !important;
        flex: 1;
        padding: 12px 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 80px;
        /* Ensure consistent height */
    }

    .tab-btn span {
        font-size: 15px;
        line-height: 1.2;
        margin-bottom: 4px;
        text-align: center;
    }

    .tab-btn small {
        font-size: 11px;
        text-align: center;
        opacity: 0.9;
    }

    /* Marquee for Long Label (Mobile Only) */
    .marquee-label {
        display: block !important;
        width: calc(100% - 36px);
        /* Adjust for padding */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: clip;
        pointer-events: none;
    }

    .marquee-text {
        display: inline-block;
        animation: mobileMarquee 15s linear infinite;
        padding-left: 100%;
        /* Start from outside */
        white-space: nowrap;
    }

    @keyframes mobileMarquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .feature-row,
    .about-container,
    .value-grid,
    .services-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        display: flex;
    }

    /* Feature Icons - WhatsApp Specific Override REMOVED from here to be global */

    /* Sections Spacing */
    .section-container {
        padding: 0 20px;
    }

    .service-card,
    .value-card,
    .step-content {
        padding: 24px 20px;
    }

    /* Footer Stacking */
    .footer-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    /* Hide Desktop Language/CTA in Nav if needed or adapt */
    .nav-right {
        display: flex !important;
        /* Show for language toggle */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        width: auto;
    }

    .nav-right .primary-cta {
        display: none;
        /* Hide CTA button on mobile */
    }

    /* Carousel Text Fix */
    .hero-headline {
        font-size: 24px !important;
        /* Reduce further to prevent clipping */
        line-height: 1.3;
        padding: 0 10px;
    }

    .carousel-slide-full {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        /* Allow scrolling if content is too tall */
        padding-bottom: 60px;
    }

    /* Contact Section Overflow Fix */
    .contact-section,
    .contact-container,
    .contact-form-container {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .intimation-box {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Flow Steps Alignment Fix (Mobile Only) */
    .flow-step {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
        /* Reduced for tighter spacing */
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .step-number {
        margin-bottom: 4px;
        /* Reduced from 10px */
    }

    .flow-arrow {
        display: none !important;
        /* Hide arrow on mobile if it messes up stacking */
    }

    .flow-steps::before {
        display: none !important;
        /* Hide connecting line on mobile */
    }

    .flow-steps {
        padding-left: 0 !important;
    }

    /* About Section Typography Fix (Mobile Only) */
    .about-content p,
    .about-list li {
        font-size: 15px !important;
        font-weight: 400 !important;
        line-height: 1.6 !important;
        color: var(--text-primary) !important;
        padding-left: 20px !important;
        /* Reduce gap between bullet and text */
    }

    .about-list li strong {
        font-weight: 700 !important;
        font-size: 15px !important;
        /* Match parent size */
    }

    /* Adjust bullet position for mobile */
    .about-list li::before {
        content: "";
        /* Ensure no inherited character */
        width: 6px;
        height: 6px;
        top: 0.8em;
        /* Adjusted for 1.6 mobile line-height */
        left: 0;
        background: var(--primary-orange);
        border-radius: 50%;
        transform: translateY(-50%);
    }

    /* Fix Hiring Volume Box Size (Mobile Only) */
    /* Fix Hiring Volume Box Size (Mobile Only) */
    .contact-form .form-group select {
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;

        height: 48px !important;
        min-height: 48px !important;
        max-height: 48px !important;
        /* Force constraint */
        box-sizing: border-box !important;

        padding: 0 18px !important;
        /* Reset padding and use line-height or flex to center? No, let's use balanced padding */
        padding-top: 13px !important;
        padding-bottom: 13px !important;
        /* 13+13+22 = 48? No. 13+13 = 26. 48-26=22px for text. Matches line height roughly. */

        font-size: 15px !important;
        line-height: normal !important;
        /* Reset line height */
        /* Actually, line-height: 1.5 was 22.5px. */

        background-color: rgba(255, 255, 255, 0.08) !important;
        border-radius: 12px !important;
        width: 100% !important;
        display: block !important;

        /* Custom Arrow */
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 14px center !important;
        background-size: 16px !important;
    }

    /* ==========================================
       CONTACT SECTION MOBILE SPACING FIX
       ========================================== */
    .contact-section .section-headline {
        margin-bottom: 10px !important;
        /* Reduced from default */
    }

    .contact-subheadline {
        margin-top: 5px !important;
        margin-bottom: 20px !important;
        /* Tightened gap before form */
        font-size: 14px !important;
    }

    .contact-form {
        margin-top: 0 !important;
        padding: 20px 15px !important;
        /* Slightly more compact padding */
    }

    /* ==========================================
       MOBILE CAROUSEL IMPROVEMENTS
       ========================================== */

    /* 1. Visibility: Increase Background Image Opacity */
    .slide-image-side {
        opacity: 0.5 !important;
        /* Increased from 0.15 */
    }

    /* 2. Layout: Center Content & Clear Sides */
    .slide-content-side {
        padding: 0 50px !important;
        /* clear sides for arrows */
    }

    /* 3. Text Wrapping: Constrain width */
    .slide-content-side h1 {
        max-width: 280px !important;
        /* Force wrapping */
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 28px !important;
        /* Ensure consistent readable size */
    }

    .slide-content-side p {
        max-width: 280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* 4. Navigation: Add Orange Circle Arrows */
    .carousel-arrow {
        display: flex !important;
        /* Unhide */
        width: 40px !important;
        height: 40px !important;
        background: transparent !important;
        border: 2px solid var(--primary-orange) !important;
        color: var(--primary-orange) !important;
        font-size: 20px !important;
        z-index: 20 !important;
        backdrop-filter: none !important;
    }

    .carousel-arrow:hover {
        background: var(--primary-orange) !important;
        color: white !important;
    }

    .carousel-arrow.prev {
        left: 10px !important;
    }

    .carousel-arrow.next {
        right: 10px !important;
    }

    /* 5. Background Fix: Full Screen Image (NO SPLIT) */
    .hero-carousel-full .split-layout {
        display: block !important;
        position: absolute !important;
        /* Changed from relative to absolute to fill container */
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .carousel-slide-full {
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        /* Prevent width overflow */
    }

    .slide-image-side {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        /* Behind content */
        opacity: 0.15 !important;
        /* Further reduced to 0.15 for max contrast */
        order: unset !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .slide-content-side {
        position: relative !important;
        z-index: 10 !important;
        /* Ensure on top */
        width: 100% !important;
        height: 100% !important;
        padding-top: 0px !important;
        /* Centered via flex */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        background: transparent !important;
    }

    /* Force Text Visibility (High Specificity) */
    .slide-content-side h1,
    .slide-content-side p,
    .slide-content-side .cta-btn,
    .slide-content-side .stat-label {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        color: white !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
        display: block !important;
    }

    /* Exception for stat number to allow box styling */
    .slide-content-side .stat-number {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        text-shadow: none !important;
        /* Display handled below */
    }

    /* Stats Row - Side-by-Side on Mobile */
    /* Stats Row - Side-by-Side on Mobile */
    .stats-row {
        display: flex !important;
        flex-direction: row !important;
        /* Side by side */
        flex-wrap: nowrap !important;
        /* Prevent wrapping */
        gap: 50px !important;
        /* "1 inch" separation */
        justify-content: center !important;
        align-items: flex-start !important;
        /* Align top */
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 15px !important;
    }

    .stat-item {
        display: flex !important;
        flex-direction: column !important;
        /* Number above label */
        align-items: center !important;
        flex: 0 0 auto !important;
        /* Don't grow, don't shrink */
        width: auto !important;
        /* Hug content */
        max-width: none !important;
    }

    .stat-number {
        font-size: 28px !important;
        /* Concise size as requested */
        font-weight: 700 !important;
        color: var(--primary-orange) !important;
        /* Orange text */
        background: transparent !important;
        /* No box */
        padding: 0 !important;
        /* No padding */
        border-radius: 0 !important;
        margin-bottom: 2px !important;
        /* Tight spacing */
        line-height: 1.1 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: nowrap !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
        /* Subtle legible shadow */
        box-shadow: none !important;
    }



    .stat-label {
        font-size: 13px !important;
        line-height: 1.2 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        max-width: 120px !important;
        /* Prevent too wide text */
    }

    /* Contact Layout Refinement (Mobile) */
    .contact-info {
        border-left: none !important;
        border-top: none !important;
        padding-left: 0 !important;
        padding-top: 24px;
        margin-top: -60px !important;
        /* Shift UP by ~1 inch */
        width: 100%;
    }

    /* Remove Desktop Vertical Line */
    .contact-info::before {
        display: none !important;
    }

    /* Footer Visibility (Mobile) */
    .footer p,
    .footer span {
        color: var(--text-primary) !important;
        /* Black text */
        opacity: 0.9;
    }

    /* FIX: Contact Layout Refinement (Target Header) */
    .contact-info-header {
        border-top: none !important;
        /* Remove solid border */
        padding-top: 20px;
        width: 100%;
        position: relative;
    }

    /* Add Horizontal Gradient Line */
    .contact-info-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        /* Match desktop thickness */
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(205, 127, 50, 0.3) 20%,
                rgba(205, 127, 50, 0.6) 50%,
                rgba(205, 127, 50, 0.3) 80%,
                transparent 100%);
    }

    /* Remove border from parent if mistakenly applied */
    .contact-info {
        border-top: none !important;
    }

    /* Mobile Step Arrows (Flow) */
    .flow-step {
        width: 100% !important;
        /* Force full width for correct centering */
        margin-bottom: 50px !important;
        position: relative;
        box-sizing: border-box !important;
    }

    /* Arrow Animation */
    @keyframes floatArrow {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(10px);
        }
    }

    .flow-step:not(:last-child)::after {
        content: "↓";
        position: absolute;
        bottom: -45px;
        left: 48%;
        /* Shifted a bit left as requested */
        transform: translateX(-50%);
        color: var(--primary-orange);
        font-size: 42px;
        font-weight: 900;
        background: transparent;
        width: auto;
        height: auto;
        border-radius: 0;
        box-shadow: none;
        border: none;
        animation: floatArrow 1.5s ease-in-out infinite;
        z-index: 10;
        line-height: 1;
    }
}

/* ==========================================
   LOCATION POPUP TOAST
   ========================================== */
.location-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(30, 30, 30, 0.95);
    border-left: 4px solid var(--primary-orange);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    max-width: 90%;
    width: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-icon {
    font-size: 20px;
}

.location-popup p {
    color: var(--white);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile specific adjustment for popup */
@media (max-width: 768px) {
    .location-popup {
        bottom: 80px;
        /* Higher up on mobile to avoid keyboard overlap if possible, usually better on top for toast */
        top: 20px;
        bottom: auto;
    }
}

/* ==========================================
   MOBILE LABEL ANIMATION CONTROL
   ========================================== */
@media (max-width: 768px) {

    /* Stop marquee animation when label is floating (focused or has value) */
    .form-group input:focus+.marquee-label .marquee-text,
    .form-group input:valid+.marquee-label .marquee-text {
        animation: none !important;
        padding-left: 0 !important;
        transform: none !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        display: inline-block !important;
    }
}