    @import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Inter+Tight:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Stack+Sans+Headline:wght@200..700&display=swap');

    :root {
        --ds-blue: #0056b3;
    }


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Atkinson Hyperlegible Mono", sans-serif !important;
    }

    body,
    html {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        font-family: "Atkinson Hyperlegible Mono", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        color: white;
    }

    /* --- BACKGROUND & CANVAS --- */
    #bg-gradient {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -2;
        background: radial-gradient(circle at center, #ff1900 0%, #000000 100%);
    }

    #webgl-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
    }

    /* --- HERO SECTION --- */
    .hero-wrapper {
        min-height: 110vh;
        /* Flexbox to push content to bottom */
        display: flex;
        align-items: flex-end;
        padding-bottom: 120px;
        position: relative;
    }

    .hero-title {
        font-weight: 600;
        line-height: 1.3;
        /* Responsive Font Sizes using clamp or media queries */
        font-size: clamp(2.5rem, 4vw, 2.5rem);
    }

    .hero-desc {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        max-width: 400px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.8rem;
        text-transform: uppercase;
        opacity: 0.6;
        letter-spacing: 2px;
    }

    /* Buttons */
    .btn-custom-blue {
        background-color: white;
        color: rgb(0, 0, 0);
        border: none;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 4px;
        width: 100%;
    }

    .btn-custom-outline {
        background: transparent;
        color: white;
        border: 1px solid white;
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 4px;
        width: 100%;
    }

    /* --- CONTENT SECTION --- */
    .content-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .section-heading {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 50px;
    }

    .feature-item {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 20px;
        margin-bottom: 40px;
    }

    /* --- MOBILE TWEAKS --- */
    @media (max-width: 991px) {
        .hero-wrapper {
            padding-bottom: 120px;
            /* More space for buttons on mobile */
            align-items: center;
            /* Center vertically slightly more */
            justify-content: center;
        }

        .hero-actions {
            text-align: left !important;
            /* Reset text align for mobile */
            margin-top: 30px;
        }

        .nav-link {
            margin-left: 0;
            padding: 10px 0;
        }

        /* On mobile, stack buttons nicely */
        .btn-group-responsive {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
    }

    :root {
        --primary-red: #a80000;
        /* Deep Red from screenshot */
        --grid-border: 1px solid #000;
        --text-black: #000;
    }

    body {
        background-color: var(--primary-red);
        font-family: 'Inter', sans-serif;
        padding: 2rem 0;
        min-height: 100vh;
    }

    /* Main Card Container */
    .design-card {
        background-color: #fff;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* Typography */
    .design-card h1,
    h2 {
        font-weight: 600;
        letter-spacing: -1px;
        line-height: 1.1;
        color: var(--text-black);
        font-size: 2.5rem;
    }

    .design-card .section-label {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
    }

    .design-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #333;
        font-weight: 300;
    }

    .design-card .bold-text {
        font-weight: 700;
        color: #000;
    }

    /* Grid Layout & Borders */
    .design-card .grid-section {
        padding: 60px;
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Custom Borders for Desktop */
    .design-card .border-right-custom {
        border-right: var(--grid-border);
    }

    .design-card .border-bottom-custom {
        border-bottom: var(--grid-border);
    }

    /* Image Styling */
    .design-card .img-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
        background-color: #f0f0f0;
    }

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .img-container:hover img {
        transform: scale(1.05);
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {

        .design-card h1,
        h2 {
            font-size: 2.5rem;
        }

        .design-card .grid-section {
            padding: 40px;
        }

        /* Remove right border on mobile/tablet stacking */
        .design-card .border-right-custom {
            border-right: none;
        }
    }

    .design-card {
        background: #fff;
        max-width: 1200px;
        margin: 50px auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

    .grid-section {
        padding: 80px 40px;
        position: relative;
        overflow: hidden;
        /* Important for animations coming from outside */
    }

    /* Custom Borders for Grid Look */
    .border-right-custom {
        border-right: 1px solid #e0e0e0;
    }

    .border-bottom-custom {
        border-bottom: 1px solid #e0e0e0;
    }

    /* Typography */
    .design-card h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #1a1a1a;
    }

    .design-card h2 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .design-card p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
    }

    .section-label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #888;
        margin-bottom: 20px;
        display: inline-block;
    }

    .bold-text {
        font-weight: 700;
        color: #000;
    }

    /* Image Container Styling */
    .img-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
        /* Key for the zoom effect */
        border-radius: 4px;
    }

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

    /* Responsive Border Fixes */
    @media (max-width: 991px) {
        .border-right-custom {
            border-right: none;
        }
    }




    .izum-section {
        background: radial-gradient(circle at center, #2a0a05 0%, #000000 70%);
        padding: 4rem 0;
        position: relative;
        color: white;
        min-height: 100vh;
    }

    .step-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .mono {
        font-family: var(--font-mono);
        font-size: 0.85rem;
        letter-spacing: 1px;
        color: #888;
        /* Fallback for var(--text-muted) */
    }

    .step-row {
        padding: 3rem 0;
        position: relative;
        transition: opacity 0.3s ease;
        cursor: default;
    }

    .step-row:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Dimmed state logic */
    .step-row.dimmed {
        opacity: 0.5;
        transition: 0.3s;
    }

    .step-row.dimmed:hover {
        opacity: 1;
    }

    .step-content {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        width: 100%;
        gap: 2rem;
    }

    .step-left {
        display: flex;
        align-items: baseline;
        gap: 2rem;
    }

    .step-title {
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    /* --- Visual & Hover Logic --- */
    .step-visual {
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        /* Keeps image inside bounds */
        border-radius: 8px;
        /* Optional styling */
    }

    .reveal-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        /* Hidden by default */
        filter: grayscale(100%);
        /* Optional: Cinematic feel */
        transform: scale(1.1);
        transition: all 0.5s ease-in-out;
    }

    /* THE HOVER EFFECT: When hovering the row, reveal the image */
    .step-row:hover .reveal-img {
        opacity: 1;
        transform: scale(1);
        filter: grayscale(0%);
    }

    .step-right {
        max-width: 400px;
        justify-self: end;
    }

    .step-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        text-transform: uppercase;
        color: #ddd;
        margin-bottom: 1.5rem;
    }

    .btn-group {
        display: flex;
        gap: 0.5rem;
    }

    .btn-step {
        background: white;
        color: black;
        padding: 1rem 2rem;
        border: none;
        font-family: var(--font-mono);
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .btn-step:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 991px) {
        .step-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

        .step-left {
            justify-content: center;
        }

        .step-right {
            justify-self: center;
            text-align: left;
        }

        .step-visual {
            height: 250px;
        }
    }



    .izum-section-1 {
        background: radial-gradient(circle at center, #2a0a05 0%, #ffffff 70%);
        padding: 4rem 0;
        position: relative;
        color: rgb(0, 0, 0);
        min-height: 100vh;
    }

    .step-desc1 {
        font-size: 0.9rem;
        line-height: 1.6;
        text-transform: uppercase;
        color: #000000;
        margin-bottom: 1.5rem;
    }

    .btn-step1 {
        background: rgb(0, 0, 0);
        color: rgb(255, 255, 255);
        padding: 1rem 2rem;
        border: none;
        font-family: var(--font-mono);
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: transform 0.2s;
    }

    /* Section Setup to match your Dark Theme */
    .testimonial-section {
        background: #000;
        /* Matches your dark theme */
        color: white;
        padding: 5rem 2rem;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    .testimonial-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
        width: 100%;
        gap: 4rem;
        align-items: center;
    }

    /* --- Image Stack Styling --- */
    .testimonial-visual {
        position: relative;
        height: 400px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1000px;
        /* Creates the 3D space */
    }

    .image-stack {
        position: relative;
        width: 320px;
        height: 380px;
    }

    .t-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
        transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform-origin: bottom center;
    }

    /* Active State (Front) */
    .t-img.active {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        z-index: 10;
    }

    /* Next State (Waiting in back) */
    .t-img.next {
        opacity: 0;
        transform: scale(0.9) rotate(8deg) translateX(40px);
        z-index: 5;
    }

    /* Exit State (Leaving) */
    .t-img.prev {
        opacity: 0;
        transform: scale(0.9) rotate(-8deg) translateX(-40px);
        z-index: 5;
    }

    /* --- Text Styling --- */
    .testimonial-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .t-name {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        background: linear-gradient(to right, #fff, #888);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .t-role {
        font-size: 1rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 2rem;
        font-family: var(--font-mono, monospace);
    }

    .t-quote {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #ccc;
        margin-bottom: 3rem;
        max-width: 400px;
    }

    /* Animation Utilities */
    .animate-text {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
    }

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

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

    .delay-3 {
        animation-delay: 0.2s;
    }

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

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

    /* Navigation Buttons */
    .t-nav {
        display: flex;
        gap: 1rem;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid #333;
        background: black;
        color: white;
        font-size: 1.2rem;
        cursor: pointer;
        transition: 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-btn:hover {
        background: white;
        color: black;
        transform: scale(1.1);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .testimonial-wrapper {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
        }

        .testimonial-content {
            align-items: center;
        }

        .image-stack {
            width: 280px;
            height: 340px;
            margin: 0 auto;
        }

        .t-quote {
            margin: 0 auto 2rem auto;
        }
    }

    /* ========== */

    .content-card {
        background: white;
        padding: 100px 8%;
        overflow: hidden;
        /* Keeps rounded corners */
    }

    /* Typography */
    .section-tag {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 20px;
        display: inline-block;
    }

    .main-headline {
        font-size: clamp(2rem, 5vw, 4rem);
        /* Responsive font size */
        font-weight: 700;
        line-height: 1.1;
        color: #111;
        max-width: 900px;
    }

    .sub-headline {
        font-size: 1.25rem;
        font-weight: 500;
        text-align: right;
        margin-top: 10px;
        color: #333;
    }

    /* Marquee / Slider Section */
    .marquee-container {
        margin-top: 80px;
        background-color: var(--bg-gray);
        padding: 30px 0;
        overflow: hidden;
        /* Hide scrollbar */
        position: relative;
        width: 100%;
    }

    .marquee-track {
        display: flex;
        align-items: center;
        white-space: nowrap;
        width: fit-content;
        /* We will animate this track */
    }

    .logo-item {
        margin: 0 40px;
        display: inline-block;
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .logo-item:hover {
        opacity: 1;
    }

    /* --- CSS MOCKUP LOGOS (To replace images) --- */
    .logo-mockup {
        font-weight: 800;
        font-size: 1.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Ferrosight Style */
    .logo-ferro {
        color: #c5a059;
    }

    /* Gold */
    .eye-icon {
        display: inline-block;
        width: 20px;
        height: 12px;
        border: 3px solid #c5a059;
        border-radius: 50%;
        position: relative;
    }

    .eye-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 6px;
        height: 6px;
        background: #c5a059;
        border-radius: 50%;
    }

    /* Bhatt Law Style */
    .logo-bhatt {
        font-family: serif;
        color: black;
        display: flex;
        align-items: center;
    }

    .bhatt-icon {
        font-size: 2.5rem;
        color: #DAA520;
        margin-right: 10px;
        line-height: 1;
    }

    .bhatt-text span {
        display: block;
        font-size: 0.9rem;
        line-height: 1;
    }

    /* Meera Style */
    .logo-meera {
        color: #800080;
        font-family: 'Georgia', serif;
        font-size: 1.5rem;
    }

    .logo-meera span {
        display: block;
        font-size: 0.6rem;
        text-transform: none;
    }

    /* SuperInsul Style */
    .logo-super {
        display: flex;
        border: 2px solid #003399;
    }

    .super-red {
        background: #ff3300;
        color: white;
        padding: 0 5px;
    }

    .super-blue {
        color: #003399;
        padding: 0 5px;
        font-weight: 900;
    }

    /* ============ */

    :root {
        --primary-black: #000000;
        --behance-blue: #0047FF;
        /* Bright blue from screenshot */
        --bg-offwhite: #ffffff;
    }

    /* Section Container */
    .project-section {
        background-color: var(--primary-black);
        padding: 100px 5%;
        /* margin: 0px 59px; */
        min-height: 100vh;
    }

    /* Header Styling */
    .section-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.1;
        color: var(--primary-black);
        margin-bottom: 50px;
    }

    /* Button Styling */
    .btn-behance {
        background-color: white;
        color: rgb(0, 0, 0);
        padding: 15px 30px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1.1rem;
        border: none;
        transition: transform 0.3s ease, background 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-behance:hover {
        background-color: #000000;
        transform: translateY(-2px);
        border: 1px solid #ffffff;
        color: white;
    }

    .btn-behance i {
        transform: rotate(-45deg);
        /* Arrow angle */
        transition: transform 0.3s ease;
    }

    .btn-behance:hover i {
        transform: rotate(0deg);
    }

    /* --- Project Card Styling --- */
    .project-card {

        display: block;
        position: relative;
        width: 100%;
        padding-bottom: 65%;
        /* Aspect Ratio */
        border-radius: 4px;
        /* Slight radius */
        overflow: hidden;
        cursor: pointer;
        margin-bottom: 30px;
    }

    .card-inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .project-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: none;
        /* Handled by GSAP */
    }

    /* Text Overlay inside Card */
    .card-overlay {
        position: absolute;
        bottom: 30px;
        left: 30px;
        z-index: 2;
        color: white;
        opacity: 0;
        /* Hidden by default, shown on hover/load */
        transform: translateY(20px);
        pointer-events: none;
    }

    .card-overlay h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    }

    .card-overlay p {
        font-size: 0.9rem;
        margin: 0;
        opacity: 0.8;
    }

    /* Custom Cursor Follower */
    .cursor-follower {
        position: absolute;
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(0, 0, 0);
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        z-index: 10;
        transform: translate(-50%, -50%) scale(0);
        /* Hidden initially */
        mix-blend-mode: normal;
    }

    /* Add/Update these specific styles for the Project Section */

    /* Ensure the follower doesn't block clicks */
    .cursor-follower {
        position: absolute;
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        pointer-events: none;
        /* Critical for mouseover events to reach the card */
        display: flex;
        align-items: center;
        justify-content: center;
        color: black;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        z-index: 10;
        transform: translate(-50%, -50%) scale(0);
        mix-blend-mode: normal;
    }

    /* Ensure the image scales smoothly */
    .project-card {
        overflow: hidden;
        position: relative;
        cursor: none;
        /* Hide default cursor when hovering card */
    }

    .card-inner {
        overflow: hidden;
    }

    .project-img {
        transition: transform 0.5s ease;
        /* Fallback */
        will-change: transform;
    }


    a {
        text-decoration: none;
        color: inherit;
        transition: opacity 0.3s ease;
    }

    a:hover {
        opacity: 0.7;
    }

    /* --- LAYOUT CONTAINER --- */
    .footer-container {
        background-color: black;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        text-align: center;
    }

    /* --- SECTION 1: LOGO & SUB-BRANDS --- */
    .brand-section {
        margin-bottom: 40px;
    }

    .main-logo {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .logo-serif {
        font-family: 'Playfair Display', serif;
        font-size: 4rem;
        font-weight: 400;
    }

    .logo-sans {
        font-weight: 300;
        text-align: left;
        font-size: 1.5rem;
    }

    .sub-brands {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .sub-brand-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.2rem;
        font-weight: 300;
        color: #ccc;
    }

    /* The little circle icon */
    .circle-icon {
        width: 18px;
        height: 18px;
        border: 1.5px solid #ccc;
        border-radius: 50%;
        display: inline-block;
    }

    /* --- SEPARATOR LINE --- */
    .divider {
        border: 0;
        height: 1px;
        background: #ffffff;
        width: 100%;
        margin: 0 auto 50px auto;
    }

    /* --- SECTION 2: NAVIGATION --- */
    .main-nav {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 400;
    }

    /* --- SECTION 3: SOCIAL ICONS --- */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        background-color: #1a1a1a;
        /* Slightly lighter than body */
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: transform 0.2s ease, background-color 0.2s;
    }

    .social-btn:hover {
        background-color: #333;
        transform: translateY(-3px);
        opacity: 1;
    }

    /* --- SECTION 4: LEGAL & COPYRIGHT --- */
    .legal-links {
        display: flex;
        justify-content: center;
        gap: 0;
        /* Handling gap with padding for borders */
        margin-bottom: 30px;
        color: #bbb;
        font-weight: 300;
        font-size: 1.1rem;
    }

    .legal-item {
        padding: 0 20px;
        border-right: 1px solid #444;
    }

    .legal-item:last-child {
        border-right: none;
    }

    .copyright {
        color: #888;
        font-size: 0.9rem;
        font-weight: 300;
    }

    @media (max-width: 768px) {
        .testimonial-section {
            margin-top: -50px;
        }
    }

    /* --- RESPONSIVE DESIGN --- */
    @media (max-width: 768px) {
        .sub-brands {
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .main-nav {
            flex-direction: column;
            gap: 20px;
        }

        .legal-links {
            flex-direction: column;
            gap: 10px;
        }

        .legal-item {
            border-right: none;
            padding: 0;
        }

        .main-logo {
            flex-direction: column;
            text-align: center;
        }

        .logo-sans {
            text-align: center;
        }
    }


    /* --- Keyhole Overlay --- */
    .keyhole {
        position: fixed;
        inset: 0;
        pointer-events: none;
        background: black;
        clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
        z-index: 100;
    }

    /* --- Scroll Arrow --- */
    .arrow {
        position: absolute;
        top: 75vh;
        left: 50%;
        z-index: 101;
        transform: translateX(-50%);
        animation: float 1s ease-in-out infinite alternate both;
    }

    .arrow svg {
        transform: rotate(90deg);
        stroke: var(--text);
        width: 2rem;
        height: auto;
    }

    /* --- Sections --- */
    .section {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
    }

    .section--primary {
        background: black;
    }

    .section--primary figure {
        width: 100%;
        margin: 0;
        line-height: 0;
    }

    .section--primary img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .section--secondary {
        background: var(--secondary);
    }

    .section--tertiary {
        background: var(--tertiary);
    }

    .section__content {
        /* Using Bootstrap container logic inside */
        padding-top: 80px;
        padding-bottom: 80px;
    }

    @keyframes float {
        from {
            transform: translate(-50%, -10%);
        }

        to {
            transform: translate(-50%, 10%);
        }
    }

    :root {
        --primary: #ffeaa7;
        --secondary: #a29bfe;
        --tertiary: #fab1a0;
        --text: #2d3436;
        /* --contrast: #dfe6e9; */
        --accent: #fdcb6e;
    }




    /* ========= */


    /* Helper for red text */
    .text-red {
        color: var(--primary-red) !important;
    }

    /* --- BUTTONS --- */
    .btn-custom {
        padding: 12px 30px;
        background: var(--primary-red);
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        border: none;
        border-radius: 4px;
        transition: 0.3s;
    }

    .btn-custom:hover {
        background: #800000;
        color: white;
        transform: translateY(-2px);
    }

    /* --- HEADER --- */

    /* --- HERO --- */
    .hero {
        position: relative;
        height: 60vh;
        background: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?q=80&w=2000&auto=format&fit=crop') no-repeat center/cover;
        padding-bottom: 50px;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: white;
    }

    .hero h1 {
        font-size: 4rem;
        line-height: 1.1;
        font-weight: 700;
    }

    /* --- FILTER BAR --- */
    .filter-bar {
        background: black;
        border-radius: 50px;
        display: inline-flex;
        gap: 20px;
        padding: 15px 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-item {
        cursor: pointer;
        font-size: 0.85rem;
        text-transform: uppercase;
        color: white;
        transition: 0.3s;
    }

    .filter-item.active,
    .filter-item:hover {
        color: var(--primary-red);
        font-weight: bold;
    }

    /* --- CARDS (PEOPLE & PROJECTS) --- */
    .person-card,
    .person-card1,
    .testi-card {
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .person-card11 {
        height: 400px;
    }

    .person-card {
        height: 500px;
    }

    .person-card1 {
        height: 300px;
        background: #eee;
    }

    .testi-card {
        height: 400px;
    }

    /* Images inside cards */
    .person-card img,
    .person-card1 img,
    .testi-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .person-card:hover img,
    .person-card1:hover img {
        transform: scale(1.1);
    }

    /* Hover Info for People */
    .person-info {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        color: white;
        transform: translateY(100%);
        transition: transform 0.4s ease;
    }

    .person-card:hover .person-info {
        transform: translateY(0);
    }

    /* --- TYPOGRAPHY SECTIONS --- */
    .objective-section,
    .testimonials {
        background: white;
    }

    .label-text {
        font-size: 1.2rem;
        font-weight: 600;
        display: block;
        margin-bottom: 15px;
        color: #222;
    }

    .big-text {
        font-size: 2.5rem;
        line-height: 1.3;
        font-weight: 300;
        color: #222;
    }

    .big-text strong {
        font-weight: 800;
        color: var(--primary-red);
    }

    /* --- TESTIMONIAL PLAY BUTTON --- */
    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        z-index: 5;
    }

    .play-btn:hover {
        background: white;
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* Responsive Tweaks */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }

        .big-text {
            font-size: 1.8rem;
        }
    }

    :root {
        --primary-red: #a81d1d;
        --dark-bg: #111111;
        --light-bg: #000000;
        --text-dark: #ffffff;
    }


    /* --- CONTACT HERO SECTION --- */
    .contact-hero {
        position: relative;
        /* Extra padding to accommodate the overlapping box */
        padding-top: 200px;
        padding-bottom: 100px;
        min-height: 100vh;
    }

    /* Backgrounds */
    .bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 75%;
        /* Covers top 75% */
        overflow: hidden;
        z-index: 0;
    }

    .bg-image {
        width: 100%;
        height: 120%;
        /* Taller for parallax */
        background: url('https://images.unsplash.com/photo-1588483977483-a363b560442a?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    }

    .bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
    }

    /* Decorative Red Block */
    .red-block {
        position: absolute;
        top: 35%;
        left: 0;
        width: 25%;
        height: 40%;
        background-color: var(--color-red);
        z-index: 1;
        display: none;
        /* Hidden on mobile */
    }

    @media (min-width: 992px) {
        .red-block {
            display: block;
        }
    }

    /* --- CONTACT BOX CARD --- */
    .contact-box-wrapper {
        position: relative;
        z-index: 10;
    }

    .contact-box {
        background-color: var(--color-white);
        color: var(--color-dark);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        border-radius: 4px;
        overflow: hidden;
    }

    /* Left Side */
    .contact-left {
        padding: 60px 40px;
        height: 100%;
    }

    .contact-left h1 {
        font-weight: 700;
        margin-bottom: 25px;
    }

    .contact-icon {
        color: var(--color-blue-btn);
        font-size: 1.2rem;
        width: 30px;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .contact-info-text h4 {
        font-size: 0.9rem;
        color: var(--color-text-gray);
        margin-bottom: 2px;
        font-weight: 600;
    }

    .contact-info-text p,
    .contact-info-text span {
        font-weight: 600;
        font-size: 1.1rem;
        margin: 0;
    }

    /* Right Side (Form) */
    .contact-right {
        padding: 60px 40px;
        background-color: white;
    }

    /* Bootstrap Form Overrides */
    .form-label {
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .form-control,
    .form-select {
        padding: 12px 15px;
        background-color: var(--color-gray-bg);
        border: none;
        border-radius: 4px;
        color: var(--color-text-gray);
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .form-control:focus,
    .form-select:focus {
        box-shadow: none;
        outline: 2px solid var(--color-blue-btn);
        background-color: #fff;
    }

    textarea.form-control {
        height: 120px;
        resize: none;
    }


    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .contact-hero {
            padding-top: 150px;
        }

        .contact-left,
        .contact-right {
            padding: 40px 25px;
        }
    }

    :root {
        --color-dark: #0a0a0a;
        --color-dark-secondary: #111111;
        --color-red: #990000;
        --color-white: #ffffff;
        --color-gray-bg: #f0f0f0;
        --color-text-gray: #666666;
        --color-blue-btn: #0044cc;
        --font-main: 'Montserrat', sans-serif;
    }


    .review-section {
        padding: 50px 0;
        width: 100%;
    }

    /* Card Styling */
    .review-card {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 20px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: border-color 0.3s ease;
    }

    /* Video Container */
    .video-wrapper {
        position: relative;
        width: 100%;
        padding-top: 100%;
        /* 1:1 Aspect Ratio (Square) */
        background-color: #1a1a1a;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        /* Slightly dim when not playing */
        transition: opacity 0.3s ease;
    }

    /* Play Icon (Optional overlay) */
    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 2rem;
        pointer-events: none;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    /* Text Styling */
    .quote-text {
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 40px;
        line-height: 1.4;
        min-height: 60px;
    }

    .meta-info {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #aaa;
    }

    .review-tag {
        position: absolute;
        top: 60%;
        /* Positioned below video */
        right: 20px;
        font-size: 0.75rem;
    }


    /* Basic Overlay Styling */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #111;
        /* Dark background looks best with this effect */
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .mobile-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Link Styling */
    .mobile-links a {
        font-family: 'Courier New', Courier, monospace;
        /* Monospace is required for stability */
        font-size: 0.8rem;
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        padding: 10px 20px;
        transition: color 0.3s;

        /* Optional: Add a border or background on hover */
        border: 1px solid transparent;
    }

    .mobile-links a:hover {
        color: #00ff41;
        /* Hacker Green */
        border: 1px solid #00ff41;
        background: rgba(0, 255, 65, 0.1);
    }


    /* Dark Cinematic Theme */
    .divisions-section {
        margin-top: -50px;
        background-color: #050505;
        /* Deep black background */
    }

    /* Card Styling */
    .division-card {
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        background: #111 !important;
        /* Slightly lighter black for cards */
        border-color: #333 !important;
    }

    .division-card:hover {
        transform: translateY(-10px);
        border-color: #ff1900 !important;
        /* Gold accent on hover */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        color: #000000 !important;
        /* Brighten text on hover */
        background-color: white !important;
    }



    .division-card .h4.text-warning {
        color: #ff1900 !important;
        /* Gold color for titles */
        letter-spacing: 1px;
    }

    /* List Items */
    .service-list li {
        transition: color 0.3s ease;
    }

    .division-card:hover .service-list li {
        color: #fff !important;
        /* Brighten text on hover */
    }

    /* Button Hover */
    .explore-btn {
        border-color: #666;
        transition: all 0.3s ease;
    }

    .division-card:hover .explore-btn {
        background-color: #ff1900;
        color: #ffffff;
        border-color: #ff1900;
    }

    /* Subtle Gradient Overlay */
    .bg-gradient-overlay {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
        opacity: 0.5;
        transition: opacity 0.5s ease;
    }

    .division-card:hover .bg-gradient-overlay {
        opacity: 0.2;
    }


    .hero-animation {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        background-size: cover;
        background-attachment: fixed;
        min-height: 90vh;
    }

    .value-card {
        border: 1px solid #222;
        padding: 2rem;
        transition: all 0.4s ease;
        height: 100%;
    }

    .value-card:hover {
        border-color: #fff;
        background: #111;
    }

    .vision-section {
        background: #0a0a0a;
        border-left: 5px solid #fff;
    }

    .uncommon-gradient-text {
        background: linear-gradient(45deg, #fff, #666);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }




    /* Partnerships Section Styling */
    .partnership-ticker {
        background: #111;
        padding: 30px 0;
        overflow: hidden;
        white-space: nowrap;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }

    .ticker-content {
        display: inline-block;
        animation: ticker 30s linear infinite;
    }

    .ticker-item {
        display: inline-block;
        margin: 0 40px;
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        font-size: 1.2rem;
        color: #555;
        text-transform: uppercase;
    }

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

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

    .partner-card {
        background: #0a0a0a;
        border: 1px solid #222;
        padding: 2.5rem;
        transition: all 0.4s ease;
        height: 100%;
    }

    .partner-card:hover {
        border-color: #fff;
        transform: translateY(-10px);
    }

    .industry-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
        color: #888;
        text-transform: uppercase;
        display: block;
        margin-bottom: 1rem;
    }

    .project-title {
        font-size: 0.9rem;
        color: #aaa;
        margin-top: 1.5rem;
        border-left: 2px solid #fff;
        padding-left: 10px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(45deg, #fff, #555);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }