  /* about page section css */

:root {
    --gold: #c5a059;
    --dark: #050505;
    --grey: #0e0e0e;
    --light-grey: #1a1a1a;
    --text-muted: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.luxury-v3 {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- SECTION 1: MEGA HERO V4 --- */
.mega-hero-v4 {
    height: 100vh; width: 100%;
    position: relative; display: flex;
    align-items: center; justify-content: center;
    background: #000; overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transform: scale(1.1); filter: brightness(0.6); }
.v-overlay-top { position: absolute; top: 0; width: 100%; height: 40%; background: linear-gradient(to bottom, #000, transparent); }
.v-overlay-bottom { position: absolute; bottom: 0; width: 100%; height: 50%; background: linear-gradient(to top, #050505, transparent); }

.hero-content-v4 { position: relative; z-index: 10; text-align: center; width: 100%; max-width: 1200px; padding: 0 20px; }

.hero-status-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(197, 160, 89, 0.3); padding: 10px 25px; border-radius: 100px; backdrop-filter: blur(10px); margin-bottom: 30px; }
.pulse-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px var(--gold); animation: pulseGlow 1.5s infinite; }
@keyframes pulseGlow { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }
.hero-status-badge span { font-size: 10px; letter-spacing: 3px; font-weight: 700; color: #fff; }

.eyebrow-v4 { display: block; color: var(--gold); letter-spacing: 8px; font-size: 12px; font-weight: 900; margin-bottom: 15px; }
.giant-title-v4 { font-family: 'Cormorant Garamond', serif; line-height: 0.9; margin-bottom: 30px; }
.stroke-text { font-size: clamp(50px, 10vw, 120px); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.4); font-weight: 300; display: block; }
.main-text { font-size: clamp(60px, 12vw, 150px); font-weight: 400; color: #fff; display: block; }
.main-text i { color: var(--gold); font-style: normal; }

.hero-sub { font-size: 18px; color: #bbb; max-width: 650px; margin: 0 auto 40px; font-weight: 300; }
.hero-action-btns { display: flex; gap: 20px; justify-content: center; margin-bottom: 60px; }
.cta-gold { background: var(--gold); color: #000; padding: 18px 40px; font-size: 12px; font-weight: 900; letter-spacing: 2px; text-decoration: none; transition: 0.4s; }
.cta-border { border: 1px solid #fff; color: #fff; padding: 18px 40px; font-size: 12px; font-weight: 900; letter-spacing: 2px; text-decoration: none; transition: 0.4s; }
.cta-gold:hover { background: #fff; }
.cta-border:hover { background: #fff; color: #000; }

.hero-floating-stats { display: flex; justify-content: center; gap: 80px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 50px; }
.fs-num { font-family: 'Cormorant Garamond'; font-size: 45px; color: var(--gold); font-weight: 600; line-height: 1; }
.fs-txt { font-size: 10px; color: #666; letter-spacing: 2px; margin-top: 10px; }

.scroll-down-v4 { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; }
.mouse-icon { width: 25px; height: 45px; border: 2px solid var(--gold); border-radius: 20px; margin-bottom: 10px; position: relative; margin-left: auto; margin-right: auto; }
.wheel-move { width: 3px; height: 8px; background: var(--gold); position: absolute; top: 10px; left: 50%; transform: translateX(-50%); animation: mouseScroll 2s infinite; }
@keyframes mouseScroll { 0% { opacity: 0; top: 5px; } 50% { opacity: 1; } 100% { opacity: 0; top: 25px; } }
.scroll-down-v4 span { font-size: 9px; letter-spacing: 3px; color: var(--gold); font-weight: 800; }

/* --- SECTION 2: GRAND NARRATIVE --- */
.grand-narrative { padding: 120px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.narrative-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.n-image { position: relative; }
.n-image img { width: 100%; border-radius: 2px; filter: grayscale(1); transition: 0.5s; }
.n-image:hover img { filter: grayscale(0); }
.gold-frame { position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; border: 1px solid var(--gold); z-index: -1; }
.n-text h2 { font-family: 'Cormorant Garamond'; font-size: 50px; line-height: 1.1; margin: 20px 0; }
.n-text p { color: var(--text-muted); font-size: 17px; margin-bottom: 20px; }
.founder-seal-v3 { display: flex; align-items: center; gap: 20px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--light-grey); }
.founder-seal-v3 img { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--gold); }
.seal-info h4 { font-family: 'Cormorant Garamond'; font-size: 24px; color: var(--gold); }

/* --- SECTION 3: CORE VALUES --- */
.core-values { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; padding: 100px 0; }
.value-item { padding: 40px; border-right: 1px solid var(--light-grey); }
.v-num { color: var(--gold); font-weight: 900; font-size: 14px; margin-bottom: 15px; display: block; }
.value-item h3 { font-size: 24px; margin-bottom: 15px; letter-spacing: 2px; }
.value-item p { color: var(--text-muted); font-size: 14px; }

/* --- SECTION 4: WELFARE --- */
.welfare-v3 { padding: 120px 20px; text-align: center; background: #070707; }
.section-header h2 { font-family: 'Cormorant Garamond'; font-size: 45px; margin-top: 10px; }
.welfare-container { display: flex; gap: 30px; max-width: 1100px; margin: 60px auto 0; }
.w-card-v3 { flex: 1; padding: 50px 30px; background: var(--grey); border-radius: 8px; transition: 0.4s; }
.w-card-v3 i { font-size: 45px; color: var(--gold); margin-bottom: 25px; }
.gold-border { border: 1px solid var(--gold); background: rgba(197, 160, 89, 0.03); }
.w-card-v3:hover { transform: translateY(-10px); background: #000; }

/* --- SECTION 5: TIMELINE --- */
.legacy-timeline { padding: 150px 0; position: relative; text-align: center; }
.bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 15vw; font-weight: 900; color: rgba(255,255,255,0.02); pointer-events: none; }
.timeline-container { display: flex; justify-content: center; gap: 50px; position: relative; z-index: 2; }
.timeline-box { padding: 40px; width: 350px; background: var(--grey); border: 1px solid var(--light-grey); transition: 0.4s; }
.t-year { font-size: 40px; font-weight: 900; color: var(--gold); margin-bottom: 10px; }
.timeline-box.active { border-color: var(--gold); box-shadow: 0 0 30px rgba(197, 160, 89, 0.1); }

/* --- SHARED ELEMENTS --- */
.gold-tag { color: var(--gold); letter-spacing: 5px; font-size: 11px; font-weight: 700; text-transform: uppercase; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .narrative-wrapper, .core-values, .welfare-container, .timeline-container, .hero-floating-stats {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .value-item { border-right: none; border-bottom: 1px solid var(--light-grey); }
    .hero-action-btns { flex-direction: column; width: 100%; }
    .timeline-box { width: 90%; }
}


  :root {
            --avp-gold: #c5a059;
            --side-gap: 10%; 
            --bg-dark: #0a0a0a;
        }

        @media (max-width: 768px) { :root { --side-gap: 5%; } }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #000; color: #fff; font-family: 'Montserrat', sans-serif; overflow-x: hidden; line-height: 1.6; }

        /* --- HERO SECTION --- */
        .hero-wrap {
            height: 100vh; width: 100%; position: relative; overflow: hidden;
            background: #000; display: flex; align-items: center; justify-content: center;
        }
        
        #mainHeroVideo { 
            width: 100%; height: 100%; object-fit: cover; 
            filter: brightness(0.5); 
        }

        .hero-title-box {
            position: absolute; z-index: 10; text-align: center; pointer-events: none;
            transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .hero-title-box h1 { 
            font-family: 'Cormorant Garamond'; font-size: clamp(50px, 10vw, 120px); 
            letter-spacing: 15px; text-transform: uppercase; color: #fff; line-height: 1;
        }
        .hero-title-box p { color: var(--avp-gold); letter-spacing: 8px; font-size: 12px; margin: 20px 0; font-weight: 600; text-transform: uppercase; }
        
        .hero-title-box.hide-intro { opacity: 0; transform: translateY(-50px) scale(1.1); }

        /* Video UI */
        .video-ui {
            position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px var(--side-gap);
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            z-index: 20; opacity: 0; transition: 0.5s ease;
        }
        .video-ui.show-ui { opacity: 1; }
        .seek-bar { width: 100%; height: 3px; background: rgba(255,255,255,0.2); margin-bottom: 20px; cursor: pointer; }
        .seek-fill { height: 100%; background: var(--avp-gold); width: 0%; position: relative; }

        /* --- OVERVIEW SECTION --- */
        .overview-section-v2 {
            background: #fbefd7ed;
            padding: 120px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .container-1700 { max-width: 1900px; margin: 0 auto; padding: 0 var(--side-gap); }

        .header-content { text-align: center; margin-bottom: 80px; }
        .gold-badge { font-size: 14px; color: var(--avp-gold); letter-spacing: 5px; font-weight: 600; display: block; margin-bottom: 15px; }
        .display-title { font-family: 'Cormorant Garamond'; font-size: clamp(40px, 6vw, 80px); letter-spacing: 10px; text-transform: uppercase; color: #353535f7;}
        .display-title i { color: var(--avp-gold); font-style: normal; }
        .divider-gold { width: 60px; height: 1px; background: var(--avp-gold); margin: 25px auto; }
        .premium-text { max-width: 925px; margin: 0 auto 40px; color: #353535f7; font-weight: 700; font-size: 16px; }

        .btn-main-gold {
            background: var(--avp-gold); color: #000; border: none; padding: 18px 40px;
            font-family: 'Montserrat'; font-weight: 600; letter-spacing: 2px; cursor: pointer; transition: 0.4s;
        }
        .btn-main-gold:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3); }

        /* Specs Grid */
        .specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; }
        .spec-item {
            background: white; border: 1px solid rgb(61 60 60 / 53%);
            padding: 40px; display: flex; align-items: center; gap: 20px; transition: 0.5s;
        }
        .spec-item:hover { border-color: var(--avp-gold); background: rgb(236, 236, 236); transform: translateY(-5px);  color: white;}
        .spec-icon { font-size: 30px; color: var(--avp-gold); }
        .spec-info label { font-size: 10px; letter-spacing: 2px; color: rgb(32 32 32 / 84%); display: block; font-weight: 700;}
        .spec-info h4 { font-family: 'Cormorant Garamond'; font-size: 24px; color: #000000; margin-top: 5px; font-weight: bold;}

        /* --- AMENITIES SECTION --- */
        .amenities-section { background: #fbefd7ed; padding: 120px 0; }
        .section-title-white { font-family: 'Cormorant Garamond'; font-size: clamp(35px, 5vw, 60px); margin-bottom: 60px; text-align: center; }
        .section-title-white i { color: var(--avp-gold); font-style: italic; }
        
        .amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
        .amenity-card {
            background: rgb(255 255 255); border: 1px solid rgba(255,255,255,0.05);
            padding: 50px 30px; text-align: center; transition: 0.5s; cursor: pointer; border: 1px solid rgba(133, 133, 133, 0.699);
        }
        .amenity-card:hover { border-color: var(--avp-gold); transform: translateY(-10px); background: rgba(197, 160, 89, 0.08); }
        .icon-box { font-size: 35px; color: #c5a059 !important; margin-bottom: 20px; transition: 0.4s; }
        .amenity-card:hover .icon-box { color: var(--avp-gold); transform: scale(1.2); }
        .amenity-card h4 { font-size: 16px; font-weight: 600; letter-spacing: 1px; margin-bottom: 10px; color: black;}
        .amenity-card p { font-size: 12px; color: #777; }

        /* Responsive */
        @media (max-width: 1200px) { .amenities-grid, .specs-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) { .amenities-grid, .specs-grid { grid-template-columns: 1fr; } }

        .enquiry-section {
        background: white;
        padding: 150px 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .contact-channels {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 60px;
        flex-wrap: wrap;
    }

    .channel-box {
        border: 1px solid rgb(137 137 137 / 49%);
        padding: 15px 30px;
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--avp-gold);
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.4s;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .channel-box i { font-size: 14px; }

    .channel-box:hover {
        border-color: var(--avp-gold);
        background: rgba(197, 160, 89, 0.05);
        transform: translateY(-3px);
    }

    /* Grid Layout for Amenities */
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 Columns */
        gap: 20px;
    }

    @media (max-width: 1024px) {
        .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
        .amenities-grid { grid-template-columns: 1fr; }
        .contact-channels { flex-direction: column; align-items: center; }
        .channel-box { width: 100%; justify-content: center; }
    }
    .gallery-section-v2 { background: #ffffff; padding: 100px 0; }
    
    .gallery-tabs {
        display: flex;
        gap: 30px;
        margin-bottom: 50px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
    }

    .tab-btn {
        background: none;
        border: none;
        color: rgb(41 41 41 / 84%);
        font-family: 'Montserrat';
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.4s;
        position: relative;
    }

    .tab-btn.active { color: var(--avp-gold); }
    .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: -16px; left: 0;
        width: 100%; height: 2px;
        background: var(--avp-gold);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .gallery-item {
        position: relative;
        height: 400px;
        overflow: hidden;
        background: #111;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
        filter: grayscale(20%);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
        filter: grayscale(0%);
    }

    .img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        display: flex;
        align-items: flex-end;
        padding: 30px;
        opacity: 0;
        transition: 0.5s;
    }

    .gallery-item:hover .img-overlay { opacity: 1; }
    .img-overlay span { color: var(--avp-gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

    @media (max-width: 900px) {
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .gallery-grid { grid-template-columns: 1fr; }
        .gallery-tabs { gap: 15px; overflow-x: auto; white-space: nowrap; }
    }
    .stacking-parallax {
        position: relative;
    }

    /* Common Layer Style */
    .parallax-layer {
        height: 100vh; /* Full Height */
        width: 100%;
        position: sticky; /* Yahi trick hai stacking ke liye */
        top: 0;
        overflow: hidden;
        background-attachment: fixed; /* Pure parallax feel */
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Individual Images */
    .layer-1 { 
        background-image: url('/uploads/lo.jpg'); 
        z-index: 1;
    }
    .layer-2 { 
        background-image: url('/uploads/amit.png'); 
        z-index: 2;
        box-shadow: 0 -50px 100px rgba(0,0,0,0.8); /* Shadow for depth when sliding */
    }
    .layer-3 { 
        background-image: url('/uploads/lo.jpg'); 
        z-index: 3;
        box-shadow: 0 -50px 100px rgba(0,0,0,0.8);
    }

    /* Content Overlay - Glassmorphism touch */
    .layer-overlay {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
        display: flex;
        align-items: center;
        padding: 0 var(--side-gap);
    }

    .parallax-layer .display-title {
        font-size: clamp(40px, 8vw, 90px);
        max-width: 900px;
        line-height: 1.1;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease-out;
    }

    /* Jab layer active ho tab text aaye (using JS or simple CSS observation) */
    .parallax-layer:not(:last-child) {
        margin-bottom: 0;
    }

    /* Smooth transition for text when in view */
    .parallax-layer .display-title, 
.parallax-layer .gold-badge {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); /* Premium Smooth Curve */
}
    @media (max-width: 768px) {
        .parallax-layer { 
            background-attachment: scroll; /* Mobile par fixed background battery/performance ke liye disable kar sakte hain */
        }
    }
    /* Existing CSS mein ye Media Query add kar de bhai */

@media (max-width: 768px) {
    .parallax-layer {
        height: 60vh; /* Mobile par height kam kar di (as requested) */
        background-attachment: scroll; /* Mobile smooth performance ke liye */
        position: sticky;
        top: 0;
    }

    .layer-overlay {
        padding: 0 20px;
        align-items: center; /* Text center mein rahega */
        justify-content: center;
        text-align: center;
    }

    .parallax-layer .display-title {
        font-size: 32px; /* Choti screen par font size adjust kiya */
        line-height: 1.2;
    }

    .gold-badge {
        font-size: 10px;
        letter-spacing: 1px;
    }
}
/* Initial state: Chupao */
.parallax-layer .display-title, 
.parallax-layer .gold-badge {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Jab observer "active" kare tab dikhao */
.parallax-layer.active .display-title, 
.parallax-layer.active .gold-badge {
    opacity: 1;
    transform: translateY(0);
}