    /* JOST FONT SETUP */
    /* 1. Regular Weight */
    @font-face {
        font-family: "Jost";
        src: url("../fonts/Jost-Regular.ttf") format("truetype"); /* Change extension if you have .woff2 */
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    /* 2. Bold Weight (for headings) */
    @font-face {
        font-family: "Jost";
        src: url("../fonts/Jost-Bold.ttf") format("truetype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }
    /* 3. Apply it to the whole site */
    body

{
    font-family: "Jost", system-ui, -apple-system, sans-serif; /* Updated name */
    background: radial-gradient(circle at top, var(--bg-alt) 0, var(--bg-main) 55%);
    color: var(--text-main);
    line-height: 1.6;
}

:root {
    /* Dark burgundy + warm gold palette (Quadrant style) */
    --bg-main: #230000;
    --bg-alt: #32000c;
    --bg-soft: #1b0000;
    --accent: #f4c46f;
    --accent-soft: rgba(244, 196, 111, 0.18);
    --accent-strong: #ffd884;
    --border-subtle: #3a1510;
    --text-main: #fff5de;
    --text-muted: #d7bfa0;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.6);
    --max-width: 1180px;
    --transition-fast: 0.18s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, var(--bg-alt) 0, var(--bg-main) 55%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 4rem 0;
}

@media (min-width: 960px) {
    section {
        padding: 5rem 0;
    }
}

/* ===== HEADER / NAV ===== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: linear-gradient( to bottom, rgba(35, 0, 0, 0.96), rgba(35, 0, 0, 0.9), transparent );
    border-bottom: 1px solid var(--border-subtle);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-img {
    height: 40px; /* Adjust this number to make your logo bigger/smaller */
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

    .logo-text span:first-child {
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600;
    }

    .logo-text span:last-child {
        font-size: 0.78rem;
        color: var(--text-muted);
    }

.nav-links {
    display: none;
    align-items: center;
    gap: 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
}

    .nav-links a {
        color: #ffd285;
        position: relative;
        padding-bottom: 0.2rem;
    }

        .nav-links a:hover {
            color: var(--text-main);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0;
            border-radius: 999px;
            background: linear-gradient(to right, var(--accent), var(--accent-strong));
            transition: width var(--transition-fast);
        }

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

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.7rem;
}

.btn {
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--text-main);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient( to right, var(--accent), var(--accent-strong) );
    color: #3a1510;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        filter: brightness(1.05);
    }

.btn-ghost {
    border-color: var(--border-subtle);
    background: rgba(27, 0, 0, 0.6);
    color: var(--text-muted);
    backdrop-filter: blur(5px);
}

    .btn-ghost:hover {
        border-color: var(--accent);
        color: var(--text-main);
        background: rgba(27, 0, 0, 0.9);
    }

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.35rem;
    background: transparent;
    border: none;
}

    .hamburger span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #ffd285;
    }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.7rem;
    /* POSITIONING FIXES */
    position: absolute; /* Breaks it out of the wrapper */
    left: 0;
    top: 100%; /* Positions it exactly below the header */
    width: 100%; /* Forces full screen width */
    box-sizing: border-box; /* Ensures padding doesn't break the width */
    padding: 1rem 1.5rem; /* Adds space inside so text matches your layout */
    /* VISUALS */
    font-size: 0.92rem;
    background: linear-gradient( to bottom, rgba(35, 0, 0, 0.98), rgba(35, 0, 0, 0.96) );
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle); /* Optional: looks nice */
    backdrop-filter: blur(10px); /* Optional: makes it look premium */
}

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

    .mobile-menu a {
        color: #ffd285;
        font-weight: 600;
    }

        .mobile-menu a:hover {
            color: var(--text-main);
        }

@media (min-width: 900px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }
}

/* ===== HERO UNIFIED ===== */

.hero {
    padding-top: 6rem; /* space for fixed header */
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
    color: var(--text-main);
    min-height: 75vh;
    display: flex;
    align-items: center;
    /* DEFAULT IMAGE - you should replace 'hero-main.jpg' */
    background-image: url("../images/hero-main.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
}

/* Dark overlay over the image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(244, 196, 111, 0.1), transparent 50%), linear-gradient(to right, rgba(35, 0, 0, 0.9) 0%, rgba(35, 0, 0, 0.75) 45%, rgba(35,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
    margin-bottom: 0.8rem;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

@media (min-width: 960px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

.hero-title .highlight {
    background: linear-gradient( to right, var(--accent), var(--accent-strong), #ffe5ac );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #e5dccf; /* Slightly lighter for readability on overlay */
    max-width: 38rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

    /* NEW: Force desktop buttons to share the same width */
    .hero-actions .btn {
        flex: 1; /* Allows them to grow equally */
        min-width: 200px; /* Sets a minimum size so they don't get too small */
        max-width: 280px; /* Prevents them from getting too huge on big screens */
        justify-content: center; /* Centers the text */
        text-align: center;
    }

@media (max-width: 959px) {
    .hero {
        min-height: 65vh;
        padding-top: 8rem;
        align-items: flex-start;
    }
}


/* ===== SECTION BASICS ===== */

.section-label {
    font-size: 0.82rem;
    font-weight: 700; /* <--- This triggers the Bold font file */
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.section-heading {
    font-size: 1.8rem;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin-bottom: 1.7rem;
}

/* ===== GENERIC CARD STYLES ===== */

.card {
    border-radius: var(--radius-md);
    background: linear-gradient( to bottom right, rgba(27, 0, 0, 0.98), rgba(27, 0, 0, 0.94) );
    border: 1px solid var(--border-subtle);
    padding: 1.1rem 1.05rem;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, var(--accent-soft), transparent 60%);
        opacity: 0;
        transition: opacity var(--transition-fast);
        pointer-events: none;
    }



.card-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #fde9b5;
    margin-bottom: 0.3rem;
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* ===== AR/VR SECTION ===== */

.ar-cards-grid {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.8rem;
}

@media (min-width: 900px) {
    .ar-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.ar-card {
    border-radius: var(--radius-md);
    background: rgba(27, 0, 0, 0.98);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.ar-card-media {
    width: 100%;
    /* NEW: This makes the box shape match your photos (4:3 ratio) */
    aspect-ratio: 4 / 3;
    /* REMOVED: height: 160px; */

    background: #000;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}

    .ar-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image fills the corners */
        object-position: center top; /* Focuses on faces/heads if cropping happens */
    }

    .ar-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ar-card-body {
    padding: 0.9rem 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .ar-card-body h3 {
        font-size: 1rem;
    }

    .ar-card-body p {
        font-size: 0.88rem;
        color: var(--text-muted);
    }

/* Benefits list under cards */

.ar-benefits {
    margin-top: 0.5rem;
}

.ar-benefits-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.ar-benefits-list {
    list-style: none;
    display: grid;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 40rem;
}

    .ar-benefits-list li::before {
        content: "▹";
        color: var(--accent-strong);
        margin-right: 0.3rem;
    }

/* ===== AR/VR APPROACH STEPS ===== */

.ar-approach {
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ar-approach-inner {
    max-width: none;
}

.ar-approach-heading {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.2rem;
}

.ar-approach-subtitle {
    margin-bottom: 0.9rem;
}

.ar-steps-grid {
    display: grid;
    gap: 1.0rem;
    margin-top: 0.4rem;
}

@media (min-width: 720px) {
    .ar-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .ar-steps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.ar-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0.2rem;
}

.ar-step-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, #ffe5ac, var(--accent));
    color: #3a1510;
    font-weight: 700;
    font-size: 0.86rem;
    box-shadow: 0 0 14px rgba(244, 196, 111, 0.4);
}

.ar-step-text h4 {
    font-size: 0.88rem;
    margin-bottom: 0.1rem;
}

.ar-step-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ===== CONSULTING SECTION (also with image) ===== */

.two-col {
    display: grid;
    gap: 1.8rem;
    align-items: start;
}

@media (min-width: 960px) {
    .two-col {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
    }
}

.section-text {
    min-width: 0;
}

.section-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: #000;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

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

/* ===== INDUSTRIES ===== */

.industries-grid {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 900px) {
    .industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.industry-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
}

.card-icon {
    width: 80px; /* Increased from 56px */
    height: 80px; /* Increased from 56px */
    object-fit: contain;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 15px rgba(244, 196, 111, 0.4)); /* Added a gold glow */
}

/* 1. Remove padding from the card so the image touches the edges */
.industry-card {
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border-subtle); /* Optional: adds a nice thin border */
}

    /* 2. The Image Container (Now 4:3) */
    .industry-card .card-media {
        width: 100%;
        aspect-ratio: 4 / 3; /* <--- CHANGED TO MATCH AR CARDS */
        background: #000;
        border-bottom: 1px solid var(--border-subtle);
    }

        .industry-card .card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /* 3. The Text Container */
    .industry-card .card-content {
        padding: 2rem; /* Adds space around the text */
    }

/* ===== CASES ===== */

.cases-grid {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 960px) {
    .cases-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.case-media {
    position: relative;
    width: 100%;
    /* THIS IS THE CRITICAL LINE */
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-subtle);
}
.case-card {
    border-radius: var(--radius-md);
    background: rgba(27, 0, 0, 0.98);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
}

.case-image {
    height: 150px;
    background: #000;
    overflow: hidden;
}

    .case-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.6s ease;
    }

.case-body {
    padding: 0.9rem 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fde9b5;
}

.case-title {
    font-size: 0.96rem;
    font-weight: 500;
}

.case-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.case-summary {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.case-link {
    margin-top: auto;
    font-size: 0.82rem;
    color: var(--accent-strong);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

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

.contact-section {
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.6) );
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 960px) {
    .contact-grid {
        grid-template-columns: minmax(0, 2.3fr) minmax(0, 2fr);
    }
}

.newsletter {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    padding: 1.2rem 1.05rem;
    background: rgba(27, 0, 0, 0.9);
}

    .newsletter h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .newsletter p {
        font-size: 0.86rem;
        color: var(--text-muted);
        margin-bottom: 0.6rem;
    }

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.newsletter input {
    flex: 1 1 160px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(12, 0, 0, 0.95);
    color: var(--text-main);
    padding: 0.45rem 0.7rem;
    font: inherit;
    font-size: 0.86rem;
    outline: none;
}

    .newsletter input:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 1px rgba(244, 196, 111, 0.35);
    }

.newsletter small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.contact-columns {
    display: grid;
    gap: 1.2rem;
    font-size: 0.84rem;
}

@media (min-width: 640px) {
    .contact-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-columns h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-columns ul {
    list-style: none;
    display: grid;
    gap: 0.25rem;
    color: var(--text-muted);
}

.contact-columns a:hover {
    color: var(--accent-strong);
}

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

footer {
    padding: 1.6rem 0 2.1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .footer-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

    .footer-links a:hover {
        color: var(--text-main);
    }
/* ===== MOBILE HERO BUTTONS FIX ===== */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column; /* Stacks the buttons vertically */
        gap: 0.8rem; /* Keeps the space between them */
        width: 100%; /* Ensures the container fills the screen */
    }

        .hero-actions .btn {
            width: 100%; /* Forces both buttons to be exactly the same width */
            justify-content: center; /* Centers the text inside the button */
        }
}
/* Fix for About Section - Make list text normal, not bold */
#about ul li {
    font-weight: 400; /* Forces normal thickness */
    color: var(--text-muted); /* Ensures it matches your standard paragraph color */
    margin-bottom: 0.5rem; /* Adds a little breathing room between points */
    line-height: 1.6;
}

/* Optional: Ensure the "Our Philosophy" header stays bold */
#about h3 {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
/* ===== CONTACT FORM SECTION ===== */
.contact-section {
    padding: 6rem 0;
    /* REMOVED: border-top: 1px solid var(--border-subtle); */
    /* NEW: Starts transparent (matching the previous section) and fades to black */
    background: linear-gradient(to bottom, transparent 0%, #050000 100%);
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Left Side Text */
.contact-text {
    flex: 1;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.detail-link, .detail-text {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
}

    .detail-link:hover {
        color: var(--accent);
    }

/* Right Side Form */
.contact-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

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

    .form-group label {
        display: block;
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border-subtle);
        border-radius: 6px;
        padding: 0.8rem 1rem;
        color: #fff;
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent); /* Highlights gold when typing */
            background: rgba(0, 0, 0, 0.6);
        }

.full-width {
    width: 100%;
    justify-content: center;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
}
