/* ==========================================================
   RESET & VARIABLES
   ========================================================== */
:root {
    --primary-gold: #b28a44;
    --primary-gold-hover: #967233;
    --navy-dark: #0a111e;
    --text-muted: #4b5563;
    --border-gold: #cbb279;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--navy-dark);
    overflow-x: hidden;
}

/* ==========================================================
   HEADER NAVIGATION
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1002;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy-dark);
}

.brand-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-gold);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #334155;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
}

.btn-primary-gold {
    background-color: var(--primary-gold);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-primary-gold:hover {
    background-color: var(--primary-gold-hover);
}

/* HAMBURGER BUTTON (Base Styles) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--navy-dark);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* ==========================================================
   HERO SWIPER & BACKGROUNDS (DESKTOP)
   ========================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
}

.hero-swiper {
    width: 100%;
    height: calc(100vh - 80px);
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 100%;
}

.slide-bg-1 {
    background-image: url('../images/hero-bg-1.png');
}

.slide-bg-2 {
    background-image: url('../images/hero-bg-2.png');
}

.hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    max-width: 580px;
}

.hero-content.content-right {
    margin-left: auto;
}

.subtitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 24px;
}

/* Hide slide text elements by default before JS animation triggers */
.hero-swiper .swiper-slide .subtitle,
.hero-swiper .swiper-slide .hero-title,
.hero-swiper .swiper-slide .hero-description,
.hero-swiper .swiper-slide .hero-buttons {
    opacity: 0;
    transform: translateY(25px);
    will-change: opacity, transform;
}


/* Force active slide content visibility fallback */
.hero-swiper .swiper-slide-active .subtitle,
.hero-swiper .swiper-slide-active .hero-title,
.hero-swiper .swiper-slide-active .hero-description,
.hero-swiper .swiper-slide-active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}
.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-solid-gold {
    background-color: var(--primary-gold);
    color: #ffffff;
    padding: 16px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-solid-gold:hover {
    background-color: var(--primary-gold-hover);
}

.btn-outline-gold {
    border: 1px solid var(--border-gold);
    color: var(--navy-dark);
    padding: 16px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-gold:hover {
    background-color: rgba(178, 138, 68, 0.05);
    border-color: var(--primary-gold);
}

.swiper-pagination-bullet {
    background: var(--navy-dark);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================
   SCROLL FOOTER
   ========================================================== */
.scroll-discover {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.scroll-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
}

.scroll-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy-dark);
}

/* ==========================================================
   WHO WE ARE & INDUSTRIES ACCORDION (DESKTOP)
   ========================================================== */
.about-industries-section {
    padding: 120px 40px 100px;
    background-color: #ffffff;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    max-width: 480px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    line-height: 1.2;
    color: var(--navy-dark);
    margin-bottom: 24px;
}

.section-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Accordion Gallery */
.industries-accordion {
    display: flex;
    height: 500px;
    gap: 12px;
    width: 100%;
}

.accordion-card {
    position: relative;
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-card.active,
.accordion-card:hover {
    flex: 3;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 17, 30, 0.2) 0%, rgba(10, 17, 30, 0.9) 100%);
    transition: background 0.4s ease;
}

.accordion-card.active .card-overlay {
    background: linear-gradient(180deg, rgba(10, 17, 30, 0.1) 0%, rgba(10, 17, 30, 0.85) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    z-index: 2;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    color: var(--primary-gold);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

.card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.accordion-card.active .card-desc,
.accordion-card:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   STATS COUNTER SECTION
   ========================================================== */
.stats-counter-section {
    background: #fafaf9;
    border-top: 1px solid #f1f1f0;
    border-bottom: 1px solid #f1f1f0;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e2d9c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-number-wrap {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
}


 /*--===========================
 Strategic Capabilities
 ============================--*/


/* ==========================================================
   PARTNERS MARQUEE
   ========================================================== */
.partners-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.partner-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.partner-title-wrap .line {
    height: 1px;
    flex: 1;
    background: #e2e8f0;
}

.partner-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    text-align: center;
    white-space: nowrap;
}

.logo-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    white-space: nowrap;
    animation: scrollMarquee 25s linear infinite;
}

.logo-item {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: var(--navy-dark);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================
   RESPONSIVE & MOBILE BREAKPOINT (MAX-WIDTH: 992px)
   ========================================================== */
@media (max-width: 992px) {

   
    /* 2. MOBILE HERO SLIDER (NO CARD BOX / NO DESCRIPTION) */ 
        .hero-section {
            height: auto;
            min-height: 100vh;
            padding-top: 80px;
            background-color: #0a111e;
        }
    
        .hero-swiper {
            height: calc(100vh - 80px);
            min-height: 520px;
        }
    
        .swiper-slide {
            height: 100%;
            padding: 40px 0 60px;
            display: flex;
            align-items: center;
            /* Vertically center the content */
            justify-content: center;
            background-size: cover;
            background-position: center;
        }
    
        /* Balanced background overlay for centered mobile text */
        .slide-bg-1 {
            background-image: linear-gradient(180deg, rgba(10, 17, 30, 0.5) 0%, rgba(10, 17, 30, 0.75) 100%), url('../images/hero-bg-1.png');
        }
    
        .slide-bg-2 {
            background-image: linear-gradient(180deg, rgba(10, 17, 30, 0.5) 0%, rgba(10, 17, 30, 0.75) 100%), url('../images/hero-bg-2.png');
        }
    
        .hero-container {
            padding: 0 24px;
            width: 100%;
        }
    
        .hero-content,
        .hero-content.content-right {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            /* Center align headline & buttons */
            background: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            border: none !important;
            box-shadow: none !important;
            padding: 0 !important;
        }
    
        .subtitle {
            color: #d4af37;
            /* Warm metallic gold */
            font-size: 11px;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
    
        .hero-title {
            font-size: 28px;
            line-height: 1.25;
            margin-bottom: 24px;
            color: #ffffff !important;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
        }
    
        .hero-description {
            display: none !important;
            /* Kept hidden for clean look */
        }
    
        .hero-buttons {
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }
    
        .btn-solid-gold {
            width: 100%;
            justify-content: center;
            padding: 14px 20px;
            font-size: 12px;
        }
    
        .btn-outline-gold {
            width: 100%;
            justify-content: center;
            padding: 14px 20px;
            font-size: 12px;
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.5);
        }

    .scroll-discover {
        display: none;
    }

    .swiper-pagination-bullet {
        background: #ffffff;
        opacity: 0.4;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-gold);
        opacity: 1;
    }

    /* 3. ABOUT ACCORDION HORIZONTAL SWIPE GALLERY */
    .about-industries-section {
        padding: 60px 20px;
    }

    .section-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .industries-accordion {
        display: flex;
        flex-direction: row;
        height: 380px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .accordion-card {
        flex: 0 0 82% !important;
        height: 100% !important;
        scroll-snap-align: center;
        border-radius: 8px;
    }

    .card-desc {
        opacity: 1;
        transform: translateY(0);
        white-space: normal;
    }

    /* 4. STATS COUNTER GRID */
    .stats-counter-section {
        padding: 50px 20px;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .stat-item:last-child {
        grid-column: span 2;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number-wrap {
        font-size: 34px;
    }
}


/* ==========================================================
   OUR BUSINESS ECOSYSTEM SECTION
   ========================================================== */
.ecosystem-section {
    position: relative;
    padding: 100px 40px;
    background: radial-gradient(circle at 30% 30%, #fcfbf9 0%, #f4f2ed 100%);
    overflow: hidden;
}

.ecosystem-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.ecosystem-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* --- Left Side: Circular Ecosystem Network --- */
.ecosystem-network {
    position: relative;
    width: 100%;
    max-width: 460px;
    /* Compact container prevents right-side card collisions */
    height: 460px;
    margin: 0 auto;
}

/* Connecting SVG Lines */
.network-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ring-line {
    fill: none;
    stroke: rgba(178, 138, 68, 0.25);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

.spoke-line {
    stroke: rgba(178, 138, 68, 0.2);
    stroke-width: 1;
}

/* Central Hub Logo */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(178, 138, 68, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hub-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
}

.hub-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--navy-dark);
}

.hub-sub {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

/* Circular Nodes Base Styling */
.eco-node {
    position: absolute;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.eco-node:hover,
.eco-node.active {
    transform: scale(1.08);
}

.node-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eco-node.active .node-circle,
.eco-node:hover .node-circle {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 6px rgba(178, 138, 68, 0.2);
}

.node-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
}

.node-badge svg {
    width: 12px;
    height: 12px;
}

/* Node Text Labels */
.node-info {
    position: absolute;
    width: 150px;
    pointer-events: none;
}

.node-info h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.node-info p {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
}

.node-info.align-right {
    left: 74px;
    text-align: left;
}

.node-info.align-left {
    right: 74px;
    text-align: right;
}

/* Compact Radius Coordinates (Radius ~ 150px) */
.node-1 {
    top: 0px;
    left: calc(50% - 32px);
}

.node-1 .node-info {
    top: 8px;
    left: 74px;
}

.node-2 {
    top: 80px;
    right: 15px;
}

.node-3 {
    top: 225px;
    right: -10px;
}

.node-4 {
    bottom: 15px;
    right: 65px;
}

.node-5 {
    bottom: 15px;
    left: 65px;
}

.node-6 {
    top: 225px;
    left: -10px;
}

.node-7 {
    top: 80px;
    left: 15px;
}

/* --- Right Side: Focus Sector Details Card --- */
.focus-card-wrap {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.focus-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.focus-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.focus-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.gold-divider {
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--primary-gold);
    margin-bottom: 16px;
}

.focus-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 80px;
}

.focus-image-frame {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.focus-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.focus-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 17, 30, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 8px 16px 8px 10px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.focus-btn:hover {
    background: var(--primary-gold);
}

.arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Bottom Feature Bar --- */
.ecosystem-features-bar {
    max-width: 1440px;
    margin: 60px auto 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.feature-col:not(:last-child) {
    border-right: 1px solid #f1f1f0;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2d9c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.feature-col p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================================== */
@media (max-width: 992px) {
    .ecosystem-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ecosystem-network {
        height: auto;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide desktop wireframes on touch screens */
    .network-lines,
    .central-hub {
        display: none;
    }

    .eco-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        flex: 0 0 140px;
        flex-direction: column;
        scroll-snap-align: center;
    }

    .node-info {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 8px;
    }

    .ecosystem-features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-col:not(:last-child) {
        border-right: none;
    }

    .feature-col:last-child {
        grid-column: span 2;
    }
}

/* ==========================================================
   OUR BUSINESS DIVISIONS SECTION
   ========================================================== */
   
.divisions-section {
    padding: 100px 40px;
    background-color: #fafaf9;
    position: relative;
    z-index: 2;
}

.divisions-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.divisions-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Base Card Style */
.division-card {
    position: relative;
    background: #f4f3ef;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.division-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Subtle Wireframe Background Lines */
.card-wireframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(178, 138, 68, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Layout Variant 1: Text Left, Image Right */
.card-layout-1 {
    flex-direction: row;
}

.card-layout-1 .card-text-content {
    flex: 1.1;
    padding: 40px 50px;
    z-index: 2;
}

.card-layout-1 .card-image-content {
    flex: 1.4;
    height: 280px;
    position: relative;
    overflow: hidden;
}

/* Layout Variant 2: Image Left, Text Right */
.card-layout-2 {
    flex-direction: row;
}

.card-layout-2 .card-image-content {
    flex: 1.2;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.card-layout-2 .card-text-content {
    flex: 1.3;
    padding: 40px 50px;
    z-index: 2;
}

/* Image Zoom Effect on Hover */
.card-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.division-card:hover .card-image-content img {
    transform: scale(1.06);
}

/* Text & Typography Inside Cards */
.num-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-gold);
}

.num-line {
    width: 32px;
    height: 1px;
    background-color: var(--border-gold);
}

.card-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.card-paragraph {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 480px;
}

/* Link Button Animation */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--navy-dark);
    transition: color 0.3s ease;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--primary-gold);
}

.card-link:hover svg {
    transform: translateX(6px);
}

/* Floating Decorative Gold Icons */
.card-floating-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    opacity: 0.85;
    pointer-events: none;
}

.card-floating-icon.center-icon {
    right: 46%;
}

.card-floating-icon svg {
    width: 100%;
    height: 100%;
}

/* Dark Tag Block (Card 01 Right Feature) */
.card-dark-tag {
    width: 140px;
    height: 280px;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
    z-index: 3;
}

.tag-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.tag-icon svg {
    width: 100%;
    height: 100%;
}

.tag-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.tag-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-gold);
}


/* ==========================================================
   MOBILE RESPONSIVE STYLES
   ========================================================== */
@media (max-width: 992px) {
    .divisions-section {
        padding: 60px 20px;
    }

    .division-card {
        flex-direction: column !important;
        min-height: auto;
    }

    .card-image-content {
        width: 100%;
        height: 220px !important;
        order: 1;
        /* Image always on top for mobile */
    }

    .card-text-content {
        width: 100%;
        padding: 28px 20px !important;
        order: 2;
    }

    .card-dark-tag {
        width: 100%;
        height: auto;
        padding: 20px;
        flex-direction: row;
        gap: 16px;
        order: 3;
    }

    .tag-icon {
        margin-bottom: 0;
    }

    .tag-text {
        margin-bottom: 0;
        text-align: left;
    }

    .card-floating-icon {
        display: none;
        /* Hide floating icons on small mobile viewports */
    }

    .card-heading {
        font-size: 22px;
    }
}


/* ==========================================================
   GLOBAL STRATEGIC PARTNERSHIPS SECTION (REDESIGNED)
   ========================================================== */
   /* Value Bar (5-Item Grid) Mobile Alignment */
   .value-bar {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 16px;
       background: #ffffff;
       border-radius: 16px;
       padding: 24px 20px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
   }

   .value-item {
       display: flex;
       align-items: center;
       gap: 12px;
   }

   .value-icon {
       width: 38px;
       height: 38px;
       min-width: 38px;
       border-radius: 50%;
       border: 1px solid rgba(178, 138, 68, 0.3);
       display: flex;
       align-items: center;
       justify-content: center;
       color: #b28a44;
   }

   .value-icon svg {
       width: 18px;
       height: 18px;
   }

   .value-item h4 {
       font-size: 13px;
       font-weight: 700;
       color: #0d1527;
       margin: 0;
       line-height: 1.2;
       white-space: normal;
   }

   /* Stats Counter Strip Mobile Fix */
   .p-stats-strip {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 20px;
       background: #0d1527;
       border-radius: 16px;
       padding: 24px 20px;
       color: #ffffff;
       margin-top: 20px;
   }

   .p-strip-item {
       display: flex;
       flex-direction: column;
       justify-content: center;
   }

   .p-strip-num {
       font-family: var(--font-heading, serif);
       font-size: 26px;
       font-weight: 700;
       color: #b28a44;
       line-height: 1;
       margin-bottom: 4px;
   }

   .p-strip-lbl {
       font-size: 11px;
       color: rgba(255, 255, 255, 0.8);
       line-height: 1.3;
   }

   /* Screen Adjustment for screens below 480px */
   @media (max-width: 480px) {
       .value-bar {
           grid-template-columns: 1fr;
           /* Single column on very small screens if needed */
       }
   }
.partnerships-section {
    position: relative;
    padding: 90px 40px;
    background: radial-gradient(circle at 50% 30%, #fcfbf9 0%, #f3f1ec 100%);
    overflow: hidden;
}

.partnerships-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(178, 138, 68, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.partnerships-container {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Typography */
.partnerships-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.partnerships-header .section-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.partnerships-header .section-description {
    font-size: 14px;
    color: var(--text-muted);
}

/* 3-Part Connected Ecosystem Layout */
.partnerships-ecosystem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

/* Connecting Line Wire */
.network-connector-wire {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 40px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

/* Central Hub Logo */
.p-center-hub {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hub-pulse {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px dashed var(--primary-gold);
    animation: rotateHub 15s linear infinite;
}

@keyframes rotateHub {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hub-core {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(178, 138, 68, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(178, 138, 68, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.hub-core span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy-dark);
}

/* Partner Cards */
.p-card {
    flex: 1;
    max-width: 440px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 3;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.p-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p-card-media {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.p-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.p-card:hover .p-card-media img {
    transform: scale(1.06);
}

.p-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 17, 30, 0.1) 0%, rgba(10, 17, 30, 0.6) 100%);
}

.p-flag-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.p-flag-badge span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy-dark);
}

.p-card-content {
    padding: 22px 24px;
}

.p-card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.p-card-sub {
    font-size: 11px;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Clean Tag Cloud Pills */
.p-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.p-tag {
    font-size: 10px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.p-card:hover .p-tag {
    background: #fef3c7;
    color: #92400e;
}

/* Minimal 5-Column Value Bar */
.value-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px;
}

.value-item:not(:last-child) {
    border-right: 1px solid #f1f5f9;
}

.value-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fafaf9;
    border: 1px solid #e2d9c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.value-icon svg {
    width: 16px;
    height: 16px;
}

.value-item h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 0.5px;
}

/* Bottom Dark Compact Stats Strip */
.p-stats-strip {
    background: var(--navy-dark);
    border-radius: 12px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    color: #ffffff;
}

.p-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.p-strip-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.p-strip-num {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
}

.p-strip-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .partnerships-ecosystem {
        flex-direction: column;
        gap: 20px;
    }

    .p-center-hub,
    .network-connector-wire {
        display: none;
    }

    .p-card {
        max-width: 100%;
        width: 100%;
    }

    .value-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-item:not(:last-child) {
        border-right: none;
    }

    .p-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: center;
    }

    .p-strip-item:not(:last-child) {
        border-right: none;
    }
}

/* ==========================================================
   WHY CHOOSE AIDEN PRIME SECTION
   ========================================================== */
.why-choose-section {
    position: relative;
    padding: 100px 40px 80px;
    background-color: #f8fafc;
    overflow: hidden;
}

/* Background Image Frame */
.why-choose-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/why-choose-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 1;
}

.why-choose-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-header {
    max-width: 680px;
    margin-bottom: 50px;
}

.gold-line {
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 10px 0 16px;
}

.why-choose-header .section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.why-choose-header .section-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* 6-Column Glass Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.why-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 28px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(178, 138, 68, 0.4);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #e2d9c8;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.why-card-icon svg {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
    line-height: 1.25;
}

.why-card p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-step-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--navy-dark);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Dark Stats Bar (5 Columns) */
.why-stats-bar {
    background: var(--navy-dark);
    border-radius: 12px;
    padding: 32px 28px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(10, 17, 30, 0.25);
}

.why-stat-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
}

.why-stat-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.why-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(178, 138, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.why-stat-icon svg {
    width: 20px;
    height: 20px;
}

.why-stat-text {
    display: flex;
    flex-direction: column;
}

.why-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.why-title {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 4px;
    line-height: 1.3;
}

.why-stat-text p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}


/* ==========================================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================================== */
@media (max-width: 1200px) {
    .feature-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 60px 20px;
    }

    .why-choose-header .section-title {
        font-size: 28px;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        padding: 28px 20px;
    }

    .why-stat-col:not(:last-child) {
        border-right: none;
    }

    .why-stat-col:last-child {
        grid-column: span 2;
    }
}

/* ==========================================================
   CONTACT CTA SECTION
   ========================================================== */
.contact-cta-section {
    position: relative;
    padding: 100px 40px;
    background-color: #0a111e;
    color: #ffffff;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 138, 68, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info-col .section-title {
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-info-col .section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Channel Items */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(178, 138, 68, 0.4);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.channel-icon svg {
    width: 22px;
    height: 22px;
}

.channel-text {
    display: flex;
    flex-direction: column;
}

.channel-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.channel-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.channel-value:hover {
    color: var(--primary-gold);
}

/* Presence Tags */
.global-presence {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.presence-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 12px;
}

.presence-tags {
    display: flex;
    gap: 10px;
}

.tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* --- Contact Form Card --- */
.contact-form-col {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    color: var(--navy-dark);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.contact-form p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group.full-width {
    margin-bottom: 24px;
}

.input-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--navy-dark);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--navy-dark);
    background: #fafafa;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: #ffffff;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* ==========================================================
   GLOBAL FOOTER
   ========================================================== */
.footer {
    background-color: #060b14;
    color: #ffffff;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand .brand-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    font-size: 12px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--primary-gold);
    color: #ffffff;
    border: none;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-gold-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* ==========================================================
   MOBILE RESPONSIVE STYLES
   ========================================================== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-col .section-title {
        font-size: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================
   CORPORATE VIDEO SHOWCASE SECTION
   ========================================================== */

.video-showcase-section {
    position: relative;
    padding: 120px 40px 50px;
    /* Reduced top/bottom padding from 120px to 60px */
    min-height: auto;
    /* Removed min-height: 80vh for better proportion */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

/* Background Video & Dark Overlay */
.video-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 17, 30, 0.45) 0%, rgba(6, 11, 20, 0.85) 100%);
}

.video-section-container {
    max-width: 1200px;
    /* Reduced max-width for better vertical proportion */
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Center Animated Play Button */
.video-play-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
    margin-bottom: 16px;
    /* Reduced margin from 32px */
}

.play-pulse-btn {
    position: relative;
    width: 58px;
    /* Scaled down button diameter from 80px */
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.play-pulse-btn:hover {
    transform: scale(1.08);
}

.play-icon {
    margin-left: 3px;
    display: flex;
    align-items: center;
}

.play-icon svg {
    width: 14px;
    height: 16px;
}

/* Pulsing Gold Rings Animation */
.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    animation: pulseRing 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-ring-2 {
    animation-delay: 1.2s;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
}

/* Text Content */
.video-content {
    max-width: 680px;
    margin-bottom: 32px;
    /* Reduced bottom gap from 60px */
}

.video-content .subtitle {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 8px;
    display: inline-block;
}

.video-content .section-title {
    color: #ffffff;
    font-size: 32px;
    /* Scaled down title font size from 42px */
    line-height: 1.2;
    margin-bottom: 10px;
}

.video-content .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    /* Adjusted paragraph font size */
    line-height: 1.5;
}

/* 3-Column Glass Highlights Bar */
.video-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    /* Reduced column gap */
    width: 100%;
}

.v-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px 18px;
    /* Compact card padding */
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.v-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
}

.v-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(178, 138, 68, 0.5);
    background: rgba(10, 17, 30, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.v-card-icon svg {
    width: 18px;
    height: 18px;
}

.v-card-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.v-card-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.35;
}

/* --- Full Screen Video Modal --- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 20, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    z-index: 10;
}

.modal-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Mobile Rules */
@media (max-width: 992px) {
    .video-showcase-section {
        padding: 50px 20px 40px;
    }

    .video-content .section-title {
        font-size: 24px;
    }

    .video-highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


