:root {
    --bg-dark: #121212;
}

body {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    color: #1a1a1a;
    background-color: #fcfcfc;
}

.fs-16 {
    font-size: 16px !important;
}

.py-100 {
    padding: 100px 0;
}
.py-120 {
    padding: 100px 0;
}

.py-70 {
    padding: 70px 0;
}


/* Navbar */
.navbar-brand {
    letter-spacing: -1px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 15px;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    /* background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
        url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=400&q=80'); */
    background-size: cover;
    background-position: center;
    position: relative;
}

h1 {
    letter-spacing: -2px;
    line-height: 1.1;
}

.max-width-500 {
    max-width: 500px;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Studio Image */
.main-studio-img {
    height: 600px;
    object-fit: cover;
}

/* Project Cards */
.project-card-wide {
    min-width: 800px;
    transition: transform 0.3s ease;
}

.project-card-wide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
}

.project-slider {
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.project-slider::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar Chrome */

.badge {
    background: transparent;
    font-size: 0.75rem;
}

/* Footer */
.footer-bg {
    background-color: var(--bg-dark);
    border-radius: 50px 50px 0 0;
}

.display-massive {
    font-size: clamp(4rem, 15vw, 12rem);
    letter-spacing: -5px;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-icons i {
    width: 16px;
    text-align: center;
}

/* Animations & Responsiveness */
@media (max-width: 991px) {
    .main-studio-img {
        height: 400px;
    }

    .project-card-wide {
        min-width: 350px;
    }

    .project-card-wide img {
        height: 300px;
    }

    .display-1 {
        font-size: 3.5rem;
    }
}


:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Hero Section Background */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
}

/* Navbar Tweaks */
.navbar-brand {
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero Typography */
.hero-container {
    flex-grow: 1;
    z-index: 2;
    max-width: 1500px;
}

h1 {
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Project Card (Glassmorphism) */
.project-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 12px;
    width: 320px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 5px 10px;
}

/* Soft white fog at the bottom */
.bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Framer Badge Replica */
.framer-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 40px !important;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .project-card {
        width: 100%;
        margin-top: 40px;
    }
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Base Navbar State (At the top) */
.custom-navbar {
    padding: 30px 0;
    /* Large initial padding */
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smooth "Framer-like" easing */
    z-index: 1000;
}

/* Navbar Scrolled State */
.custom-navbar.scrolled {
    padding: 12px 0;
    /* Compact padding */
    background-color: rgba(18, 18, 18, 0.7);
    /* Dark semi-transparent background */
    backdrop-filter: blur(15px);
    /* The Glassmorphism effect */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle divider */
}

/* Brand logo animation */
.navbar-brand {
    transition: transform 0.4s ease;
}

.scrolled .navbar-brand {
    transform: scale(0.9);
    /* Slightly shrinks the logo when scrolled */
}

/* Nav links styling */
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 25px;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;800&display=swap');

body {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    margin: 0;
}

.nav-container {
    width: 100%;
    padding-top: 30px;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    /* Initial wide layout */
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

/* Common Pill Styling */
.logo-pill-wrapper,
.menu-pill-wrapper {
    padding: 12px 28px;
    border-radius: 100px;
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

/* Nav Links Styling */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links a,
.navbar-brand {
    text-decoration: none;
    color: white;
    /* Initial color */
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.2rem;
}

/* Ensure Logo is always on top if they touch */
.logo-pill-wrapper {
    position: relative;
    z-index: 10;
    /* Higher than menu */
    background: transparent;
    /* Starts transparent */
}

body {
    margin: 0;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
}

.nav-wrapper {
    padding-top: 30px;
    width: 100%;
    z-index: 2000;
}

/* Base Pill Styles */
.logo-pill,
.menu-pill {
    padding: 10px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

/* Nav Links Styling */
.nav-links {
    gap: 25px;
}

.nav-links a,
.navbar-brand {
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 800;
}

.menu-pill-wrapper {
    position: relative;
    z-index: 5;
    background: transparent;
    /* Starts transparent */
}

/* Optional: Add a smooth transition for z-index just in case */
.nav-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-inner {
    transition: all 0.5s ease;
    padding: 0 50px;
    max-width: 1500px;
}

body {
    margin: 0;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
}

.nav-wrapper {
    padding-top: 30px;
    width: 100%;
    z-index: 2000;
}

/* Base Pill Styles */
.logo-pill,
.menu-pill {
    padding: 10px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    height: 80px;
}

/* Nav Links Styling */
.nav-links {
    gap: 25px;
}

.nav-links a,
.navbar-brand {
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Hero Section Base */
.hero-section {
    height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* The Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 
       1. Dark at top for navbar/text readability 
       2. Transparent in the middle for the image
       3. Pure white at the bottom for the section transition
    */
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0) 50%,
            rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

/* Ensure Content is above the overlay */
.hero-container {
    position: relative;
    z-index: 2;
}

/* Glassmorphism Card refinement */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}


/* Base Hero styling */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* 1. TOP OVERLAY: Adds contrast for navbar links */
.hero-top-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 2. BOTTOM FOG: Heavy Frosted Glass & Mask */
.hero-bottom-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54%;
    /* Covering the bottom area where text sits */
    z-index: 2;
    pointer-events: none;

    /* Heavy blur effect matching the screenshot */
    -webkit-backdrop-filter: blur(42px);
    backdrop-filter: blur(42px);

    /* A slight warm milky tint to match the aesthetic */
    background: linear-gradient(180deg,
            rgba(255, 254, 250, 0) 0%,
            rgba(244, 243, 239, 0.4) 100%);

    /* Smoothly fades the blur effect in from top to bottom */
    -webkit-mask: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 46%,
            rgba(0, 0, 0, 1) 100%);
    mask: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 46%,
            rgba(0, 0, 0, 1) 100%);
}

/* Ensure content sits on top of all overlays */
.hero-container {
    position: relative;
    z-index: 3;
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Layering a dark gradient directly on the image */
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.5) 0%,
            /* Dark top for navbar links */
            rgba(0, 0, 0, 0.2) 40%,
            /* Slight darkening behind text */
            rgba(0, 0, 0, 0.4) 70%,
            /* Darker behind the big heading */
            rgba(0, 0, 0, 0) 100%
            /* Fade out to let the fog take over */
        ),
        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
}

/* The Main Heading */
.hero-section h1 {
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    /* Ensure it sits above the overlays */
    position: relative;
    z-index: 5;
}

/* The Sub-paragraph */
.hero-section p {
    color: rgba(255, 255, 255, 0.85) !important;
    /* Slightly more opaque for visibility */
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
    font-weight: 500;
    font-size: 18px;
}

.hero-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    /* Slightly shorter so it doesn't cover the text */
    z-index: 3;
    /* Between image and text content */
    pointer-events: none;

    -webkit-backdrop-filter: blur(36px);
    backdrop-filter: blur(36px);

    /* Subtle warm white tint to match the screenshot */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* The Smooth Fade Mask */
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
    mask: linear-gradient(to bottom, transparent 0%, black 100%);
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    /* The Linear Gradient: Darker at the top and bottom to make Nav and Heading readable */
    background:
        linear-gradient(rgba(0, 0, 0, 0.5) 0%,
            /* Dark top for navbar links */
            rgba(0, 0, 0, 0.1) 50%,
            /* Clearer middle for the image */
            rgba(0, 0, 0, 0.6) 100%
            /* Darker bottom for the main heading */
        ),
        url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

/* Also ensure your content is sitting on top of this gradient */
.hero-container {
    position: relative;
    z-index: 5;
    /* Higher than the gradient and fog */
}

.stats-divider {
    border: 0;
    border-top: 1px solid #eeeeee;
    opacity: 1;
}

hr {
    margin: 1rem 0;
    color: inherit;

}

@media (min-width: 768px) {
    .stat-item-border {
        border-right: 1px solid #dac99e;
        padding-right: 20px;
        padding-left: 20px;
        color: #000;
    }
}

.stat-number {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.stat-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    max-width: 280px;
}

.container-fluid {
    max-width: 1500px;
    padding: 0 4rem;
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 64px;
    }
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 32px;
    }
}

.stats-section {
    background-color: #ffffff;
    color: #000;
}


.stats-section {
    padding: 70px 0;
    background-color: #ffffff;
    color: #000;
}

/* Custom Container for 1500px max-width */
.container-custom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
}

.display-3 {
    font-size: 42px;
}
@media (max-width: 576px) {
    .display-3 {
        font-size: 36px;
    }
}

.stats-main-title {
    font-size: 72px;
    /* Note: overwritten to 48px in some parts of your file */
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
}

.stats-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    max-width: 500px;
    /* Note: sometimes set to 100% in your responsive code */
}

.stats-divider {
    border: 0;
    border-top: 1px solid #dac99e;
    opacity: 1;
}

.mt-30 {
    margin-top: 30px !important;
}

.btn-hero-animate {
    position: relative;
    overflow: hidden;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-hero-animate .text-container {
    display: block;
    position: relative;
    overflow: hidden;
    height: 24px;
}

.btn-hero-animate .text-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-animate .text-wrapper span,
.btn-hero-animate .text-wrapper svg {
    display: block;
    height: 24px;
    line-height: 24px;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.btn-hero-animate:hover .text-wrapper {
    transform: translateY(-50%);
}

.btn-hero-animate:hover {
    background-color: #000 !important;
    color: #c59544 !important;
}

.p-btn {
    padding: 12px 24px;
}

.btn-arrow {
    width: 14px;
    height: 14px;
}

.stats-narrative-visual {
    margin-top: 50px;
    margin-bottom: 50px;
}

.main-anchor-frame {
    position: relative;
    height: 650px;
    background-color: #f5f5f5;
    border-radius: 2px;
}

.narrative-img {
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
    height: 100%;
}

.main-anchor-frame:hover .narrative-img {
    transform: scale(1.08);
}

.narrative-annotation {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    mix-blend-mode: hard-light;
}

.ann-line {
    width: 40px;
    height: 1px;
    background-color: #fff;
}

.ann-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.detail-floating-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(70px, -180px);
    z-index: 10;
}

.detail-inset-card {
    background: #ffffff;
    padding: 30px;
    width: 380px;
    border-radius: 2px;
}

.detail-card-content {
    border-left: 2px solid #000;
    padding-left: 20px;
}

.detail-card-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.detail-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.stat-number {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.stat-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    max-width: 280px;
}

/* Desktop Vertical Borders */
@media (min-width: 768px) {
    .stat-item-border {
        border-right: 1px solid #dac99e;
        padding-right: 20px;
        padding-left: 20px;
    }

    .stat-item-border:last-child {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 50px 0;
    }

    .stats-main-title {
        font-size: 36px !important;
    }

    .main-anchor-frame {
        height: 300px !important;
    }

    /* Floating card logic for mobile */
    .detail-floating-wrapper {
        position: relative !important;
        transform: none !important;
        width: 100% !important;
        margin-top: 20px;
    }

    .detail-inset-card {
        width: 100% !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    /* Mobile Stats Grid: Joined "+" Effect */
    .stats-section .row.mb-3 mb-md-5{
        margin-bottom: 0 !important;
        border-bottom: 1px solid #dac99e !important;
    }

    .stats-section .row.mb-3 mb-md-5>div {
        padding: 40px 20px !important;
        border-right: none;
        /* Reset desktop borders */
    }

    /* Create the grid lines on mobile */
    .stats-section .row.mb-3 mb-md-5>div:nth-child(odd) {
        border-right: 1px solid #dac99e !important;
    }

    .stats-section .row.mb-3 mb-md-5>div:nth-child(1),
    .stats-section .row.mb-3 mb-md-5>div:nth-child(2) {
        border-bottom: 1px solid #dac99e !important;
    }
}

.design-delivers-section {
    background-color: #0d0d0d;
    padding: 70px 0;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .design-delivers-section {
        padding: 60px 0;
    }
}

.main-dark-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.p-muted {
    font-size: 16px;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 600px;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.tabs-navigation-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-tabs {
    gap: 97px;
    border-bottom: 2px solid #222;
    width: max-content;
}

.tab-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
    width: max-content;
}

.tab-btn.active {
    color: #fff;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

/* Mobile Scroll Arrows */
.tab-scroll-btn {
    display: none;
    position: absolute;
    top: 0;
    bottom: 15px;
    width: 40px;
    background: linear-gradient(to right, #0d0d0d, transparent);
    border: none;
    color: #c59544;
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.tab-scroll-btn.right {
    right: -25px;
    background: linear-gradient(to left, #0d0d0d 40%, transparent);
}

.tab-scroll-btn.left {
    left: -25px;
    background: linear-gradient(to right, #0d0d0d 40%, transparent);
}

.design-card-wrapper {
    position: relative;
    min-height: 490px;
    margin-top: -1px;
}

.design-card {
    display: none;
    background-color: #262626;
    animation: fadeIn 0.4s ease-in-out;
}

.design-card.active {
    display: block;
}

.card-content-side {
    padding: 35px !important;
}

.card-number {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 0.8;
}

.card-title-text {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #d0d0d0;
}

.card-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
}

.btn-minimal-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: background 0.3s, color 0.3s;
}

.btn-minimal-dark:hover {
    background: #fff;
    color: #000;
}

.btn-slide-animate .btn-text-container {
    height: 16px;
    overflow: hidden;
    display: block;
}

.btn-slide-animate .btn-text-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-slide-animate .btn-text-wrapper span,
.btn-slide-animate .btn-text-wrapper svg {
    height: 16px;
    display: flex;
    align-items: center;
    line-height: 16px;
}

.btn-slide-animate:hover .btn-text-wrapper {
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .main-dark-title {
        font-size: 34px;
    }

    .card-title-text {
        font-size: 30px;
    }

    .custom-tabs {
        display: flex !important;
        overflow-x: scroll !important;
        white-space: nowrap !important;
        gap: 30px !important;
        width: 100% !important;
        scrollbar-width: none;
    }

    .custom-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-scroll-btn {
        display: flex;
    }

    /* Show arrows on mobile */

    .design-card .row {
        flex-direction: column;
    }

    .design-card img {
        height: 300px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', sans-serif; */
    background-color: #fdfdfd;
    color: #1a1a1a;
    overflow-x: hidden;
}

.projects-section {
    padding: 70px 0;
}
@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
}

/* Header Styling */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    align-items: flex-start;
    margin-bottom: 60px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #888;
    border-radius: 50%;
}

.header-center h1 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 50px;
}

.header-right p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    max-width: 350px;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: start;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: #1b3a2d;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

.nav-btn:hover {
    background-color: #c59544;
    transform: scale(1.05);
}


/* Carousel Styling */
.carousel-wrapper {
    width: 100%;
    /* overflow: hidden; */
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding-left: calc(45% - 375px);
    /* Centers the main card */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card {
    min-width: 750px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.6;
    transform: scale(0.95);
    background-color: #f5f5f5;
    padding: 10px;
}

.card.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.card-img-container {
    width: 100%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 10px 10px;
}

.card-info h3 {
    font-size: 24px;
    margin-bottom: 4px;
    color: #000;
}

.card-info p {
    font-size: 16px;
    color: #333;
}

.tags {
    display: flex;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-right {
        padding-left: 0;
    }

    .card {
        min-width: 90vw;
    }

    .carousel-track {
        padding-left: 5vw;
    }
}

/* Container & Spacing */
.container-custom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
}

.nepal-clients-section {
    padding: 140px 0;
    background: #f4f4f4;
    /* Note: HTML uses 'bg-black' override */
    border-top: 1px solid #f2f2f2;
}

.pt-70 {
    padding-top: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

@media (max-width: 768px) {
    .container-custom {
        padding: 0 1.5rem !important;
    }
}

.client-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #999;
}

.fs-48 {
    font-size: clamp(35px, 5vw, 48px) !important;
}

.client-disclaimer {
    font-size: 16px;
    line-height: 1.6;
    border-left: 2px solid #cdcdcd;
    padding-left: 30px;
    max-width: 600px;
    color: #858383 !important;
}

@media (max-width: 575.98px) {
    .client-disclaimer {
        border-left: none !important;
        margin-top: 20px;
        padding-left: 0;
    }
}

.client-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    /* Creates the fine separation lines */
    background-color: #cdcdcd;
    border: 1px solid #cdcdcd;
}

.mosaic-item {
    background-color: #fff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
}

.mosaic-item:hover {
    background-color: #fafafa;
    z-index: 10;
}

.client-logo {
    max-width: 240px;
    max-height: 95px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mosaic-item:hover .client-logo {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.logo-name {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #5a5959;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
@media (max-width: 768px) {
    .logo-name {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Optional: slightly push the logo up on mobile so it doesn't overlap the text */
    .client-logo {
        transform: translateY(-10px);
    }
}

.mosaic-item:hover .logo-name {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .client-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .client-mosaic {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 15px !important;
    }

    .mosaic-item {
        padding: 40px 20px;
    }
}

/* Cta section css */

/* --- CTA SECTION STYLES --- */

.cta-section {
    background-color: #ffffff;
}

.contact-dot {
    width: 8px;
    height: 8px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
}

/* The Main Background Container */
.cta-banner-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent),
        url('https://images.unsplash.com/photo-1600210491865-e94d66c3098c?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

/* Text at the bottom left of the image */
.banner-overlay-text h3 {
    font-size: 32px;
    letter-spacing: -0.02em;
}

/* The Floating White Card */
.cta-floating-card {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    width: 420px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.card-img-holder {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text-muted {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
}

.contact-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.contact-link:hover {
    /* border-bottom: 1px solid #000; */
}

.contact-link i {
    font-size: 12px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .cta-floating-card {
        width: 350px;
        right: 40px;
    }
}

@media (max-width: 991px) {
    .cta-banner-wrapper {
        height: auto;
        min-height: 700px;
        flex-direction: column;
        padding: 40px 20px;
        justify-content: flex-end;
        align-items: center;
    }

    .cta-floating-card {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .banner-overlay-text {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }
}

/* --- CTA SECTION REPLICA --- */

.cta-section {
    background-color: #ffffff;
    overflow: hidden;
}

.contact-dot {
    width: 8px;
    height: 8px;
    background-color: #a0a0a0;
    border-radius: 50%;
    display: inline-block;
}

/* Banner Container */
.cta-banner-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

/* Background Image with slight darkening */
.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.cta-banner-wrapper:hover .cta-bg-image {
    transform: scale(1.03);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 60%), linear-gradient(to top, rgb(0 0 0 / 80%) 0%, transparent 30%);
    z-index: 1;
}

/* Bottom Left Text */
.banner-overlay-text {
    position: relative;
    z-index: 2;
}

.banner-overlay-text h3 {
    font-size: 36px;
    letter-spacing: -0.02em;
    font-weight: 500;
}

/* The White Overlaid Card */
.cta-floating-card {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    width: 420px;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.card-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card-img-holder {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text-muted {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.contact-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    /* opacity: 0.7; */
    color: #c59544;    
    /* background-color: ; */
    /* transform: scale(1.05); */
    text-decoration: none;
}

/* Responsive Logic */
@media (max-width: 1200px) {
    .cta-floating-card {
        width: 360px;
        right: 30px;
        padding: 25px;
    }

    .banner-overlay-text h3 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .cta-banner-wrapper {
        height: auto;
        padding: 30px;
        flex-direction: column;
        justify-content: flex-end;
    }

    .cta-floating-card {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-top: 40px;
    }

    .banner-overlay-text {
        width: 100%;
        margin-bottom: 10px;
    }
}


/* --- PIXEL PERFECT FOOTER --- */

.footer-wrap {
    position: relative;
    background-color: #0d0d0d;
    color: #ffffff;
    overflow: hidden;
    width: 100%;
}

/* Background Image & Dark Gradient Overlay */
.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* This creates the dark, moody overlay over the image */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95));
    background-blend-mode: multiply;
    z-index: 0;
    opacity: 0.9;
}

/* The warm spotlight glow */
.footer-glow {
    position: absolute;
    top: 15%;
    left: 40%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.18) 0%, rgba(255, 179, 71, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.footer-content-layer {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Massive Brand Text */
.footer-display-logo {
    font-size: clamp(80px, 16vw, 220px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.85;
    margin: 0;
    color: #ffffff;
}

/* Navigation Links */
.footer-nav-menu a {
    color: var(--bs-secondary-color) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-left: 20px;
    transition: opacity 0.3s;
}

.footer-nav-menu a:hover,
.footer-legal-row a:hover {
    opacity: 0.7;
}

/* Social Buttons (Circular) */
.footer-social-row {
    display: flex;
    justify-content: start;
    gap: 15px;
    /* margin-left: 15px; */
}

.social-btn {
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    /* Light grey as per screenshot */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

/* Legal Links */
.footer-legal-row a {
    color: var(--bs-secondary-color) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
}

/* Divider & Copyright */
.footer-hr {
    border-color: rgb(104 113 119 / 23%);
    margin: 40px 0 25px 0;
    opacity: 1;
}

.footer-copy {
    font-size: 14px;
    color: #888888;
    margin: 0;
}

/* Made in Framer Badge */
.footer-framer-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.footer-framer-badge span {
    color: #000;
    font-size: 13px;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .footer-content-layer {
        padding: 0 2rem;
    }

    .footer-display-logo {
        font-size: 80px;
        margin-bottom: 40px;
    }

    .footer-social-row,
    .footer-nav-menu,
    .footer-legal-row {
        justify-content: center;
        text-align: center;
    }

    .footer-nav-menu a,
    .footer-legal-row a {
        margin: 0 10px;
    }

    .footer-framer-badge {
        display: none;
    }

    /* Hide badge on mobile to avoid overlap */
}


.footer-wrap {
    position: relative;
    background-color: #000;
    overflow: hidden;
    /* min-height: 500px; */
}

/* Layer 0: The Background Image */
.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Layer 1: THE DARK OVERLAY (Adjust opacity here to make it darker/lighter) */
.footer-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Black gradient from top to bottom */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Layer 2: The Warm Glow Spotlight */
.footer-glow {
    position: absolute;
    top: 15%;
    left: 40%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 180, 80, 0.2) 0%, rgba(255, 180, 80, 0) 70%);
    filter: blur(80px);
    z-index: 2;
    pointer-events: none;
}

/* Layer 3: The Content (Text and Buttons) */
.footer-content-layer {
    position: relative;
    z-index: 3;
    /* Must be higher than 0, 1, and 2 */
}

/* ... (Remaining CSS for logo, social buttons, etc.) ... */
.footer-display-logo {
    font-size: clamp(80px, 16vw, 220px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.85;
    margin: 0;
}

.social-btn {
    width: 42px;
    height: 42px;
    background-color: #cacaca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212;
    text-decoration: none;
}

/* --- FOOTER LOGO STYLING --- */

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    /* opacity: 0.8; */
}

.footer-logo-img {
    /* This scales the logo based on screen size, similar to how the text 'clamp' worked */
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    /* Optional: If your logo has black text, this filter will turn the black parts white 
       to make it visible on the dark background while keeping the gold parts. */
    /* filter: brightness(0) invert(1); */

}

/* Ensure the glow effect stays centered behind the new logo */
.footer-glow {
    top: 10%;
    left: 15%;
    /* Adjusted to sit better behind the horizontal logo */
}

@media (max-width: 991px) {
    .footer-logo-img {
        max-width: 300px;
        margin: 0 auto 40px auto;
    }
}

/* --- LOGO FIX --- */
.footer-logo-link {
    display: inline-block;
    background: #ffffff00;
    /* Optional: adds a clean white 'card' look if you like the badge style */
    /* padding: 10px; */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer-logo-img {
    width: 100%;
    max-width: 350px;
    /* Adjust size to match design */
    height: auto;
    display: block;
    /* If you want to try and remove the white background via CSS: */
    /* mix-blend-mode: multiply; */
}

/* --- SOCIAL BUTTONS REPLICA --- */
.footer-social-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: #fff;
    /* Light grey/white as seen in designer screenshot */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    color: #000;
}

/* --- TEXT REFINEMENTS --- */
.footer-nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
    opacity: 0.8;
}

.footer-nav-menu a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 13px;
    color: #333;
    margin: 0;
}

.footer-logo-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    /* This turns the white box black and the black text white */
    /* filter: invert(1) brightness(1.5) contrast(1.2); */
}

.text-gry {
    color: var(--bs-secondary-color) !important;
}

.text-custom {
    color: #666666;
}

/* --- NAV LOGO STYLING --- */

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-logo-img {
    height: 90px;
    /* Adjust this height to fit your pill perfectly */
    width: auto;
    display: block;
    transition: filter 0.3s ease;
}

/* 
   Since your pill starts transparent and turns white:
   If your logo is dark, it might be hard to see at the start.
   You can add a filter to make it white initially, then 
   remove it via the GSAP scroll trigger.
*/
.logo-pill .nav-logo-img {
    /* Optional: turns a dark logo white for the dark hero background */
    /* filter: brightness(0) invert(1);  */
}

/* This class will be targeted by GSAP in the next step */
.logo-pill.scrolled-logo .nav-logo-img {
    filter: none;
    /* Returns logo to original colors on white background */
}

/* Logo Pill Default State */
.logo-pill {
    background-color: #ffffff !important;
    /* Forces white background by default */
    border-radius: 100px;
    padding: 10px 25px;
    /* box-shadow: 0px 6px 15px rgb(0 0 0); Optional: subtle shadow for visibility on hero */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    /* Adjust based on your logo height */
    min-width: 245px;
    /* Ensures the pill doesn't jump size */
    overflow: hidden;
}

/* Positioning the logos on top of each other */
.navbar-brand {
    height: 100%;
    /* width: 100%; */
}

.nav-logo-img {
    height: 70px;
    /* Adjust size as needed */
    width: auto;
    transition: transform 0.3s ease;
}

/* Hide the scrolled logo by default */
.logo-scrolled {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
}

/* Keep the default logo visible at start */
.logo-default {
    opacity: 1;
}

/* Navigation Links within the pill logic */
.navbar-brand {
    color: #000 !important;
    /* Ensure brand text/logo logic is dark on white pill */
}

/* Base Pill Styles - Initial State */
.logo-pill,
.menu-pill {
    height: 80px;
    /* Starting height */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    /* Height is handled by GSAP */
    display: flex;
    align-items: center;
}

/* Scrolled Logo Image sizing */
.logo-scrolled {
    height: 36px !important;
    /* Forces the image to 60px when it appears */
    width: auto;
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
}

/* Ensure the container doesn't restrict the image */
.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-around;
}

.hero-bottom-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* Increased slightly for a smoother transition */
    z-index: 2;
    pointer-events: none;

    /* The blur provides that 'premium' frosted feel */
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);

    /* A deep charcoal to black gradient */
    background: linear-gradient(180deg,
            rgba(30, 30, 30, 0) 0%,
            rgba(20, 20, 20, 0.4) 50%,
            rgba(0, 0, 0, 0.8) 100%);

    /* The mask creates the 'fade-in' effect for the blur itself */
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.nav-links a:hover,
.navbar-brand:hover {
    color: #c59544 !important;
    /* change to your theme color */
}



html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 2.5rem !important;
        /* Forces the big text to stay inside the screen */
        white-space: normal;
    }
}

@media (max-width: 991px) {

    /* Adjust Hero Section for vertical layout */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        /* Space for the logo/hamburger header */
        padding-bottom: 40px;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        /* Content starts from top */
        background-attachment: scroll;
        /* Better performance on mobile */
    }

    /* Adjust the Heading to be large but fit the screen */
    .hero-section .display-1 {
        font-size: 48px !important;
        /* Matches the massive look in screenshot */
        line-height: 1;
        letter-spacing: -1px;
        margin-top: 45px;
        margin-bottom: 20px !important;
    }

    /* Paragraph adjustments */
    .hero-section p {
        font-size: 1.15rem !important;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9) !important;
        max-width: 100% !important;
        margin-bottom: 50px !important;
    }

    /* Container padding for mobile */
    .hero-container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    /* The Project Card (Azure Hallway) styling for mobile */
    .project-card {
        width: 100% !important;
        /* Full width minus container padding */
        max-width: 500px;
        margin: 0 auto;
        /* Centers the card */
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px !important;
        border-radius: 24px !important;
    }

    .project-card img {
        height: 280px;
        /* Makes the image taller like in the screenshot */
        object-fit: cover;
        border-radius: 16px !important;
    }

    .project-card span {
        font-size: 1.2rem;
        font-weight: 700 !important;
    }

    /* Fog overlay tweak so it doesn't wash out the card content */
    .hero-bottom-fog {
        height: 40%;
        opacity: 0.8;
    }
}

.pb-9 {
    padding-bottom: 9px !important;
}

@media (max-width: 991px) {

    /* 1. Add the Overlay Layer */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* This gradient darkens the top for the text and the bottom for the card */
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.75) 0%,
                /* Dark top for the heading */
                rgba(0, 0, 0, 0.4) 50%,
                /* Slightly lighter middle */
                rgba(0, 0, 0, 0.8) 100%
                /* Very dark bottom for the project card */
            );
        z-index: 1;
        pointer-events: none;
        /* Ensures you can still click things under it */
    }

    /* 2. Push content above the overlay */
    .hero-container {
        position: relative;
        z-index: 5 !important;
    }

    /* 3. Add a subtle text shadow for extra "pop" */
    .hero-section h1,
    .hero-section p {
        text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
    }

    /* 4. Adjust the existing fog layer so it doesn't clash */
    .hero-bottom-fog {
        z-index: 2;
        /* Sits between overlay and content */
        height: 50%;
        opacity: 0.9;
    }
}


@media (max-width: 767px) {

    /* --- About Section Text --- */
    .py-70 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* "About ARC" Eyebrow text */
    .fs-16.text-muted {
        font-size: 16px !important;
        margin-bottom: 10px;
        display: block;
    }

    /* Main Heading "Rooted in Clear Vision" */
    .display-5.fw-bold {
        font-size: 30px !important;
        line-height: 1.1;
        margin-bottom: 20px !important;
        letter-spacing: -1px;
    }

    /* Description paragraph */
    .text-muted {
        font-size: 16px !important;
        line-height: 1.7;
        margin-bottom: 20px !important;
    }

    /* "About Us" link with icon */
    .border-bottom.pb-1 {
        font-size: 16px;
        display: inline-flex;
        align-items: center;
        border-bottom: 2px solid #000 !important;
        margin-bottom: 5px;
        /* Thicker line like screenshot */
    }

    /* --- Image Adjustment --- */
    .main-studio-img {
        border-radius: 40px !important;
        /* Extra rounded corners like screenshot */
        /* margin-top: 30px; */
        height: 350px !important;
        /* Controlled height for mobile */
        object-fit: cover;
    }

    /* --- Stats Grid Adjustment --- */
    .stat-item-border {
        border-right: none !important;
        /* Remove vertical line on mobile */
        margin-bottom: 40px;
        /* Add space between rows */
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Stat Numbers (120+, 50+, etc) */
    .stat-number {
        font-size: 42px !important;
        font-weight: 400 !important;
        /* Clean weight like screenshot */
        margin-bottom: 15px !important;
    }

    /* Stat Labels (Homes transformed) */
    .stat-label {
        font-size: 18px !important;
        font-weight: 600 !important;
        line-height: 1.2;
        margin-bottom: 12px !important;
    }

    /* Stat Descriptions */
    .stat-desc {
        font-size: 15px !important;
        line-height: 1.4;
        color: #555 !important;
    }

    /* Manage the horizontal dividers */
    .stats-divider {
        margin-top: 10px !important;
        margin-bottom: 40px !important;
        border-top: 1px solid #eee !important;
    }
}

@media (max-width: 767px) {

    /* 1. Remove spacing between columns so borders touch perfectly */
    .stats-section .row {
        --bs-gutter-x: 0;
    }

    .stat-item-border {
        /* Add consistent padding inside the grid boxes */
        padding: 40px 20px !important;
        margin-bottom: 0 !important;
        border-right: none !important;
        /* Reset desktop borders */
    }

    /* 2. Create the Vertical Center Line */
    /* Target the 1st and 3rd items (left column) */
    .stat-item-border:nth-child(odd) {
        border-right: 1px solid #dac99e !important;
    }

    /* 3. Create the Horizontal Center Line */
    /* Target the 1st and 2nd items (top row) */
    .stat-item-border:nth-child(1),
    .stat-item-border:nth-child(2) {
        border-bottom: 1px solid #dac99e !important;
    }

    /* 4. Ensure the Top and Bottom dividers align with the grid */
    .stats-divider {
        margin-left: 0;
        margin-right: 0;
        border-top: 1px solid #dac99e !important;
        opacity: 1;
        margin-bottom: 10px !important;
    }

    /* Optional: Style adjustments for text within the grid */
    .stat-number {
        font-size: 38px !important;
        margin-bottom: 10px !important;
    }

    .stat-label {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 767px) {
    /* --- Header Alignment --- */
    .projects-section .display-5 {
        font-size: 32px !important; /* Boldly Rooted text size */
        line-height: 1.1;
        margin-top: 10px;
        margin-bottom: 20px !important;
    }

    .projects-section .text-muted.fs-16 {
        font-size: 14px !important;
        text-transform: none;
    }

    .projects-section .col-md-4 {
        text-align: left !important;
    }

    /* Move Arrow Buttons to the left and below text */
    .nav-buttons {
        justify-content: flex-start !important;
        margin-top: 25px;
        margin-bottom: 30px;
        gap: 15px;
    }

    .nav-btn {
        width: 44px !important;
        height: 44px !important;
        background-color: #1a1a1a !important; /* Solid dark circles */
    }

    /* --- Carousel & Card Styling --- */
    .carousel-wrapper {
        padding: 0;
        overflow: visible; /* Allow seeing a peek of the next card */
    }

    .carousel-track {
        padding-left: 0 !important; /* Start from the left edge */
        gap: 15px;
    }

    .card {
        min-width: 88vw !important; /* Card takes most of the screen width */
        background: #fff !important;
        border: 1px solid #e0e0e0 !important; /* Light border from screenshot */
        border-radius: 16px !important;
        padding: 12px !important;
        opacity: 1 !important; /* Make cards fully visible on mobile */
        transform: none !important; /* Remove scaling effect for mobile simplicity */
        box-shadow: none !important;
    }

    .card-img-container {
        height: 380px !important; /* Tall vertical images */
        border-radius: 12px !important;
    }

    /* Footer area of the card */
    .card-footer {
        display: block !important; /* Stack elements */
        padding: 15px 5px 5px 5px !important;
    }

    .card-info h3 {
        font-size: 22px !important;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .card-info p {
        font-size: 16px;
        color: #666;
        margin-bottom: 15px;
    }

    /* Tag Styling */
    .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }

    .tag {
        background-color: #f5f5f5;
        border: 1px solid #ddd !important;
        color: #333 !important;
        padding: 6px 16px !important;
        font-size: 13px !important;
        border-radius: 25px !important;
    }
}
@media (max-width: 768px) {
    .projects-section .mb-3 mb-md-5{
        margin-bottom: 0 !important;
    }
}
@media (max-width: 768px) {
    .cta-section  .mb-3 mb-md-5{
        margin-bottom: 0 !important;
    }
}
@media (max-width: 768px) {
    .nepal-clients-section  .client-mosaic .mt-5 {
        margin-bottom: 0 !important;
    }
}
@media (max-width: 768px) {
    .nepal-clients-section  .mb-3 mb-md-5{
        margin-bottom: 0 !important;
    }
}
@media (max-width: 768px) {
    .nepal-clients-section  .mt-5 {
        margin-top: 30px !important;
    }
}
@media (max-width: 768px) {
    .footer-wrap  .pt-5 {
        padding-top: 0 !important;
    }
}
@media (max-width: 768px) {
    .pb-70 {
        padding-bottom: 60px !important; /* or 0 if you want no space */
    }

    .pt-70 {
        padding-top: 60px !important; /* or 0 if you want no space */
    }
}

@media (max-width: 991px) {
    /* 1. Strengthen the overlay for mobile contrast */
    .cta-overlay {
        background: linear-gradient(
            to bottom, 
            rgba(0, 0, 0, 0.75) 0%,   /* Deep dark at the top for the heading */
            rgba(0, 0, 0, 0.4) 40%,   /* Fades out towards the middle */
            rgba(0, 0, 0, 0.6) 100%   /* Darkens slightly again at bottom for the card contrast */
        ) !important;
        z-index: 1;
    }

    /* 2. Global darkening of the image layer for readability */
    .cta-bg-image::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.25); /* Subtle dark tint over the whole photo */
        z-index: -1;
    }

    /* 3. Enhance the heading text itself */
    .banner-overlay-text h3 {
        font-size: 30px !important; /* Adjust size for mobile */
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6); /* Adds "pop" against light background colors */
        position: relative;
        z-index: 2;
        line-height: 1.2;
    }

    /* 4. Increase spacing inside the wrapper for mobile layout */
    .cta-banner-wrapper {
        padding: 50px 20px !important;
        background-attachment: scroll; /* Prevents stuttering on some mobile browsers */
        /* margin-top: 30px; */
    }

    /* 5. Adjust the floating card spacing */
    .cta-floating-card {
        margin-top: 30px;
        padding: 25px !important;
    }
}

@media (max-width: 991px) {
    /* --- General Footer Layout --- */
    .footer-wrap {
        background-color: #f8f9fa; /* Light background as seen in screenshot */
    }

    .footer-bg-image {
        opacity: 1; /* Soften the abstract background image */
        /* filter: grayscale(100%) brightness(1.2); Make it light/silvery */
    }

    /* Hide the dark glow/spotlight for a clean light look */
    .footer-glow {
        display: none;
    }

    .footer-content-layer {
        padding: 40px 20px !important;
        text-align: center;
    }

    /* --- Logo Management --- */
    .footer-logo-link {
        display: block;
        margin: 0 auto 40px auto;
        text-align: center;
    }

    .footer-logo-img {
        max-width: 280px !important;
        margin: 0 auto;
    }

    /* --- Navigation Menu (About, Projects, etc.) --- */
    .footer-nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px !important;
    }

    .footer-nav-menu a {
        margin: 0 !important;
        color: #666 !important; /* Dark grey text */
        font-size: 16px;
        font-weight: 700;
    }

    /* --- Social Buttons --- */
    .footer-social-row {
        justify-content: center !important;
        gap: 15px;
        margin-bottom: 35px !important;
    }

    .social-btn {
        background-color: #ffffff !important;
        color: #000 !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Soft shadow like screenshot */
        border: 1px solid #eee;
    }

    /* --- Legal Links (Terms & Privacy) --- */
    .footer-legal-row {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .footer-legal-row a {
        margin: 0 !important;
        color: #444 !important;
        font-weight: 700;
        font-size: 15px;
    }

    /* --- Bottom Copyright Area --- */
    .footer-hr {
        border-color: #ddd !important;
        margin-bottom: 25px !important;
    }

    .footer-copy {
        text-align: center;
        font-size: 13px;
        color: #888 !important;
        line-height: 1.8;
    }

    /* Ensure the "Developed by" is also centered and below copyright */
    .col-md-6.text-md-end {
        text-align: center !important;
        margin-top: 5px;
    }
}
@media (max-width: 991px) {
    /* --- Container & Background --- */
    .footer-wrap {
        background-color: #f8f9fa; /* Light theme from screenshot */
        overflow: hidden;
    }

    .footer-bg-image {
        /* opacity: 0.3;
        filter: grayscale(100%) brightness(1.3); Makes abstract image light/silvery */
    }

    .footer-glow {
        display: none; /* Removes dark spotlight */
    }

    .footer-content-layer {
        padding: 50px 25px 0 !important; /* Adjust padding for mobile */
        text-align: left; /* General text alignment left */
    }

    /* --- Logo Alignment --- */
    .footer-logo-link {
        display: block;
        margin: 0 0 0 0 !important; /* Left aligned, 0 auto removed */
        text-align: left;
        border-bottom: 1px solid #e0e0e0 !important;
    }

    .footer-logo-img {
        max-width: 260px !important;
        margin-left: 0;
    }

    /* --- Navigation Menu (About, Projects, etc.) --- */
    .footer-nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start !important; /* Left align row items */
        gap: 15px;
        margin-bottom: 30px !important;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav-menu a {
        margin: 0 !important;
        padding-right: 5px;
        color: #666 !important; /* Dark grey for visibility on light bg */
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
    }

    /* --- Social Buttons --- */
    .footer-social-row {
        justify-content: flex-start !important; /* Left align icons */
        gap: 12px;
        margin-bottom: 35px !important;
    }

    .social-btn {
        background-color: #ffffff !important; /* White buttons from screenshot */
        color: #1a1a1a !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft shadow effect */
        border: 1px solid #efefef;
        width: 44px;
        height: 44px;
    }

    /* --- Legal Links (Terms & Privacy) --- */
    .footer-legal-row {
        display: flex;
        justify-content: flex-start !important; /* Left align */
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-legal-row a {
        margin: 0 !important;
        color: #333 !important;
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
    }

    /* --- Bottom Copyright Area --- */
    .footer-hr {
        border-color: #e0e0e0 !important;
        margin: 20px 0 !important;
        opacity: 1;
    }

    .footer-copy {
        text-align: center !important; /* Copyright text left */
        font-size: 13px;
        color: #333 !important;
        /* margin-bottom: 10px; */
    }

    /* Ensure "Developed by" also goes left */
    .col-md-6.text-center.text-md-end {
        text-align: left !important;
        padding: 0;
    }
}


/* Contact Block Container */
.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-group {
    display: flex;
    flex-direction: column; /* Stacks label over values */
    gap: 4px;
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888; /* Muted color for the label */
    font-weight: 700;
}

.contact-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; /* Aligns to right on desktop */
    gap: 15px; /* Space between the numbers/emails */
}

.contact-values a {
    color: #1a1a1a !important; /* Dark text for light background */
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-values a:hover {
    color: #c59544 !important; /* Gold accent from your logo */
}

/* Responsive adjustment for Mobile */
@media (max-width: 991px) {
    .contact-values {
        justify-content: flex-start; /* Aligns left on mobile */
    }
    .footer-contact-block {
        text-align: left;
    }
}

/* --- Professional Footer Refinements --- */

/* 1. Labels: Give them an 'Architectural' feel with letter spacing */
.contact-label {
    font-size: 10px; /* Smaller but clearer */
    text-transform: uppercase;
    letter-spacing: 0.25em; /* This is the secret to a high-end look */
    color: #999; /* Muted so the numbers stand out more */
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

/* 2. Values: Clean, medium weight links */
.contact-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end; 
    gap: 20px; /* Increased gap for breathing room */
}

.contact-values a {
    color: #1a1a1a !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500; /* Use medium weight instead of heavy bold */
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.contact-values a:hover {
    color: #c59544 !important; /* Gold accent on hover */
    opacity: 1;
    transform: translateY(-1px); /* Very subtle lift */
}

/* 3. Navigation Links Refinement */
.footer-nav-menu a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-left: 25px !important;
    color: #444 !important;
    transition: 0.3s;
}

.footer-nav-menu a:hover {
    color: #c59544 !important;
}

/* 4. Social Buttons: Clean & Elegant */
.social-btn {
    width: 38px; /* Slightly smaller for a tighter look */
    height: 38px;
    background-color: #fff;
    border: 1px solid #eee; /* Subtle border makes it look more finished */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); /* Softer shadow */
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background-color: #c59544;
    color: #fff !important;
    border-color: #c59544;
    transform: scale(1.1);
}

/* 5. Mobile Alignment */
@media (max-width: 991px) {
    .contact-values {
        justify-content: flex-start;
        gap: 10px;
    }
    .footer-nav-menu {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }
    .footer-nav-menu a {
        margin-left: 0 !important;
    }
}


/* --- Managed Footer Refinements --- */

.footer-content-layer {
    /* padding-top: 60px !important; */
}

/* 1. Tighten the Navigation */
.footer-nav-menu {
    margin-bottom: 25px !important;
}

.footer-nav-menu a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-left: 20px !important;
    color: #333 !important;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-nav-menu a:hover {
    opacity: 1;
    color: #c59544 !important;
}

/* 2. Compact Social Row */
.footer-social-row {
    margin-bottom: 0 !important;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.social-btn {
    width: 34px; /* Slightly smaller for better management */
    height: 34px;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #eee;
    color: #1a1a1a;
}

/* 3. Managed Contact Block */
.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Consistent gap between phone and email blocks */
}

.contact-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Strictly right-aligned */
}

.contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    font-weight: 700;
    margin-bottom: 8px; /* Tidy gap between label and data */
}

.contact-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    max-width: 300px; /* Prevents long emails from breaking the alignment */
}

.contact-values a {
    font-size: 13.5px;
    font-weight: 600;
    color: #222 !important;
    white-space: nowrap;
}

/* Bottom Divider */
.footer-hr {
    margin: 40px 0 20px 0 !important;
    border-color: #e5e5e5 !important;
}

.footer-wrap {
    background-color: #0a0a0a; /* Deeper black for more contrast */
}

.footer-dark-overlay {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.92) 100%);
}

.footer-glow {
    /* More subtle, expansive glow */
    background: radial-gradient(circle, rgba(197, 149, 68, 0.12) 0%, rgba(197, 149, 68, 0) 70%);
    width: 800px;
    height: 800px;
    top: -10%;
    left: 20%;
    filter: blur(120px);
}

/* --- ABOUT SECTION REFINEMENTS --- */

/* 1. Section Tag (The "About ARC" Label) */
.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: #999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: #c59544; /* Your brand gold/accent */
    border-radius: 50%;
}

/* 2. Main Title (Sophisticated Typography) */
.about-main-title {
    font-size: 42px; /* Precision size */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em; /* Tighter tracking for high-end look */
    color: #1a1a1a;
}

.text-accent {
    color: #666; /* Slightly muted second line for depth */
    font-weight: 500;
}

/* 3. Description & Link */
.about-description-wrapper {
    padding-left: 20px;
    border-left: 1px solid #eee; /* Subtle vertical line to connect the text */
}

.about-lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    max-width: 340px;
}

/* 4. Interactive Link */
.about-studio-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.about-studio-link i {
    transition: transform 0.3s ease;
}

.about-studio-link:hover {
    color: #c59544;
}

.about-studio-link:hover i {
    transform: translateX(8px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about-main-title {
        font-size: 32px;
    }
    .about-description-wrapper {
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
    }
}

/* --- TWO-COLUMN ARCHITECTURAL LAYOUT --- */

/* Label Styling */
.section-label-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: #999;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background-color: #c59544; /* Brand gold */
    border-radius: 50%;
}

/* Heading Styling */
.about-main-title {
    font-size: clamp(32px, 5vw, 54px); /* Scales perfectly between mobile/desktop */
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em; /* Tighter for a high-end agency look */
    color: #111;
}

.text-accent {
    color: #777; /* Softens the second line for depth */
    font-weight: 600;
}

/* Right Column Content */
.about-context-box {
    /* Adds a subtle vertical line to create a "Sidebar" feel */
    border-left: 1px solid #a8a5a5;
    padding-left: 30px;
}
.about-context-box-1
 {
    border-left: 1px solid #666;
    padding-left: 30px;
}
@media (max-width: 768px) {
    .about-context-box-1 {
        border-left: none;
        padding-left: 0; /* optional: remove spacing too */
    }
}

.about-lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

/* Link Styling */
.about-studio-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
}

.about-studio-link:hover {
    color: #c59544;
    border-color: #c59544;
}

.about-studio-link i {
    transition: transform 0.3s ease;
}

.about-studio-link:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .about-context-box {
        border-left: none;
        padding-left: 0;
        margin-top: 5px;
    }
    
    .about-main-title {
        font-size: 34px;
    }
}

.text-muted-1 {
    --bs-text-opacity: 1;
    color: #d3d3d3 !important;
}


.about-link {
    color: #212529; /* default dark */
    transition: color 0.3s ease;
}
.about-link-1 {
    color: #dfdfdf !important;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #c59544;
}
.about-link-1:hover {
    color: #c59544 !important;
}
.fs-22{
    font-size: 22px !important;
}

/* Container for the two rows */
.footer-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keeps both rows aligned to the right */
    margin-bottom: 25px;
}

/* Individual Rows */
.footer-nav-row {
    display: flex;
    justify-content: flex-end;
    gap: 25px; /* Adjust this to match the horizontal spacing in your screenshot */
}

/* Link Styling Refinement */
.footer-nav-row a {
    color: #333 !important; /* Dark grey as per screenshot */
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav-row a:hover {
    color: #c59544 !important; /* Gold hover effect */
}

/* Responsive adjustment for Mobile */
@media (max-width: 991px) {
    .footer-nav-menu {
        align-items: flex-start; /* Align left on mobile as per your previous preference */
    }
    .footer-nav-row {
        justify-content: flex-start;
        flex-wrap: wrap; /* Allows links to wrap if the screen is very narrow */
        gap: 15px;
    }
}

/* The Grid Logic */
.footer-nav-grid {
    display: grid;
    /* Creates 4 columns of equal width based on content */
    grid-template-columns: repeat(4, auto); 
    gap: 15px 40px; /* 15px vertical gap, 40px horizontal gap */
    justify-items: end; /* Aligns text to the right within each cell */
    text-align: right;
}

.nav-item {
    color: #666 !important; /* Muted grey for a premium look */
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover {
    color: #c59544 !important; /* Brand Gold */
}

/* Social Buttons Row */
.footer-social-row {
    display: flex;
    gap: 12px;
    justify-content: start;
}

.social-btn {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: 0.3s;
    font-size: 14px;
}

.social-btn:hover {
    background-color: #c59544;
    color: #fff;
    border-color: #c59544;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        justify-items: start;
        gap: 20px;
    }
    .empty-cell {
        display: none; /* Remove spacer on mobile */
    }
    .footer-nav-container {
        align-items: flex-start !important;
    }
}

a.text-gry:hover {
    color: #c59544 !important;
}

:root {
    --bg-dark: #121212;
    
    /* Premium "Green Note" variables from client's design */
    --forest:       #1B3A2D;
    --forest-mid:   #254D3C;
    --forest-light: #2E6B52;
    --gold:         #C9A84C;
    --gold-warm:    #E8CC8A;
    --parchment:    #F2EBD9;
    --cream:        #FAF6EE;
    --linen:        #EDE5D0;
    --umber:        #5A3A28;
}

.hero-bottom-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 2;
    pointer-events: none;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);

    /* Infusing deep green and dark tones into the gradient */
    background: linear-gradient(180deg,
            rgba(27, 58, 45, 0) 0%,
            rgba(25, 48, 38, 0.4) 50%,
            rgba(18, 30, 25, 0.95) 100%);

    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

/* Container Background to Deep Forest Green */
.design-delivers-section {
    background-color: var(--forest) !important;
    padding: 70px 0;
    color: #ffffff;
}

/* Individual Content Cards to Mid Forest Green */
.design-card {
    display: none;
    background-color: var(--forest-mid) !important;
    animation: fadeIn 0.4s ease-in-out;
}

/* Tab Button Interactions */
.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
}

.tab-btn.active {
    color: var(--gold-warm) !important;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-warm) !important;
}

/* Button Slide Animation Customization */
.btn-minimal-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-minimal-dark:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--forest) !important;
}
.nepal-clients-section {
    padding: 140px 0;
    background: var(--cream);
    border-top: 1px solid #dac99e !important;
}

.client-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background-color: var(--parchment) !important;
    border: 1px solid #dac99e !important;
}

.mosaic-item {
    background-color: #fff;
    padding: 60px 40px;
}

.mosaic-item:hover {
    background-color: var(--cream) !important;
}

.logo-name {
    color: var(--umber) !important;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 58, 45, 0.6) 0%, transparent 60%), 
                linear-gradient(to top, rgba(27, 58, 45, 0.9) 0%, transparent 30%) !important;
    z-index: 1;
}

.contact-link:hover {
    color: var(--gold) !important;
}

.footer-wrap {
    position: relative;
    background-color: #0b1c15 !important; /* Deepest forest-black background */
    color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.footer-glow {
    position: absolute;
    top: 15%;
    left: 40%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, rgba(27, 58, 45, 0) 70%) !important;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Accent alignments for footer buttons and links */
.social-btn:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--forest) !important;
}

.nav-item:hover {
    color: var(--gold-warm) !important;
}

/* --- Premium Full Green Header Styling Overrides --- */
:root {
    --forest:       #1B3A2D;
    --forest-mid:   #254D3C;
    --gold-warm:    #E8CC8A;
    --gold:         #C9A84C;
    --cream:        #FAF6EE;
}

/* 1. Desktop Nav Menu Pill defaults to deep forest green */
.menu-pill {
    background-color: var(--forest) !important;
    border: 1px solid rgba(232, 204, 138, 0.15);
    box-shadow: 0 8px 24px rgba(27, 58, 45, 0.2);
}

/* 2. Style links inside the menu pill to be soft white/cream with warm gold hover states */
.nav-links a {
    color: rgba(255, 255, 255, 0.85) !important;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-warm) !important;
}

/* 3. Keep the logo-pill background clean and white initially for solid image contrast */
.logo-pill {
    background-color: #ffffff !important;
    border: 1px solid rgba(27, 58, 45, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}



/* --- About Us Section "Green Note" Overrides --- */

.about-section-custom {
    background-color: var(--cream) !important; /* Premium earth-toned soft cream background */
    position: relative;
    transition: background-color 0.3s ease;
}

/* Small luxury section labels */
.section-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--forest-light) !important; /* Muted brand green */
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold) !important; /* Warm gold dot */
    border-radius: 50%;
    display: inline-block;
}

/* Accent border to the description context box */
.about-context-box {
    border-left: 2px solid var(--forest) !important; /* Luxurious Forest Green line */
    padding-left: 24px;
}

/* Gold Underlined Link Styling */
.about-link {
     color: var(--forest) !important;
   /* border-bottom: 2px solid var(--forest) !important; */
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: var(--gold) !important;
    /* border-bottom-color: var(--gold) !important; */
}

/* Elegant brand-green color for statistic numbers */
.stat-number {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    color: var(--forest) !important; /* Deep Forest Green numbers */
}

/* Soften separators to match the warm earthy palette */
.stats-divider {
    border-top: 1px solid #dac99e !important;
    opacity: 0.7;
}

/* Mobile responsive alignment */
@media (max-width: 767px) {
    .about-context-box {
        border-left: none !important;
        padding-left: 0;
        margin-top: 15px;
    }
    
    .stat-item-border:nth-child(odd) {
        border-right: 1px solid #dac99e !important;
    }
    
    .stat-item-border:nth-child(1),
    .stat-item-border:nth-child(2) {
        border-bottom: 1px solid #dac99e !important;
    }
}
.text-muted {
    --bs-text-opacity: 1;
    color: var(--forest) !important;
}

/* --- Premium Full-Width Green Header Styling --- */
:root {
    --forest:       #1B3A2D;
    --forest-mid:   #254D3C;
    --gold-warm:    #E8CC8A;
    --gold:         #C9A84C;
    --cream:        #FAF6EE;
}

/* Base Full-Width Header Bar */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    background-color: var(--forest) !important; /* Premium Deep Green */
    border-bottom: 1px solid rgba(232, 204, 138, 0.15); /* Elegant gold horizontal border */
    padding: 24px 0 !important; /* Spacious desktop height */
    z-index: 2000;
    transition: all 0.4s ease;
}

/* Remove pill border-radius structures & shapes so they blend into a flat bar */
.logo-pill, .menu-pill {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    height: auto !important;
}

/* Align Nav Link positioning and text variables */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-warm) !important;
}

/* Adjust standard logo bounds within full green bar */
.nav-logo-img {
    height: 60px !important;
    width: auto;
    display: block;
}

/* Keep header full-width inside Bootstrap boundaries */
.nav-inner {
    max-width: 100% !important;
    width: 100%;
}

/* --- ARC DESIGN & DEVELOPER CUSTOM `:root` THEME --- */
:root {
    --forest:       #1B3A2D;
    --forest-mid:   #254D3C;
    --forest-light: #2E6B52;
    --cognac:       #7C3A1E;
    --cognac-light: #A04D28;
    --gold:         #C9A84C;
    --gold-light:   #DFC175;
    --gold-warm:    #E8CC8A;
    --parchment:    #F2EBD9;
    --parchment-dark:#E8DEC8;
    --cream:        #FAF6EE;
    --linen:        #EDE5D0;
    --umber:        #5A3A28;
    --text-body:    #3D2B1F;
    --text-mid:     #6B4C38;
    --text-light:   #9A7A64;
    --transition:   cubic-bezier(0.76, 0, 0.24, 1);
}

/* ==========================================
   1. FULL-WIDTH GREEN NAV BAR (DESKTOP)
   ========================================== */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    background-color: #f2ecda !important; /* Brand Deep Green */
    border-bottom: 1px solid rgba(232, 204, 138, 0.15); /* Delicate gold divider line */
    padding: 15px 0 !important;
    z-index: 2000;
    transition: padding 0.4s var(--transition), background-color 0.4s;
}

/* Flatten and normalize floating pill structures for full-width layout */
.logo-pill, .menu-pill {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    height: auto !important;
    padding: 0 !important;
}

.nav-links a {
    color: var(--forest) !important; /* Soft Cream tone */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--cognac-light) !important;
}

.nav-logo-img {
    height: 52px !important;
    width: auto;
    display: block;
}

.nav-inner {
    max-width: 100% !important;
    width: 100%;
}



/* ==========================================
   3. HERO SECTION FOG
   ========================================== */
.hero-bottom-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 2;
    pointer-events: none;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background: linear-gradient(180deg,
            rgba(27, 58, 45, 0) 0%,
            rgba(27, 58, 45, 0.4) 50%,
            rgba(27, 58, 45, 0.95) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

/* ==========================================
   4. ABOUT ARC SECTION "GREEN NOTE"
   ========================================== */
.about-section-custom {
    background-color: var(--cream) !important; /* Soft organic cream backdrop */
    position: relative;
}

.section-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--forest-light) !important;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold) !important;
    border-radius: 50%;
    display: inline-block;
}

.about-context-box {
    border-left: 2px solid var(--forest) !important; /* Forest Accent Line */
    padding-left: 24px;
}

.about-link {
    color: var(--forest) !important;
    /* border-bottom: 2px solid var(--gold) !important; */
    padding-bottom: 4px;
    transition: all 0.3s var(--transition);
}

.about-link:hover {
    color: var(--gold) !important;
    /* border-bottom-color: var(--forest) !important; */
}

.stat-number {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    color: var(--forest) !important; /* Premium brand green numbers */
}

.stats-divider {
    border-top: 1px solid #dac99e !important;
    opacity: 0.7;
}

/* ==========================================
   5. SERVICES SECTION (DEEP FOREST FOCUS)
   ========================================== */
.design-delivers-section {
    background-color: var(--forest) !important;
    padding: 70px 0;
    color: #ffffff;
}

.design-card {
    display: none;
    background-color: var(--forest-mid) !important;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
}

.tab-btn.active {
    color: var(--gold-warm) !important;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-warm) !important;
}

.btn-minimal-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-minimal-dark:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--forest) !important;
}

/* ==========================================
   6. NEPAL CLIENTS SECTION
   ========================================== */
.nepal-clients-section {
    padding: 140px 0;
    background: #F8F5EE;
    border-top: 1px solid #dac99e !important;
}

.client-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background-color: var(--parchment) !important;
    border: 1px solid #dac99e !important;
}

.mosaic-item {
    background-color: #ffffff;
    padding: 60px 40px;
}

.mosaic-item:hover {
    background-color: var(--linen) !important; /* Soft earthy transition hover */
}

.logo-name {
    color: var(--umber) !important;
}

/* ==========================================
   7. CTA SECTION OVERLAY
   ========================================== */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 58, 45, 0.5) 0%, transparent 60%), 
                linear-gradient(to top, rgba(27, 58, 45, 0.85) 0%, transparent 30%) !important;
    z-index: 1;
}

.contact-link:hover {
    color: var(--gold) !important;
}

/* ==========================================
   8. FOOTER THEME
   ========================================== */
.footer-wrap {
    position: relative;
    background-color: var(--umber) !important; /* High-end dark chocolate umber background */
    color: var(--cream);
    overflow: hidden;
    width: 100%;
}

.footer-glow {
    position: absolute;
    top: 15%;
    left: 40%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(232, 204, 138, 0.15) 0%, rgba(27, 58, 45, 0) 70%) !important;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.social-btn:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--forest) !important;
}

.nav-item:hover {
    color: var(--gold-warm) !important;
}

.footer-copy {
    color: var(--parchment) !important;
}

/* ==========================================
   9. RESPONSIVE ALIGNMENTS
   ========================================== */
@media (max-width: 767px) {
    .about-context-box {
        border-left: none !important;
        padding-left: 0;
        margin-top: 15px;
    }
    
    .stat-item-border:nth-child(odd) {
        border-right: 1px solid #dac99e !important;
    }
    
    .stat-item-border:nth-child(1),
    .stat-item-border:nth-child(2) {
        border-bottom: 1px solid #dac99e !important;
    }
}


/* ==========================================
   10. NEW GEOMETRIC INFINITE TICKER 
   ========================================== */
   .ticker-marquee-bar.modern-luxury {
    background-color: var(--cognac); /* Keeping your exact background */
    padding: 24px 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    z-index: 10;
    /* Clean, crisp high-contrast luxury borders */
    /* border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light); */
}

/* Subtle edge vignette instead of heavy gradient */
.ticker-marquee-bar.modern-luxury::before,
.ticker-marquee-bar.modern-luxury::after {
    content: "";
    height: 100%;
    width: 120px;
    position: absolute;
    top: 0;
    z-index: 2;
    pointer-events: none;
}
.ticker-marquee-bar.modern-luxury::before { left: 0; background: linear-gradient(to right, var(--cognac), transparent); }
.ticker-marquee-bar.modern-luxury::after { right: 0; background: linear-gradient(to left, var(--cognac), transparent); }

.ticker-marquee-track {
    display: inline-flex;
    animation: infiniteScrollLoop 35s linear infinite; /* Ultra slow, premium crawl */
    will-change: transform;
}

.ticker-marquee-item {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 13px;
    font-weight: 400; /* Lighter weight for an editorial look */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff; /* Contrast white against cognac background */
    padding: 0 60px;
    display: inline-flex;
    align-items: center;
}

/* Subtle gold numbering for structural elegance */
.ticker-marquee-item span {
    font-size: 9px;
    color: var(--gold-warm);
    margin-right: 12px;
    font-weight: 600;
    letter-spacing: 0em;
    vertical-align: middle;
    opacity: 0.8;
}

/* Clean vertical line separator */
.ticker-marquee-item::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--gold-light);
    opacity: 0.3;
    margin-left: 60px;
}

/* Pause on hover for an interactive element */
.ticker-marquee-bar.modern-luxury:hover .ticker-marquee-track {
    animation-play-state: paused;
}

@keyframes infiniteScrollLoop {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

/* Mobile responsive refinements */
@media (max-width: 768px) {
    .ticker-marquee-bar.modern-luxury {
        padding: 16px 0;
    }
    .ticker-marquee-item {
        font-size: 11px;
        padding: 0 35px;
    }
    .ticker-marquee-item::after {
        margin-left: 35px;
        height: 10px;
    }
}
.ticker-marquee-item {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 13px;
    font-weight: 400; 
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff; 
    display: inline-flex;
    align-items: center;
    position: relative;
    /* 1. Use padding exclusively to create the gap between text items */
    padding: 0 60px; 
}

/* Clean vertical line separator centered exactly in the middle */
.ticker-marquee-item::after {
    content: '';
    position: absolute;
    /* 2. Position it at exactly 100% of the item's width (the right edge) */
    right: 0; 
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: var(--gold-light);
    opacity: 0.3;
}

/* Mobile responsive refinements */
@media (max-width: 768px) {
    .ticker-marquee-bar.modern-luxury {
        padding: 16px 0;
    }
    .ticker-marquee-item {
        font-size: 11px;
        /* Tighten spacing on mobile screens */
        padding: 0 60px; 
    }
    .ticker-marquee-item::after {
        height: 10px;
    }
}

/* ==========================================
   1. FULL-WIDTH GREEN NAV BAR (DESKTOP)
   ========================================== */
   .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    background-color: transparent !important; /* Fully transparent at top of page */
    border-bottom: 1px solid transparent; /* No visible border initially */
    padding: 15px 0 !important; /* Spacious starting padding */
    z-index: 2000;
    transition: padding 0.4s var(--transition), background-color 0.4s, border-color 0.4s;
}

/* Fallback class styles for immediate standard browser scrolling rendering */
.nav-wrapper.scrolled {
    background-color: #f2ecda !important; /* Smooth solid cream fallback */
    border-bottom: 1px solid rgba(232, 204, 138, 0.15) !important;
    padding: 15px 0 !important;
}

/* Flatten and normalize floating pill structures for full-width layout */
.logo-pill, .menu-pill {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    height: auto !important;
    padding: 0 !important;
}

/* Link styling defaults (Optimized for visibility on the dark Hero image) */
.nav-links a {
    color: var(--cream) !important; /* High contrast soft cream text initially */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--gold-warm) !important;
}

/* Target the text shift on the fallback scrolled state */
.nav-wrapper.scrolled .nav-links a {
    color: var(--forest) !important; /* Forest Green link color on the cream nav bar */
}

.nav-wrapper.scrolled .nav-links a:hover {
    color: var(--cognac-light) !important;
}

.nav-logo-img {
    height: 52px !important;
    width: auto;
    display: block;
}

.nav-inner {
    max-width: 100% !important;
    width: 100%;
}

/* ==========================================
   1. FULL-WIDTH PREMIUM DESKTOP NAV BAR
   ========================================== */
   .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    background-color: transparent !important; /* Starts transparent over hero section */
    border-bottom: 1px solid transparent;
    padding: 10px 0 !important; /* Spacious starting padding */
    z-index: 2000;
    transition: padding 0.4s var(--transition), background-color 0.4s, border-color 0.4s;
}

/* Fallback class styles for standard browser scrolling */
.nav-wrapper.scrolled {
    background-color: #f8f5ee !important; /* Soft Cream background */
    border-bottom: 1px solid rgba(232, 204, 138, 0.15) !important;
    padding: 10px 0 !important;
}

/* Logo container styled as a floating white card/pill at start */
.logo-pill {
    background-color: #ffffff !important;
    border: 1px solid rgba(232, 204, 138, 0.12) !important;
    border-radius: 100px !important;
    padding: 8px 24px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: auto !important;
    transition: all 0.4s var(--transition);
}

/* Fades the logo pill container to transparent on scroll to merge with the cream nav */
.nav-wrapper.scrolled .logo-pill {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    /* padding: 10px 0 !important; */
}

/* Normalize menu wrapper structure */
.menu-pill {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    height: auto !important;
    padding: 0 !important;
}

/* Link styling (Optimized initially for readability on the dark Hero background) */
.nav-links a {
    color: var(--cream) !important; /* High contrast soft cream text initially */
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.3s var(--transition);
}

.nav-links a:hover {
    color: var(--gold-warm) !important;
}

/* Transition links to brand forest green on the cream navbar background */
.nav-wrapper.scrolled .nav-links a {
    color: var(--forest) !important;
}

.nav-wrapper.scrolled .nav-links a:hover {
    color: var(--cognac-light) !important;
}

/* Enquiry CTA Button Styling */
.nav-cta-wrapper {
    display: flex;
    align-items: center;
}

.btn-enquiry {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff !important;
    background-color: var(--forest) !important; /* Solid brand green */
    padding: 11px 24px;
    border-radius: 100px;
    border: 1px solid rgba(232, 204, 138, 0.15);
    text-decoration: none !important;
    box-shadow: 0 4px 12px #dac99e;
    transition: all 0.3s var(--transition);
}

.btn-enquiry:hover {
    background-color: var(--gold-warm) !important;
    color: var(--forest) !important;
    border-color: var(--gold-warm) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 58, 45, 0.25);
}

/* Logo Image sizes */
.nav-logo-img {
    height: 52px !important;
    width: auto;
    display: block;
}

/* Hide the scrolled logo by default */
.logo-scrolled {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
}

.logo-default {
    opacity: 1;
}

.nav-inner {
    max-width: 100% !important;
    width: 100%;
}

/* ==========================================
   SMART HIDE/SHOW TRANSITION CLASSES
   ========================================== */

.nav-wrapper {
    transition: padding 0.4s var(--transition),
                background-color 0.4s,
                border-color 0.4s,
                transform 0.4s var(--transition) !important;
    will-change: transform, padding, background-color;
}

.nav-wrapper.nav-hidden {
    transform: translateY(-100%) !important;
}

.mobile-nav {
    transition: transform 0.4s var(--transition),
                background-color 0.4s,
                box-shadow 0.4s !important;
    will-change: transform, background-color;
}

.mobile-nav.nav-hidden {
    transform: translateY(-100%) !important;
}

.nav-links {
    align-items: center;
}

/* ===================================================
   4. ABOUT ARC SECTION (FOREST & COGNAC ACCENT SYSTEM)
   =================================================== */
   .about-section-custom {
    background-color: var(--cream) !important; /* Soft organic cream backdrop */
    position: relative;
    transition: background-color 0.3s ease;
}

.section-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--forest-light) !important; /* Muted brand green label */
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--cognac) !important; /* Cognac (#7C3A1E) accent dot */
    border-radius: 50%;
    display: inline-block;
}

/* Forest Green (#1B3A2D) left border line for clean architectural framing */
.about-context-box {
    border-left: 2px solid var(--forest) !important; 
    padding-left: 24px;
}

/* Cognac (#7C3A1E) Link with Forest Green (#1B3A2D) hover transition */
.about-link {
    color: var(--cognac) !important; /* Cognac base link */
    /* border-bottom: 2px solid var(--parchment-dark) !important; */
    /* padding-bottom: 4px; */
    transition: all 0.3s var(--transition);
}

.about-link:hover {
    color: var(--forest) !important; /* Forest Green on hover */
    /* border-bottom-color: var(--cognac) !important; */
}

/* Base styling for statistic numbers */
.stat-number {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

/* 
   Alternating color grid for balanced visual rhythm:
   - Odd statistics (1st & 3rd) use brand Forest Green (#1B3A2D)
   - Even statistics (2nd & 4th) use brand Cognac (#7C3A1E)
*/
.stat-item-border:nth-child(odd) .stat-number {
    color: var(--forest) !important;
}


/* Soften separators to match the warm parchment grid lines */
.stats-divider {
    border-top: 1px solid #dac99e !important;
    opacity: 0.7;
}

/* Mobile responsive alignment */
@media (max-width: 767px) {
    .about-context-box {
        border-left: none !important;
        padding-left: 0;
        margin-top: 15px;
    }
    
    .stat-item-border:nth-child(odd) {
        border-right: 1px solid #dac99e !important;
    }
    
    .stat-item-border:nth-child(1),
    .stat-item-border:nth-child(2) {
        border-bottom: 1px solid #dac99e !important;
    }
}

/* ===================================================
   4. ABOUT ARC SECTION (PRECISION COLOR ASSIGNMENT)
   =================================================== */
   .about-section-custom {
    background-color: #fff !important; /* Soft organic cream backdrop */
    position: relative;
    transition: background-color 0.3s ease;
}

.section-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--forest-light) !important; /* Muted brand green label */
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--cognac) !important; /* Cognac (#7C3A1E) accent dot */
    border-radius: 50%;
    display: inline-block;
}

/* Forest Green left border line for structural framing */
.about-context-box {
    border-left: 2px solid var(--forest) !important; 
    padding-left: 24px;
}

/* Know More Link set to Forest Green (#1B3A2D) with dynamic hover transition */
.about-link {
    color: var(--forest) !important; /* Forest Green base link */
    /* border-bottom: 2px solid var(--parchment-dark) !important; */
    /* padding-bottom: 4px; */
    transition: all 0.3s var(--transition);
}

.about-link:hover {
    color: var(--cognac) !important; /* Transition to Cognac (#7C3A1E) on hover */
    /* border-bottom-color: var(--forest) !important; */
}

/* Statistic numbers set to Forest Green (#1B3A2D) */
.stat-number {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    color: var(--forest) !important; /* Forest Green (#1B3A2D) numbers */
}

/* Statistic labels set to Cognac (#7C3A1E) */
.stat-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000 !important; /* Cognac (#7C3A1E) labels */
}

/* Soften separators to match the warm parchment grid lines */
.stats-divider {
    border-top: 1px solid #dac99e !important;
    /* opacity: 0.7; */
}

/* Mobile responsive alignment */
@media (max-width: 767px) {
    .about-context-box {
        border-left: none !important;
        padding-left: 0;
        margin-top: 15px;
    }
    
    .stat-item-border:nth-child(odd) {
        border-right: 1px solid #dac99e !important;
    }
    
    .stat-item-border:nth-child(1),
    .stat-item-border:nth-child(2) {
        border-bottom: 1px solid #dac99e !important;
    }
}

/* ===================================================
   5. SERVICES SECTION (FOREST & COGNAC ACCENT THEME)
   =================================================== */
   .design-delivers-section {
    background-color: var(--forest) !important; /* Solid brand deep green background */
    padding: 70px 0;
    color: #ffffff;
}

/* Description context box with warm cognac accent border line */
.about-context-box-1 {
    border-left: 2px solid var(--cognac) !important; /* Cognac (#7C3A1E) line */
    padding-left: 24px;
}

.about-link-1 {
    color: var(--gold-warm) !important;
    transition: color 0.3s var(--transition);
}

.about-link-1:hover {
    color: var(--gold) !important;
}

/* Tab navigation tracks */
.custom-tabs {
    gap: 97px;
    border-bottom: 2px solid rgba(250, 246, 238, 0.1);
    width: max-content;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(250, 246, 238, 0.45);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s var(--transition);
    width: max-content;
}

.tab-btn:hover {
    color: var(--gold-warm) !important;
}

.tab-btn.active {
    color: var(--gold-warm) !important;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-warm) !important;
}

/* Active Service Cards */
.design-card {
    display: none;
    background-color: var(--forest-mid) !important; /* Mid green card base */
    border: 1px solid rgba(232, 204, 138, 0.08); /* Subtle border for layout structure */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.4s ease-in-out;
}

/* Card numbers highlighted in brand Cognac (#7C3A1E) */
.card-number {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cognac) !important; /* Cognac numbering label */
}

.card-title-text {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #ffffff;
}

/* Lists with brand Cognac (#7C3A1E) bullet dots */
.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.card-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--cognac) !important; /* Cognac bullet points */
    border-radius: 50%;
}

/* Button slide animation - transitioning beautifully into solid Cognac */
.btn-minimal-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: all 0.3s var(--transition);
}

.btn-minimal-dark:hover {
    background-color: var(--cognac) !important; /* Rich cognac fill on hover */
    border-color: var(--cognac) !important;
    color: #ffffff !important;
}

/* ===================================================
   5. SERVICES SECTION (INVERTED HIGH-CONTRAST LAYOUT)
   =================================================== */
   .design-delivers-section {
    background-color: var(--parchment) !important; /* Soft parchment base replaces solid outer green */
    padding: 100px 0;
    color: var(--forest);
    border-top: 1px solid var(--parchment-dark);
    border-bottom: 1px solid var(--parchment-dark);
}

/* Outer Section Heading in deep green for maximum legibility */
.design-delivers-section .display-3 {
    color: var(--forest) !important;
    font-weight: 700;
    letter-spacing: -0.04em;
}

/* Description context box with Cognac accent border line */
.about-context-box-1 {
    border-left: 2px solid var(--cognac) !important; /* Cognac accent line */
    padding-left: 24px;
}
.service-context-box-1 {
    border-left: 2px solid #fff ; /* Cognac accent line */
    padding-left: 24px;
}
@media (max-width: 767px) {
    .service-context-box-1 {
      border-left: none;
      padding-left: 0;
    }
  }

.about-context-box-1 .text-muted-1 {
    color: var(--text-mid) !important; /* Premium brand mid-gray for highly readable paragraphs */
    font-size: 15px;
    line-height: 1.6;
}
.service-context-box-1 .text-muted-1 {
    color: #ffffff !important; /* Premium brand mid-gray for highly readable paragraphs */
    font-size: 15px;
    line-height: 1.6;
}

/* View More Link */
.about-link-1 {
    color: var(--cognac) !important;
    border-bottom: 2px solid var(--parchment-dark) !important;
    padding-bottom: 4px;
    transition: all 0.3s var(--transition);
}
.service-link-1 {
    color: var(--gold-warm) !important;
    border-bottom: 2px solid var(--parchment-dark) !important;
    padding-bottom: 4px;
    transition: all 0.3s var(--transition);
}

.about-link-1:hover {
    color: var(--forest) !important;
    border-bottom-color: var(--cognac) !important;
}

.service-link-1:hover {
    color: #fff !important;
    border-bottom-color: #fff !important;
}

/* Tab Navigation Menu (Earthy gray and forest green transitions) */
.custom-tabs {
    gap: 80px;
    border-bottom: 1.5px solid var(--parchment-dark);
    width: max-content;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-light); /* Soft brand gray */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s var(--transition);
    width: max-content;
}

.tab-btn:hover {
    color: var(--forest) !important;
}

.tab-btn.active {
    color: var(--forest) !important; /* Active text turns to brand deep green */
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--forest) !important; /* Active underline matches green brand tone */
}

/* Active Service Cards (Crisp Deep Green card body floating on Parchment base) */
.design-card {
    display: none;
    background-color: var(--forest) !important; /* Rich deep green card body */
    border: 1px solid #dac99e;
    box-shadow: 0 25px 60px rgba(27, 58, 45, 0.12); /* Elegant organic shadow for depth */
    border-radius: 16px;
    overflow: hidden;
    animation: fadeIn 0.4s ease-in-out;
}

/* Inner card layouts */
.design-card .row {
    align-items: stretch;
}

.card-content-side {
    padding: 48px !important;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

/* Card numbers in Warm Gold (#E8CC8A) */
.card-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-warm) !important; /* Luxury gold numbering */
}

.card-title-text {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--cream) !important; /* Soft cream title */
    margin-top: 15px;
}

/* Content list styling inside the card */
.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.card-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.8) !important; /* Muted cream for high-end legibility */
}

.card-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: var(--gold-warm) !important; /* Gold bullet dots inside the dark card */
    border-radius: 50%;
}

/* Button Minimal Animation (Transitioning from transparent to Warm Gold) */
.btn-minimal-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(250, 246, 238, 0.25);
    background: transparent;
    color: var(--cream) !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    overflow: hidden;
    border-radius: 100px; /* Smooth pill shape */
    transition: all 0.3s var(--transition);
    width: max-content;
}

.btn-minimal-dark:hover {
    background-color: var(--gold-warm) !important; /* Rich gold fill on hover */
    border-color: var(--gold-warm) !important;
    color: var(--forest) !important; /* Deep green text inside gold button */
}

/* Card image constraints */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 12px 12px 0; /* Keeps corner radius clean inside the main card border radius */
}

@media (max-width: 991px) {
    .card-img {
        border-radius: 0 0 12px 12px;
        height: 320px;
    }
}

/* ===================================================
   5. SERVICES SECTION (HIGH-CONTRAST EDGE-BLEED LAYOUT)
   =================================================== */
   .design-delivers-section {
    background-color: var(--parchment) !important; /* Soft premium parchment backdrop */
    padding: 100px 0;
    color: var(--forest);
    border-top: 1px solid var(--parchment-dark);
    border-bottom: 1px solid var(--parchment-dark);
}

/* Outer Section Heading in deep green for maximum legibility */
.design-delivers-section .display-3 {
    color: var(--forest) !important;
    font-weight: 700;
    letter-spacing: -0.04em;
}

/* Description context box with Cognac accent border line */
.about-context-box-1 {
    border-left: 2px solid var(--cognac) !important; /* Cognac accent line */
    padding-left: 24px;
}

.about-context-box-1 .text-muted-1 {
    color: var(--text-mid) !important; /* Premium brand mid-gray for highly readable paragraphs */
    font-size: 15px;
    line-height: 1.6;
}

/* View More Link */
.about-link-1 {
    color: var(--cognac) !important;
    border-bottom: 2px solid var(--parchment-dark) !important;
    padding-bottom: 4px;
    transition: all 0.3s var(--transition);
}

.about-link-1:hover {
    color: var(--forest) !important;
    border-bottom-color: var(--cognac) !important;
}

/* Tab Navigation Menu (Earthy gray and forest green transitions) */
.custom-tabs {
    gap: 48px !important; /* Tightened from 97px/80px for a cleaner desktop layout */
    border-bottom: 1.5px solid var(--parchment-dark);
    width: max-content;
    margin-bottom: 50px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-light); /* Soft brand gray */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s var(--transition);
    width: max-content;
}

.tab-btn:hover {
    color: var(--forest) !important;
}

.tab-btn.active {
    color: var(--forest) !important; /* Active text turns to brand deep green */
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--forest) !important; /* Active underline matches green brand tone */
}

/* 
   Active Service Cards 
   - Uses overflow hidden to automatically clip the bleeding image corners
*/
.design-card {
    display: none;
    background-color: var(--forest) !important; /* Rich deep green card body */
    border: 0px solid #dac99e;
    box-shadow: 0 30px 70px rgba(27, 58, 45, 0.12); /* Dynamic drop shadow */
    border-radius: 20px !important; /* Soft premium corners */
    overflow: hidden !important; /* Crucial: Clips bleeding image corners smoothly */
    animation: fadeIn 0.4s ease-in-out;
}

/* Overriding HTML inline padding to force the image to bleed completely */
.design-card .row {
    padding: 0 !important; 
    margin: 0 !important;
    align-items: stretch;
}

/* Text side layout with breathing room */
.card-content-side {
    padding: 60px 50px !important; /* Even, premium padding for text block */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card numbers in brand Cognac (#7C3A1E) */
.card-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-warm) !important; /* Luxury gold numbering */
}

.card-title-text {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--cream) !important; /* Soft cream title */
    margin-top: 15px;
}

/* Content list styling inside the card */
.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.card-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px; /* Optimized vertical breathing room */
    font-size: 15px;
    line-height: 1.7; /* Crucial for readability of multi-line descriptions */
    color: rgba(250, 246, 238, 0.9) !important; /* Solid cream for high-end legibility */
}

.card-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--gold-warm) !important; /* Gold bullet dots inside the dark card */
    border-radius: 50%;
}

/* Button Minimal Animation (Transitioning from transparent to solid Gold) */
.btn-minimal-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border: none;
    background: var(--gold-warm);
    color: var(--forest) !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    overflow: hidden;
    border-radius: 100px; /* Smooth pill shape */
    transition: all 0.3s var(--transition);
    width: max-content;
}

.btn-minimal-dark:hover {
    background-color: #fff !important; /* Rich gold fill on hover */
    border-color: none !important;
    color: var(--forest) !important; /* Deep green text inside gold button */
    transform: translateY(-2px);
}

/* Image column formatting to force edge bleed */
.design-card .col-md-7 {
    padding: 0 !important; /* Removes padding around the image container */
    overflow: hidden;
}

/* Image scaling interactions */
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--transition);
}

/* Architectural zoom-in overlay on card hover */
.design-card:hover .card-img {
    transform: scale(1.03);
}

/* Responsive configurations for mobile screens */
@media (max-width: 991px) {
    .design-card .col-md-7 {
        height: 340px; /* Set a dedicated portrait box height on mobile */
    }
    .card-content-side {
        padding: 40px 25px !important;
    }
}

/* ===================================================================
   6. PROJECTS CAROUSEL (OVERLAY TEXT & GRADIENT THEME)
   =================================================================== */
   .projects-section {
    background-color: #ffffff;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden; /* Restricts cards cleanly inside desktop boundary */
    padding: 30px 0;
}

/* Base Card structure configured for absolute image bleed */
.card {
    min-width: 750px;
    height: 520px; /* Aligns card height uniformly for desktop visual grid */
    position: relative;
    background: #0d0d0d; /* Premium solid backplate */
    border-radius: 16px !important;
    overflow: hidden !important;
    border: none !important;
    padding: 0 !important; /* Removes internal padding for edge bleed */
    transition: transform 0.8s var(--transition), 
                opacity 0.8s var(--transition), 
                box-shadow 0.8s;
    opacity: 0.45; /* Darkens inactive slide layers */
    transform: scale(0.92);
    cursor: pointer;
}

.card.active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 30px 60px #dac99e; /* Soft brand-green shadow */
}

.card-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

/* Micro-interaction zoom on active image hover */
.card.active:hover img {
    transform: scale(1.05);
}

/* Rich, dark brand-green overlay gradient */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(20, 36, 27, 0.95) 0%,   /* Rich forest black at bottom */
        rgba(20, 36, 27, 0.4) 40%,   /* Mid transition shade */
        rgba(0, 0, 0, 0) 100%);      /* Fades completely at top */
    opacity: 0.85;
    transition: opacity 0.5s var(--transition);
    z-index: 1;
}

.card:hover .card-overlay {
    opacity: 0.95;
}

/* Info overlay container floated at the absolute bottom of the card */
.card-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px !important;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(10px);
    transition: transform 0.6s var(--transition);
}

.card.active:hover .card-info-overlay,
.card.active .card-info-overlay {
    transform: translateY(0);
}

/* Text layout styling */
.card-text-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.card-text-side h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--cream); /* Soft cream text color */
    margin: 0;
    letter-spacing: -0.02em;
}

.card-text-side p {
    font-size: 14px;
    color: var(--gold-warm) !important; /* Muted brand gold year label */
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Right-aligned glassmorphic tags */
.tags {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tag {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--cream) !important;
    padding: 6px 16px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 100px !important;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive configurations for mobile screens */
@media (max-width: 767px) {
    .card {
        min-width: 88vw !important;
        height: 440px !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: none !important;
    }
    .card-info-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 24px !important;
        transform: none !important;
    }
    .card-text-side h3 {
        font-size: 22px;
    }
}


/* ===================================================================
   6. PROJECTS CAROUSEL (OVERLAY TEXT & DYNAMIC HOVER DETAILS)
   =================================================================== */
   .projects-section {
    background-color: #ffffff;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden; /* Restricts cards cleanly inside desktop boundary */
    padding: 30px 0;
}

/* Base Card structure configured for absolute image bleed */
.card {
    min-width: 750px;
    height: 520px; /* Aligns card height uniformly for desktop visual grid */
    position: relative;
    background: #0d0d0d; /* Premium solid backplate */
    border-radius: 16px !important;
    overflow: hidden !important;
    border: none !important;
    padding: 0 !important; /* Removes internal padding for edge bleed */
    transition: transform 0.8s var(--transition), 
                opacity 0.8s var(--transition), 
                box-shadow 0.8s;
    opacity: 0.45; /* Darkens inactive slide layers */
    transform: scale(0.92);
    cursor: pointer;
}

.card.active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 30px 60px #dac99e; /* Soft brand-green shadow */
}

.card-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

/* Micro-interaction zoom on active image hover */
.card.active:hover img {
    transform: scale(1.05);
}

/* Rich, dark brand-green overlay gradient */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(20, 36, 27, 0.95) 0%,   /* Rich forest black at bottom */
        rgba(20, 36, 27, 0.4) 40%,   /* Mid transition shade */
        rgba(0, 0, 0, 0) 100%);      /* Fades completely at top */
    opacity: 0.85;
    transition: opacity 0.5s var(--transition);
    z-index: 1;
}

.card:hover .card-overlay {
    opacity: 0.95;
}

/* Info overlay container floated at the absolute bottom of the card */
.card-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px !important;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Project Text Side positioning */
.card-text-side {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 100%; /* Allows elements to span fully now that tags are removed */
}

/* Category indicator (Above the title) */
.project-category {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-warm) !important; /* Gold category prefix */
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Serif Title typography */
.project-title {
    /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
    /* font-style: italic; */
    font-size: 34px;
    font-weight: 400;
    color: var(--cream) !important; /* Soft cream text */
    margin: 8px 0 0 0 !important;
    letter-spacing: -0.01em;
}

/* 
   Hover Meta details container (Increased font-size, contrast, and layout space)
*/
.project-meta-hover {
    display: flex;
    align-items: center;
    gap: 12px;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 14.5px; /* Increased from 12px for clear visibility */
    font-weight: 600; /* Medium-bold for premium legibility */
    color: rgba(250, 246, 238, 0.9) !important; /* High contrast solid cream text */
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s var(--transition), 
                transform 0.5s var(--transition), 
                max-height 0.5s var(--transition), 
                margin-top 0.5s var(--transition);
    overflow: hidden;
    letter-spacing: 0.02em;
}

.meta-separator {
    color: var(--gold-warm) !important; /* Gold separator bar */
    opacity: 0.8;
}

/* Reveal Metadata only when hovered over an active card */
.card.active:hover .project-meta-hover {
    opacity: 1;
    max-height: 30px; /* Adjusted height buffer */
    transform: translateY(0);
    margin-top: 16px;
}

/* Mobile Responsive Card Overrides */
@media (max-width: 767px) {
    .card {
        min-width: 88vw !important;
        height: 440px !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: none !important;
    }
    .card-info-overlay {
        padding: 24px !important;
    }
    .project-title {
        font-size: 24px !important;
    }
    /* Always show meta details on mobile viewports */
    .project-meta-hover {
        opacity: 1 !important;
        max-height: 40px !important;
        transform: none !important;
        margin-top: 12px !important;
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* ===================================================================
   6. PROJECTS CAROUSEL (OVERLAY TEXT & DYNAMIC HOVER DETAILS)
   =================================================================== */
   .projects-section {
    background-color: #faf6ee;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden; /* Restricts cards cleanly inside desktop boundary */
    padding: 30px 0;
}

/* Base Card structure configured for absolute image bleed */
.card {
    min-width: 750px;
    height: 520px; /* Aligns card height uniformly for desktop visual grid */
    position: relative;
    background: #0d0d0d; /* Premium solid backplate */
    border-radius: 16px !important;
    overflow: hidden !important;
    border: none !important;
    padding: 0 !important; /* Removes internal padding for edge bleed */
    transition: transform 0.8s var(--transition), 
                opacity 0.8s var(--transition), 
                box-shadow 0.8s;
    opacity: 0.45; /* Darkens inactive slide layers */
    transform: scale(0.92);
    cursor: pointer;
}

.card.active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 30px 60px #dac99e; /* Soft brand-green shadow */
}

.card-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition);
}

/* Micro-interaction zoom on active image hover */
.card.active:hover img {
    transform: scale(1.05);
}

/* Rich, dark brand-green overlay gradient */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(20, 36, 27, 0.95) 0%,   /* Rich forest black at bottom */
        rgba(20, 36, 27, 0.4) 40%,   /* Mid transition shade */
        rgba(0, 0, 0, 0) 100%);      /* Fades completely at top */
    opacity: 0.85;
    transition: opacity 0.5s var(--transition);
    z-index: 1;
}

.card:hover .card-overlay {
    opacity: 0.95;
}

/* Info overlay container floated at the absolute bottom of the card */
.card-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px !important;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align bottom boundaries cleanly */
}

/* Project Text Side positioning */
.card-text-side {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Category indicator (Aligned to the right side of the desktop card) */
.project-category {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-warm) !important; /* Gold category prefix */
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
    align-self: flex-end; /* Anchors to bottom baseline */
    margin-bottom: 5px; /* Fine-tuned alignment with title baseline */
}

/* Serif Title typography */
.project-title {
    /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
    /* font-style: italic; */
    font-size: 34px;
    font-weight: 400;
    color: var(--cream) !important; /* Soft cream text */
    margin: 0 !important;
    letter-spacing: -0.01em;
}

/* 
   Hover Meta details container (Increased font-size, contrast, and layout space)
*/
.project-meta-hover {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px; /* Increased from 12px for clear visibility */
    font-weight: 600; /* Medium-bold for premium legibility */
    color: rgba(250, 246, 238, 0.9) !important; /* High contrast solid cream text */
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s var(--transition), 
                transform 0.5s var(--transition), 
                max-height 0.5s var(--transition), 
                margin-top 0.5s var(--transition);
    overflow: hidden;
    letter-spacing: 0.02em;
}

.meta-separator {
    color: var(--gold-warm) !important; /* Gold separator bar */
    opacity: 0.8;
}

/* Reveal Metadata only when hovered over an active card */
.card.active:hover .project-meta-hover {
    opacity: 1;
    max-height: 30px; /* Adjusted height buffer */
    transform: translateY(0);
    margin-top: 16px;
}

/* Mobile Responsive Card Overrides */
@media (max-width: 767px) {
    .card {
        min-width: 88vw !important;
        height: 440px !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: none !important;
    }
    .card-info-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 24px !important;
    }
    .project-title {
        font-size: 24px !important;
    }
    /* Restructure category above the title vertically on narrow mobile viewports */
    .project-category {
        align-self: flex-start !important;
        order: -1; /* Pulls category element above title on mobile layout */
        margin-bottom: 0;
    }
    /* Always show meta details on mobile viewports */
    .project-meta-hover {
        opacity: 1 !important;
        max-height: 40px !important;
        transform: none !important;
        margin-top: 12px !important;
        flex-wrap: wrap;
        gap: 8px;
    }
}


/* ==========================================
   THE ARC METHOD (LUXURY GRID OVERHAUL)
   ========================================== */

   .arc-method-section {
    background-color: #133023 !important; /* Premium Deep Forest Green */
    padding: 120px 0;
    color: #FAF6EE;
    position: relative;
    overflow: hidden;
}

/* Header Elements */
.method-label-wrapper {
    gap: 16px;
}

.method-tag {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold-warm) !important; /* Gold category identifier */
}

.method-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--gold-warm);
    opacity: 0.5;
}

.method-main-title {
    font-size: 54px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #FAF6EE;
}

/* Cormorant Serif Font Styling */
.method-main-title .title-serif {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-warm);
}

/* Process Grid Container (Sequential 5 Columns) */
.method-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px; /* Emulates a fine drafting divider layout */
    background-color: rgba(232, 204, 138, 0.12); /* Subtle gold separating grid lines */
    border: 1px solid rgba(232, 204, 138, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

/* Individual Stage Cards */
.method-card {
    background-color: rgba(19, 48, 35, 0.3); /* Translucent panel */
    padding: 45px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s var(--transition);
    cursor: default;
}

.method-card-inner {
    position: relative;
    z-index: 2;
}

/* Huge numeric background highlight */
.card-num-overlay {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    color: rgba(232, 204, 138, 0.05); /* Hidden ambient gold digits */
    line-height: 1;
    transition: all 0.5s var(--transition);
    user-select: none;
    pointer-events: none;
}

/* Minimalist Icon Circles */
.method-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(250, 246, 238, 0.05);
    border: 1px solid rgba(250, 246, 238, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-warm);
    transition: all 0.5s var(--transition);
}

/* Inner Text Layouts */
.step-eyebrow {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-warm);
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}

.step-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 26px;
    font-weight: 600;
    color: #FAF6EE;
    margin-bottom: 18px;
}

.step-description {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.75);
    margin: 0;
    transition: color 0.5s ease;
}

/* Hover Animations (Smooth Cognac fill) */
.method-card:hover {
    background-color: #7C3A1E !important; /* Soft shift to brand Cognac */
    transform: translateY(-4px); /* Dimensional lift */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.method-card:hover .card-num-overlay {
    color: rgba(250, 246, 238, 0.12); /* Numerical overlay lightens */
    transform: scale(1.1) translateY(-5px);
}

.method-card:hover .method-icon-box {
    background-color: #FAF6EE;
    color: #7C3A1E;
}

.method-card:hover .step-description {
    color: rgba(250, 246, 238, 0.95);
}

/* ==========================================
   RESPONSIVE DESIGN SYSTEM OVERRIDES
   ========================================== */

@media (max-width: 1200px) {
    .method-process-grid {
        grid-template-columns: repeat(3, 1fr); /* Fits tablets cleanly */
    }
}

@media (max-width: 991px) {
    .arc-method-section {
        padding: 80px 0;
    }
    .method-main-title {
        font-size: 42px;
    }
    .method-process-grid {
        grid-template-columns: repeat(2, 1fr); /* Clean columns on landscape mobile */
    }
}

@media (max-width: 575px) {
    .method-process-grid {
        grid-template-columns: 1fr; /* Stacks cleanly on vertical mobile viewports */
        border: none;
        background-color: transparent;
        gap: 20px;
    }
    .method-card {
        border-radius: 12px;
        border: 1px solid rgba(232, 204, 138, 0.15);
        background-color: rgba(19, 48, 35, 0.5) !important;
        padding: 35px 25px;
    }
}

/* ==========================================
   STACKED PROCESS CARDS (STCKY GEOMETRY)
   ========================================== */
   #process-stack-section {
    background-color: #050a07 !important; /* Deep forest black background */
    color: #ffffff;
    overflow: visible; /* Allows child cards to remain sticky during scroll */
}

/* Header Elements */
.process-eyebrow {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 11px;
    font-weight: 700;
    color: #10b981; 
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
}

.process-subtext {
    max-width: 580px;
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af !important;
}

/* Stacking Track Container */
.stacking-cards-track {
    display: flex;
    flex-direction: column;
    padding-bottom: 0px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Smooth Scrolling Sticky Cards */
.stacking-card {
    border-radius: 24px;
    background-color: #0b1410 !important; /* Deep green card background */
    border: 1px solid rgba(16, 185, 129, 0.15); /* Thin emerald borders */
    overflow: hidden;
    height: 480px; 
    width: 100%;
    
    /* Sticky Stack Configuration */
    position: -webkit-sticky;
    position: sticky;
    
    /* 
       The top calculation offsets each card by exactly 40px, 
       leaving the top headers visible as they overlap.
    */
    top: calc(80px + var(--card-index) * 40px);
    z-index: var(--card-index);
    
    /* 
       This margin creates the scrolling "duration". The larger the margin-bottom, 
       the more scroll distance there is before the cards stack.
    */
    margin-bottom: 15vh; 
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.6); /* Creates depth between layers */
}

.stacking-card:last-of-type {
    margin-bottom: 0; /* No scroll gap needed after the final card sticks */
}

/* Card Content Side Layout */
.card-content-side {
    padding: 50px 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-week-tag {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af !important;
}

/* Custom Checklist Bullets */
.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-bullet-list li {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-check {
    color: #10b981; 
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

/* Image side container */
.card-img-holder {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(16, 185, 129, 0.05);
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   MOBILE LAYOUT
   ========================================== */
@media (max-width: 991px) {
    .stacking-card {
        height: auto;
        position: relative !important; /* Resets stickiness to stack normally on mobile devices */
        top: auto !important;
        margin-bottom: 30px;
    }
    .card-content-side {
        padding: 40px 25px !important;
    }
    .card-img-holder {
        height: 280px;
    }
}


/* Updated card styling to let GSAP handle pinning */
.stacking-card {
    border-radius: 24px;
    background-color: #0b1410 !important;
    border: 1px solid rgba(16, 185, 129, 0.15);
    overflow: hidden;
    height: 480px; 
    width: 100%;
    
    /* GSAP pinning sets relative context */
    position: relative; 
    
    /* Control the scroll distance and speed before cards begin overlapping */
    margin-bottom: 25vh; 
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.6);
}

.stacking-card:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .stacking-card {
        height: auto;
        margin-bottom: 30px;
    }
}


/* ===================================================
   STICKY PROCESS STACK SECTION (PINE & EMERALD FOCUS)
   =================================================== */
   #process-stack-section {
    background-color: #0b1410 !important; /* Pure deep forest black */
    color: #ffffff;
    padding: 70px 0;
    overflow: visible; /* Required for CSS position: sticky to function */
}

.process-eyebrow {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 11px;
    font-weight: 700;
    color: #10b981; /* Emerald green theme accent */
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
}

.process-subtext {
    max-width: 580px;
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af !important;
}

/* Stacking Track Layout Container */
.stacking-cards-track {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1500px;
    /* margin: 60px auto 0 auto; */
}

/* Base Card Geometry */
.stacking-card {
    border-radius: 24px;
    background-color: #0b1410 !important; /* Low-chroma deep card body */
    border: 1px solid rgba(16, 185, 129, 0.15); /* Delicate emerald green border overlay */
    overflow: hidden;
    height: 480px; 
    width: 100%;
    
    /* Native position sticky setup prevents stutter on viewport adjustments */
    position: -webkit-sticky;
    position: sticky;
    
    /* Incremental top stacking offset calculations */
    top: calc(80px + (var(--card-index) - 1) * 35px);
    
    /* This margin spacing creates scroll height before next overlap activation */
    margin-bottom: 25vh; 
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.55);
    transform-origin: top center;
    will-change: transform, opacity;
}

.stacking-card:last-of-type {
    margin-bottom: 0;
}

.stacking-card .card-content-side {
    padding: 50px 60px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-week-tag {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #9ca3af !important;
}

/* Bulleted Highlights */
.card-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-bullet-list li {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-check {
    color: #10b981; 
    font-size: 18px;
    display: inline-flex;
    align-items: center;
}

.card-img-holder {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive configurations for mobile viewports */
@media (max-width: 991px) {
    #process-stack-section {
        padding: 50px 0;
    }
    
    .stacking-card {
        height: auto;
        position: relative !important; /* Fallback flat vertical stack on smaller devices */
        top: auto !important;
        margin-bottom: 30px;
    }
    
    .stacking-card .card-content-side {
        padding: 40px 25px !important;
    }
    
    .card-img-holder {
        height: 280px;
    }
}

/* ===================================================
   GLOBAL VIEWPORT SCROLL FIX
   =================================================== */
   html,
   body {
       max-width: 100%;
       overflow-x: clip; /* Fix: 'clip' prevents horizontal scroll without breaking position: sticky */
       position: relative;
   }
   
   body {
       /* font-family: 'Inter', sans-serif; */
       background-color: #fdfdfd;
       color: #1a1a1a;
       overflow-x: clip; /* Fix: Match to clip to preserve sticky scrolling standard contexts */
   }
   
   /* ===================================================
      STICKY PROCESS STACK SECTION REFINEMENT
      =================================================== */
   .stacking-card {
       border-radius: 24px;
       background-color: #1b3a2d !important;
       border: 1px solid rgba(16, 185, 129, 0.15);
       overflow: hidden;
       height: 652px; 
       width: 100%;
       
       /* Native position sticky configuration */
       position: -webkit-sticky;
       position: sticky;
       
       /* Dynamic z-index layering to resolve browser rendering conflicts */
       z-index: var(--card-index);
       
       /* Incremental top stacking offset calculations */
       top: calc(80px + (var(--card-index) - 1) * 35px);
       
       margin-bottom: 6vh; 
       box-shadow: none; /* 0 -15px 40px rgba(0, 0, 0, 0.55) */
       transform-origin: top center; /* Ensures the card scales from its pinned top edge */
       will-change: transform, opacity;
   }


   .how-we-work-section {
    background-color: #0b1c15 !important; /* Premium deep forest background */
    color: #ffffff;
    overflow: hidden;
}

.work-eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.work-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold-warm, #E8CC8A);
}

.work-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--gold-warm, #E8CC8A);
    opacity: 0.5;
}

.work-subtext {
    max-width: 420px;
    line-height: 1.6;
}

/* Timeline Container & Grid Track */
.timeline-container {
    padding-left: 60px;
    margin-top: 80px;
}

/* Vertical Timeline Tracker Line */
.timeline-track-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Square scroll indicator */
.timeline-scroll-indicator {
    position: absolute;
    top: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: transform 0.1s ease-out;
}

/* Timeline Row */
.timeline-item {
    position: relative;
    border-bottom: none;
}

/* Display Number (Left-aligned) */
.phase-number {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 72px;
    font-weight: 300;
    color: #ffffff;
    user-select: none;
}

/* ==========================================
   PIXEL PERFECT OVERLAY CARD DESIGN
   ========================================== */
.phase-banner-card {
    position: relative;
    background-color: #13221a; /* Matches the deep forest background */
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.phase-banner-card:hover {
    border-color: rgba(232, 204, 138, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* The Background Image positioned on the right */
.phase-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%; /* Occupies the right 60% of the banner */
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.phase-banner-card:hover .phase-card-bg {
    transform: scale(1.04);
}

/* Precise linear-gradient transition to fade image into solid background on the left */
.phase-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, 
        #13221a 0%, 
        #13221a 35%, 
        rgba(19, 34, 26, 0.8) 50%, 
        rgba(19, 34, 26, 0) 80%
    );
    z-index: 2;
    pointer-events: none;
}

/* Text Container aligned over the solid left region */
.phase-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 50px;
    max-width: 60%; /* Restricts description text to the opaque side */
}

.phase-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.phase-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Checklist tags */
.phase-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.phase-checklist span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Configuration */
@media (max-width: 991px) {
    .timeline-container {
        padding-left: 40px;
    }
    .timeline-track-line {
        left: 10px;
    }
    .phase-card-content {
        max-width: 75%;
        padding: 40px;
    }
    .phase-card-bg {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .phase-banner-card {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }
    .phase-card-bg {
        position: relative;
        width: 100%;
        height: 220px;
    }
    .phase-card-overlay {
        background: linear-gradient(to bottom, 
            rgba(19, 34, 26, 0.1) 0%, 
            #13221a 90%
        );
        top: 0;
        height: 220px;
    }
    .phase-card-content {
        max-width: 100%;
        padding: 30px 20px;
    }
    .phase-number {
        font-size: 56px;
    }
}

/* ==========================================
   SEAMLESS GRADIENT BLEND CORRECTION
   ========================================== */

   .phase-banner-card {
    position: relative;
    background-color: #13221a; /* Solid card base color */
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Image container now covers 100% to remove any boundaries */
.phase-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%; 
    background-size: cover;
    background-position: right center; /* Anchors the key details to the right half */
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.phase-banner-card:hover .phase-card-bg {
    transform: scale(1.04);
}

/* 
   Smooth gradient overlay fading from 100% opaque on the left 
   to completely transparent on the right.
*/
.phase-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, 
        #13221a 0%, 
        #13221a 30%,               /* Kept solid for text legibility */
        rgba(19, 34, 26, 0.9) 45%,  /* Extremely soft transition begins */
        rgba(19, 34, 26, 0.5) 65%,
        rgba(19, 34, 26, 0) 85%     /* Smooth fade to reveal the image */
    );
    z-index: 2;
    pointer-events: none;
}

/* Content Container */
.phase-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 50px;
    max-width: 55%; /* Keeps text positioned strictly over the solid left region */
}

.how-we-work-section {
    background-color: #0b1c15 !important; /* Premium deep forest background */
    color: #ffffff;
    overflow: hidden;
}

.work-eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.work-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold-warm, #E8CC8A);
}

.work-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: var(--gold-warm, #E8CC8A);
    opacity: 0.5;
}

.work-subtext {
    max-width: 420px;
    line-height: 1.6;
}

/* Timeline Container & Grid Track */
.timeline-container {
    padding-left: 60px;
    margin-top: 80px;
}

/* Vertical Timeline Tracker Line */
.timeline-track-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Square scroll indicator */
.timeline-scroll-indicator {
    position: absolute;
    top: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: transform 0.1s ease-out;
}

/* Timeline Row */
.timeline-item {
    position: relative;
    border-bottom: none;
}

/* ==========================================
   PIXEL PERFECT OVERLAY CARD DESIGN
   ========================================== */
.phase-banner-card {
    position: relative;
    background-color: #13221a; /* Solid card base color */
    border-radius: 16px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.phase-banner-card:hover {
    border-color: rgba(232, 204, 138, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Full-width seamless image layer */
.phase-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%; 
    background-size: cover;
    background-position: right center;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.phase-banner-card:hover .phase-card-bg {
    transform: scale(1.04);
}

/* Seamless background linear-gradient overlay */
.phase-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, 
        #13221a 0%, 
        #13221a 30%,               
        rgba(19, 34, 26, 0.9) 45%,  
        rgba(19, 34, 26, 0.5) 65%,
        rgba(19, 34, 26, 0) 85%     
    );
    z-index: 2;
    pointer-events: none;
}

/* Content Container */
.phase-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 50px;
    max-width: 58%; /* Safe boundary constraint for description texts over solid region */
}

/* EDITORIAL INLINE NUMBER SYSTEM */
.phase-number {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 48px;                 /* Scaled down to sit cleanly as an eyebrow title */
    font-weight: 300;
    line-height: 1;
    color: rgba(250, 246, 238, 0.35); /* Soft parchment tone */
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: -0.02em;
    user-select: none;
    
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Gold slash styling */
.phase-number span {
    color: var(--gold, #C9A84C);
    font-weight: 300;
    opacity: 0.95;
    font-style: italic;
    margin-right: 2px;
}

/* Interaction: Number illuminates and lifts slightly on card hover */
.phase-banner-card:hover .phase-number {
    color: var(--gold-warm, #E8CC8A); 
    transform: translateY(-3px); 
}

.phase-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.phase-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Checklist tags */
.phase-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.phase-checklist span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .timeline-container {
        padding-left: 40px;
    }
    .timeline-track-line {
        left: 10px;
    }
    .phase-card-content {
        max-width: 75%;
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .phase-banner-card {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }
    .phase-card-bg {
        position: relative;
        width: 100%;
        height: 220px;
    }
    .phase-card-overlay {
        background: linear-gradient(to bottom, 
            rgba(19, 34, 26, 0.1) 0%, 
            #13221a 90%
        );
        top: 0;
        height: 220px;
    }
    .phase-card-content {
        max-width: 100%;
        padding: 30px 20px;
    }
    .phase-number {
        font-size: 40px;
    }
}

/* ==========================================
   HIGH-END EDITORIAL NUMBER STYLING
   ========================================== */

   .phase-number-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.phase-number {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 38px;                   /* Classic luxury editorial size */
    font-weight: 300;
    font-style: italic;                /* Soft italicized serif style */
    line-height: 1;
    color: var(--gold-warm, #E8CC8A);  /* Elegant gold tone */
    letter-spacing: 0.02em;
    user-select: none;
    transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Delicate horizontal rule matching architecture blueprints */
.phase-number-line {
    display: block;
    width: 32px;
    height: 1px;
    background-color: var(--gold-warm, #E8CC8A);
    opacity: 0.25;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.4s ease,
                background-color 0.4s ease;
}

/* 
   Interactive hover: Number slightly shifts horizontally and brightens, 
   while the divider line smoothly extends.
*/
.phase-banner-card:hover .phase-number {
    color: #ffffff; 
    transform: translateX(4px);
}

.phase-banner-card:hover .phase-number-line {
    width: 52px;
    opacity: 0.6;
    background-color: #ffffff;
}

@media (max-width: 767px) {
    .phase-number {
        font-size: 32px;
    }
    .phase-banner-card:hover .phase-number {
        transform: none; /* Disable shift on touch viewports */
    }
    .phase-banner-card:hover .phase-number-line {
        width: 32px; /* Fixed line length for mobile viewports */
    }
}
/* ==========================================
   CHECKLIST BOLD DOT ALIGNMENT
   ========================================== */

   .phase-checklist span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
}

/* Bold bullet dot properties styled in warm gold */
.checklist-dot {
    color: var(--gold-warm, #E8CC8A);
    font-weight: 900;
    font-size: 22px; /* Emphasized size for premium visual output */
    line-height: 1;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
}


/* ==========================================
   TESTIMONIALS BLOCK & SLIDER STYLE
   ========================================== */

   .testimonials-section {
    background-color: #0b1c15 !important; /* Deep forest theme color */
    color: #ffffff;
    overflow: hidden;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0 20px; /* Vertical breathing room so overlapping avatars don't clip */
    /* max-width: 1500px; */
}

/* Left & Right gradient vignette overlays to softly fade cards into the dark layout edges */
.testimonials-slider-container::before,
.testimonials-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #0b1c15 15%, rgba(11, 28, 21, 0) 100%);
}

.testimonials-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #0b1c15 15%, rgba(11, 28, 21, 0) 100%);
}

/* Horizontal Sliding Track */
.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    width: 380px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    user-select: none;
}

/* Circular Avatar overlapping the top-left edge */
.testimonial-avatar {
    position: absolute;
    top: -28px;
    left: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Stylized Background quote icon */
.quote-icon-bg {
    position: absolute;
    top: 10px;
    right: 30px;
    font-family: sans-serif;
    font-size: 110px;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.card-quote-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111111;
    margin: 20px 0 15px 0;
    position: relative;
    z-index: 2;
}

.card-quote-body {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Footer layout inside the card */
.card-quote-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

.profile-role {
    font-size: 14px;
    color: #888888;
    margin-top: 2px;
    font-weight: 600;
}

.profile-stars {
    color: #F79000;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Responsive configurations */
@media (max-width: 768px) {
    .testimonial-card {
        width: 320px;
        min-width: 320px;
        padding: 30px;
    }
    .testimonials-slider-container::before,
    .testimonials-slider-container::after {
        width: 80px; /* Reduces vignetting space on smaller screens */
    }
}

/* ==========================================
   BEGIN YOUR JOURNEY CONTACT THEME
   ========================================== */

   .contact-journey-section {
    background-color: #e6dec9 !important; /* Authentic warm-toned parchment backdrop */
    color: #3d2b1f; /* Muted Umber text */
}

/* Typography styles matching the image */
.journey-main-title {
    /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
    /* font-size: clamp(48px, 6vw, 68px); */
    line-height: 1.1;
    font-weight: 400;
    color: #3d2b1f; /* Umber base */
}

.journey-green-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    color: var(--forest, #1B3A2D); /* Rich forest-green text details */
}

.journey-divider {
    width: 80px;
    height: 1px;
    background-color: var(--gold, #C9A84C);
}

.journey-lead-text {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.6;
    color: rgba(61, 43, 31, 0.8);
    max-width: 480px;
}

/* Contact Details Icon Blocks */
.contact-info-item {
    gap: 16px;
}

.contact-info-icon-box {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(19, 34, 26, 0.12); /* Balanced thin frame */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--forest, #1B3A2D);
    border-radius: 4px;
}

.contact-info-text-box {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(61, 43, 31, 0.6);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 14.5px;
    font-weight: 600;
    color: #3d2b1f;
}

.contact-info-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--forest, #1B3A2D);
}

/* Inputs & Form layout */
.journey-form {
    width: 100%;
}

.form-field-label {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #3d2b1f;
    margin-bottom: 8px;
    display: block;
}

/* Styled inputs matching the UI */
.journey-input {
    background-color: #faf6ee !important; /* Warmer fill color */
    border: 1px solid rgba(61, 43, 31, 0.18) !important;
    border-radius: 4px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    color: #3d2b1f !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.journey-input::placeholder {
    color: rgba(61, 43, 31, 0.4) !important;
}

.journey-input:focus {
    border-color: var(--forest, #1B3A2D) !important;
}

.journey-select {
    height: calc(2.8rem + 10px);
}

.journey-textarea {
    resize: none;
}

/* Solid forest green submit button */
.btn-journey-submit {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffffff !important;
    background-color: var(--forest, #1B3A2D) !important;
    border: none;
    padding: 16px 30px;
    border-radius: 4px;
    transition: all 0.3s var(--transition, ease);
    cursor: pointer;
}

.btn-journey-submit:hover {
    background-color: var(--forest-mid, #254D3C) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 58, 45, 0.18);
}

@media (max-width: 991px) {
    .contact-left-top {
        margin-bottom: 40px;
    }
    .contact-info-list {
        margin-bottom: 50px;
    }
}

/* ==========================================
   INTEGRATED CONTACT BANNER LAYOUT
   ========================================== */

   .cta-section {
    background-color: transparent;
    overflow: hidden;
}

/* Banner Frame Container */
.cta-banner-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px; /* Increased height to contain both details and input forms */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* 
   Wide left-to-right gradient overlay to ensure 
   the details (left) and the form (right) both read clearly 
*/
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(11, 28, 21, 0.98) 0%,   /* Solid deep forest on the left */
        rgba(11, 28, 21, 0.85) 45%,  
        rgba(11, 28, 21, 0.4) 75%,   /* Slightly transparent around card */
        rgba(11, 28, 21, 0.2) 100%);
    z-index: 2;
}

/* Typography styles */
.journey-main-title {
    /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
    font-size: 42px;
    line-height: 1.15;
    font-weight: bold;
}

.journey-gold-text {
    /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
    font-style: italic;
    color: var(--gold-warm, #E8CC8A); /* Accent gold italic text */
}

.journey-divider {
    width: 80px;
    height: 1px;
    background-color: var(--gold, #C9A84C);
}

.journey-lead-text {
    font-size: 15px;
    line-height: 1.6;
    max-width: 440px;
}

/* Left side icon blocks */
.contact-info-item {
    gap: 16px;
}

.contact-info-icon-box {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Delicate matching outlined borders */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--gold-warm, #E8CC8A);
    border-radius: 4px;
}

.contact-info-text-box {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 14px;
    font-weight: 600;
}

.contact-info-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--gold-warm, #E8CC8A);
}

/* ==========================================
   THE FLOATING FORM CARD (RIGHT COLUMN)
   ========================================== */
.cta-floating-card-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    max-width: 500px;
}

.card-step-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.form-field-label {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #333333;
    margin-bottom: 6px;
    display: block;
}

/* Delicate form inputs inside the white card */
.journey-input {
    background-color: #faf6ee !important; /* Soft parchment base matching visual styling */
    border: 1px solid rgba(19, 34, 26, 0.12) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 13.5px !important;
    color: #333333 !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.journey-input::placeholder {
    color: rgba(0, 0, 0, 0.35) !important;
}

.journey-input:focus {
    border-color: var(--forest, #1B3A2D) !important;
}

.journey-select {
    height: calc(2.4rem + 12px);
}

.journey-textarea {
    resize: none;
}

/* Submit button matching visual styling */
.btn-journey-submit {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #ffffff !important;
    background-color: var(--forest, #1B3A2D) !important;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-journey-submit:hover {
    background-color: var(--forest-mid, #254D3C) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 58, 45, 0.2);
}

/* Responsive configurations */
@media (max-width: 991px) {
    .cta-banner-wrapper {
        height: auto;
        padding: 50px 25px;
    }
    .cta-overlay {
        background: linear-gradient(to bottom, 
            rgba(11, 28, 21, 0.98) 0%,   
            rgba(11, 28, 21, 0.85) 50%,  
            rgba(11, 28, 21, 0.95) 100%) !important; /* Standardized vertical gradient fallback */
    }
    .cta-floating-card-form {
        max-width: 100%;
        margin-top: 20px;
        padding: 25px !important;
    }
}

/* ==========================================
   HIGH-CONTRAST BANNER CORRECTIONS
   ========================================== */

/* Specialized overlay bypasses legacy overrides and applies heavy darkening on the left */
.journey-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(11, 28, 21, 0.98) 0%,   /* Rich solid deep-forest under the text */
        rgba(11, 28, 21, 0.90) 35%,  /* Heavy dark vignette extends past column 1 */
        rgba(11, 28, 21, 0.50) 65%,  
        rgba(11, 28, 21, 0.20) 85%,
        transparent 100%
    ) !important;
    z-index: 2;
    pointer-events: none;
}

/* Eyebrow styling with decorative alignment rule */
.journey-eyebrow {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-warm, #E8CC8A) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.journey-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: var(--gold-warm, #E8CC8A);
}

.journey-lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.85) !important; /* Premium soft cream with high legibility */
    max-width: 440px;
}

/* Details list icons & labels contrast enhancements */
.contact-info-icon-box {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(232, 204, 138, 0.25) !important; /* Custom gold border outline */
    background-color: rgba(255, 255, 255, 0.02) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--gold-warm, #E8CC8A) !important; /* Gold icons */
    border-radius: 4px;
}

.contact-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-warm, #E8CC8A) !important; /* Gold label contrast */
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 14.5px;
    font-weight: 600;
    color: #ffffff !important; /* Bright white text values */
}

.contact-info-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--gold-warm, #E8CC8A) !important;
}

@media (max-width: 991px) {
    .journey-banner-overlay {
        background: linear-gradient(to bottom, 
            rgba(11, 28, 21, 0.98) 0%,   
            rgba(11, 28, 21, 0.88) 50%,  
            rgba(11, 28, 21, 0.95) 100%) !important; /* Fallback vertical block layout */
    }
}

/* ==========================================
   INTERACTIVE GRID & GLOW EFFECT
   ========================================== */

   .client-mosaic {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Clean 5-column layout shown in video */
    background-color: transparent !important;
    border-top: 1px solid rgba(19, 34, 26, 0.08);
    border-left: 1px solid rgba(19, 34, 26, 0.08);
    margin-top: 40px;
}

.mosaic-item {
    position: relative;
    background-color: #ffffff;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dac99e;
    border-bottom: 1px solid #dac99e;
    cursor: pointer;
    overflow: hidden;
    /* Smooth background color and fade transition */
    transition: background 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mosaic-item-1 {
    background-color: #F8F5EE !important;

}

/* Inner contents container */
.mosaic-item-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    position: relative;
}

.mosaic-logo-text {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.01em;
}

/* 
   Subtle micro-interactive border layer.
   Overlap inset by -1px ensures the gold lines sit directly on top of the gray grid lines.
*/
.mosaic-item::before {
    content: "";
    position: absolute;
    inset: -1px; 
    border: 1.5px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

/* Hover Animation overrides */
.mosaic-item:hover::before {
    border-color: var(--gold-warm, #E8CC8A); /* Golden border frame on focus */
}

.mosaic-item:hover {
    background: radial-gradient(
        circle at center, 
        rgba(232, 204, 138, 0.28) 0%,   /* Gold center glow matching the video */
        rgba(250, 246, 238, 0.08) 55%,  
        #ffffff 100%
    ) !important
}

.br-none{
    border-right: none;
}
.bb-none{
    border-bottom: none;
}

/* Responsive configurations */
@media (max-width: 1200px) {
    .client-mosaic {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet screens */
    }
}

@media (max-width: 768px) {
    .client-mosaic {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile screens */
    }
    .mosaic-item {
        padding: 40px 20px;
    }
}


/* ==========================================
   FAQ LIGHT MODE SECTION STYLING
   ========================================== */

   .faq-section {
    background-color: #faf6ee !important; /* Soft premium warm backdrop */
    color: var(--forest, #1B3A2D);
}

.faq-main-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: clamp(38px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--forest, #1B3A2D);
}

.faq-accent-text {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gold, #C9A84C); /* Distinct gold serif focus text */
}

/* Portrait container on the left */
.faq-image-wrapper {
    width: 100%;
    height: 644px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(19, 34, 26, 0.08);
}

.faq-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.faq-image-wrapper:hover .faq-portrait-img {
    transform: scale(1.03);
}

/* Intro copy */
.faq-intro-text {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.6;
    color: rgba(19, 34, 26, 0.7);
    max-width: 580px;
}

/* Accordion Rows */
.faq-item {
    border-bottom: 1.5px solid rgba(19, 34, 26, 0.08); /* Clean horizontal borders */
    padding: 24px 0;
}

.faq-item:first-child {
    border-top: 1.5px solid rgba(19, 34, 26, 0.08);
}

/* Trigger Button */
.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.faq-question {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 20px;
    font-weight: 700;
    color: var(--forest, #1B3A2D);
    letter-spacing: -0.01em;
}

/* 
   The circular toggle button on the right.
   Uses a clean rotation transition to smoothly turn the plus into an 'X' close indicator.
*/
.faq-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--forest, #1B3A2D);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-icon-btn i {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* GSAP/Bootstrap Active Toggle States */
.faq-trigger:not(.collapsed) .faq-icon-btn {
    background-color: var(--gold, #C9A84C); /* Turns gold when active */
}

.faq-trigger:not(.collapsed) .faq-icon-btn i {
    transform: rotate(45deg); /* Rotates plus icon diagonally into close indicator */
}

/* Answer text body */
.faq-answer-body {
    padding-top: 16px;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.7;
    color: rgba(19, 34, 26, 0.75);
    max-width: 90%; /* Leaves spacing from right-hand indicator */
    font-weight: 500;
}

/* Responsive configurations */
@media (max-width: 991px) {
    .faq-image-wrapper {
        height: 380px;
        /* margin-top: 30px;
        margin-bottom: 50px; */
    }
}

/* ==========================================
   LIGHT-THEME LUXURY FOOTER
   ========================================== */

   .footer-wrap {
    position: relative;
    background-color: #F8F5EE !important; /* Elegant light cream background */
    color: #291b15; /* Dark brown for high-contrast legibility */
    padding: 70px 0 15px 0;
    overflow: hidden;
    width: 100%;
    
    /* Solid forest green top border */
    border-top: 4px solid #1B3A2D !important;
}
@media (max-width: 767px) {
    .footer-wrap {
      padding: 50px 0 15px 0;
    }
  }

/* Downward-pointing forest-green tab in the center of the top border */
.footer-wrap::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 12px;
    background-color: #1B3A2D; /* Match the forest green top border */
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 10;
}

/* Architectural Blueprint Layout (Inverted for Light Theme) */
.footer-bg-blueprint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    /* Inverts the dark blueprint image to dark lines on a light background with subtle opacity */
    /* filter: invert(1) brightness(1.1) contrast(0.9); */
    opacity: 0.05; 
    pointer-events: none;
    z-index: 1;
}

.footer-content-layer {
    position: relative;
    z-index: 5;
}

.footer-brand-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Brand Logo image proportions */
.footer-logo-img {
    width: auto;
    height: 110px;
    display: block;
}

.footer-description {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.6;
    color: #3d2b1f !important; /* Dark warm umber description */
    max-width: 355px;
    font-weight: 600;
}

/* Outlined Square Social blocks adapted for Light Theme */
.social-box {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(27, 58, 45, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1B3A2D !important; /* Forest green icons */
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-box:hover {
    background-color: #1B3A2D;
    color: #f2ecda !important; /* Swaps colors smoothly on hover */
    border-color: #1B3A2D;
}

/* Column Header Categories */
.footer-col-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #1B3A2D;
    margin-bottom: 24px;
    position: relative;
}

/* Solid gold separator rule beneath headings */
.footer-col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 48px;
    height: 1.5px;
    background-color: #C9A84C; /* Accent gold line */
}

/* Chevron-indexed Navigation Links */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    font-weight: 600;
    color: #3d2b1f !important; /* Dark brown links */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.link-chevron {
    color: #C9A84C; /* Warm Gold */
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-links-list li a:hover {
    color: #1B3A2D !important; /* Forest Green on hover */
}

.footer-links-list li a:hover .link-chevron {
    transform: translateX(4px);
}

/* Contact Details List Items */
.footer-contact-list li {
    color: #3d2b1f;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    font-weight: 600;
}

.contact-icon-small {
    color: #C9A84C; /* Accent Gold for icons */
    font-size: 16px;
}

.contact-link-light {
    text-decoration: none;
    color: #3d2b1f !important;
    transition: color 0.3s ease;
}

.contact-link-light:hover {
    color: #1B3A2D !important;
}

/* Horizontal Line separator */
.footer-hr {
    margin: 45px 0 10px 0 !important;
    border-color: #dac99e !important;
    opacity: 1;
}

/* Bottom segmented elements formatting */
.footer-copy-text {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 13.5px;
    color: #3d2b1f;
    line-height: 1.5;
    font-weight: 600;
}

.bottom-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(27, 58, 45, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1B3A2D;
    font-size: 14px;
}

.bottom-text {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    color: #3d2b1f;
    text-align: center;
    font-weight: 600;
}

.bottom-link {
    text-decoration: none;
    color: #3d2b1f !important;
    transition: color 0.3s ease;
    font-weight: 600;
}

.bottom-link:hover {
    color: #1B3A2D !important;
}

.bottom-divider {
    width: 1.5px;
    height: 36px;
    background-color: #dac99e;
    align-self: center;
}

.bottom-legal a {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 13.5px;
    color: #3d2b1f !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.bottom-legal a:hover {
    color: #1B3A2D !important;
}

.legal-dot {
    color: rgba(27, 58, 45, 0.2);
    margin: 0 6px;
    user-select: none;
}

/* Responsive configurations */
@media (max-width: 991px) {
    .footer-col-title {
        margin-bottom: 16px;
    }
    .footer-col-title::after {
        display: none;
    }
    .footer-bottom-bar {
        flex-direction: column;
        /* align-items: flex-start !important; */
        gap: 20px;
    }
}

/* Full-cover Background Blueprint Styling (Optimized for the Light Image) */
.footer-bg-blueprint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    /* mix-blend-mode: multiply; */
    opacity: 0.40;
    pointer-events: none;
    z-index: 1;
}


.footer-css{
    color: var(--forest);
    text-decoration: none;
    font-weight: 600;
}

.footer-css:hover {
    color: var(--gold);
}

/* ==========================================
   TESTIMONIALS BLOCK & SLIDER STYLE
   ========================================== */

   .testimonials-section {
    background-color: #0b1c15 !important; /* Deep forest theme color */
    color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    /* max-width: 1500px; Cap container boundary at 1500px */
    margin: 0 auto;    /* Center the container on ultra-wide viewports */
    overflow: hidden;
    padding: 60px 0 20px; /* Vertical breathing room so overlapping avatars don't clip */
}

/* Left & Right gradient vignette overlays to softly fade cards into the dark layout edges */
.testimonials-slider-container::before,
.testimonials-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #0b1c15 15%, rgba(11, 28, 21, 0) 100%);
}

.testimonials-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #0b1c15 15%, rgba(11, 28, 21, 0) 100%);
}

/* Horizontal Sliding Track */
.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    width: 380px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    user-select: none;
}

/* Circular Avatar overlapping the top-left edge */
.testimonial-avatar {
    position: absolute;
    top: -28px;
    left: 40px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Stylized Background quote icon */
.quote-icon-bg {
    position: absolute;
    top: 10px;
    right: 30px;
    font-family: sans-serif;
    font-size: 110px;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.card-quote-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #111111;
    margin: 20px 0 15px 0;
    position: relative;
    z-index: 2;
}

.card-quote-body {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Footer layout inside the card */
.card-quote-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
}

.profile-role {
    font-size: 16px;
    color: #888888;
    margin-top: 2px;
    font-weight: 600;
}

.profile-stars {
    color: #F79000;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Responsive configurations */
@media (max-width: 768px) {
    .testimonial-card {
        width: 320px;
        min-width: 320px;
        padding: 30px;
    }
    .testimonials-slider-container::before,
    .testimonials-slider-container::after {
        width: 80px; /* Reduces vignetting space on smaller screens */
    }
}



/* ==========================================
   INVOUGE BY ARC HIGHLIGHT TEASER (HOMEPAGE)
   ========================================== */
   .invouge-teaser-section {
    background-color: var(--cream); /* Blends with the surrounding homepage sections */
    padding: 70px 0;
}

.teaser-card {
    background-color: var(--forest) !important; /* Deep signature forest green */
    border: 1px solid rgba(232, 204, 138, 0.15); /* Elegant gold CAD outline */
    min-height: 280px;
    box-shadow: 0 15px 40px rgba(27, 58, 45, 0.08);
}

/* Watermark Blueprint Overlay */
.teaser-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    mix-blend-mode: overlay;
    opacity: 0.13; /* Subtle architectural outline watermark */
    pointer-events: none;
    z-index: 1;
}

.teaser-eyebrow {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12px;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--gold-warm);
}

.teaser-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 42px;
    color: #ffffff;
}

.teaser-title .logo-by {
    /* font-family: 'Cormorant Garamond', Georgia, serif; */
    font-style: italic;
    font-weight: 400;
    color: var(--gold-warm);
}

.teaser-desc {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.7);
}

/* Teaser Feature bullet lists */
.teaser-points-list ul li {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #ffffff;
}

/* Premium Pill direct CTA Button */
.btn-invouge-direct {
    background-color: var(--gold-warm); /* Elegant gold */
    color: var(--forest) !important; /* Deep contrast text */
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    box-shadow: 0 4px 15px rgba(232, 204, 138, 0.2);
}

.btn-invouge-direct:hover {
    background-color: #ffffff; /* Fades to clean white on hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-invouge-direct svg {
    transition: transform 0.3s ease;
}

.btn-invouge-direct:hover svg {
    transform: translateX(4px); /* Interactive chevron slide */
}

/* Responsive configurations */
@media (max-width: 991px) {
    .teaser-card {
        padding: 35px 25px !important;
    }
    .teaser-title {
        font-size: 1.8rem;
    }
    .btn-invouge-direct {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    .teaser-points-list ul {
        align-items: start !important;
    }
}

/* Carousel Styling */
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding-left: 0 !important; /* Force padding-left to 0 so JavaScript math aligns perfectly */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.mb-12{
    margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 576px) {
    .container-fluid {
        max-width: 100%;
        padding: 0 2rem;
    }
}

/* ==========================================
   CUSTOM DROPDOWN SELECT STYLING
   ========================================== */
   .custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    background-color: #faf6ee !important; /* Soft parchment background */
    border: 1px solid rgba(19, 34, 26, 0.12);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: rgba(0, 0, 0, 0.35); /* Muted placeholder color */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Turns text dark once a value is selected */
.custom-select-trigger .selected-value.selected {
    color: #333333;
    font-weight: 600;
}

.select-chevron {
    font-size: 12px;
    color: #333333;
    transition: transform 0.3s ease;
}

/* Custom Styled Options Menu */
.custom-options-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #faf6ee;
    border: 1px solid rgba(19, 34, 26, 0.12);
    border-radius: 12px;
    margin-top: 6px;
    box-shadow: 0 10px 30px rgba(27, 58, 45, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 100; /* Sits cleanly on top of form textareas */
}

/* Individual Custom Option item styling */
.custom-option {
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-option:first-child {
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
}

.custom-option:last-child {
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}

/* High-contrast hover matching design rules */
.custom-option:hover {
    background-color: var(--forest); /* Forest Green background on hover */
    color: var(--cream);            /* Warm cream text on hover */
}

/* Active State Transitions */
.custom-select-wrapper.open .custom-options-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-wrapper.open .select-chevron {
    transform: rotate(180deg);
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--forest);
}

/* ==========================================
   MOBILE STACKING CARDS OVERRIDES (SWIPABLE SLIDER)
   ========================================== */
   @media (max-width: 991px) {
    /* 1. Convert the vertical stacking track into a horizontal flex container */
    .stacking-cards-track {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important; /* Hides scrollbar on Firefox */
        gap: 20px !important;
        padding: 40px 20px 20px 20px !important; /* Space for shadows and breathing room */
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important; /* Forces the track to bleed full screen width */
        margin-right: calc(-50vw + 50%) !important;
    }

    .stacking-cards-track::-webkit-scrollbar {
        display: none; /* Hides scrollbar on Chrome/Safari */
    }

    /* 2. Re-dimension cards to fit screen width and prevent visual stretching */
    .stacking-card {
        flex: 0 0 82% !important; /* Card occupies 82% of screen width (next card peaks on the right) */
        max-width: 82% !important;
        height: 510px !important; /* Firmly constrained height so NO text is cut off */
        min-height: 510px !important;
        position: relative !important; /* Disables sticky/GSAP position conflicts */
        top: auto !important;
        margin-bottom: 0 !important; /* Removes massive bottom margins used on desktop */
        scroll-snap-align: center !important; /* Snaps swipe cleanly to the center */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        background-color: #0b1410 !important;
    }

    /* 3. Re-structure card contents to fit vertically on mobile */
    .stacking-card .row {
        flex-direction: column !important; /* Stacks text content on top of image */
        height: 100% !important;
        margin: 0 !important;
    }

    /* 4. Optimize inner content padding and sizes */
    .stacking-card .card-content-side {
        padding: 24px 20px 12px 20px !important; /* Tighter padding for text columns */
        flex: 1 1 auto !important;
    }

    .stacking-card .card-title {
        font-size: 20px !important; /* Elegant compact heading size */
        margin-bottom: 12px !important;
    }

    /* Refined bullet layout to fit within height limit */
    .stacking-card .card-bullet-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important; /* Compact line gap */
    }

    .stacking-card .card-bullet-list li {
        font-size: 12.5px !important; /* Smaller, highly readable text size */
        line-height: 1.4 !important;
        gap: 8px !important;
    }

    /* 5. Restrain image container height on mobile */
    .stacking-card .col-lg-7 {
        padding: 0 20px 20px 20px !important;
        flex: 0 0 auto !important;
    }

    .stacking-card .card-img-holder {
        height: 140px !important; /* Controlled image height to prevent clipping content above */
        border-radius: 12px !important;
    }
}

/* ==========================================
   MOBILE STACKING CARDS OVERRIDES (SWIPABLE SLIDER)
   ========================================== */
@media (max-width: 991px) {
    /* 1. Convert the vertical stacking track into a horizontal flex container */
    .stacking-cards-track {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important; /* Hides scrollbar on Firefox */
        gap: 20px !important;
        padding: 20px 20px 20px 20px !important; /* Space for shadows and breathing room */
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important; /* Forces the track to bleed full screen width */
        margin-right: calc(-50vw + 50%) !important;
    }

    .stacking-cards-track::-webkit-scrollbar {
        display: none; /* Hides scrollbar on Chrome/Safari */
    }

    /* 2. Re-dimension cards with increased height to prevent image clipping */
    .stacking-card {
        flex: 0 0 85% !important; /* Card occupies 85% of screen width (next card peaks on the right) */
        max-width: 85% !important;
        height: 715px !important; /* Increased height to cleanly fit text + image */
        min-height: 715px !important;
        position: relative !important; /* Disables sticky/GSAP position conflicts */
        top: auto !important;
        margin-bottom: 0 !important; /* Removes massive bottom margins used on desktop */
        scroll-snap-align: center !important; /* Snaps swipe cleanly to the center */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        background-color: #0b1410 !important;
    }

    /* 3. Re-structure card contents to fit vertically on mobile */
    .stacking-card .row {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        justify-content: space-between !important; /* Locks text to top and image to bottom */
        margin: 0 !important;
    }

    /* 4. Optimize inner content padding and sizes */
    .stacking-card .card-content-side {
        padding: 30px 24px 10px 24px !important; /* Adjusted padding */
        flex: 0 0 auto !important; /* Prevents text block from pushing image out */
    }

    .stacking-card .card-title {
        font-size: 20px !important; /* Elegant compact heading size */
        margin-bottom: 20px !important;
    }

    /* Refined bullet layout to fit within height limit */
    .stacking-card .card-bullet-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important; /* Compact line gap */
    }

    .stacking-card .card-bullet-list li {
        font-size: 14px !important; /* Compact, highly readable text size */
        line-height: 1.4 !important;
        gap: 8px !important;
    }

    /* 5. Force image container to render at the bottom of the card */
    .stacking-card .col-lg-7 {
        padding: 0 24px 30px 24px !important;
        flex: 0 0 auto !important;
        width: 100% !important;
    }

    .stacking-card .card-img-holder {
        height: 160px !important; /* stable height for the image */
        width: 100% !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .stacking-card .card-img-holder img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Ensures no aspect ratio stretching */
    }
}

/* ==========================================
   MOBILE PROJECTS CAROUSEL RESPONSIVE OVERRIDES
   ========================================== */
   @media (max-width: 767px) {
    /* 1. Allow card height to scale dynamically to prevent text clipping */
    .card {
        min-width: 88vw !important;
        height: auto !important; /* Dynamic height calculation based on text content */
        background: #ffffff !important; /* White card background */
        border: 1px solid #e0e0e0 !important;
        border-radius: 16px !important;
        padding: 12px !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none !important;
    }

    /* 2. Style image container with defined portrait height constraints */
    .card-img-container {
        height: 260px !important; /* Perfect visual height on mobile */
        border-radius: 12px !important;
        width: 100% !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* 3. Convert absolute overlay to relative block stack below the image */
    .card-info-overlay {
        position: relative !important; /* Stacks naturally below image container */
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        padding: 12px 4px 4px 4px !important; /* Spacious padding */
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        background: transparent !important;
        z-index: 2;
    }

    /* 4. Contrast alignments for typography on white card base */
    .project-title {
        font-size: 20px !important;
        color: #1a1a1a !important; /* High contrast dark text */
        font-weight: 700 !important;
        margin: 0 !important;
    }

    /* 5. Force metadata block to show fully in high contrast */
    .project-meta-hover {
        display: flex !important;
        opacity: 1 !important;
        max-height: none !important;
        transform: none !important;
        margin-top: 4px !important;
        color: #555555 !important; /* Dark gray for maximum legibility */
        font-size: 13.5px !important;
        font-weight: 500 !important;
        flex-wrap: wrap;
        gap: 8px;
    }

    .meta-separator {
        color: #cccccc !important; /* Distinct dark separator */
    }

    /* Category indicator positioned cleanly above title */
    .project-category {
        align-self: flex-start !important;
        order: -1; /* Stacks above title vertically */
        color: var(--gold, #C9A84C) !important; /* Premium brand gold */
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0.12em;
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .no-mt-mobile {
        margin-top: 0 !important;
    }
}

/* ==========================================
   MOBILE BUTTON SLIDE ANIMATION STABILITY FIX
   ========================================== */
   @media (max-width: 991px) {
    /* 1. Force the button to maintain its single-row inline-flex layout without wrapping */
    .btn-slide-animate {
        display: inline-flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 290px !important; /* Keeps the button pill elegant on mobile screens */
        margin: 20px auto 0px auto !important; /* Centered with top breathing room */
    }

    /* 2. Lock text containers to prevent wrapping and overlapping text rows */
    .btn-slide-animate .btn-text-container {
        height: 16px !important;
        line-height: 16px !important;
        overflow: hidden !important;
        display: inline-block !important;
        white-space: nowrap !important; /* Strictly forbids line wrapping */
        flex-shrink: 0 !important;
    }

    /* 3. Force the vertical sliding layers to remain within their 16px mask limit */
    .btn-slide-animate .btn-text-wrapper {
        display: flex !important;
        flex-direction: column !important;
        height: 32px !important; /* Holds exactly 2 rows of 16px */
        transform: none !important; /* Deactivates hovering hover loops on touch devices */
    }

    .btn-slide-animate .btn-text-wrapper span,
    .btn-slide-animate .btn-text-wrapper svg {
        height: 16px !important;
        line-height: 16px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
    }
}

/* ===================================================================
   INVOUGE TEASER SPECIFIC BUTTON OVERRIDES
   =================================================================== */

/* Default State: Set to the golden hover color of the design system */
invouge.html .btn-minimal-dark {
    background-color: var(--gold-warm) !important;
    border-color: var(--gold-warm) !important;
    color: var(--forest) !important;
    transition: all 0.3s var(--transition, ease);
}

/* Ensure SVGs inside cascade correctly to the forest green color */
invouge.html .btn-minimal-dark svg {
    stroke: var(--forest) !important;
}

/* Hover State: Transitions to the soft cream background */
invouge.html .btn-minimal-dark:hover {
    background-color: var(--cream) !important;
    border-color: var(--cream) !important;
    color: var(--forest) !important;
    transform: translateY(-2px);
}

invouge.html .btn-minimal-dark:hover svg {
    stroke: var(--forest) !important;
}


/* ===================================================================
   INVOUGE BY ARC - NAV BAR INLINE STYLING
   =================================================================== */
   @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

   /* Inline Menu Item / Adjacent Block Link */
   .brand-invouge-menu {
       display: inline-flex;
       align-items: baseline;
       text-decoration: none !important;
       font-family: 'Cormorant Garamond', 'Georgia', serif;
       line-height: 1;
       transition: transform 0.3s ease;
       margin-left: 28px; /* Separator spacing */
       border-left: 1px solid rgba(255, 255, 255, 0.15); /* Subtle divider line */
       padding-left: 20px;
       vertical-align: middle;
   }
   
   .brand-invouge-menu:hover {
       /* transform: scale(1.02); */
   }
   
   /* INITIAL STATE: Transparent bar over dark hero */
   .brand-invouge-menu .brand-text-invouge,
   .brand-invouge-menu .brand-text-arc {
       font-size: 18px; /* Scaled down slightly to align with menu links */
       font-weight: 600;
       text-transform: uppercase;
       color: var(--cream, #FAF6EE) !important;
       letter-spacing: 0.04em;
       transition: color 0.4s ease;
   }
   
   .brand-invouge-menu .brand-text-invouge {
       font-style: italic;
   }
   
   .brand-invouge-menu .brand-text-arc {
       font-style: normal;
       letter-spacing: 0.08em;
   }
   
   .brand-invouge-menu .brand-text-by {
       font-size: 13px;
       font-weight: 400;
       font-style: italic;
       text-transform: lowercase;
       color: var(--gold-warm, #E8CC8A) !important; /* Gold on dark background */
       margin: 0 5px;
       position: relative;
       top: -1px;
       transition: color 0.4s ease;
   }
   
   /* SCROLLED STATE: Over light cream header background */
   .nav-wrapper.scrolled .brand-invouge-menu {
       border-left-color: #dac99e; /* Forest divider */
   }
   
   .nav-wrapper.scrolled .brand-invouge-menu .brand-text-invouge,
   .nav-wrapper.scrolled .brand-invouge-menu .brand-text-arc {
       color: var(--forest, #1B3A2D) !important; /* Deep forest green */
   }
   
   .nav-wrapper.scrolled .brand-invouge-menu .brand-text-by {
       color: #5D7599 !important; /* Soft slate-blue on light background */
   }
   
   /* Luxury Interactive Hover State */
   .brand-invouge-menu:hover .brand-text-invouge,
   .brand-invouge-menu:hover .brand-text-arc {
       color: var(--cognac-light, #A04D28) !important;
   }
   
   /* Ensure vertical menu alignment */
   .nav-links {
       align-items: center;
   }
   

   /* ===================================================================
   HEADER LAYOUT REFINEMENTS (MATCHING SCREENSHOT)
   =================================================================== */

/* 1. Hide the Enquiry button completely from view */
.btn-enquiry, 
.nav-cta-wrapper .btn-enquiry {
    display: none !important;
}

/* 2. Style the far-right wrapper */
.nav-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 3. Style the typographic logo and vertical divider */
.brand-invouge-menu {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none !important;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1;
    transition: transform 0.3s ease;
    
    /* Subtle vertical divider line matching screenshot depth */
    border-left: 1px solid rgba(255, 255, 255, 0.25) !important; 
    padding-left: 24px;
    margin-left: 10px;
}

.brand-invouge-menu:hover {
    /* transform: scale(1.02); */
}

/* Standard transparent header state (White text & Gold 'by') */
.brand-invouge-menu .brand-text-invouge,
.brand-invouge-menu .brand-text-arc {
    font-size: 21px; /* Sized precisely for the desktop navbar */
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff !important;
    letter-spacing: 0.03em;
    transition: color 0.4s ease;
}

.brand-invouge-menu .brand-text-invouge {
    font-style: italic;
}

.brand-invouge-menu .brand-text-arc {
    font-style: normal;
    letter-spacing: 0.06em;
}

.brand-invouge-menu .brand-text-by {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    text-transform: lowercase;
    color: var(--gold-warm, #E8CC8A) !important; /* Premium brand gold */
    margin: 0 6px;
    position: relative;
    top: -1px;
    transition: color 0.4s ease;
}

/* Scrolled state transitions (Adapting cleanly to the cream background) */
.nav-wrapper.scrolled .brand-invouge-menu {
    border-left-color: #dac99e !important; /* Darker divider line */
}

.nav-wrapper.scrolled .brand-invouge-menu .brand-text-invouge,
.nav-wrapper.scrolled .brand-invouge-menu .brand-text-arc {
    color: var(--forest, #1B3A2D) !important; /* Brand forest green */
}

.nav-wrapper.scrolled .brand-invouge-menu .brand-text-by {
    color: var(--gold, #C9A84C) !important; /* Transitions to brand gold */
}

/* Hover accent states */
.brand-invouge-menu:hover .brand-text-invouge,
.brand-invouge-menu:hover .brand-text-arc {
    color: var(--gold-warm) !important;
}


/* ===================================================================
   CINEMATIC PAGE PRELOADER SYSTEM (REPRODUCING VIDEO TRANSITIONS)
   =================================================================== */

/* Prevent scrolling or content manipulation while preloader is active */
body.preloader-active {
    overflow: hidden !important;
    height: 100vh !important;
}

.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d271a; /* Deep luxury warm pine green background */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    
    /* Smooth slide-up wipe out of view */
    transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.95s ease;
    will-change: transform, opacity;
}

/* Wipes the preloader curtain vertically on transition completion */
.page-preloader.loaded {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding: 0 40px;
}

/* 1. "A R C" Subtle scale & fade reveal */
.loader-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 110px;
    font-weight: 400;
    color: #dfca90; /* Authentic champagne gold */
    letter-spacing: 5px;
    /* padding-left: 0.65em; Compensate for tracking to keep text perfectly centered */
    margin: 0;
    line-height: 1.1;
    
    opacity: 0;
    transform: scale(0.96) translateY(12px);
    animation: premiumFadeReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

/* 2. Expanding Gold Divider */
.loader-divider {
    width: 260px; /* Wide architectural line span */
    height: 1px;
    
    /* Feathered luxury gold gradient fading seamlessly on both edges */
    background: linear-gradient(90deg, 
        rgba(223, 204, 138, 0) 0%, 
        rgba(223, 202, 144, 0.8) 50%, 
        rgba(223, 204, 138, 0) 100%
    );
    margin: 28px 0;
    
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    animation: premiumLineGrow 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
}

/* ===================================================================
   PVT. LTD. & CORPORATE SUBTITLE EXTENSIONS
   =================================================================== */

/* 3. "DESIGN AND DEVELOPER" Line */
.loader-subtitle {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #faf6ee; /* Warm cream/off-white */
    letter-spacing: 0.28em;
    margin-bottom: 12px;
    padding-left: 0.28em; /* Offset for letter spacing */
    
    opacity: 0;
    transform: translateY(10px);
    animation: premiumFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.7s;
}

/* 4. "PVT. LTD." Flanked Container */
.loader-pvt-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px; /* Space between gold lines and text */
    width: 100%;
    max-width: 320px; /* Keeps the line lengths balanced and centered */
    margin-top: 12px;
    margin-bottom: 32px;
    
    opacity: 0;
    transform: translateY(10px);
    animation: premiumFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.95s; /* Animates just after Part 1 */
}

/* Horizontal Accent Rules */
.pvt-line {
    flex-grow: 1;
    height: 1px;
    background-color: #dfca90; /* Gold rule matches corporate asset */
    opacity: 0.35;
}

/* Centered PVT. LTD. */
.pvt-text {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12.5px;
    font-weight: 700;
    color: #dfca90; /* Brand gold */
    letter-spacing: 0.18em;
    white-space: nowrap;
}

/* 5. Bottom Taglines row */
.loader-taglines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(250, 246, 238, 0.45); /* Muted contrast to guide visual hierarchy */
    letter-spacing: 0.18em;
    
    opacity: 0;
    transform: translateY(10px);
    animation: premiumFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.2s; /* Final sequence reveal */
}

.loader-taglines .tag-sep {
    color: rgba(223, 202, 144, 0.4); /* Gold divider lines matching screenshot contrast */
    font-weight: 300;
}

/* ===================================================
   KEYFRAME DEFINITIONS (RESOLVES DISPLAY BUG)
   =================================================== */
@keyframes premiumFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumFadeReveal {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes premiumLineGrow {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .loader-title {
        font-size: 46px;
        letter-spacing: 0.4em;
        padding-left: 0.4em;
    }
    .loader-divider {
        width: 180px;
        margin: 20px 0;
    }
    .loader-subtitle {
        font-size: 11px;
        letter-spacing: 0.22em;
    }
    .loader-pvt-container {
        max-width: 240px;
        margin-top: 8px;
        margin-bottom: 24px;
        gap: 12px;
    }
    .pvt-text {
        font-size: 10px;
        letter-spacing: 0.12em;
    }
    .loader-taglines {
        font-size: 9px;
        gap: 10px;
        flex-direction: column;
    }
    .loader-taglines .tag-sep {
        display: none; /* Stacks on mobile viewports */
    }
}

/* ===================================================================
   INTERACTIVE DRAGGABLE TICKER MARQUEE
   =================================================================== */
   .ticker-marquee-bar.modern-luxury {
    cursor: grab;
}

.ticker-marquee-bar.modern-luxury:active {
    cursor: grabbing;
}

/* Disable native CSS animation so JS handles the coordinate layout offsets */
.ticker-marquee-bar.modern-luxury .ticker-marquee-track {
    animation: none !important;
    display: inline-flex;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}


/* ===================================================================
   INVOUGE BY ARC - HIGH-END TYPOGRAPHY MATCH
   =================================================================== */

   .brand-invouge-menu {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none !important;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1;
    transition: transform 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.25) !important; 
    padding-left: 20px;
    margin-left: 10px;
}

.brand-invouge-menu:hover {
    /* transform: scale(1.02); */
}

/* 1. "INVOUGE" Styling: Elegant, sloped italic serif */
.brand-invouge-menu .brand-text-invouge {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 23px; /* Matched relative sizing */
    font-weight: 500; /* Medium-bold luxury weight */
    font-style: italic;
    text-transform: uppercase;
    color: #ffffff !important;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

/* 2. "by" Styling: Small, lowercase italic serif in soft lavender-blue */
.brand-invouge-menu .brand-text-by {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    text-transform: lowercase;
    color: #b5c4f0 !important; /* Perfect match for the light blue-lavender shade in the image */
    margin: 0 12px;
    position: relative;
    top: -1px; /* Visual baseline alignment alignment correction */
    transition: color 0.4s ease;
}

/* 3. "ARC" Styling: Strong, bold Roman serif */
.brand-invouge-menu .brand-text-arc {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 40px; /* Slightly more prominent than "INVOUGE" to mirror the screenshot */
    font-weight: 600; /* Distinct bold style */
    font-style: normal;
    text-transform: uppercase;
    color: #ffffff !important;
    letter-spacing: 0.04em;
    transition: color 0.4s ease;
}

/* ===================================================================
   STATE CHANGES (SCROLLED & HOVER STATES)
   =================================================================== */

/* Scrolled state over cream/white navigation bar background */
.nav-wrapper.scrolled .brand-invouge-menu {
    border-left-color: #dac99e !important;
}

.nav-wrapper.scrolled .brand-invouge-menu .brand-text-invouge,
.nav-wrapper.scrolled .brand-invouge-menu .brand-text-arc {
    color: var(--forest, #1B3A2D) !important; /* Transitions to brand deep forest green */
}

.nav-wrapper.scrolled .brand-invouge-menu .brand-text-by {
    color: var(--gold, #C9A84C) !important; /* Transitions to brand gold on light backgrounds */
}

/* Hover Accent transitions */
.brand-invouge-menu:hover .brand-text-invouge,
.brand-invouge-menu:hover .brand-text-arc {
    color: var(--gold-warm, #E8CC8A) !important;
}


/* ===================================================================
   INVOUGE BY ARC - TEASER SECTION TYPOGRAPHY OVERHAUL
   =================================================================== */

   .invouge-teaser-section {
    background-color: #fff;
    padding: 70px 0;
}

.teaser-card {
    background-color: var(--forest) !important; /* Deep signature forest green background */
    border: 1px solid rgba(232, 204, 138, 0.15); /* Delicate gold layout outline */
    min-height: 280px;
    box-shadow: 0 15px 40px rgba(27, 58, 45, 0.08);
    border-radius: 16px;
}

/* Eyebrow Label: Crisp and spaced */
.teaser-eyebrow {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 12px;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: var(--gold-warm, #E8CC8A) !important;
}

/* Title container aligning segments to the baseline */
.teaser-title {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 1.5rem;
}

/* "INVOUGE": Luxurious sloped italic serif */
.teaser-text-invouge {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 28px; /* Scaled up for strong editorial hierarchy */
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.02em;
}

/* "by": Delicate lowercase italic serif in warm gold */
.teaser-text-by {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 26px;
    font-weight: 500;
    font-style: normal;
    text-transform: lowercase;
    color: var(--gold-warm, #E8CC8A);
    margin: 0 10px;
}

/* "ARC": Bold Roman serif */
.teaser-text-arc {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.04em;
}

/* Curated description copy readability refinement */
.teaser-desc {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.7;
    color: rgba(250, 246, 238, 0.8) !important; /* Soft white/cream with readable contrast */
    font-weight: 400;
}

/* List point typographic adjustments */
.teaser-points-list ul li {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
}

/* Responsive configurations */
@media (max-width: 991px) {
    .teaser-title {
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
    }
    .teaser-text-invouge {
        font-size: 30px;
    }
    .teaser-text-by {
        font-size: 20px;
        margin: 0 6px;
    }
    .teaser-text-arc {
        font-size: 34px;
    }
}


/* ===================================================================
   LOGO SIZE ADJUSTMENTS
   =================================================================== */

/* Base container adjustment to prevent vertical clipping */
.logo-pill {
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Increase the height of the default logo (originally restricted to 52px) */
.logo-default {
    height: 70px !important; /* Adjust this value up or down to achieve your exact desired size */
    width: auto;
    transition: transform 0.4s var(--transition, ease), opacity 0.4s ease;
}

/* Ensure the scrolled compact logo remains thin and neat on scroll */
.logo-scrolled {
    height: 70.5px !important; /* Keeps the scrolled icon crisp and compact */
    width: auto;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    cursor: grab;
    user-select: none; /* Prevents text highlighting while dragging */
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    /* ... your existing testimonial card properties ... */
    user-select: none;
    -webkit-user-drag: none; /* Prevents browser ghost-image dragging */
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* --- BRAND VARIABLES & GLOBAL SETUP --- */
:root {
    --max-width: 1500px;
    --arc-orange: #F6882F;
    --arc-dark: #000000;
    --arc-footer-bg: #0d0d0d;
    --arc-footer-border: #1a1a1a;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    padding-top: 95px; /* Accounts for fixed header */
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

/* --- REUSABLE BOUNDS CONTAINER --- */
.arc-global-bounds {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .arc-global-bounds {
        padding: 0 1.5rem !important;
    }
}

/* --- STICKY NAVIGATION BAR --- */
#arc-site-header {
    background-color: #000000 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
}

#arc-site-header.is-scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.arc-brand-logo {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .arc-brand-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .arc-brand-logo {
        height: 75px !important;
    }
    #arc-site-header {
        padding: 10px 0 !important;
    }
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.nav-link.active, .nav-link:hover {
    color: var(--arc-orange) !important;
}

/* --- DESKTOP ABOUT DROPDOWN --- */
.arc-dropdown-list {
    background-color: #000000 !important;
    border: 1px solid #222222 !important;
    border-radius: 0;
    padding: 15px 0;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.arc-dropdown-list .dropdown-item {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 25px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.arc-dropdown-list .dropdown-item:hover {
    background-color: transparent !important;
    color: var(--arc-orange) !important;
    padding-left: 30px;
}

@media (min-width: 992px) {
    .arc-dropdown-hover:hover .arc-dropdown-list {
        display: block;
        animation: arcFadeIn 0.3s ease;
    }
}

@keyframes arcFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SLIDING BUTTON ANIMATIONS --- */
.arc-minimal-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--arc-orange);
    cursor: pointer;
    text-decoration: none;
    color: var(--arc-orange);
}

.arc-text-clip {
    height: 14px;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.arc-text-stack {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arc-btn-txt, .arc-btn-icon {
    height: 20px;
    display: flex;
    align-items: center;
    line-height: 14px;
}

.arc-minimal-btn:hover .arc-text-stack {
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .arc-text-clip {
        height: 1.2rem !important;
        overflow: hidden !important;
        display: block;
    }
    .arc-text-stack {
        transform: none !important;
        display: flex;
        flex-direction: column;
    }
    .arc-text-stack span:nth-child(2),
    .arc-text-stack svg:nth-child(2) {
        display: none !important;
    }
}

/* --- MOBILE HAMBURGER --- */
.arc-mobile-toggle {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    cursor: pointer;
}

.arc-mobile-toggle .arc-toggle-bar {
    display: block;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.arc-mobile-toggle .arc-toggle-bar:nth-child(1) { width: 18px; }
.arc-mobile-toggle .arc-toggle-bar:nth-child(2) { width: 28px; }
.arc-mobile-toggle .arc-toggle-bar:nth-child(3) { width: 18px; }

.navbar-toggler:hover .arc-mobile-toggle .arc-toggle-bar:nth-child(1),
.navbar-toggler:hover .arc-mobile-toggle .arc-toggle-bar:nth-child(3) {
    width: 28px;
}

/* --- OFFCANVAS SIDEBAR (MOBILE DRAWER) --- */
.arc-mobile-drawer {
    background-color: #000000 !important;
    width: 85% !important;
    max-width: 400px;
    border-left: 1px solid #222222;
}

.arc-drawer-logo {
    height: 75px;
    width: auto;
}

.arc-drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.arc-drawer-close:hover {
    transform: rotate(90deg);
    color: var(--arc-orange);
}

.arc-drawer-list {
    margin-top: 1rem;
    border-top: 1px solid #222222;
}

.arc-drawer-link {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #222222;
    transition: all 0.3s ease;
}

.arc-drawer-link:hover, .arc-drawer-link.active {
    color: var(--arc-orange);
}

.arc-drawer-submenu {
    background: #000000;
    margin-bottom: 0;
}

.arc-drawer-sublink {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.arc-drawer-sublink:hover {
    color: var(--arc-orange);
    padding-left: 10px;
}

.arc-submenu-indicator {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #666666;
}

.arc-drawer-link[aria-expanded="true"] .arc-submenu-indicator {
    transform: rotate(180deg);
    color: var(--arc-orange);
}

.arc-drawer-link[aria-expanded="true"] {
    color: var(--arc-orange);
}

.arc-eyebrow {
    font-size: 15px;
    font-weight: 700;
    color: #666666;
}

.arc-contact-row {
    transition: all 0.3s ease;
}

.arc-contact-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 138, 49, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--arc-orange);
    font-size: 16px;
}

.arc-contact-anchor {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.arc-contact-row:hover .arc-contact-anchor {
    color: var(--arc-orange);
}

.arc-contact-row:hover .arc-contact-badge {
    background: var(--arc-orange);
    color: #000000;
}

.arc-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid var(--arc-orange);
    color: var(--arc-orange);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    overflow: hidden;
    transition: all 0.4s ease;
}

.arc-drawer-cta:hover {
    background-color: #ffffff;
    color: #000000 !important;
    border: 1px solid #ffffff !important;
}

.arc-slide-mask {
    height: 16px;
    overflow: hidden;
    display: block;
}

.arc-slide-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arc-slide-track span, .arc-slide-track svg {
    height: 16px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.arc-drawer-cta:hover .arc-slide-track {
    transform: translateY(-50%);
}

/* --- ABOUT SECTION --- */
.arc-about-workspace {
    padding: 70px 0;
    background-color: #ffffff;
    color: #000000;
}

.arc-display-heading {
    font-size: 72px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
}

.display-3 {
    font-size: 48px;
}

@media (max-width: 575.98px) {
    .display-3, .arc-display-heading {
        font-size: 36px !important;
    }
}

.arc-about-lead {
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    max-width: 100%;
}

.arc-fine-divider {
    border: 0;
    border-top: 1px solid #eeeeee;
    opacity: 1;
}

/* --- TRIPTYCH NARRATIVE GRID --- */
.arc-editorial-grid {
    margin-top: 50px;
    margin-bottom: 50px;
}

.arc-main-visual-frame {
    position: relative;
    height: 650px;
    background-color: #f5f5f5;
    border-radius: 2px;
}

.arc-floating-card-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(70px, -180px);
    z-index: 10;
}

.arc-floating-card {
    background: #ffffff;
    padding: 30px;
    width: 380px;
    border-radius: 2px;
}

.arc-floating-card .overflow-hidden {
    height: 240px;
    margin-bottom: 25px;
}

.arc-card-body {
    border-left: 2px solid #cacaca;
    padding-left: 20px;
}

.arc-card-heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.arc-card-copy {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.arc-image-tag {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    mix-blend-mode: hard-light;
}

.arc-tag-accent {
    width: 40px;
    height: 1px;
    background-color: #ffffff;
}

.arc-tag-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.arc-zoom-target {
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: cover;
    height: 100%;
}

.arc-main-visual-frame:hover .arc-zoom-target,
.arc-floating-card:hover .arc-zoom-target {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .arc-main-visual-frame {
        height: 400px !important;
    }
    .arc-floating-card-wrap {
        position: relative !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        margin-top: 30px;
    }
    .arc-floating-card {
        width: 100% !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    .arc-image-tag {
        display: none;
    }
}

/* --- NUMERIC MEASUREMENTS --- */
.arc-metric-value {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.arc-metric-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.arc-metric-detail {
    font-size: 15px;
    line-height: 1.5;
    color: #333333;
    max-width: 280px;
}

@media (min-width: 768px) {
    .arc-metric-column {
        border-right: 1px solid #dac99e;
        padding-right: 20px;
        padding-left: 20px;
    }
    .arc-metric-column:last-child {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .arc-metric-column {
        border-right: none !important;
    }
    .arc-about-workspace .row.mb-3 mb-md-5{
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        border-bottom: 1px solid #dac99e !important;
    }
    .arc-about-workspace .row.mb-3 mb-md-5> div {
        margin-bottom: 0 !important;
        padding: 40px 20px !important;
    }
    .arc-about-workspace .row.mb-3 mb-md-5> div:nth-child(odd) {
        border-right: 1px solid #dac99e !important;
    }
    .arc-about-workspace .row.mb-3 mb-md-5> div:nth-child(1),
    .arc-about-workspace .row.mb-3 mb-md-5> div:nth-child(2) {
        border-bottom: 1px solid #dac99e !important;
    }
}

/* --- SUSTAINABLE WORKFLOW SECTION --- */
.arc-sustainable-block {
    background-color: #ffffff;
}

.arc-editorial-header {
    font-size: 36px;
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: #000000;
}

.arc-editorial-copy {
    font-size: 16px;
    line-height: 1.8;
    color: #333333 !important;
}

.arc-editorial-frame {
    height: 650px;
    overflow: hidden;
}

.arc-reveal-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.arc-editorial-frame:hover .arc-reveal-zoom {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .arc-editorial-header {
        font-size: 32px;
    }
    .arc-editorial-frame {
        height: 400px;
        width: 100%;
    }
}

/* --- PREMIUM EDITORIAL BLACK FOOTER --- */
.arc-dark-footer {
    padding-top: 70px;
    padding-bottom: 20px;
    background-color: #000000 !important;
    color: #ffffff;
    border-top: 1px solid var(--arc-footer-border) !important;
}

.arc-dark-footer h3 {
    color: #ffffff !important;
    letter-spacing: -0.02em;
}

.arc-footer-section-title {
    font-size: 18px !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap;
}

.arc-footer-logo-anchor {
    display: inline-block;
    margin-bottom: 25px;
}

.arc-footer-brand-logo {
    height: 75px;
    width: auto;
    display: block;
}

.arc-socials-wrapper {
    margin-top: 30px !important;
}

.arc-socials-item {
    width: 38px;
    height: 38px;
    font-size: 14px;
    background: #1a1a1a !important;
    border: 1px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.arc-socials-item:hover {
    background: var(--arc-orange) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.arc-footer-link {
    color: #B0B0B0 !important;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.arc-footer-link:hover {
    color: var(--arc-orange) !important;
}

.arc-dark-footer i.fas {
    color: #ffffff !important;
    opacity: 0.8;
    width: 20px;
    font-size: 14px;
    flex-shrink: 0;
}

.arc-sub-footer-line {
    border-top: 1px solid var(--arc-footer-border) !important;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .arc-footer-section-title {
        font-size: 16px !important;
    }
    .arc-dark-footer .col-12 {
        margin-top: 2rem !important;
        border-top: 1px solid #1a1a1a;
        padding-top: 2rem;
    }
    .arc-dark-footer .col-md-12 {
        margin-bottom: 1rem;
    }
}

.philosophy-list span{
    font-size: 16px; 
    font-weight: 700; 
    /* letter-spacing: 0.15em;  */
    color: #7C3A1E;
}

.cl-green{
    color: #1B3A2D;;
}

/* ==========================================
   ABOUT US LAYOUT CLASS REFINEMENTS
   ========================================== */

/* Main Text Paragraph Block Width Rule */
.about-lead-paragraph {
    max-width: 100%;
}

/* Sustainable Image Aspect & Rounding Rules */
.sustainable-img-container {
    border-radius: 24px !important;
}

.sustainable-img-element {
    object-fit: cover;
    height: 580px;
    display: block;
    border-radius: 24px !important;
}

/* Positioning & Layout of absolute-placed visual tags */
.sustainable-badge-container {
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.sustainable-badge-element {
    background-color: #1B3A2D;
    color: #FAF6EE !important;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 10px;
}

/* Philosophy Table Grid & Borders */
.philosophy-row {
    border-color: rgba(27, 58, 45, 0.12) !important;
}

.philosophy-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3D2B1F;
    font-weight: 500;
}

.about-p{
    font-size: 16px;
    line-height: 1.6;
    color: #3D2B1F;
    font-weight: 500;
}


/* ==========================================
   OUR APPROACH SECTION DESIGN RULES
   ========================================== */
   .approach-section {
    background-color: #ffffff;
    color: #000000;
}

.approach-eyebrow {
    display: inline-block;
    border: 1px solid #1a1a1a;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.approach-title {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.approach-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

/* Contiguous Grid Layout with Gutters Removed */
.approach-grid-container {
    width: 100%;
}

.approach-text-card {
    background-color: #FAF9F5;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    height: 100%;
    border: 1px solid #EDEDE8;
}

.approach-img-card {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

/* Typographic Numeral Style (Using exclusively Inter) */
.approach-num {
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #1a1a1a;
    opacity: 0.9;
}

.approach-card-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    color: #000000;
}

.approach-card-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7C3A1E; /* Elegant Cognac Accent */
    margin-bottom: 16px;
}

.approach-card-body {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Tablet & Mobile Grid Scaling */
@media (max-width: 991px) {
    .approach-text-card, .approach-img-card {
        min-height: 360px;
    }
    .approach-text-card {
        padding: 40px 30px;
    }
}

/* ==========================================
   MISSION, VISION & CORE VALUES DESIGN RULES
   ========================================== */
   .values-section {
    background-color: var(--cream-bg);
    color: #000000;
}

.values-eyebrow {
    display: inline-block;
    border: 1px solid #1a1a1a;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif !important;
}

.values-title {
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.1;
    /* letter-spacing: -0.03em; */
    font-family: 'Inter', sans-serif !important;
    color: #000;
}

.values-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    font-family: 'Inter', sans-serif !important;
}

/* Contiguous Grid with Gutters Removed */
.values-grid-container {
    width: 100%;
}

.values-text-card {
    background-color: #fff;
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    height: 100%;
    border: 1px solid #dac99e;
}

.values-img-card {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

/* Typographic Numeral Setup using purely Inter */
.values-num {
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--forest);
    opacity: 1;
    font-family: 'Inter', sans-serif !important;
}
@media (max-width: 767px) {
    .values-num {
      font-size: 50px;   /* adjust if needed */
      margin-bottom: 16px;
    }
  }

.values-card-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
    color: #000000;
    font-family: 'Inter', sans-serif !important;
}

.values-card-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7C3A1E; /* Subdued Cognac DNA Accent */
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif !important;
}

.values-card-body {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
}

/* Core Values Structured List Panel */
.core-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.core-value-item {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
    font-family: 'Inter', sans-serif !important;
}

.core-value-item strong {
    color: #1a1a1a;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif !important;
}

/* Responsive configurations */
@media (max-width: 991px) {
    .values-text-card, .values-img-card {
        min-height: 360px;
    }
    .values-text-card {
        padding: 40px 30px;
    }
}


/* ===================================================================
   EDITORIAL SPLIT OUR APPROACH SECTION
   =================================================================== */
   .approach-split-section {
    background-color: #1B3A2D;
    width: 100%;
    overflow: hidden;
}

.approach-split-img-wrapper {
    width: 100%;
    height: 100%;
    max-height: 650px;
    overflow: hidden;
}

.approach-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* High-Contrast Pitch Black Text Panel with Generous Breathing Room */
.approach-split-text-panel {
    background-color: #1B3A2D;
    color: #ffffff;
    padding: 80px 100px;
    max-height: 650px;
    height: 100%;
}

.approach-split-title {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
}

.approach-split-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 580px;
    margin: 0;
    font-family: 'Inter', sans-serif !important;
}

/* Fluid Mobile Scaling Overrides */
@media (max-width: 991px) {
    .approach-split-img-wrapper {
        min-height: 400px;
        height: 400px;
    }
    .approach-split-text-panel {
        padding: 60px 30px;
        min-height: auto;
    }
    .approach-split-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .approach-split-body {
        font-size: 16px;
        line-height: 1.7;
    }
}

.fs-41{
    font-size: 41px;
}
@media (max-width: 767px) {
    .fs-41 {
      font-size: 32px; /* adjust as needed */
    }
  }

/* 1. Global Overflow Fix: Ensure clip is used everywhere instead of hidden */
html,
body {
    max-width: 100%;
    overflow-x: clip !important; /* Prevents layout breakouts without breaking position: sticky */
    position: relative;
}

body {
    overflow-x: clip !important;
}

/* 2. Desktop Track Layout: Change flex to block for reliable sticky containment */
@media (min-width: 992px) {
    .stacking-cards-track {
        display: block !important; 
        position: relative;
        max-width: 1500px;
        margin: 0 auto;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
    --max-width: 1500px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    position: relative;
    padding-top: 0px;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

/* Global Whitespace Utilities */
.pt-40 {
    padding-top: 40px !important;
}
.pt-70 {
    padding-top: 70px !important;
}
.pb-70 {
    padding-bottom: 70px !important;
}

@media (max-width: 767px) {
    .pb-70 {
        padding-bottom: 50px !important;
    }
    .pt-70 {
        padding-top: 50px !important;
    }
}

/* Custom layout wrapper */
.layout-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 1200px) {
    .layout-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .layout-wrapper {
        padding: 0 1.5rem !important;
    }
}

/* Base interactive slide layouts */
.sliding-view-gate {
    height: 14px;
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.sliding-stack {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-text-item,
.vector-arrow {
    height: 20px;
    display: flex;
    align-items: center;
    line-height: 14px;
}

/* Header Action Buttons */
.action-btn-line {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 1);
    color: #F6882F;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
    text-decoration: none; 
}

.action-btn-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 0;
    transform: translate(-50%, -50%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.action-btn-line:hover::before {
    height: 100%;
}

.action-btn-line:hover {
    color: #000000;
    background: #fff;
    transition: color 0.4s ease;
    border: 1px solid #fff;
    text-decoration: none; 
}

.action-btn-line:hover .sliding-stack {
    transform: translateY(-50%);
}

/* Navbar */
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff !important;
}

.nav-link.active {
    color: #F6882F !important;
}

.nav-link:hover {
    color: #F6882F !important;
}

.navbar {
    padding-left: 50px;
    padding-right: 50px;
}

/* Sticky Navbar Core Controls */
#siteMainHeader {
    background-color: #000000 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
}

#siteMainHeader.header-scrolled-state {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

#siteMainHeader.header-scrolled-state .brand-logo-img {
    height: 80px !important;
}

@media (max-width: 767px) {
    #siteMainHeader.header-scrolled-state .brand-logo-img {
        height: 75px !important;
    }
}

@media (max-width: 768px) {
    #siteMainHeader {
        padding: 10px 0 !important;
    }
}

/* Brand logo img details */
.brand-logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .brand-logo-img {
        height: 30px;
    }
}

/* Toggle menu and toggle bars */
.mobile-menu-toggle {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    cursor: pointer;
}

.mobile-menu-toggle .toggle-bar {
    display: block;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle .toggle-bar:nth-child(1) {
    width: 18px;
}

.mobile-menu-toggle .toggle-bar:nth-child(2) {
    width: 28px;
}

.mobile-menu-toggle .toggle-bar:nth-child(3) {
    width: 18px;
}

.navbar-toggler:hover .mobile-menu-toggle .toggle-bar {
    background-color: #F6882F;
}

.navbar-toggler:hover .mobile-menu-toggle .toggle-bar:nth-child(1),
.navbar-toggler:hover .mobile-menu-toggle .toggle-bar:nth-child(3) {
    width: 28px;
}

/* Hover flyout layout */
.flyout-menu {
    background-color: #000 !important;
    border: 1px solid #222 !important;
    border-radius: 0;
    padding: 15px 0;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.flyout-menu .dropdown-item {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 25px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.flyout-menu .dropdown-item:hover {
    background-color: transparent !important;
    color: #F6882F !important;
    padding-left: 30px;
}

@media (min-width: 992px) {
    .dropdown-trigger-hover:hover .flyout-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Side Drawer Component styles */
.side-drawer-black {
    background-color: #000 !important;
    width: 85% !important;
    max-width: 400px;
    border-left: 1px solid #222;
}

.drawer-logo-img {
    height: 75px;
    width: auto;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 0;
    line-height: 1;
    transition: transform 0.3s ease;
}

.drawer-close-btn:hover {
    transform: rotate(90deg);
    color: #F6882F;
}

.drawer-navigation {
    margin-top: 1rem;
}

.drawer-menu-list {
    margin-top: 1rem;
    border-top: 1px solid #222;
}

.drawer-nav-item {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #222;
    transition: all 0.3s ease;
}

.drawer-nav-item:hover {
    color: #F6882F;
    border-bottom-color: #333;
}

.drawer-nav-item.active {
    color: #F6882F;
    font-weight: 600;
}

.drawer-nav-item[aria-expanded="true"] {
    color: #F6882F;
}

.drawer-chevron {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #666;
}

.drawer-nav-item[aria-expanded="true"] .drawer-chevron {
    transform: rotate(180deg);
    color: #F6882F;
}

.drawer-nested-menu {
    background: rgb(0 0 0);
    margin-bottom: 0;
    border-bottom: 1px solid #222;
}

.drawer-nested-item {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.drawer-nested-item:hover {
    color: #F6882F;
    padding-left: 10px;
}

.drawer-bottom-info {
    padding-top: 40px;
}

@media (max-width: 768px) {
    .offcanvas-header {
        border-bottom: 1px solid #111;
    }
}

.meta-heading-dim {
    font-size: 15px;
    font-weight: 700;
    color: #666;
}

.drawer-contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 138, 49, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: #F6882F;
    font-size: 16px;
}

.drawer-contact-anchor {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.drawer-contact-row {
    transition: all 0.3s ease;
    margin-bottom: 0px !important;
}

.drawer-contact-row:hover .drawer-contact-anchor {
    color: #F6882F;
}

.drawer-contact-row:hover .drawer-contact-icon {
    background: #F6882F;
    color: #000;
}

/* Premium sidebar buttons */
.drawer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid #F6882F;
    color: #F6882F;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    overflow: hidden;
    transition: all 0.4s ease;
}

.drawer-cta-btn:hover {
    background-color: #ffffff;
    color: #000000 !important;
    border: 1px solid #fff !important;
}

.anim-slider-gate {
    height: 16px;
    overflow: hidden;
    display: block;
}

.anim-slider-stack {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-cta-btn:hover .anim-slider-stack {
    transform: translateY(-50%);
}

.drawer-cta-btn .anim-slider-stack span,
.drawer-cta-btn .anim-slider-stack svg {
    height: 16px;
    display: flex;
    align-items: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .drawer-cta-btn:active {
        background-color: #F6882F;
        color: #000;
    }
}

/* Projects Section */
.portfolio-workview {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
@media (max-width: 767px) {
    .portfolio-workview {
      padding-top: 50px !important;
      padding-bottom: 50px !important;
    }
  }

.portfolio-header-block {
    background-color: #fff;
}

.portfolio-main-heading {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: #000;
}

.text-description-muted {
    font-size: 16px;
    line-height: 1.8;
    color: #333 !important;
}

.architectural-line-break {
    width: 100%;
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: 0.15;
}

/* Expanding cards mesh and work units */
.expanding-cards-mesh {
    display: flex;
    gap: 15px;
    width: 100%;
    height: 460px;
}

.expanding-work-unit {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background-color: #1a1a1a;
    transition: flex 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: flex;
}

.expanding-work-unit:hover {
    flex: 2.5;
}

.expanding-work-unit img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
}

.expanding-work-unit:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.scrim-gradient-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 58, 45, 0) 45%, rgba(27, 58, 45, 0.4) 60%, rgba(27, 58, 45, 0.95) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .scrim-gradient-cover {
        background: linear-gradient(to top, rgb(0 0 0 / 85%) 20%, transparent 80%);
    }
}

.expanding-work-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.expanding-work-title {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.02em;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.expanding-work-unit:hover .expanding-work-title {
    transform: translateY(-8px);
}

.expanding-reveal-container {
    max-height: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: max-height 0.8s ease, opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.expanding-work-unit:hover .expanding-reveal-container {
    max-height: 250px;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.expanding-work-abstract {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(255 255 255 / 96%);
    margin: 15px 0 25px 0;
    max-width: 450px;
    white-space: normal;
}

/* Expand Cards Mesh Mobile Controls */
@media (max-width: 991px) {
    .expanding-cards-mesh {
        flex-direction: column;
        height: auto;
    }

    .expanding-work-unit {
        height: 380px;
        flex: none;
    }

    .expanding-reveal-container {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 991px) {
    .scrim-gradient-cover {
        background: linear-gradient(
            to top, 
            rgba(0, 0, 0, 0.95) 0%,   
            rgba(0, 0, 0, 0.7) 50%,    
            transparent 100%
        ) !important;
    }

    .expanding-work-meta {
        padding: 30px 20px !important; 
    }

    .expanding-work-title {
        font-size: 24px !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); 
    }

    .expanding-work-abstract {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.95) !important; 
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    }

    .outlined-action-trigger {
        padding: 10px 20px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 991px) {
    .expanding-work-unit {
        transition: none !important; 
        display: block !important;    
        height: 400px !important;    
        flex: none !important;
        transform: none !important;
    }

    .expanding-work-unit:hover img {
        transform: none !important; 
    }

    .expanding-reveal-container {
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Work unit outline button overrides */
.outlined-action-trigger {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    overflow: hidden;
    transition: all 0.3s ease;
}

.outlined-action-trigger:hover {
    background-color: #ffffff;
    color: #000000;
}

.outlined-action-trigger:hover .anim-slider-stack {
    transform: translateY(-50%);
}

.anim-slider-stack i,
.anim-slider-stack span {
    height: 16px;
    display: flex;
    align-items: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .outlined-action-trigger .anim-slider-gate {
        height: 16px !important;
        overflow: hidden !important;
        display: inline-block !important;
        vertical-align: middle;
        margin-top: -2px;
    }

    .outlined-action-trigger .anim-slider-stack {
        transform: none !important;
        transition: none !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .outlined-action-trigger .anim-slider-stack svg:nth-child(2) {
        display: none !important;
    }

    .outlined-action-trigger .anim-slider-stack svg:first-child {
        display: block !important;
        height: 16px !important;
        width: 16px !important;
    }

    .outlined-action-trigger {
        padding: 12px 24px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Footer Section Overrides */
.site-footer-block {
    padding-top: 70px;
    padding-bottom: 20px;
    background-color: #000 !important;
    color: #ffffff;
    border-top: 1px solid #1a1a1a !important;
}

.site-footer-block h3,
.site-footer-block h6 {
    color: #ffffff !important;
    letter-spacing: -0.02em;
}

.site-footer-block .text-description-muted {
    color: #B0B0B0 !important;
    font-size: 15px;
    line-height: 1.7;
}

.site-footer-block .footer-link-item {
    color: #B0B0B0 !important;
    transition: color 0.3s ease;
    opacity: 1;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
}

.site-footer-block .footer-link-item:hover {
    color: #f5882f !important;
    opacity: 1;
}

/* Footer Brand Anchor and Image */
.footer-brand-anchor {
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-brand-image {
    height: 75px;
    width: auto;
    display: block;
    filter: brightness(1);
    transition: transform 0.3s ease;
}

.footer-brand-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-brand-image {
        height: 75px;
    }
}

/* Social links and icons */
.socials-mesh-list {
    margin-top: 30px !important;
}

.social-circle-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-circle-anchor:hover {
    background-color: #f6882f !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.font-weight-medium {
    font-weight: 500;
}

.footer-column-heading {
    font-size: 18px !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .footer-column-heading {
        font-size: 16px !important;
        letter-spacing: 0.05em !important;
        white-space: nowrap;
    }

    .site-footer-block .col-12 {
        margin-top: 2rem !important;
        border-top: 1px solid #1a1a1a;
        padding-top: 2rem;
    }

    .site-footer-block .col-md-12 {
        margin-bottom: 1rem;
    }
}

.site-footer-block .list-unstyled i {
    width: 20px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
    flex-shrink: 0;
}

.site-footer-block i.fas {
    color: #ffffff !important;
    opacity: 0.6;
}

.footer-copyright-row {
    border-top: 1px solid #1a1a1a !important;
    margin-top: 30px;
}

.site-footer-block .small {
    color: #B0B0B0 !important;
    font-size: 15px;
}

.site-footer-block .small a {
    color: #fff !important;
}

.site-footer-block .small a:hover {
    color: #f6882f !important;
}

/* Responsive slider overrides */
@media (max-width: 768px) {
    .anim-slider-gate {
        height: 1.2rem !important;
        overflow: hidden !important;
        display: block;
    }

    .anim-slider-stack {
        transform: none !important;
        display: flex;
        flex-direction: column;
    }

    .anim-slider-stack span:nth-child(2),
    .anim-slider-stack i:nth-child(2) {
        display: none !important;
    }
}

/* ===================================================================
   OTHER PAGES SCROLLED-ONLY NAV STYLING
   =================================================================== */
   .nav-wrapper.nav-scrolled-only {
    background-color: #F8F5EE !important;
    border-bottom: 1px solid rgba(232, 204, 138, 0.15) !important;
    padding: 10px 0 !important;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important; */
}

/* Force dark green link styling on load */
.nav-wrapper.nav-scrolled-only .nav-links a {
    color: #1B3A2D !important;
}

.nav-wrapper.nav-scrolled-only .nav-links a:hover {
    color: var(--cognac-light, #A04D28) !important;
}

.nav-wrapper.nav-scrolled-only .nav-links li.active a {
    color: var(--cognac-light, #A04D28) !important;
}

/* Neutralize the default floating white logo-pill card background */
.nav-wrapper.nav-scrolled-only .logo-pill {
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* Instantly swap the standard transparent-bg logo with the compact scroll logo */
.nav-wrapper.nav-scrolled-only .logo-default {
    opacity: 0 !important;
    transform: scale(0.9) !important;
    pointer-events: none;
}

.nav-wrapper.nav-scrolled-only .logo-scrolled {
    opacity: 1 !important;
    transform: scale(0.9) !important;
    position: relative !important;
}

/* Ensure Invouge typographic links align with the light theme background color */
.nav-wrapper.nav-scrolled-only .brand-invouge-menu {
    border-left-color: #dac99e !important;
}

.nav-wrapper.nav-scrolled-only .brand-invouge-menu .brand-text-invouge,
.nav-wrapper.nav-scrolled-only .brand-invouge-menu .brand-text-arc {
    color: #1B3A2D !important;
}

.nav-wrapper.nav-scrolled-only .brand-invouge-menu .brand-text-by {
    color: #C9A84C !important;
}

.nav-wrapper.nav-scrolled-only .brand-invouge-menu:hover .brand-text-invouge,
.nav-wrapper.nav-scrolled-only .brand-invouge-menu:hover .brand-text-arc {
    /* color: var(--gold-warm) !important; */
}

.mt-100-1{
    margin-top: 85px;
}

  /* Mobile */
  @media (max-width: 767px) {
    .mt-100-1 {
      margin-top: 80px; /* adjust as needed */
    }
  }

  .mt-100{
    margin-top: 100px;
}

  /* Mobile */
  @media (max-width: 767px) {
    .mt-100 {
      margin-top: 85px; /* adjust as needed */
    }
  }

.pt-50{
    padding-top: 50px;
}
.pt-40{
    padding-top: 40px;
}

.p-0 {
    padding: 0 !important;
}




.mw-560{
    max-width: 560px;
}


/* --- Streamlined Editorial Header --- */
.editorial-header-row {
    --forest-dark: #0B1B15;
    --gold-accent: #C5A85A;
    --text-muted: #5F6F65;
    background-color: transparent;
}

.values-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.values-title-editorial {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest-dark);
    /* letter-spacing: -0.01em; */
    margin: 0;
}

.values-title-editorial span {
    font-style: italic;
    color: var(--gold-accent);
    font-weight: 400;
}

.values-statement-text {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 300;
    border-left: 2px solid var(--gold-accent);
    padding-left: 28px;
    margin: 0;
}

/* Responsive alignment adjustments for smaller screens */
@media (max-width: 991px) {
    .values-statement-text {
        border-left: none;
        border-top: 1px solid rgba(11, 27, 21, 0.08);
        padding-left: 0;
        padding-top: 24px;
        margin-top: 16px;
    }
}



/* ===================================================================
   PREMIUM REPLICA HEADER STYLES
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

.premium-header {
    background-color: #f4efe0 !important;
    border-bottom: 1.5px solid rgba(27, 58, 45, 0.08) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03) !important;
    height: 85px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important;
    width: 100%;
}

.premium-header .header-inner {
    width: 100%;
}

.premium-header .header-logo {
    height: 48px;
    width: auto;
    display: block;
}

.premium-header .nav-links {
    gap: 36px !important;
}

.premium-header .nav-link-item {
    /* font-family: 'Plus Jakarta Sans', sans-serif !important; */
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
    color: #1B3A2D !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.premium-header .nav-link-item:hover,
.premium-header .nav-link-item.active {
    color: #C9A84C !important;
}

.premium-header .vertical-divider {
    width: 1.5px;
    height: 38px;
    background-color: #dac99e !important;
    margin-right: 28px;
    margin-left: 28px;
}

.premium-header .portal-link {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none !important;
    line-height: .8;
    transition: transform 0.3s ease;
}

.premium-header .portal-link:hover {
    transform: scale(1.02);
}

.premium-header .portal-text-invouge {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    font-style: italic !important;
    text-transform: uppercase !important;
    color: #1B3A2D !important;
    letter-spacing: 0.02em !important;
}

.premium-header .portal-text-by {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-size: 19px !important;
    font-weight: 600 !important;
    font-style: normal !important;
    text-transform: lowercase !important;
    color: #C9A84C !important;
    margin: 0 10px !important;
}

.premium-header .portal-text-arc {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #1B3A2D !important;
    letter-spacing: 0.04em !important;
}

/* Mobile Toggle Hamburger */
.premium-header .mobile-menu-toggle {
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    vertical-align: middle;
}

.premium-header .burger-span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1B3A2D;
    transition: all 0.3s ease;
}

/* Drawer styles */
.mobile-drawer-container {
    background-color: #1B3A2D !important;
    width: 300px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99999 !important;
}

.mobile-drawer-container .drawer-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-drawer-container .drawer-logo {
    height: 40px;
    width: auto;
}

.mobile-drawer-container .drawer-close-btn {
    background: none;
    border: none;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 55%;
    transition: transform 0.3s ease;
}

.mobile-drawer-container .drawer-close-btn:hover {
    transform: rotate(90deg);
}

.mobile-drawer-container .drawer-links-list {
    margin-top: 15px;
}

.mobile-drawer-container .drawer-links-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-container .drawer-links-list li a {
    display: block;
    padding: 16px 12px;
    color: #FAF6EE !important;
    text-decoration: none !important;
    /* font-family: 'Plus Jakarta Sans', sans-serif !important; */
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-drawer-container .drawer-links-list li a:hover {
    color: #C9A84C !important;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-drawer-container .mobile-portal-btn {
    border: 1px solid #C9A84C !important;
    color: #C9A84C !important;
    text-align: center;
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-size: 18px !important;
    font-style: italic;
    padding: 12px !important;
}

.mobile-drawer-container .mobile-portal-btn:hover {
    background-color: #C9A84C !important;
    color: #1B3A2D !important;
}





/* ==========================================
   CAREER PAGE ARCHITECTURAL OVERRIDES
   ========================================== */

/* Hero Spacing */
.career-hero-section {
    background-color: var(--cream);
    padding: 0 0 70px 0;
    /* min-height: 80vh; */
}

.career-hero-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(19, 34, 26, 0.08);
}

@media (max-width: 991px) {
    .career-hero-section {
        padding-top: 60px;
        min-height: auto;
    }
    .career-hero-img {
        height: 280px;
    }
}

/* Premium Custom File Upload Interface */
.custom-file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #faf6ee !important;
    border: 1px solid rgba(19, 34, 26, 0.12) !important;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    text-align: center;
}

.file-upload-trigger:hover {
    background-color: var(--forest) !important;
    color: var(--cream) !important;
    border-color: var(--forest) !important;
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

/* File name selected class */
.file-upload-trigger.file-selected {
    background-color: var(--forest-mid) !important;
    color: #ffffff !important;
    border-color: var(--forest-mid) !important;
}

/* ==========================================
   ROLE REQUIREMENTS LIST SPECIFICATION (LIGHT MODE)
   ========================================== */
   .role-requirements-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 0 0;
}

.role-requirements-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    /* Use deep warm neutral umber text color for readable high contrast on light backgrounds */
    color: var(--text-body, #3D2B1F) !important; 
    font-family: 'Inter', sans-serif;
}

/* Bullet styling: Uses a premium brand cognac color instead of dark-theme white dots */
/* .role-requirements-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: var(--cognac, #7C3A1E) !important; 
    border-radius: 50%;
} */

/* ==========================================
   WHY ARC REPLICA GRID STYLING
   ========================================== */
   .arc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.arc-why-card {
    background: #ffffff;
    border: 1px solid rgba(19, 34, 26, 0.05);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.arc-why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(27, 58, 45, 0.04);
}

.arc-why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--gold, #C9A84C);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    transition: background-color 0.3s ease;
}

.arc-why-card:hover .arc-why-icon-box {
    background-color: var(--forest, #1B3A2D);
}

.arc-why-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.arc-why-card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666 !important;
    margin: 0;
}

@media (max-width: 991px) {
    .arc-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .arc-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .arc-why-card {
        padding: 35px 25px;
    }
}

/* --- HOMEPAGE ALIGNED STYLE PALETTE --- */
:root {
    --forest: #0B1B15;           /* Declared primary forest variable */
    --forest-dark: #0B1B15;      /* Homepage deep dark green background */
    --forest-mid: #142C21;
    --gold-accent: #C5A85A;      /* Homepage warm heritage gold */
    --gold-hover: #B4964B;
    --cream-bg: #FAF6EE;         /* Homepage organic warm cream background */
    --white-card: #FFFFFF;
    --text-dark: #0B1B15;
    --text-muted: #5F6F65;
    --border-fine: rgba(11, 27, 21, 0.08);
    --transition-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--cream-bg);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}


/* --- CONTACT HERO SECTION --- */
.modern-contact-section {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #fff;
    position: relative;
}

/* Contact Us Pill Badge */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 168, 90, 0.1);
    color: var(--gold-accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(197, 168, 90, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Title matching the homepage serif styles */
.contact-title {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--forest-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-title span {
    font-style: italic;
    color: var(--gold-accent);
}

.contact-desc {
font-size: 16px;
line-height: 1.7;
color: var(--forest);
max-width: 630px;
margin-bottom: 48px;
font-weight: 400;
}

/* Info Cards matching homepage content block properties */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    display: flex;
    align-items: center; /* Centers icon box vertically relative to text block height */
    gap: 20px;
    background-color: var(--cream-bg);
    border: 1px solid #dac99e;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(11, 27, 21, 0.02);
    transition: var(--transition-premium);
}

/* Borders change to var(--forest) on hover */
.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 27, 21, 0.05);
    border-color: var(--cognac-light, #A04D28) !important;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-card-icon {
    width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background-color: #ffffff;
    color: var(--cognac-light, #A04D28) !important;
    flex-shrink: 0;
    transition: var(--transition-premium);
    border: 1px solid rgba(11, 27, 21, 0.1);
}

/* Icon background transitions to var(--forest) on hover */
/* .info-card:hover .info-card-icon {
    background-color: var(--forest);
    color: #ffffff;
} */

.info-card-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--forest-dark);
    margin: 0;
}

.info-card-text {
    font-size: 14px;
    color: var(--forest);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Hover animations specifically for phone and email links inside the cards */
.info-card-text a {
    position: relative;
    text-decoration: none;
    color: var(--forest) !important;
    transition: var(--transition-premium);
    display: inline-block;
}

/* Underline sliding effect using var(--forest) */
/* .info-card-text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--forest);
    transition: var(--transition-premium);
} */

.info-card-text a:hover::after {
    width: 100%;
}

.info-card-text a:hover {
    color: var(--cognac-light, #A04D28) !important;
    text-decoration: none;
}

/* --- THE FORM CONTAINER CARD --- */
.form-card {
    background-color: var(--cream-bg);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(11, 27, 21, 0.04);
    border: 1px solid #dac99e;
    overflow: hidden;
    position: relative;
    padding: 40px;
    padding-top: 52px;
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-input {
    width: 100%;
    background-color: #fff;
    border: 1px solid rgba(11, 27, 21, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-premium);
}

.form-input:focus {
    border-color: var(--gold-accent);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(197, 168, 90, 0.12);
}

.form-input::placeholder {
    color: rgba(11, 27, 21, 0.3);
}

/* Phone input flag/code selection indicator */
.phone-input-group {
    display: flex;
    border: 1px solid rgba(11, 27, 21, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #FAF8F5;
    transition: var(--transition-premium);
}

.phone-input-group:focus-within {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 4px rgba(197, 168, 90, 0.12);
    background-color: #FFFFFF;
}

.phone-input-group .form-input {
    border: none !important;
    border-radius: 0 !important;
    padding-left: 10px;
    background-color: #fff;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #F5EFEB;
    padding: 0 14px;
    border-right: 1px solid rgba(11, 27, 21, 0.1);
    color: var(--text-dark);
    font-size: 13.5px;
    font-weight: 500;
    user-select: none;
}

textarea.form-input {
    resize: none;
}

/* Submit Consultation Button styling matches the homepage button action styling */
.form-submit-btn {
    width: 100%;
    background-color: var(--gold-accent);
    color: var(--forest-dark);
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 0 10px 20px rgba(197, 168, 90, 0.1);
    margin-top: 12px;
}

.form-submit-btn:hover {
    background-color: var(--gold-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(197, 168, 90, 0.2);
}

/* --- BOTTOM MAP SECTION --- */
.map-section {
    padding-bottom: 70px;
    background-color: #fff;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 27, 21, 0.04);
    border: 1px solid var(--border-fine);
    height: 480px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 991px) {
    .modern-contact-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .form-card {
        margin-top: 40px;
        padding: 30px;
    }
    .map-section {
        padding-bottom: 60px;
    }
    .map-container {
        height: 380px;
    }
}



/* --- HOMEPAGE ALIGNED STYLE PALETTE --- */
:root {
    --forest:       #1B3A2D;
    --forest-mid:   #254D3C;
    --forest-light: #2E6B52;
    --cognac:       #7C3A1E;
    --cognac-light: #A04D28;
    --gold:         #C9A84C;
    --gold-light:   #DFC175;
    --gold-warm:    #E8CC8A;
    --parchment:    #F2EBD9;
    --parchment-dark:#E8DEC8;
    --cream:        #FAF6EE;
    --linen:        #EDE5D0;
    --umber:        #5A3A28;
    --text-body:    #3D2B1F;
    --text-mid:     #6B4C38;
    --text-light:   #9A7A64;
    --transition:   cubic-bezier(0.76, 0, 0.24, 1);
}

/* --- Streamlined Editorial Header --- */
.editorial-header-row {
    --forest-dark: #0B1B15;
    --gold-accent: #C5A85A;
    --text-muted: #5F6F65;
    background-color: transparent;
}

.values-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.values-title-editorial {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest-dark);
    letter-spacing: -0.01em;
    margin: 0;
}

.values-title-editorial span {
    font-style: italic;
    color: var(--gold-accent);
    font-weight: 400;
}

.values-statement-text {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 300;
    border-left: 2px solid var(--gold-accent);
    padding-left: 28px;
    margin: 0;
}

/* Responsive alignment adjustments for smaller screens */
@media (max-width: 991px) {
    .values-statement-text {
        border-left: none;
        border-top: 1px solid rgba(11, 27, 21, 0.08);
        padding-left: 0;
        padding-top: 24px;
        margin-top: 16px;
    }
}


/* Scoped styles to enhance the case study layout and match current system variables */
:root {
    --forest: #1B3A2D;
    --cognac: #7C3A1E;
    --gold-warm: #E8CC8A;
    --gold: #C9A84C;
    --cream: #FAF6EE;
    --parchment: #F2EBD9;
    --text-body: #3D2B1F;
}

/* Narrative & Meta Details Grid */
.project-meta-label {
    font-size: 12px;
    font-weight: 700;
    /* letter-spacing: 0.2em; */
    color: var(--cognac);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.project-meta-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
}

.project-meta-box {
    border-bottom: 1px solid rgba(27, 58, 45, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* Standardized Equal Height Gallery Card */
.gallery-card {
    position: relative;
    border-radius: 24px; /* Curved corners matching your screenshot */
    overflow: hidden;
    background-color: #f5f5f5;
    cursor: pointer;
    width: 100%;
    aspect-ratio: 16 / 11; /* standardizes identical height and width across cards */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 58, 45, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions undistorted */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 58, 45, 0.9) 0%, rgba(27, 58, 45, 0.3) 50%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-title {
    transform: translateY(0);
}

/* Custom lightbox styling */
.lightbox-modal {
    background-color: rgba(11, 28, 21, 0.98);
}

.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.lightbox-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
    background: var(--gold-warm);
    color: var(--forest);
    border-color: var(--gold-warm);
}

/* Interactive Next Project transition block */
.next-project-banner {
    position: relative;
    background-color: var(--forest);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    border: 1px solid rgba(232, 204, 138, 0.15);
    transition: border-color 0.4s ease;
    text-decoration: none !important;
}

.next-project-banner:hover {
    border-color: var(--gold-warm);
}

.next-project-bg {
    position: absolute;
    inset: 0;
    background: url('assets/images/projects/arc2-6.jpg') center/cover no-repeat;
    opacity: 0.2;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 1;
}

.next-project-banner:hover .next-project-bg {
    transform: scale(1.03);
    opacity: 0.35;
}

.next-project-content {
    position: relative;
    z-index: 2;
}

.next-h{
    min-height: 185px !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .project-narrative-box {
        border-left: none;
        padding-left: 0;
        /* margin-top: 30px; */
    }
    .next-project-banner {
        padding: 40px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}


/* --- HOMEPAGE ALIGNED STYLE PALETTE --- */
:root {
    --forest: #0B1B15;           /* Primary forest dark */
    --forest-dark: #0B1B15;      /* Homepage deep dark green background */
    --forest-mid: #142C21;
    --gold-accent: #C5A85A;      /* Homepage warm heritage gold */
    --gold-hover: #B4964B;
    --cream-bg: #FAF6EE;         /* Homepage organic warm cream background */
    --white-card: #FFFFFF;
    --text-dark: #0B1B15;
    --text-muted: #5F6F65;
    --border-fine: rgba(11, 27, 21, 0.08);
    --transition-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    /* background-color: var(--cream-bg); */
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}


/* --- VIDEO HERO INTRO SECTION --- */
.video-hero-section {
    padding-top: 70px;
    background-color: #fff;
}

/* --- Streamlined Editorial Header --- */
.editorial-header-row {
    --forest-dark: #0B1B15;
    --gold-accent: #C5A85A;
    --text-muted: #5F6F65;
    background-color: transparent;
}

.values-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.values-title-editorial {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest-dark);
    letter-spacing: -0.01em;
    margin: 0;
}

.values-title-editorial span {
    font-style: italic;
    color: var(--gold-accent);
    font-weight: 400;
}

.values-statement-text {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 300;
    border-left: 2px solid var(--gold-accent);
    padding-left: 28px;
    margin: 0;
}

/* Responsive alignment adjustments for smaller screens */
@media (max-width: 991px) {
    .values-statement-text {
        border-left: none;
        border-top: 1px solid rgba(11, 27, 21, 0.08);
        padding-left: 0;
        padding-top: 24px;
        margin-top: 16px;
    }
}

/* --- CINEMATIC GALLERY GRID --- */
.video-gallery-section {
    padding-bottom: 40px;
    background-color: #fff;
}

.video-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 40px;
    cursor: pointer;
    text-align: left;
}

/* Thumbnail frame with custom scaling transition */
.video-card-thumbnail {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(11, 27, 21, 0.05);
    border: 1px solid #dac99e;
    background-color: #dac99e;
}

.video-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-premium), opacity 0.8s ease;
    opacity: 0.9;
}

/* Custom Floating Play Button Overlay */
.play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(11, 27, 21, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--transition-premium);
    z-index: 10;
}

.play-overlay-btn i {
    color: #ffffff;
    font-size: 35px;
    margin-left: 4px;
    transition: all 0.5s var(--transition-premium);
}

/* Hover animations */
.video-card:hover .video-card-img {
    transform: scale(1.05);
    opacity: 0.75;
}

.video-card:hover .play-overlay-btn {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    width: 74px;
    height: 74px;
    box-shadow: 0 0 30px rgba(197, 168, 90, 0.4);
}

.video-card:hover .play-overlay-btn i {
    color: var(--forest-dark);
    transform: scale(1.1);
}

/* Card metadata area with balanced alignments */
.video-card-meta {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-card-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.video-card-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--forest-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.video-card:hover .video-card-title {
    color: var(--cognac-light, #A04D28) !important;
}

.video-card-location {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-card-location i {
    font-size: 15px;
    color: var(--gold-accent);
}

/* --- LIGHTBOX MODAL DIALOG --- */
.video-modal .modal-content {
    background-color: var(--forest-dark);
    border: 1px solid rgba(197, 168, 90, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.video-modal .modal-header {
    border-bottom: none;
    padding: 20px 30px;
}

.video-modal .modal-title {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
}
/* Mobile */
@media (max-width: 767px) {
    .video-modal .modal-title {
      font-size: 12px; /* slightly bigger for readability */
    }
  }

.video-modal .btn-close-white-custom {
    background: none;
    border: none;
    color: #ffffff !important;
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-modal .btn-close-white-custom:hover {
    opacity: 1;
    color: var(--gold-accent);
}

.video-modal .modal-body {
    padding: 0;
    aspect-ratio: 16 / 9;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .video-hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .video-gallery-section {
        padding-bottom: 60px;
    }
}

.justify-self{
    justify-self: center;
}

.br-forest:hover {
    border: 1px solid var(--forest) !important;
}
.br-forest {
    border: 1px solid var(--gold) !important;
}


/* --- HOMEPAGE ALIGNED STYLE PALETTE --- */
:root {
    --forest: #0B1B15;           /* Primary forest dark */
    --forest-dark: #0B1B15;      /* Homepage deep dark green background */
    --forest-mid: #142C21;
    --gold-accent: #C5A85A;      /* Homepage warm heritage gold */
    --gold-hover: #B4964B;
    --cream-bg: #FAF6EE;         /* Homepage organic warm cream background */
    --white-card: #FFFFFF;
    --text-dark: #0B1B15;
    --text-muted: #5F6F65;
    --border-fine: rgba(11, 27, 21, 0.08);
    --transition-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: transparent;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}


/* --- INVOUGE HERO BRANDING SECTION (CUSTOM BG INTEGRATED) --- */
.invouge-hero {
    /* padding-top: 70px;
    padding-bottom: 70px;

    background: url('assets/images/invouge/invouge-banner-1.png') center/cover no-repeat !important;
    position: relative;
    color: #ffffff;
    border-bottom: 1px solid rgba(197, 168, 90, 0.15);
    overflow: hidden; */
}

/* Wood-slatted illuminated column on the right edge */
.hero-slat-accent {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    background: linear-gradient(90deg, #050a07 0%, #15251a 100%);
    display: flex;
    gap: 4px;
    padding: 0 4px;
    box-shadow: -15px 0 50px rgba(0,0,0,0.8);
    z-index: 10;
}

.slat-bar {
    flex: 1;
    height: 100%;
    background: linear-gradient(180deg, #dfba6b 0%, #853c22 40%, rgba(11, 27, 21, 0.1) 100%);
    opacity: 0.95;
    box-shadow: inset 1px 0 2px rgba(0,0,0,0.8);
}

.hero-top-tagline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold-accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tag-dash {
    width: 24px;
    height: 1.5px;
    background-color: var(--gold-accent);
}

/* "INVOUGE by ARC" Typography Alignment */
.hero-brand-title {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 24px;
}

.brand-invouge {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    font-style: italic;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.brand-by {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-style: normal;
    color: var(--gold-accent);
    margin: 0 16px;
    text-transform: lowercase;
}

.brand-arc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 110px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.hero-brand-divider {
    width: 140px;
    border: none;
    border-top: 1px solid var(--gold-accent);
    opacity: 0.4;
    margin: 0 0 45px 0;
}

.hero-sub-motto {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-editorial-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    font-weight: 300;
    margin-bottom: 48px;
}

/* Floating Corporate Badge Card on Right */
.pvt-badge-card {
    border: 1px solid #dac99e !important;
    background-color: rgba(11, 27, 21, 0.45) !important;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    margin-left: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* --- PRELOADER STYLE ADAPTATION FOR THE HERO BADGE CARD --- */
.pvt-badge-card .preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pvt-badge-card .loader-title {
    font-size: 54px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 8px;
    margin-bottom: 0px;
    line-height: 1;
}

.pvt-badge-card .loader-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, rgba(197,168,90,0) 0%, rgba(197,168,90,1) 50%, rgba(197,168,90,0) 100%);
    margin: 20px 0;
}

.pvt-badge-card .loader-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #faf6ee;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pvt-badge-card .loader-pvt-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 240px;
    margin-bottom: 24px;
}

.pvt-badge-card .pvt-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--gold-accent);
    opacity: 0.35;
}

.pvt-badge-card .pvt-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.pvt-badge-card .loader-taglines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(250, 246, 238, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pvt-badge-card .tag-sep {
    color: rgba(197, 168, 90, 0.4);
}

/* --- THE SUB-HERO DECORATIVE STATUS BAR --- */
.editorial-marquee-divider {
    background-color: var(--white-card);
    border-bottom: 1px solid var(--border-fine);
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.editorial-marquee-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 25px;
}

.marquee-gold-dash {
    width: 32px;
    height: 1px;
    background-color: var(--gold-accent);
}

.marquee-statement {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.02em;
}

/* --- REDESIGNED PORTRAIT EXQUISITE INTRO SECTION (SCREENSHOT ALIGNMENT) --- */
.invouge-content-section {
    padding: 70px 0;
    background-color: #fff;
    border-bottom: 1px solid var(--border-fine);
}

.editorial-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.editorial-main-heading-custom {
    font-size: clamp(38px, 4.8vw, 58px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest-dark);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.editorial-main-heading-custom span {
    color: var(--gold-accent);
    font-style: italic;
    font-weight: 400;
}

.editorial-heading-divider {
    width: 80px;
    border: none;
    border-top: 1.5px solid var(--gold-accent);
    opacity: 0.5;
    margin: 0 0 32px 0;
}

.editorial-description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
    margin-bottom: 0;
}

/* Three Pillars Visual Grid with separate left-borders */
.editorial-pillars-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pillar-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    border: 1px solid rgba(197, 168, 90, 0.15);
}

.pillar-icon-wrapper svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
    color: var(--forest);
}

.pillar-meta h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--forest-dark);
    margin: 0 0 9px 0;
}

.pillar-meta p {
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

.pillar-divider {
    width: 1px;
    height: 52px;
    background-color: rgba(11, 27, 21, 0.08);
    align-self: center;
}

/* --- THE DUAL-LAYER PORTRAIT & QUOTE SYSTEM --- */
.editorial-visual-composition {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.editorial-curved-img-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 100%;
    border-top-left-radius: 200px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 27, 21, 0.04);
    border: 1px solid var(--border-fine);
}

.editorial-curved-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* High-Contrast Standout Floating Card precisely overlapping the image track */
.floating-quote-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 58%;
    background-color: var(--forest-dark);
    border: 1px solid rgba(197, 168, 90, 0.15);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    color: rgba(197, 168, 90, 0.1);
    line-height: 1;
    position: absolute;
    top: 0px;
    right: 10px;
    font-weight: 700;
    user-select: none;
    pointer-events: none;
}

.quote-text {
    font-size: 21px;
    line-height: 1.55;
    color: #ffffff;
    font-style: italic;
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 2;
}

.quote-text span {
    color: var(--gold-accent);
    font-weight: 400;
}

.quote-bottom-dash {
    width: 44px;
    height: 1px;
    background-color: var(--gold-accent);
    margin-top: 28px;
    opacity: 0.4;
}

/* --- STICKY STACKED PROCESS TRACK (SCROLLED OVERLAP ANIMATION) --- */
.works-dark-section {
    background-color: #0B1410;
    padding: 70px 0;
    color: #ffffff;
    border-top: 1px solid rgba(197, 168, 90, 0.08);
    border-bottom: 1px solid rgba(197, 168, 90, 0.08);
}

.works-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 991px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Left Column Pinning Blueprint visual container */
.works-image-container {
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    z-index: 5;
}

.works-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: transform 1s var(--transition-premium);
}

/* Right Column Stacking Track */
.works-steps-stack {
    display: flex;
    flex-direction: column;
    gap: 0px;
    position: relative;
}

/* STICKY CARD OVERLAP SYSTEM */
.works-step-card {
    background-color: #1B3A2D;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s ease, opacity 0.4s ease;

    /* Sticky Stack config */
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    z-index: var(--card-index);
    margin-bottom: 3vh;
    
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.85);
    transform-origin: top center;
    will-change: transform, opacity;
}

.works-step-card:last-child {
    margin-bottom: 0;
}

/* Header layout aligning structural icon */
.works-step-header {
    width: 100%;
}

/* Custom Fine-Line Blueprint SVG Icons */
.works-step-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold-accent);
    color: var(--forest) !important;
    border: 1px solid var(--gold-accent);
    transition: var(--transition-premium);
}

.works-step-icon-wrapper svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    color: var(--forest);
    transition: var(--transition-premium);
}

.works-step-card:hover .works-step-icon-wrapper svg {
    color: var(--forest-dark);
}

.works-step-card-title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.works-step-card-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    font-weight: 300;
}

/* --- IMMERSIVE CUSTOM CLIENT BENEFITS GRID (SCREENSHOT MATCH) --- */
.benefits-matrix-block {
    padding: 70px 0;
    background-color: #fff;
}
/* Mobile */
@media (max-width: 767px) {
    .benefits-matrix-block {
      padding: 50px 0;
    }
  }

.benefits-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* Mobile */
@media (max-width: 767px) {
    .benefits-matrix-grid {
        margin-top: 30px;
    }
  }

@media (max-width: 991px) {
    .benefits-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-matrix-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-matrix-card {
    background-color: #1B3A2D;
    border: 1px solid rgb(11 27 21 / 12%);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.benefit-matrix-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 27, 21, 0.04);
}

.benefit-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.benefit-icon-badge svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    color: var(--forest-dark);
}

.benefit-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-card-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}

.benefit-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #cecece;
    margin: 0;
    font-weight: 400;
}

/* ==========================================
   UPGRADED TEAM SECTION LAYOUT
   ========================================== */
.invouge-team-section {
    padding: 70px 0;
    background-color: var(--cream-bg);
    /*border-bottom: 1px solid var(--border-fine);*/
}

/* Mobile */
@media (max-width: 767px) {
    .invouge-team-section {
      padding: 50px 0;
    }
  }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.team-card {
    background-color: var(--cream-bg);
    border: 1px solid var(--gold-accent);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-premium);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(11, 27, 21, 0.04);
}

.team-img-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--forest-dark);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-premium), filter 0.8s ease;
    opacity: 0.9;
}

.team-card:hover .team-img {
    transform: scale(1.04);
    opacity: 1;
}

.team-info-panel {
    padding: 28px;
    text-align: left;
}

.team-member-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--forest);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.team-member-name {
    font-size: 26px;
    font-weight: 500;
    color: var(--forest-dark);
    margin-bottom: 10px;
}

.team-member-inst {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* --- SELECTED WORKS PANEL --- */
.selected-works-section {
    padding: 70px 0;
    background-color: #F8F5EE;
}

.selected-works-heading {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: block;
}

.selected-works-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.selected-works-row::-webkit-scrollbar {
    display: none;
}

.selected-work-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    box-shadow: 0 10px 30px rgba(11, 27, 21, 0.03);
    border: 1px solid var(--border-fine);
    transition: var(--transition-premium);
}

.selected-work-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(11, 27, 21, 0.08);
    border-color: var(--gold-accent);
}

.selected-work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- BLUEPRINT FOOTER OVERLAY --- */
.footer-bg-blueprint {
    background-image: url('assets/images/footer/footer-white.png');
}

/* --- BRAND COMPACT FOOTER --- */
.invouge-footer {
    background-color: var(--forest-dark);
    color: #ffffff;
    padding: 60px 0;
    border-top: 4px solid var(--gold-accent);
    position: relative;
}

.invouge-footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.invouge-footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

.invouge-footer-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.invouge-footer-text a:hover {
    color: var(--gold-accent);
}

.invouge-footer-logo-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.footer-brand-invouge {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none !important;
    line-height: 1;
}

.footer-brand-invouge .brand-text-invouge {
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.footer-brand-invouge .brand-text-by {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    text-transform: lowercase;
    color: var(--gold-accent);
    margin: 0 10px;
}

.footer-brand-invouge .brand-text-arc {
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.04em;
}

@media (max-width: 991px) {
    .invouge-hero {
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: center;
    }
    .hero-slat-accent {
        display: none !important;
    }
    .pvt-badge-card {
        margin: 40px auto 0;
        padding: 30px;
    }
    .invouge-content-section {
        padding: 50px 0;
    }
    .editorial-visual-composition {
        height: auto;
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    .editorial-curved-img-frame {
        position: relative !important;
        width: 100% !important;
        height: 320px !important;
        border-top-left-radius: 120px !important;
    }
    .floating-quote-card {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        margin-top: -60px;
    }
    .editorial-pillars-row {
        flex-direction: column;
        gap: 24px;
    }
    .pillar-divider {
        display: none;
    }
    .works-dark-section {
        padding: 50px 0;
    }
    .works-image-container {
        position: relative !important;
        top: auto !important;
        height: 380px !important;
    }
    .works-step-card {
        position: relative !important;
        top: auto !important;
        margin-bottom: 24px !important;
        box-shadow: none !important;
    }
    .invouge-footer-logo-wrap {
        justify-content: flex-start;
        margin-top: 40px;
    }
}


/* --- INVOUGE HERO BRANDING SECTION (HTML BANNER LAYOUT) --- */
.invouge-hero {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    color: #ffffff;
    border-bottom: 1px solid rgba(197, 168, 90, 0.15);
    overflow: hidden;
    /* background-color: var(--forest-dark); */
}
@media (max-width: 767px) {
    .invouge-hero {
      padding-top: 50px;
      padding-bottom: 50px;
    }
  }

/* Styles the HTML image to behave like a cover background */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}

/* Optional overlay to keep text highly legible */
/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 27, 21, 0.85); 
    z-index: 2;
    pointer-events: none;
} */

/* --- PREMIUM ARCHITECTURAL PALETTE Overrides --- */
:root {
    --forest:       #1B3A2D;
    --forest-mid:   #254D3C;
    --gold:         #C9A84C;
    --gold-warm:    #E8CC8A;
    --cream:        #f8f5ee;
    --parchment:    #F2EBD9;
    --amber-gold:   #E0A949;
    --dark-charcoal:#111111;
}


/* --- HERO OVERRIDES --- */
.career-hero-section {
    background-color: #fff !important;
    padding: 20px 0 70px 0;
}

.section-tag-gold {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--gold);
}

.tag-dot {
    background-color: var(--gold) !important;
}

.hero-main-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif !important; */
    font-size: 48px !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    line-height: 1.05 !important;
    color: var(--forest) !important;
}

.text-accent.italic {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    color: var(--gold) !important;
}

.hero-desc-p {
    font-size: 15.5px !important;
    line-height: 1.7 !important;
    color: #4A5A50 !important;
    max-width: 520px;
}

.btn-explore-roles {
    background-color: var(--dark-charcoal);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--dark-charcoal);
}

.btn-explore-roles:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.15);
}

.hero-image-frame {
    border-radius: 40px !important;
    box-shadow: 0 20px 50px rgba(27, 58, 45, 0.08);
}

.career-hero-img {
    height: 480px !important;
    object-fit: cover;
}

/* --- 5-COLUMN FEATURES BAR --- */
.features-bar {
    background-color: var(--forest) !important;
    color: #ffffff;
    border-top: 1px solid rgba(232, 204, 138, 0.15);
    border-bottom: 1px solid rgba(232, 204, 138, 0.15);
}

.feature-column::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(232, 204, 138, 0.15);
}

.feature-icon {
    color: var(--gold-warm);
    font-size: 20px;
    margin-top: 2px;
    border: 1px solid var(--gold);
    padding: 7px;
    min-width: 45px;
    display: flex;
    justify-content: center;
    min-height: 45px;
    align-items: center;
    border-radius: 50%;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    /* letter-spacing: 0.15em; */
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
    color: #D3E0D8 !important;
}

@media (max-width: 991px) {
    .feature-column::after {
        display: none !important;
    }
    .feature-column {
        margin-bottom: 15px;
    }
}

/* --- REFINED OPEN ROLES ACCORDION --- */
.vacancies-main-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 54px !important;
    font-weight: 500 !important;
    color: var(--forest) !important;
}

.vacancies-sub-p {
    color: #4A5A50 !important;
    font-size: 15px !important;
    line-height: 1.6;
}

.about-context-box {
    border-left: 2px solid var(--forest) !important;
    padding-left: 24px;
}
@media (max-width: 767px) {
    .about-context-box {
      border-left: none !important;
      padding-left: 0 !important;
    }
  }

.faq-section {
    background-color: var(--cream) !important;
}

.faq-image-wrapper {
    height: 645px !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.faq-portrait-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.faq-item {
    background-color: #FFF;
    border: 1px solid #dac99e !important;
    border-radius: 12px !important;
    padding: 16px 24px !important;
    margin-bottom: 16px !important;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #dac99e !important;
}

.faq-item:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(27, 58, 45, 0.04);
}

.faq-trigger {
    color: var(--forest) !important;
}

.faq-question {
    /* font-family: 'Plus Jakarta Sans', sans-serif !important; */
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--forest) !important;
}

.faq-icon-btn {
    background-color: var(--forest) !important;
    color: #ffffff !important;
    width: 32px;
    height: 32px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger:not(.collapsed) .faq-icon-btn {
    background-color: var(--gold) !important;
    transform: rotate(45deg);
}

/* Custom Checkmark Items */
.role-requirements-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.role-requirements-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #4A5A50;
    text-align: left;
}

.role-requirements-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--forest);
    font-weight: 900;
    font-size: 16px;
}

.btn-role-apply {
    background-color: var(--dark-charcoal);
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 13px 32px;
    border-radius: 100px;
    border: none;
    transition: all 0.3s ease;
}

.btn-role-apply:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(201, 168, 76, 0.2);
}

/* --- THE APPLICATION FORM BANNER --- */
.journey-main-title {
    /* font-family: 'Plus Jakarta Sans', sans-serif !important; */
    font-size: 42px !important;
    font-weight: 800 !important;
    letter-spacing: -1.5px !important;
    line-height: 1.1 !important;
}

.journey-gold-text {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    color: var(--gold-warm) !important;
}

.journey-lead-text {
    color: rgba(250, 246, 238, 0.8) !important;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.cta-floating-card-form {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
}

/* Soft warm-peach input background matching the screenshot form fields */
.journey-input {
    background-color: #F8F5EE!important;
    border: 1px solid rgba(19, 34, 26, 0.05) !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    padding: 11px 16px !important;
    color: var(--dark-charcoal) !important;
}

.journey-input::placeholder {
    color: #9D9D90 !important;
}

.form-field-label {
    /* font-family: 'Plus Jakarta Sans', sans-serif !important; */
    font-weight: 700 !important;
    font-size: 9px !important;
    letter-spacing: 0.15em !important;
    color: #4A5A50 !important;
}

/* File trigger matching image */
.custom-file-upload-wrapper .file-upload-trigger {
    background-color: #F8F5EC !important;
    border: 1px solid rgba(19, 34, 26, 0.05) !important;
    border-radius: 8px !important;
    font-size: 13.5px;
    font-weight: 500;
    color: #4A5A50;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-file-upload-wrapper .file-upload-trigger:hover {
    background-color: var(--forest) !important;
    color: #ffffff !important;
}

.custom-select-trigger {
    background-color: #F8F5EC !important;
    border: 1px solid rgba(19, 34, 26, 0.05) !important;
    border-radius: 8px !important;
    padding: 11px 16px !important;
    font-size: 13.5px !important;
    color: #4A5A50 !important;
}

/* Clean Amber-Gold Block submit button */
.btn-premium-gold-submit {
    background-color: var(--amber-gold) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 30px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-premium-gold-submit:hover {
    background-color: var(--gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(224, 169, 73, 0.2);
}

.py-50{
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.pt-40{
    padding-top: 40px !important;
}

/* --- ACCORDION BUTTON SLIDING ALIGNMENT --- */
.apply-role-btn .btn-text-container {
    height: 16px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

.apply-role-btn .btn-text-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.apply-role-btn .btn-text-wrapper span,
.apply-role-btn .btn-text-wrapper svg {
    height: 16px;
    display: flex;
    align-items: center;
    line-height: 16px;
    flex-shrink: 0;
}

/* Slide animation offsets */
.apply-role-btn:hover .btn-text-wrapper {
    transform: translateY(-50%);
}

.apply-role-btn {
    border-radius: 100px !important;
    gap: 12px;
    padding: 12px 28px !important;
    /* background-color: var(--forest) !important;
    border: 1px solid var(--forest) !important;
    color: #ffffff !important; */
}

.apply-role-btn:hover {
    /* background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #ffffff !important; */
}

/* --- CUSTOM DROPDOWN INTERACTION OVERRIDES --- */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    background-color: #F8F5EE !important;
    border: 1px solid rgba(19, 34, 26, 0.08) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 13.5px !important;
    color: #4A5A50 !important;
    cursor: pointer !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--forest) !important;
    background-color: #ffffff !important;
}

/* Ensure selected option turns dark charcoal */
.custom-select-trigger .selected-value.selected {
    color: var(--dark-charcoal) !important;
    font-weight: 600 !important;
}

/* Options overlay menu */
.custom-options-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FAF6EE !important; /* Matches overall color palette */
    border: 1.5px solid rgba(27, 58, 45, 0.12) !important;
    border-radius: 8px !important;
    margin-top: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.25s;
    z-index: 1050 !important; /* Forces menu list to render above file uploads */
    max-height: 240px;
    overflow-y: auto;
}

/* Dynamic toggle state */
.custom-select-wrapper.open .custom-options-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.select-chevron {
    font-size: 11px;
    color: var(--forest);
    transition: transform 0.25s ease;
}

.custom-select-wrapper.open .select-chevron {
    transform: rotate(180deg);
}

/* Option item interaction styling */
.custom-option {
    padding: 12px 16px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: var(--forest) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-option:hover {
    background-color: var(--forest) !important;
    color: #ffffff !important;
}


/* ===================================================================
   LIGHT THEME MOBILE NAV & SIDEBAR DRAWER OVERRIDES (MOBILE RESPONSIVE ONLY)
   =================================================================== */
   @media (max-width: 991px) {
    /* Mobile Header Background configured to use var(--cream) instead of var(--forest) */
    .mobile-nav {
        background-color: #F2ECDA !important; 
        border-bottom: 1.5px solid rgba(27, 58, 45, 0.08) !important;
        padding: 12px 0 !important;
        height: auto !important;
    }
    
    .mobile-logo img {
        height: 48px !important;
        width: auto;
        display: block;
    }

    /* Hamburger Toggle custom bars shifted to var(--forest) for crisp contrast */
    .mobile-toggle-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .hamburger-lines {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 24px;
    }

    .hamburger-lines span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--forest) !important; /* Forest color bars for contrast */
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .mobile-toggle-btn:hover .hamburger-lines span {
        background-color: var(--gold);
    }

    /* Offcanvas Sidebar Customization - Now Light Cream matching the main page theme */
    .mobile-sidebar {
        background-color: var(--cream) !important; 
        border-left: 1.5px solid rgba(27, 58, 45, 0.08) !important;
        width: 320px !important;
    }

    .mobile-sidebar .offcanvas-header {
        border-bottom: 1px solid rgba(27, 58, 45, 0.08);
        background-color: #F2ECDA !important;
    }

    .mobile-sidebar-logo {
        height: 42px !important;
        width: auto;
        display: block;
    }

    /* Close indicator shifted to dark forest green */
    .btn-close-white-custom {
        background: none;
        border: none;
        color: var(--forest) !important; 
        font-size: 20px;
        transition: transform 0.3s ease, color 0.3s;
        padding: 4px;
        line-height: 1;
    }

    .btn-close-white-custom:hover {
        transform: rotate(90deg);
        color: var(--gold);
    }

    /* Navigation Lists customized with high-contrast text color against the cream background */
    .mobile-nav-list li {
        border-bottom: 1px solid rgba(27, 58, 45, 0.05);
    }

    .mobile-nav-list li a {
        color: var(--forest) !important; /* Primary forest color menu links */
        font-size: 14.5px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        padding: 13px 0;
        display: block;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .mobile-nav-list li a:hover,
    .mobile-nav-list li.active a {
        color: var(--gold) !important;
    }

    /* Invouge by ARC design adjustments within light background sidebar */
    .mobile-invouge-portal {
        border-bottom: 1px solid rgba(27, 58, 45, 0.05);
        padding-bottom: 20px;
    }

    .brand-invouge-menu-mobile {
        text-decoration: none !important;
        display: inline-flex;
        align-items: baseline;
        line-height: 1;
        border-left: 1px solid #dac99e !important;
        padding-left: 16px;
    }

    .brand-text-invouge-mobile {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 19px;
        font-weight: 500;
        color: var(--forest) !important; /* Forest green typographic logo */
        letter-spacing: 0.02em;
        font-style: italic;
    }

    .brand-text-by-mobile {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 15px;
        font-style: italic;
        color: var(--gold) !important; /* Warm gold 'by' signifier */
        margin: 0 10px;
    }

    .brand-text-arc-mobile {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: 30px;
        font-weight: 700;
        color: var(--forest) !important;
        letter-spacing: 0.02em;
    }

    /* Mobile Drawer Contact details shifted to high contrast format */
    .mobile-sidebar-section-title {
        font-size: 12px !important;
        font-weight: 800 !important;
        letter-spacing: normal !important;
        color: var(--cognac) !important;
        text-transform: uppercase;
    }

    .mobile-contact-text {
        font-size: 13.5px;
        color: var(--forest) !important; /* Dark warm neutral text values */
        line-height: 1.5;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .mobile-contact-text:hover {
        color: var(--cognac) !important;
    }

    .contact-icon-box-mobile {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background-color: rgba(27, 58, 45, 0.04); /* Soft forest background tint */
        border: 1px solid rgba(27, 58, 45, 0.08);
        color: var(--cognac);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        flex-shrink: 0;
    }

    /* Contact Button styled cleanly inside Light Mode offcanvas */
    .btn-mobile-contact-submit {
        background-color: var(--forest) !important; /* High-contrast button background */
        color: var(--cream) !important; /* Cream text */
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        padding: 13px;
        border-radius: 8px;
        border: none;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-mobile-contact-submit:hover {
        background-color: var(--gold) !important;
        color: #ffffff !important;
    }
}

@media (max-width: 767px) {
    .br-b {
      border-bottom: 1px solid var(--border-fine);
      padding-bottom: 10px !important;
    }
    .br-b-1 {
        border-bottom: 1px solid #fff;
        padding-bottom: 10px !important;
      }
  }


  /* Mobile-optimized styling for lightbox navigation buttons */
@media (max-width: 767.98px) {
    .lightbox-nav-btn {
        width: 40px !important;
        height: 40px !important;
        background: rgba(11, 28, 21, 0.75) !important; /* Premium semi-transparent forest green background */
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    .lightbox-nav-btn i {
        font-size: 18px !important;
    }
}


@media (max-width: 575.98px) {
    .display-4, .arc-display-heading {
        font-size: 40px !important;
    }
}
.display-4 {
    font-size: 50px;
}

.fs-47{
    font-size: 47px !important;
}
@media (max-width: 575.98px) {
    .fs-47{
        font-size: 37px !important;
    }
}


/* Mobile Responsive Feature Column Dividers */
@media (max-width: 767px) {
    .feature-column {
        border-bottom: 1px solid rgba(232, 204, 138, 0.15); /* Delicate gold divider */
        padding-bottom: 20px;
        margin-bottom: 15px;
    }
    
    /* Remove the bottom border from the final stacked element for a clean finish */
    .feature-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .feature-column::after {
        display: none !important;
    }
    .feature-column {
        margin-bottom: 15px;
    }
}

/* New Mobile-Only Stacking Rules */
@media (max-width: 767px) {
    .feature-column {
        border-bottom: 1px solid rgba(232, 204, 138, 0.15);
        padding-bottom: 20px;
        margin-bottom: 15px;
    }
    .feature-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* Fix mobile responsive height and overlap spacing */
@media (max-width: 991px) {
    .faq-image-wrapper {
        height: 400px !important;     /* Corrects the height on mobile, overriding the 645px !important */
        margin-top: 30px !important;  /* Creates safe vertical spacing below the intro paragraph */
        margin-bottom: 20px;
    }
}


/* Prevents the icon boxes from shrinking or distorting when text wraps on mobile */
.contact-info-icon-box {
    flex-shrink: 0 !important;
}

/* Optional: Improves alignment on smaller screens when text wraps into 2-3 lines */
@media (max-width: 767px) {
    .contact-info-item {
        align-items: flex-start !important; /* Aligns icons to the top of long wrapped text */
    }
    .contact-info-icon-box {
        margin-top: 4px; /* Perfectly aligns the icon with the first line of text */
    }
}


.fs-35{
    font-size: 35px ;
}


/* ===================================================================
   MOBILE RESPONSIVE OVERRIDES: INVOUGE HERO SECTION ALIGNMENT & FONTS
   =================================================================== */
   @media (max-width: 991px) {
    /* Section Container & Padding */
    .invouge-hero {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
        text-align: center !important;
    }

    /* Disable decorative wood slat pillars on mobile to prevent clipping */
    .hero-slat-accent {
        display: none !important;
    }

    /* Center the Top Eyebrow Tagline */
    .invouge-hero .hero-top-tagline {
        justify-content: center !important;
        font-size: 11px !important;
        margin-bottom: 16px !important;
    }

    /* Wrap and center the large "INVOUGE by ARC" branding title */
    .invouge-hero .hero-brand-title {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    /* Dynamically scale brand title components to prevent layout breakouts */
    .invouge-hero .brand-invouge {
        font-size: clamp(34px, 8vw, 56px) !important;
    }

    .invouge-hero .brand-by {
        font-size: clamp(18px, 4vw, 24px) !important;
        margin: 0 10px !important;
    }

    .invouge-hero .brand-arc {
        font-size: clamp(48px, 12vw, 80px) !important;
    }

    /* Center-align the line divider beneath title */
    .invouge-hero .hero-brand-divider {
        margin: 0 auto 20px auto !important;
        width: 100px !important;
    }

    /* Scale visual spacing of the sub-motto statement */
    .invouge-hero .hero-sub-motto {
        font-size: 11px !important;
        letter-spacing: 0.18em !important;
        margin-bottom: 24px !important;
        text-align: center;
    }

    /* Alignment & styling adjustments for the editorial description marquee row */
    .invouge-hero .editorial-marquee-row {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        /* margin-bottom: 40px !important; */
        padding-top: 0;
    }

    /* Hide the left horizontal dash to support clean centered formatting */
    .invouge-hero .marquee-gold-dash {
        display: none !important; 
    }

    .invouge-hero .marquee-statement {
        font-size: 15px !important;
        line-height: 1.6 !important;
        max-width: 440px !important;
        margin: 0 auto !important;
        display: none;
    }

    /* Floating Corporate Badge Card on mobile viewport */
    .invouge-hero .pvt-badge-card {
        margin: 20px auto 0 auto !important;
        padding: 35px 25px !important;
        max-width: 380px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    }

    /* Scaling inner typography inside the card */
    .invouge-hero .pvt-badge-card .loader-title {
        font-size: 42px !important;
        letter-spacing: 8px !important;
    }

    .invouge-hero .pvt-badge-card .loader-divider {
        width: 100px !important;
        margin: 15px 0 !important;
    }

    .invouge-hero .pvt-badge-card .loader-subtitle {
        font-size: 11px !important;
        letter-spacing: 0.22em !important;
    }

    .invouge-hero .pvt-badge-card .loader-pvt-container {
        max-width: 220px !important;
        margin-bottom: 20px !important;
        gap: 12px !important;
    }

    .invouge-hero .pvt-badge-card .pvt-text {
        font-size: 10px !important;
        letter-spacing: 0.12em !important;
    }

    .invouge-hero .pvt-badge-card .loader-taglines {
        font-size: 9px !important;
        gap: 8px !important;
    }
}

@media (max-width: 576px) {
    /* Shorter top-gap on narrow mobile viewports to align better with navigation headers */
    .invouge-hero {
        padding-top: 50px !important; 
        padding-bottom: 50px !important;
    }

    .invouge-hero .pvt-badge-card {
        max-width: 100% !important;
        padding: 30px 20px !important;
    }
}


/* Base: Hide buttons on desktop views */
.selected-works-btn {
    display: none !important;
}

/* Mobile & Tablet Specific Layout */
@media (max-width: 991px) {
    .selected-works-carousel-wrapper {
        position: relative;
    }

    .selected-works-btn {
        display: flex !important; /* Reveal only on responsive widths */
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: rgba(11, 28, 21, 0.75); /* Semi-transparent forest dark matching your layout tone */
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.15);
        align-items: center;
        justify-content: center;
        z-index: 10;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .selected-works-btn:active {
        background-color: rgba(11, 28, 21, 0.95);
        transform: translateY(-50%) scale(0.95);
    }

    /* Absolute Left/Right Placements */
    .selected-works-btn.prev-btn {
        left: 15px;
    }

    .selected-works-btn.next-btn {
        right: 15px;
    }

    .selected-works-btn i {
        font-size: 18px;
        display: inline-flex;
    }
}
@media (max-width: 767px) {
    .selected-works-section {
      padding: 50px 0;
    }
  }

  .mw-600{
    max-width: 600px;
  }

/* Ensure the titles stay on a single line on desktop views */
.feature-title {
    font-size: 14px; /* Slightly scaled down to prevent crowding on smaller screens */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    white-space: nowrap; /* Prevents headings from wrapping to a second line */
}

/* Base feature column rules to support uniform borders */
.feature-column {
    display: flex;
    flex-direction: column;
}

/* Clean vertical border lines on desktop */
.feature-column::after {
    content: "";
    position: absolute;
    right: -15px; /* Center-aligned inside the column gutter */
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(232, 204, 138, 0.15);
}

/* Hide the border on the last column of the row on desktop views */
@media (min-width: 992px) {
    .feature-column:last-child::after {
        display: none !important;
    }
}

/* Icon baseline alignment offset */
.feature-icon {
    margin-top: 2px; /* Pulls the circle icon down slightly to align with the first text row */
    flex-shrink: 0;  /* Prevents the circle from squishing when text scales */
}

/* ===================================================================
   INVOUGE BY ARC - HIGH-END EDITORIAL SINGLE LEADER STYLING
   =================================================================== */

/* Image composition wrapper */
.editorial-leader-frame {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    z-index: 5;
}

/* Background forest green solid decorative slab offset */
.leader-shadow-slab {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #1B3A2D; /* Primary deep forest green */
    border-radius: 20px;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fine architectural CAD layout framing line offset */
.leader-cad-frame {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    /* border: 1px solid #dac99e; Delicate warm gold outline */
    border-radius: 24px;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Main Portrait container */
.editorial-leader-frame .team-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(11, 27, 21, 0.15);
}

.editorial-leader-frame .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    opacity: 0.95;
    display: block;
}

/* absolute positioned technical metric tag */
.leader-metric-tag {
    position: absolute;
    bottom: 30px;
    left: -40px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.leader-metric-tag .metric-line {
    width: 40px;
    height: 1px;
    background-color: #E8CC8A; /* Gold color line indicator */
}

.leader-metric-tag .metric-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #E8CC8A;
    background-color: #1B3A2D;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(232, 204, 138, 0.2);
}

/* Interaction: offset frames shift coordinates elegantly on hover */
.editorial-leader-frame:hover .leader-shadow-slab {
    transform: translate(-5px, -5px);
}

.editorial-leader-frame:hover .leader-cad-frame {
    transform: translate(5px, 5px);
}

.editorial-leader-frame:hover .team-img {
    transform: scale(1.03);
    opacity: 1;
}

/* Name and role styling adjustments */
.team-member-details-panel .team-member-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #C9A84C; /* Accent gold label */
    text-transform: uppercase;
}

.team-member-details-panel .team-member-name {
    /* font-family: 'Cormorant Garamond', 'Georgia', serif; */
    font-size: 41px;
    font-weight: 600;
    line-height: 1.1;
    color: #1B3A2D; /* Primary forest color */
    letter-spacing: -0.01em;
}
@media (max-width: 576px) {
    .team-member-details-panel .team-member-name {
        font-size: 30px;
        line-height: 1.3;
    }
}

.team-member-details-panel .team-member-name .name-italic {
    font-style: italic;
    font-weight: 400;
}

.team-member-details-panel .team-member-inst {
    font-size: 15px;
    font-weight: 500;
    color: #5F6F65; /* Clean earth-toned neutral grey */
}

/* Highlighted Leadership Philosophy block quote */
.leader-statement-quote {
    position: relative;
    border-left: 2px solid #7C3A1E; /* Elegant Cognac Accent Line */
    padding-left: 24px;
}

.leader-statement-quote .quote-accent-bracket {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    color: rgba(124, 58, 30, 0.15); /* Cognac quote bracket */
    position: absolute;
    top: -24px;
    right: 20px;
    font-weight: 700;
    line-height: 1;
}

.leader-statement-quote .quote-body {
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    color: #3D2B1F; /* Warm umber base */
    font-weight: 500;
    margin: 0;
}

/* Core Expertise Structural Table Grid */
.leader-expertise-grid {
    border-top-color: rgba(27, 58, 45, 0.08) !important;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.expertise-item .expertise-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: normal;
    color: var(--forest);
    text-transform: uppercase;
}

.expertise-item .expertise-value {
    font-size: 14px;
    font-weight: 600;
    color: #3D2B1F;
    line-height: 1.4;
    letter-spacing: normal;
}

/* Mobile scaling safety overrides to prevent off-screen breakout */
@media (max-width: 991px) {
    .editorial-leader-frame {
        max-width: 380px;
    }
    .leader-shadow-slab {
        top: -12px;
        left: -12px;
    }
    .leader-cad-frame {
        bottom: -10px;
        right: -10px;
    }
    .team-member-details-panel {
        padding-left: 0 !important;
        /*margin-top: 40px;*/
    }
}



/* Custom styles for Featured Projects Lightbox Popup */
.selected-work-item img {
    cursor: pointer;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.selected-work-item:hover img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

.lightbox-modal {
    background-color: rgba(11, 28, 21, 0.98) !important;
    z-index: 10950 !important;
}
.lightbox-modal .modal-content {
    background: transparent !important;
    border: none !important;
}
.lightbox-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}
.lightbox-nav-btn:hover {
    background-color: #E8CC8A;
    color: #1B3A2D;
    border-color: #E8CC8A;
}
.lightbox-image-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    margin: 0 20px;
}
.lightbox-img {
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    user-select: none;
    transition: transform 0.3s ease-out, opacity 0.15s ease-out;
    cursor: zoom-in;
}
.lightbox-img.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}
.lightbox-close-btn {
    position: absolute;
    top: -55px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lightbox-close-btn:hover {
    background-color: #ffffff;
    color: #000000;
}
@media (max-width: 767px) {
    .lightbox-close-btn {
        top: 20px;
        right: 20px;
        background: rgba(11, 28, 21, 0.75);
        border-color: rgba(255, 255, 255, 0.25);
    }
    .lightbox-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1055;
    }
    .popup-prev-btn {
        left: 15px;
    }
    .popup-next-btn {
        right: 15px;
    }
    .lightbox-image-container {
        margin: 0;
    }
}


/* ===================================================================
   CONTACT BANNER & FLOATING FORM SELECT DROPDOWN OVERRIDES
   =================================================================== */

   .custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

/* Base trigger box matching input properties in the reference image */
.custom-select-trigger {
    background-color: #faf6ee !important; /* Soft warm peach-cream background */
    border: 1px solid rgba(19, 34, 26, 0.12) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 13.5px !important;
    color: rgba(0, 0, 0, 0.35) !important; /* Muted placeholder color */
    cursor: pointer !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--forest, #1B3A2D) !important;
    background-color: #ffffff !important;
}

/* High-contrast selected text alignment */
.custom-select-trigger .selected-value.selected {
    color: #333333 !important;
    font-weight: 600 !important;
}

.select-chevron {
    font-size: 11px;
    color: #333333;
    transition: transform 0.25s ease;
}

.custom-select-wrapper.open .select-chevron {
    transform: rotate(180deg);
}

/* Custom styled absolute options panel */
.custom-options-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #faf6ee !important; /* Match layout background color */
    border: 1px solid rgba(19, 34, 26, 0.12) !important;
    border-radius: 8px !important;
    margin-top: 6px;
    box-shadow: 0 10px 35px rgba(27, 58, 45, 0.12) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.25s;
    z-index: 2000 !important; /* Forces dropdown list to render on top of textareas and borders */
    max-height: 240px;
    overflow-y: auto;
}

/* Toggle state animation */
.custom-select-wrapper.open .custom-options-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Individual option list items styling */
.custom-option {
    padding: 12px 16px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: var(--forest, #1B3A2D) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-option:hover {
    background-color: var(--forest, #1B3A2D) !important;
    color: #ffffff !important;
}

/* Parent container context mapping to allow dropdown elements to overflow outside card */
.cta-floating-card-form {
    position: relative;
    z-index: 10;
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) #dac99e !important;
}


/* ===================================================================
   INVOUGE TEAM COLLECTIVE & PARTNER SECTION OVERRIDES
   =================================================================== */
.invouge-team-section-custom {
    background-color: #ffffff;
}

.editorial-team-banner {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(27, 58, 45, 0.08);
}

.team-group-img-wrapper {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 24px;
}

.team-group-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-team-banner:hover .team-group-img {
    transform: scale(1.03);
}

.team-caption-card {
    bottom: 40px;
    left: 40px;
    width: 460px;
    max-width: 90%;
    z-index: 5;
    background-color: #1B3A2D !important; /* Brand forest green */
    border: 1px solid rgba(232, 204, 138, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.text-gold-warm {
    color: #E8CC8A !important;
}

.become-partner-section {
    background-color: #FFF !important; /* Premium earth-toned cream background */
}

.partner-visual-wrapper:hover .partner-img-frame img {
    transform: scale(1.04);
}

/* Modal specific inputs */
#becomePartnerModal .form-field-label {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    color: #4A5A50 !important;
    text-transform: uppercase;
}

#becomePartnerModal .journey-input {
    background-color: #F8F5EE !important;
    border: 1px solid rgba(19, 34, 26, 0.05) !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    padding: 11px 16px !important;
}

@media (max-width: 991px) {
    .team-group-img-wrapper {
        height: 380px;
    }
    .team-caption-card {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: -30px;
        transform: none !important;
        border-radius: 20px !important;
    }
}

.card-content-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content-side li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #d0d0d0;
}

.card-content-side li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--gold-warm) !important;
    border-radius: 50%;
}

.project-narrative-box p{
    --bs-text-opacity: 1;
    color: var(--forest) !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.about-text-block p{
    --bs-text-opacity: 1;
    color: var(--forest) !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
}


.faq-answer-body ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 0 0;
}

.faq-answer-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #4A5A50;
    text-align: left;
}

.faq-answer-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--forest);
    font-weight: 900;
    font-size: 16px;
}

.editorial-description-text p{
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
    margin-bottom: 0;
}

/* ==========================================
   404 ERROR PAGE
   ========================================== */
   .error-404-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    background-color: #fff;
    overflow: hidden;
}

.error-404-blueprint {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.08;
    pointer-events: none;
}

.error-404-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 0 16px;
}

.error-404-brand {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--forest, #0B1B15);
}

.error-404-code {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(96px, 18vw, 160px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--gold-accent, #C5A85A);
}

.error-404-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--forest, #0B1B15);
}

.error-404-section .stats-divider {
    width: 72px;
    max-width: 72px;
    opacity: 1;
}

.error-404-desc {
    margin: 0 auto 32px;
    max-width: 460px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted, #5F6F65);
}

.error-404-actions {
    margin-bottom: 36px;
}

.error-404-btn {
    color: var(--forest, #0B1B15) !important;
    border-color: var(--gold-accent, #C5A85A) !important;
    background: transparent !important;
}

.error-404-btn:hover {
    background: var(--gold-accent, #C5A85A) !important;
    border-color: var(--gold-accent, #C5A85A) !important;
    color: var(--forest, #0B1B15) !important;
}

.error-404-link-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--forest, #0B1B15);
    border-bottom: 1px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.error-404-link-secondary:hover {
    color: var(--cognac, #7C3A1E);
    border-bottom-color: var(--gold-accent, #C5A85A);
}

.error-404-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 14px;
}

.error-404-links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--text-muted, #5F6F65);
    transition: color 0.3s;
}

.error-404-links a:hover {
    color: var(--forest, #0B1B15);
}

.error-404-dot {
    color: var(--gold-accent, #C5A85A);
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 767px) {
    .error-404-section {
        min-height: calc(100vh - 64px);
        padding: 120px 0 80px;
    }

    .error-404-desc {
        font-size: 15px;
    }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
.scroll-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1050;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--gold-accent, #C5A85A);
    border-radius: 0;
    background-color: var(--forest, #0B1B15);
    color: var(--gold-warm, #E8CC8A);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    background-color: var(--gold-accent, #C5A85A);
    border-color: var(--gold-accent, #C5A85A);
    color: var(--forest, #0B1B15);
    outline: none;
}

@media (max-width: 767px) {
    .scroll-to-top {
        right: 18px;
        bottom: 18px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}


/* Next Project CTA ? keep slide button stable on dark teaser card */
.next-h .next-project-cta,
.teaser-card .next-project-cta {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(232, 204, 138, 0.55) !important;
    background: transparent !important;
    color: #ffffff !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.next-h .next-project-cta:hover,
.teaser-card .next-project-cta:hover {
    background: var(--gold-accent, #C5A85A) !important;
    border-color: var(--gold-accent, #C5A85A) !important;
    color: var(--forest, #0B1B15) !important;
}

.next-h .next-project-cta .btn-text-container,
.teaser-card .next-project-cta .btn-text-container {
    height: 16px;
    overflow: hidden;
    display: block;
}

.next-h .next-project-cta .btn-text-wrapper,
.teaser-card .next-project-cta .btn-text-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-h .next-project-cta .btn-text-wrapper span,
.next-h .next-project-cta .btn-text-wrapper svg,
.teaser-card .next-project-cta .btn-text-wrapper span,
.teaser-card .next-project-cta .btn-text-wrapper svg {
    height: 16px;
    display: flex;
    align-items: center;
    line-height: 16px;
    color: inherit;
    text-decoration: none;
}

.next-h .next-project-cta:hover .btn-text-wrapper,
.teaser-card .next-project-cta:hover .btn-text-wrapper {
    transform: translateY(-50%);
}

/* Ensure form submit buttons inherit slide-button styling */
button.btn-minimal-dark {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    cursor: pointer;
    margin: 0;
    box-shadow: none;
}

button.btn-minimal-dark:focus-visible {
    outline: 2px solid var(--gold-accent, #C5A85A);
    outline-offset: 3px;
}
