/* --- AV GROUP MASTER STYLESHEET --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@300;500;600&family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Montserrat:wght@400;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #585100;
    --dark-bg: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
}
html {
    scroll-behavior: smooth;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; overflow-x: hidden; background: var(--dark-bg); }
body.no-scroll { overflow: hidden; }
body, html { margin: 0; padding: 0; background: #fffefae0; font-family: 'Segoe UI', sans-serif; overflow-x: hidden; }
/* --- NAVBAR (DESKTOP & GLOBAL) --- */
.glass-nav {
    position: fixed; top: 15px; left: 50%; transform: translateX(-50%);
    width: 95%; max-width: 1800px; height: 80px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 40px; background: rgb(135 135 135 / 31%);
    backdrop-filter: blur(15px) saturate(180%); -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 100px;
    z-index: 2000; box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo { display: flex; align-items: center; text-decoration: none; height: 100%; }
.logo img { height: 55px; width: auto; object-fit: contain; transition: 0.3s; }

.nav-center { display: flex; list-style: none; gap: 35px; align-items: center; }
.nav-link { 
    text-decoration: none; color: rgb(32 32 32 / 84%); font-size: 0.85rem; 
    font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: 0.3s;
}
.nav-link:hover, .has-dropdown:hover > .nav-link { color: var(--gold); }

/* --- DROPDOWN SYSTEM --- */
.has-dropdown { position: relative; padding: 25px 0; }
.arrow { font-size: 0.8rem; margin-left: 6px; transition: 0.4s; color: rgb(32 32 32 / 84%); display: inline-block; }
.has-dropdown:hover .arrow { transform: rotate(180deg); color: var(--gold); }

.dropdown-menu {
    position: absolute; top: 75px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: rgb(171 171 171 / 74%); border: 1px solid rgba(255,255,255,0.1);
    min-width: 220px; border-radius: 18px; list-style: none; padding: 15px 0;
    opacity: 0; visibility: hidden; transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.dropdown-menu li a {
    color: rgba(255,255,255,0.7) !important; text-decoration: none; font-size: 0.85rem;
    padding: 12px 25px; display: block; transition: 0.3s; text-transform: capitalize;
}
.dropdown-menu li a:hover { background: rgb(32 32 32 / 84%); color: var(--gold) !important; padding-left: 30px; }

/* --- RIGHT NAV & BUTTONS --- */
.nav-right { display: flex; align-items: center; gap: 20px; }
.btn-inquiry {
    color: rgb(32 32 32 / 84%) !important; padding: 10px 25px; border-radius: 50px;
    border: 1px solid rgb(32 32 32 / 84%); text-decoration: none; font-size: 0.85rem;
    font-weight: 600; transition: 0.4s;
}
.btn-inquiry:hover { background: rgb(250, 240, 216); color: #000 !important; transform: translateY(-2px); box-shadow:  rgb(255 251 242); }

/* --- HAMBURGER --- */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2100; }
.hamburger span { width: 28px; height: 2px; background: #fff; border-radius: 10px; transition: 0.4s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
    position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
    backdrop-filter: blur(25px) saturate(180%); -webkit-backdrop-filter: blur(25px) saturate(180%);
    background: rgba(10, 10, 10, 0.8); z-index: 9999; display: flex; flex-direction: column;
    transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}
.mobile-menu.active { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 30px; height: 80px; }
.mobile-menu-header .logo img { height: 45px; }
.close-menu { font-size: 2.5rem; color: #fff; cursor: pointer; font-weight: 200; }

.mobile-menu-inner { flex: 1; overflow-y: auto; padding: 20px 40px 100px; scrollbar-width: none; }
.mobile-menu-inner::-webkit-scrollbar { display: none; }
.main-link, .dropdown-trigger {
    font-size: 1.8rem; color: #fff !important; text-decoration: none; font-family: 'Playfair Display', serif;
    padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); background: none; border: none;
    width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
}
.dropdown-content { max-height: 0; overflow: hidden; transition: 0.4s ease; display: flex; flex-direction: column; padding-left: 15px; }
.mobile-dropdown.open .dropdown-content { max-height: 400px; margin-top: 10px; }
.dropdown-content a { color: rgba(255,255,255,0.6) !important; font-size: 1.1rem; padding: 10px 0; text-decoration: none; }
.mobile-dropdown.open .chevron { transform: rotate(90deg); color: var(--gold); }
.btn-inquiry-mobile { display: inline-block; padding: 12px 40px; background: var(--gold); color: #000 !important; text-decoration: none; font-weight: 600; border-radius: 50px; margin-top: 30px; }

/* --- REVEAL ANIMATIONS --- */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 1s ease-out; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s ease-out; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 1s ease-out; }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0, 0); }
.delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } .delay-3 { transition-delay: 0.6s; }

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
    .nav-center, .btn-inquiry.hide-mobile { display: none; }
    .hamburger { display: flex; }
    .glass-nav { height: 65px; padding: 0 20px; width: 92%; top: 15px; }
    .logo img { height: 42px; }
}

/* Desktop Flyout */
.has-flyout { position: relative; }
.flyout-arrow { float: right; margin-left: 10px; transition: 0.3s; }
.flyout-menu {
    position: absolute; top: 0; left: 100%; width: 220px;
    background: rgb(171 171 171 / 74%); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px; list-style: none; padding: 10px 0;
    opacity: 0; visibility: hidden; transform: translateX(10px); transition: 0.3s;
}
.has-flyout:hover .flyout-menu { opacity: 1; visibility: visible; transform: translateX(0); }

/* Mobile Sub-Dropdown Accordion */
.mobile-sub-dropdown { border-bottom: 1px solid rgba(255,255,255,0.03); }
.sub-trigger {
    width: 100%; background: none; border: none; color: #fff;
    padding: 12px 0; text-align: left; font-size: 1.3rem;
    display: flex; justify-content: space-between; align-items: center;
}
.sub-content { 
    max-height: 0; overflow: hidden; transition: 0.4s ease-out; 
    display: flex; flex-direction: column; padding-left: 15px;
}
.mobile-sub-dropdown.open .sub-content { max-height: 800px; padding-bottom: 10px; }
.mobile-sub-dropdown.open .sub-chevron { transform: rotate(90deg); color: var(--gold); }
.sub-content a { font-size: 1rem !important; color: rgba(255,255,255,0.5) !important; padding: 8px 0 !important; }
/* Level 1 Content (About, Projects, Media) */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                padding 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

/* Jab Level 1 khule */
.mobile-dropdown.open > .dropdown-content {
    max-height: 1500px; /* Badi value rakho taaki saare sub-menus samaye jayein */
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Level 2 Content (Ongoing, Upcoming, Completed) */
.sub-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

/* Jab Level 2 khule */
.mobile-sub-dropdown.open > .sub-content {
    max-height: 1000px; /* 10 links ke liye kaafi hai */
    opacity: 1;
    padding-top: 5px;
    padding-bottom: 10px;
}
/* Whoweare section css */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,700;1,500&family=Montserrat:wght@300;400;600;900&display=swap');

:root {
    --gold: #c5a059;
    --dark-bg: #0f0f0f; /* Pitch Dark Background */
    --card-bg: #1a1a1a; /* Lighter Black for the Card */
    --font-luxury: 'Cormorant Garamond', serif;
    --font-main: 'Montserrat', sans-serif;
}

.who-we-are {
    padding: 100px 0;
    /* background-color: var(--dark-bg); */
    overflow: hidden;
}

/* --- THE MAIN CARD WRAPPER --- */
.inner-luxury-card {
    background: rgb(255 242 215 / 80%);
    border: 1px solid rgba(197, 160, 89, 0.15); /* Subtle Gold Border */
    padding: 60px;
    border-radius: 4px; /* Industrial look ke liye sharp corners ya subtle radius */
    /* box-shadow: 0 40px 100px rgba(0,0,0,0.5); */
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
}

.luxury-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* --- IMAGE & BRACKETS --- */
.image-wrapper { position: relative; padding: 50px; }

.main-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 11/10;
    overflow: hidden;
    background: #000;
}

.main-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.7; transition: 1.5s ease;
}

.image-wrapper:hover .main-img-box img { opacity: 1; transform: scale(1.05); }

.corner-bracket {
    position: absolute;
    width: 40px; height: 40px;
    border: 2px solid var(--gold);
    z-index: 3;
    transition: 0.6s ease;
}
.top-left { top: 34px; left: 34px; border-right: none; border-bottom: none; }
.top-right { top: 34px; right: 34px; border-left: none; border-bottom: none; }
.bottom-left { bottom: 30px; left: 34px; border-right: none; border-top: none; }
.bottom-right { bottom: 30px; right: 34px; border-left: none; border-top: none; }

.image-wrapper:hover .corner-bracket { width: 60px; height: 60px; }

/* --- TEXT CONTENT --- */
.tagline {
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
}

.main-title {
    font-family: var(--font-luxury);
    font-size: clamp(32px, 4vw, 54px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.main-title i { color: var(--gold); font-style: italic; }

.main-desc {
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* --- VALUES GRID INSIDE CARD --- */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-card-item {
    border-left: 2px solid rgba(197, 160, 89, 0.3);
    padding-left: 20px;
    transition: 0.4s;
}

.value-card-item:hover {
    border-left-color: var(--gold);
}

.value-card-item h3 {
    font-family: var(--font-luxury);
    font-size: 20px;
    color: #d3ae37;
    margin-bottom: 8px;
}

.value-card-item p { color: #888; font-size: 14px; line-height: 1.5; }

.icon-box { color: #2c2c2ceb; font-size: 18px; margin-bottom: 10px; }

/* --- ANIMATION CLASSES (Active by JS) --- */
.reveal-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: 0.8s ease-out; }

.reveal-container.active .reveal-up,
.reveal-container.active .reveal-left {
    opacity: 1; transform: translate(0, 0);
}

@media (max-width: 992px) {
    .luxury-container { grid-template-columns: 1fr; }
    .inner-luxury-card { padding: 30px; }
}
/* --- RESPONSIVE FIXES --- */

@media (max-width: 992px) {
    .luxury-container { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .inner-luxury-card { 
        padding: 40px 20px; 
        /* margin: 0 px;  */
    }
    .image-wrapper { 
        padding: 30px; /* Brackets spacing kam kar di */
    }
    .main-title { 
        font-size: 38px; 
    }
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 60px 0;
    }
  
    .image-wrapper { 
        height: 308px !important; 
    }

    /* Image brackets ko mobile ke hisaab se set kiya */
    .top-left { top: 10px; left: 10px; }
    .top-right { top: 10px; right: 10px; }
    .bottom-left { bottom: 0px; left: 10px; }
    .bottom-right { bottom: 0px; right: 10px; }

    .main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .main-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Values Grid Fix: Mobile par ek ke niche ek ayenge */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .values-grid[style*="margin-top: 20px;"] {
        margin-top: 25px !important;
    }

    .value-card-item {
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .inner-luxury-card {
        padding: 30px 15px;
    }
    .main-title {
        font-size: 28px;
    }
    .tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }
    .floating-badge {
        padding: 10px 15px;
        bottom: 10px;
        right: 10px;
    }
    .floating-badge .number {
        font-size: 20px;
    }
    .floating-badge .label {
        font-size: 8px;
    }
}
/* --- IMAGE BUTTON STYLING --- */
.main-img-box {
    position: relative; /* Button position ke liye zaroori hai */
    overflow: hidden;
}

.about-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Exact Center */
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5); /* Gold border */
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 50;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-btn span {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.about-btn:hover {
    background: var(--gold, #D4AF37);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    border-color: transparent;
}

.about-btn:hover span {
    transform: translateX(5px);
}

/* Image pe thoda dark overlay taaki button saaf dikhe */
.main-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.main-img-box:hover::after {
    background: rgba(0, 0, 0, 0.4);
}

/* founder section css */
  

        .founder-section {
            max-width: 1800px;
            margin: 0 auto;
            padding: 40px 60px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            align-items: center;
        }

        /* --- LEFT SIDE: THE IMAGE --- */
        .founder-image-container {
            position: relative;
            padding: 20px;
        }

        .founder-image-container::before {
            content: '';
            position: absolute;
            top: 30px; left: 30px;
            width: 70%; height: 80%;
            border: 1px solid #c5a059;
            z-index: 1;
        }

        .image-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 710px;
            overflow: hidden;
            background: #15151500;
        }

        .founder-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* filter: grayscale(100%) contrast(110%); */
            transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .founder-image-container:hover .founder-img {
            filter: grayscale(0%) contrast(100%);
            transform: scale(1.05);
        }

        .exp-badge {
            position: absolute;
            bottom: 40px;
            right: 2px;
            background: #c5a059;
            color: #000;
            padding: 30px;
            text-align: center;
            z-index: 3;
            box-shadow: 20px 20px 40px rgba(0,0,0,0.5);
        }

        .exp-badge span { display: block; font-size: 40px; font-weight: 700; line-height: 1; }
        .exp-badge p { font-size: 10px; letter-spacing: 2px; font-weight: 900; text-transform: uppercase; }

        /* --- RIGHT SIDE: THE CONTENT --- */
        .founder-content { position: relative; }
        .tagline { color: #c5a059; font-size: 12px; letter-spacing: 4px; font-weight: 600; margin-bottom: 20px; display: block; }

        .founder-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 80px;
            line-height: 0.9;
            margin-bottom: 10px;
            font-weight: 500;
            color: #2c2c2ceb;
        }

        .founder-title { font-size: 16px; color: #2c2c2ceb; letter-spacing: 2px; margin-bottom: 40px; display: block; }

        .quote-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            line-height: 1.4;
            color: #c5a059;
            margin-bottom: 40px;
            font-style: italic;
            border-left: 3px solid #c5a059;
            padding-left: 30px;
        }

        .bio-text { color: #1a1919eb; font-size: 16px; line-height: 1.8; font-weight: 400; margin-bottom: 50px; max-width: 600px; }
        .signature { font-family: 'Mrs Saint Delafield', cursive; font-size: 60px; color: #c5a059; opacity: 0.8; margin-top: 30px; }

        /* --- STATS ROW --- */
        .founder-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
        }

        .stat-item h4 { font-size: 24px; color: #c5a059; margin-bottom: 5px; }
        .stat-item p { font-size: 10px; color: #555; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }

        /* --- RESPONSIVE FIXES (MEDIA QUERIES) --- */
        
        /* Tablet & Small Laptop */
       /* --- RESPONSIVE FIXES --- */
        
        @media (max-width: 1200px) {
            .founder-section { grid-template-columns: 1fr; gap: 60px; padding: 60px 40px; }
            .image-wrapper { height: 550px; }
            .founder-name { font-size: 65px; }
            .founder-stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }

        @media (max-width: 768px) {
            .founder-section { padding: 40px 20px; }
            .image-wrapper { height: 450px; }
            .founder-name { font-size: 50px; }
            .quote-text { font-size: 24px; padding-left: 20px; }
            .exp-badge { right: 0; padding: 20px; bottom: 20px; }
            .exp-badge span { font-size: 30px; }
            
            /* Bhai yahan changes kiye hain - Ab 2 column dikhega mobile par */
            .founder-stats { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 20px; 
                text-align: center;
            }
            .stat-item {
                padding: 15px 5px;
                border-bottom: none; /* Border hata di line wali */
            }

            .signature { font-size: 50px; text-align: center; }
        }

        @media (max-width: 480px) {
            .founder-name { font-size: 40px; }
            .founder-title { font-size: 13px; margin-bottom: 25px; }
            .quote-text { font-size: 20px; }
            .bio-text { font-size: 14px; text-align: center; margin-left: auto; margin-right: auto; }
            
            /* Chote phones par bhi 2 column barkaraar */
            .founder-stats { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .stat-item h4 { font-size: 20px; }
            .stat-item p { font-size: 9px; }
        }

/* --- PROJECT SECTION MASTER CSS --- */

:root {
    --gold: #c5a059;
    --dark-bg: #121212;
    --font-luxury: 'Cormorant Garamond', serif;
    --font-main: 'Montserrat', sans-serif;
}

.project-section {
    padding: 100px 40px;
    background-color: rgba(255, 242, 215, 0.8);
    font-family: var(--font-main);
}

/* Header & Typography */
.project-header { text-align: center; margin-bottom: 70px; }
.gold-subtitle { color: var(--gold); letter-spacing: 5px; font-size: 11px; font-weight: 800; margin-bottom: 10px; }
.main-heading { font-family: var(--font-luxury); font-size: clamp(35px, 5vw, 65px); color: #fff; line-height: 1; }
.gold-text { color: var(--gold); font-style: italic; }

/* Filter Tabs - Desktop Default */
.filter-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 40px; 
}

.filter-btn {
    background: transparent; 
    border: 1px solid rgba(197, 160, 89, 0.2); 
    padding: 12px 30px;
    color: #2c2c2ceb; 
    cursor: pointer; 
    transition: 0.4s; 
    font-size: 10px; 
    font-weight: 700; 
    letter-spacing: 2px;
    text-transform: uppercase;
}

.filter-btn.active { 
    background: var(--gold); 
    color: #2c2c2ceb; 
    border-color: var(--gold); 
}

/* Grid & Cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    position: relative;
    height: 550px; 
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-img-wrapper { width: 100%; height: 100%; position: relative; }
.project-img-wrapper img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: 1.5s ease; filter: brightness(0.8);
}

/* UI Elements */
.top-action-btn {
    position: absolute; top: 20px; right: 20px;
    width: 45px; height: 45px;
    background: var(--gold); color: #000;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; z-index: 10;
    transform: translateY(-20px) scale(0); opacity: 0;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-info-strip {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 30px; z-index: 5;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transition: 0.5s ease;
}

.status-indicator { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: 3px; display: block; margin-bottom: 5px; }
.project-display-name { font-family: var(--font-luxury); font-size: 28px; color: #fff; margin: 0; }

.project-card:hover .top-action-btn { transform: translateY(0) scale(1); opacity: 1; }
.project-card:hover img { transform: scale(1.1); filter: brightness(1); }

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablets (iPad/Laptops) */
@media (max-width: 1400px) { .project-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }

/* Mobile View (The Big Fix) */
@media (max-width: 768px) {
    .project-section {
        padding: 60px 20px;
    }

    .project-header {
        margin-bottom: 40px;
    }

    /* Horizontal Scroll for Buttons */
    .filter-tabs {
        justify-content: flex-start; /* Cut hone se bachayega */
        overflow-x: auto;
        padding: 10px 20px 20px 20px; /* Side padding for breathability */
        margin-left: -20px; /* Full width touch feel */
        margin-right: -20px;
        gap: 10px;
        scrollbar-width: none; /* Firefox hide */
        -webkit-overflow-scrolling: touch;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none; /* Chrome/Safari hide */
    }

    .filter-btn {
        flex: 0 0 auto; /* Button pichakne nahi dega */
        padding: 10px 22px;
        font-size: 9px;
        white-space: nowrap;
    }

    .project-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
    }

    .project-card {
        height: 400px; /* Mobile height adjusted */
    }

    .main-heading {
        font-size: 38px;
    }
}

/* Extra Small Mobile Fixes */
@media (max-width: 480px) {
    .main-heading { font-size: 32px; }
    .project-display-name { font-size: 24px; }
    .project-info-strip { padding: 20px; }
}
/* --- NEWS SECTION CSS --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        .news-section {
            max-width: 2000px;
            margin: 0 auto;
            padding: 80px 40px;
            background-color: #fffefae0;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            overflow: hidden;
        }

        /* --- HEADER --- */
        .section-tag {
            font-size: 10px;
            letter-spacing: 3px;
            color: #c5a059;
            text-transform: uppercase;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .section-tag::before {
            content: '';
            width: 25px; height: 1px;
            background: #c5a059;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 60px;
            font-weight: 400;
            margin-bottom: 60px;
        }

        .section-title i { color: #c5a059; font-style: italic; }

        /* --- GRID SYSTEM --- */
        .news-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr; 
            gap: 30px; 
            align-items: stretch; 
        }

        /* --- SHARED CARD STYLES --- */
        .news-card-base {
            background-color: #fdf6e5;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 1px solid #6c6c6cbf;
        }

        /* --- LEFT SIDE: FEATURED --- */
        .featured-card {
            padding: 60px;
            border-top: 1px solid rgba(197, 160, 89, 0.4);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100px; height: 3px;
            background: #c5a059;
            transition: width 0.4s ease;
        }

        .label-featured {
            background: #c5a059;
            color: #000;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 12px;
            width: fit-content;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .main-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #2c2c2ceb;
        }

        /* --- RIGHT SIDE STACK --- */
        .side-list {
            display: grid;
            grid-template-rows: repeat(3, 1fr); 
            gap: 20px;
        }

        .side-card {
            padding: 30px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .side-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            margin-bottom: 10px;
            color: #2c2c2ceb;
            transition: color 1s;
            font-weight: bolder;
        }

        .date-text {
            color: #c5a059;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .excerpt-text {
            color: #2c2c2ceb;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 500;
        }

        /* --- HOVER EFFECTS --- */
        .news-card-base:hover {
            transform: translateY(-8px);
            background-color: #fffbe8;
            border-color: rgba(197, 160, 89, 0.4);
            box-shadow: 0 20px 40px rgba(112, 112, 112, 0.5);
        }

        .featured-card:hover::before { width: 100%; }
        .side-card:hover h3 { color: #2c2c2ceb; font-weight: bold; font-size: 28px;}

        /* Source Footer */
        .source-line {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 10px;
            color: #555;
            margin-top: 20px;
            text-transform: uppercase;
            font-weight: 600;
        }
        .source-line span { color: #c5a059; font-size: 18px; }

        /* --- REVEAL ANIMATION CLASSES --- */
        .reveal-up { 
            opacity: 0; 
            transform: translateY(40px); 
            transition: all 1s cubic-bezier(0.2, 0.6, 0.2, 1); 
        }
        .active .reveal-up, .reveal-up.active { 
            opacity: 1; 
            transform: translateY(0); 
            color: #2c2c2ceb;
        }
        .delay-1 { transition-delay: 0.2s; }
        .delay-2 { transition-delay: 0.4s; }

        /* --- MOBILE MEDIA QUERIES (FIXED) --- */
        @media (max-width: 1100px) {
            .news-container { grid-template-columns: 1fr; }
            .side-list { grid-template-rows: none; }
        }

        @media (max-width: 768px) {
            .news-section { padding: 50px 20px; }
            .section-title { font-size: 40px; margin-bottom: 30px; }
            
            .featured-card { padding: 40px 25px; }
            .main-heading { 
                font-size: 28px; 
                line-height: 1.3; 
                word-wrap: break-word; 
            }
            
            .side-card { padding: 30px 25px; }
        }

        @media (max-width: 480px) {
            .section-title { font-size: 32px; }
            .main-heading { font-size: 24px; }
            .side-card h3 { font-size: 20px; }
        }
        
  :root {
            --gold: #c5a059;
            --dark-bg: #0a0a0a;
        }

        .location-wrapper {
            padding: 120px 0; 
            background-color: white ;
            color: #fff;
            overflow: hidden;
        }

        .location-section {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* --- HEADER --- */
        .loc-header { margin-bottom: 80px; }
        .loc-header .top-tag { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
        .loc-header .line { width: 40px; height: 1px; background: var(--gold); }
        .loc-header .top-tag span {
            font-size: 11px; letter-spacing: 5px; color: var(--gold); font-weight: 600; text-transform: uppercase;
        }
        .loc-header h2 {
            font-family: 'Cormorant Garamond', serif ;color: #202020eb;
            font-size: clamp(40px, 6vw, 75px); font-weight: 300; line-height: 1.1;
        }
        .loc-header h2 i { color: var(--gold); font-style: italic; }

        /* --- UNIQUE IMAGE GRID --- */
        .location-grid-modern {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .loc-box {
            height: 200px; /* Thoda lamba taaki image dikhe */
            border-radius: 15px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(197, 160, 89, 0.1);
        }

        /* Image Layer */
        .loc-box img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.8s ease;
            /* filter: brightness(0.6) grayscale(20%); */
        }

        /* Gradient Overlay taaki text clear dikhe */
        .loc-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
            z-index: 2;
            transition: background 0.4s;
        }

        .loc-num {
            position: relative; z-index: 3;
            font-size: 12px; font-weight: 700; color: var(--gold);
            margin-bottom: 10px; display: block;
        }

        .loc-box h3 {
            position: relative; z-index: 3;
            font-family: 'Montserrat', sans-serif;
            font-size: 20px; font-weight: 500;
            letter-spacing: 2px; text-transform: uppercase;
            transition: 0.5s;
        }

        /* --- HOVER EFFECTS --- */
        .loc-box:hover {
            transform: translateY(-15px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }

        .loc-box:hover img {
            transform: scale(1.1);
            /* filter: brightness() grayscale(10%); */
        }

        .loc-box:hover .loc-overlay {
            /* background: linear-gradient(to top, rgba(255, 251, 245, 0.3) 0%, rgba(10, 10, 10, 0.4) 100%); */
        }

        .loc-box:hover h3 {
            letter-spacing: 4px;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 1200px) { .location-grid-modern { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 900px) { .location-grid-modern { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 600px) {
            .location-grid-modern { grid-template-columns: 1fr; }
            .loc-box { height: 250px; }
        }

   /* --- CONTACT SECTION WRAPPER --- */
    .contact-wrapper {
        padding: 100px 0;
        background-color: #fff7e9; 
        color: #ffffff;
        font-family: 'Montserrat', sans-serif;
        overflow: hidden;
    }

    .contact-container {
        max-width: 1800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* --- THE MASTER CARD --- */
    .contact-main-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(197, 160, 89, 0.2);
        backdrop-filter: blur(15px); 
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        border-radius: 24px; 
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    /* Left Side: Info Area */
    .contact-info-side {
        background: #fffaf1;
        padding: 60px;
        border-right: 1px solid rgba(197, 160, 89, 0.1);
    }

    .top-tag {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }

    .top-tag .line { width: 35px; height: 1px; background: #c5a059; }
    .top-tag span { font-size: 14px; letter-spacing: 4px; color: #c5a059; font-weight: 700; text-transform: uppercase; }

    .contact-info-side h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 54px;
        line-height: 1.1;
        font-weight: 300;
        margin-bottom: 30px;
    }

    .contact-info-side h2 i { color: #c5a059; font-style: italic; }

    /* Info Table Style */
    .info-list { margin-top: 40px; }
    .info-item {
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .info-item .label {
        font-size: 12px;
        letter-spacing: 2px;
        color: #202020eb;
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
    }
    .info-item .value { font-size: 16px; color: #b78d3d; font-weight: 400; opacity: 0.9; }

    /* Right Side: Form Area */
    .contact-form-side {
        padding: 60px;
        background: #ffffff;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .full-width { grid-column: span 2; }

    .input-box {
        display: flex;
        flex-direction: column;
    }

    .input-box label {
        font-size: 10px;
        letter-spacing: 1.5px;
        color: #c5a059;
        margin-bottom: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .input-box input, 
    .input-box select, 
    .input-box textarea {
        background: rgba(255,255,255,0.03);
        border: 1px solid #1c1c1c1a;
        padding: 16px;
        color: #000000d4;
        border-radius: 8px;
        font-size: 14px;
        font-family: 'Montserrat', sans-serif;
        transition: all 0.3s ease;
    }

    .input-box input:focus, 
    .input-box textarea:focus {
        border-color: #c5a059;
        background: rgba(197, 160, 89, 0.08);
        outline: none;
        box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
    }

    .submit-btn {
        margin-top: 25px;
        background: #c5a059;
        color: #000;
        border: none;
        padding: 20px 50px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .submit-btn:hover {
        background: #fff;
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    }

    /* --- MOBILE RESPONSIVE (FIXED) --- */
    @media (max-width: 1100px) {
        .contact-main-card { grid-template-columns: 1fr; }
        .contact-info-side { border-right: none; border-bottom: 1px solid rgba(197, 160, 89, 0.1); padding: 50px; }
    }

    @media (max-width: 768px) {
        .contact-wrapper { padding: 60px 0; }
        .contact-container { padding: 0 15px; }
        
        .contact-main-card { border-radius: 15px; }

        .contact-info-side { padding: 40px 25px; }
        .contact-info-side h2 { font-size: 40px; }

        .contact-form-side { padding: 40px 25px; }
        
        .form-grid { 
            grid-template-columns: 1fr; /* Mobile par stack ho jayega */
            gap: 15px;
        }
        .full-width { grid-column: span 1; }
        
        .submit-btn { width: 100%; padding: 18px; }
    }

    @media (max-width: 480px) {
        .contact-info-side h2 { font-size: 34px; }
        .info-item .value { font-size: 14px; }
        .input-box input, .input-box select, .input-box textarea { padding: 14px; }
    }
