:root {
    --black: #080808;
    --deep: #0e0e0e;
    --card: #111111;
    --border: #1e1e1e;
    --border-light: #2a2a2a;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --white: #f0ece4;
    --muted: #7a7570;
    --muted2: #4a4540;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.12s ease;
}

/* GRAIN OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 28px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), transparent);
}

nav.scrolled {
    background: rgba(8, 8, 8, 0.97);
    border-bottom-color: var(--border);
    padding: 20px 64px;
    backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}



.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

/* LOGO IMAGE STYLING */
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    /* Width auto rakhein taaki logo stretch na ho */
    height: 32px;
    /* Header ke liye perfect height */
}

.nav-logo-img {
    height: 100%;
    /* Div ki height ke mutabiq adjust hoga */
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 24px;
    /* Footer mein logo thora chota acha lagta hai */
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    /* Footer mein halka sa dim rakha hai premium look ke liye */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-mark {
        height: 28px;
        /* Mobile par thora aur chota */
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
}

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

.nav-cta {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black) !important;
    background: var(--gold);
    padding: 10px 24px;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--black) !important;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 64px 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.eyebrow-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 9vw, 130px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -2px;
    max-width: 900px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s 0.35s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero h1 .outline {
    -webkit-text-stroke: 1px rgba(240, 236, 228, 0.2);
    color: transparent;
}

.hero-sub {
    max-width: 460px;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    opacity: 0;
    animation: fadeUp 0.9s 0.65s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 18px 36px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary .arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.btn-ghost:hover {
    color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s infinite;
}

.scroll-text {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted2);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero-number {
    position: absolute;
    right: 64px;
    bottom: 48px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 180px;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.04);
    line-height: 1;
    letter-spacing: -8px;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1.5s 1s forwards;
}

/* MARQUEE */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    background: var(--deep);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 0 40px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted2);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* STATS */
.stats-section {
    padding: 100px 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.stat-block {
    background: var(--black);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.stat-block:hover {
    background: var(--deep);
}

.stat-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s;
}

.stat-block:hover::after {
    transform: scaleX(1);
}

.stat-num-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-num-big sup {
    font-size: 28px;
    color: var(--gold);
    vertical-align: super;
}

.stat-label-big {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* --- SECTION CONTAINER --- */
.client-logo-section {
    background: #000000;
    /* Website background match karein */
    padding: 40px 0;
    /* Space kam kar di hai Services ke liye */
    overflow: hidden;
}

/* --- HEADER CENTERING --- */
.marquee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.h-line {
    width: 50px;
    height: 1px;
    background: #c9a84c;
    /* Aapka Golden color */
    opacity: 0.4;
}

.marquee-title {
    color: #c9a84c;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

/* --- THE VIEWPORT (Fades) --- */
.marquee-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* --- NON-STOP ANIMATION --- */
.marquee-track {
    display: flex;
    width: max-content;
    /* Zaroori hai non-stop ke liye */
    gap: 40px;
    animation: scroll-nonstop 30s linear infinite;
    will-change: transform;
}

@keyframes scroll-nonstop {
    from {
        transform: translateX(0);
    }

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

    /* Aadha track khatam hote hi repeat */
}

/* --- GOLDEN CIRCLES (No more white!) --- */
.logo-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    /* Golden border */
    background: rgba(201, 168, 76, 0.05);
    /* Very dark gold tint */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.logo-circle:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.15);
    transform: translateY(-5px);
}

/* --- JPEG LOGO FIX --- */
.logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    /* Agar image ka background white hai toh use transparent jaisa dikhane ke liye: */
    mix-blend-mode: screen;
    opacity: 0.7;
}

.logo-circle:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-circle {
        width: 65px;
        height: 65px;
        padding: 12px;
    }

    .marquee-track {
        gap: 20px;
    }

    .h-line {
        width: 30px;
    }
}

/* SERVICES SECTION */
.services-section {
    padding: 120px 64px;
    position: relative;
    background-color: var(--black);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-label-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-label-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 80px;
    max-width: 650px;
    color: var(--white);
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* THE GRID SYSTEM */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    /* This creates the thin lines between cards */
    border: 1px solid var(--border);
}

.service-card {
    background: var(--black);
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    /* Ensures uniform look */
}

.service-card:hover {
    background: #0a0a0a;
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    border-color: var(--gold);
    background: var(--gold-dim);
}

.service-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--muted);
    transition: stroke 0.3s;
}

.service-card:hover .service-icon-wrap svg {
    stroke: var(--gold);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 35px;
    flex-grow: 1;
    /* Pushes features to the bottom if desc is short */
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    font-size: 12px;
    color: var(--muted2);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.service-card:hover .service-features li {
    color: var(--muted);
}

.feat-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 80px 24px;
    }

    .service-card {
        padding: 40px 30px;
        min-height: auto;
    }
}

/* PROCESS */
.process-section {
    padding: 120px 64px;
    background: var(--deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 80px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
    cursor: none;
}

.process-step:first-child {
    border-top: 1px solid var(--border);
}

.process-step:hover {
    padding-left: 8px;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--border-light);
    line-height: 1;
    transition: color 0.3s;
}

.process-step:hover .step-num {
    color: var(--gold);
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--white);
}

.step-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.process-visual {
    position: sticky;
    top: 120px;
}

.process-card {
    background: var(--black);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.process-card-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.process-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.process-card-title em {
    font-style: italic;
    color: var(--gold);
}

.process-card-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.mini-stat-row {
    display: flex;
    gap: 32px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.mini-stat-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted2);
}

/* RESULTS */
/* THE VAULT SECTION */
.vault-section {
    padding: 140px 64px;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.vault-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.vault-intro {
    max-width: 400px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* CARDS GRID */
.vault-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.vault-card {
    height: 520px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid var(--border);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 30%, rgba(5, 5, 5, 0.95) 90%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    transition: transform 0.5s ease;
}

.card-tag {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: 15px;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 25px;
}

.card-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item span {
    display: block;
    font-size: 10px;
    color: var(--muted2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.stat-item strong {
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 500;
}

.card-cta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

/* HOVER ANIMATIONS */
.vault-card:hover .card-img {
    transform: scale(1.1);
    opacity: 0.7;
}

.vault-card:hover .card-content {
    transform: translateY(-10px);
}

.vault-card:hover .card-cta {
    opacity: 1;
}

/* VIEW MORE BUTTON */
.vault-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-more-vault {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--white);
    padding: 10px;
    transition: all 0.3s;
}

.btn-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.btn-circle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.btn-circle svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    transition: transform 0.4s;
}

.btn-more-vault:hover .btn-circle {
    background: var(--gold);
}

.btn-more-vault:hover .btn-circle svg {
    color: var(--black);
    transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 1024px) {
    .vault-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vault-grid {
        grid-template-columns: 1fr;
    }

    .vault-section {
        padding: 80px 24px;
    }

    .vault-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }
}

/* Vault Layout */
.vault-section {
    padding: 100px 64px;
    background: #050505;
    color: #fff;
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vault-card {
    height: 500px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.vault-card:hover .card-img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Modal Background */
.vault-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

/* Modal Box */
.modal-content {
    position: relative;
    background: #0a0a0a;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #222;
    z-index: 10;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #c9a84c;
    font-size: 35px;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-body {
    display: grid;
    grid-template-columns: 400px 1fr;
}

.modal-info {
    padding: 50px;
    background: #0d0d0d;
    border-right: 1px solid #222;
}

.modal-h2 {
    font-family: serif;
    font-size: 35px;
    margin: 20px 0;
    color: #fff;
}

.modal-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.res-box {
    padding: 15px;
    border: 1px solid #222;
    text-align: center;
}

.res-box span {
    display: block;
    font-size: 22px;
    color: #c9a84c;
}

.modal-gallery {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-item img {
    width: 100%;
    border: 1px solid #222;
}

@media (max-width: 900px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
}



/* PRICING SECTION */
.pricing-section {
    padding: 120px 64px;
    background: var(--deep);
    border-top: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 80px;
}

.pricing-card {
    background: var(--black);
    padding: 60px 44px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: #080808;
    /* Slightly lighter to stand out */
    padding-top: 80px;
}

/* Most Popular Badge */
.pricing-card.featured::before {
    content: 'Most Popular for Scaling';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 12px;
}

.pricing-tier {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}

.pricing-price sup {
    font-size: 28px;
    vertical-align: super;
    color: var(--gold);
    margin-right: 2px;
}

.pricing-period {
    font-size: 12px;
    color: var(--muted2);
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 35px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 13.5px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.check {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px;
    border: 1px solid var(--border-light);
    color: var(--white);
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-cta,
.pricing-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 80px 24px;
    }

    .pricing-card {
        padding: 50px 30px;
    }
}

/* CTA SECTION LEFT-IMAGE MODIFIED */
.cta-section {
    padding: 160px 64px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Image narrower, Text wider */
    align-items: center;
    gap: 100px;
    /* Space between image and text */
}

/* Background Subtle Glow */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    /* Glow focused more on the left/center */
    transform: translate(-50%, -50%);
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
}

.cta-title em {
    font-style: italic;
    color: var(--gold);
}

.cta-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 52px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* CEO IMAGE STYLING (LEFT ALIGNED) */
.cta-image-wrapper {
    position: relative;
}

.ceo-card {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.ceo-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    /* Frame offset to the left now */
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-dim);
    z-index: 1;
}

.ceo-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: grayscale(30%);
    transition: all 0.5s ease;
    border: 1px solid var(--border);
}

.ceo-card:hover .ceo-img {
    filter: grayscale(0%);
    transform: translateY(-5px);
}

.ceo-badge {
    position: absolute;
    bottom: -25px;
    right: -20px;
    /* Badge moves to the right of the image */
    background: var(--gold);
    padding: 22px 35px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
}

.ceo-name {
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ceo-sign {
    color: var(--black);
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        text-align: center;
        gap: 80px;
    }

    .cta-content {
        text-align: center;
        order: 1;
    }

    .cta-image-wrapper {
        order: 2;
    }

    /* Image comes after text on mobile for better flow */
    .cta-sub {
        margin: 0 auto 40px;
    }

    .cta-actions {
        justify-content: center;
    }

    .ceo-card {
        margin: 0 auto;
    }

    .ceo-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 100px 24px;
    }
}

/* ULTRA COMPACT FOOTER */
footer {
    background: var(--black);
    /* Deep background */
    border-top: 1px solid var(--border);
    padding: 40px 64px 20px;
    /* Reduced padding */
}

.footer-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo .logo-mark {
    width: 20px;
    /* Smaller logo */
    height: 20px;
}

.footer-logo .logo-text {
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 11px;
    color: var(--muted2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Right Side Nav */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    text-decoration: none;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    text-decoration: none;
    font-size: 10px;
    color: var(--muted2);
    border: 1px solid var(--border);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Bottom Bar */
.footer-bottom-mini {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-copy {
    font-size: 10px;
    color: var(--muted2);
    letter-spacing: 0.5px;
}

.footer-copy span {
    color: var(--gold);
}

/* Mobile View */
@media (max-width: 768px) {
    footer {
        padding: 40px 24px 20px;
    }

    .footer-compact {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-right {
        align-items: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    nav {
        padding: 24px;
    }

    nav.scrolled {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .hero-scroll {
        left: 24px;
    }

    .hero-number {
        display: none;
    }

    .stats-section,
    .services-grid,
    .testimonials-grid,
    .pricing-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .services-section,
    .process-section,
    .testimonials-section,
    .pricing-section,
    .cta-section {
        padding: 80px 24px;
    }

    footer {
        padding: 48px 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }
}

/* --- MOBILE FIXES (768px and below) --- */
@media (max-width: 768px) {

    /* 1. Case Studies Grid Fix */
    .vault-grid {
        grid-template-columns: 1fr !important;
        /* Forces 1 card per row */
        gap: 20px;
        /* Spacing between cards */
    }

    .vault-card {
        height: 450px;
        /* Adjust height for mobile screens */
    }

    /* 2. CTA Section Image-First Fix */
    .cta-container {
        display: flex;
        flex-direction: column;
        /* Stack vertically */
        text-align: center;
        gap: 40px;
    }

    .cta-image-wrapper {
        order: 1;
        /* Image comes first */
        width: 100%;
        margin-bottom: 20px;
    }

    .cta-content {
        order: 2;
        /* Text comes second */
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        /* Buttons stack on mobile */
        gap: 15px;
    }

    .ceo-badge {
        /* Mobile par badge ko center mein alignment di hai */
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        padding: 12px 20px;
        width: 80%;
    }

    .cta-title {
        font-size: 42px;
        /* Slightly smaller title for small screens */
    }
}

/* --- 1. SECTION LAYOUT --- */
.testimonials-section {
    padding: 100px 0;
    background: #000000;
    overflow: hidden;
    /* Zaroori hai taaki marquee screen se bahar na jaye */
}

/* --- 2. MARQUEE CONTAINER --- */
.testimonials-marquee {
    width: 100%;
    margin-top: 60px;
    position: relative;
    cursor: default;
    /* Side Fades: Taaki cards side se gayeb hote nazar aayein (Premium Look) */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    /* Cards ke darmiyan fasla */
    animation: testimonial-scroll 70s linear infinite;
    /* Bohat sukoon se chalay ga */
    align-items: stretch;
    /* Saare cards ki height ek jaisi rakhega */
    will-change: transform;
}

/* Pause on hover taaki log sukoon se parh sakein */
.marquee-track:hover {
    animation-play-state: paused;
}

/* --- 3. TESTIMONIAL CARD (Fixed Size Fix) --- */
.testimonial-card {
    width: 500px;
    /* Card ki width barha di hai taaki text fit aaye */
    min-height: 350px;
    height: auto;
    background: #0a0a0a;
    /* Deep Black */
    padding: 50px 45px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    /* Light Gold Border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: normal;
    /* Text ko box ke andar wrap karega */
}

.testimonial-card:hover {
    border-color: #c9a84c;
    /* Solid Gold on hover */
    background: #0f0f0f;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- 4. TYPOGRAPHY (The Realistic Look) --- */
.testimonial-card::before {
    content: '\201C';
    /* Large Quote Mark */
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(201, 168, 76, 0.3);
    line-height: 0.1;
    display: block;
    margin-bottom: 30px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    /* Readable and Elegant */
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
    flex-grow: 1;
    /* Text area ko space expand karne dega */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 25px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #c9a84c;
    font-size: 18px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.author-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- 5. ANIMATION KEYFRAMES --- */
@keyframes testimonial-scroll {
    0% {
        transform: translateX(0);
    }

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

    /* Half track transition for infinite loop */
}

/* --- 6. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .testimonial-card {
        width: 320px;
        /* Mobile par width adjust */
        padding: 35px 25px;
        min-height: 300px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .marquee-track {
        gap: 20px;
        animation-duration: 45s;
        /* Mobile par thora tez zaroori hai */
    }
}