       .header-nav .nav > li > a{
           color: #fff;
       }
       /* MOBILE COMPACT MENU FIX */
@media (max-width: 768px) {
    
    /* 1. Reset wrapper width */
    .project-inner-menu-wrapper {
        width: 100%;
        overflow: visible; /* Disable scroll, enable wrap */
    }

    /* 2. Enable wrapping (Rows) and Center items */
    .project-inner-menu {
        display: flex;
        flex-wrap: wrap !important; /* Forces items onto new lines */
        justify-content: center;    /* Centers them in the middle */
        overflow-x: visible;        /* Disable horizontal scroll */
        padding: 5px 0;             /* Reduce top/bottom padding */
    }

    /* 3. Make links small and compact */
    .project-inner-menu .project-menu-link {
        flex: 0 0 auto;             /* Allow items to be natural width */
        font-size: 11px !important; /* Make text small */
        padding: 4px 6px !important;/* Very tight padding */
        margin: 2px !important;     /* Small gap between items */
        white-space: nowrap;        /* Keep words like "Floor Plan" together */
        line-height: 14px;
        text-transform: uppercase;
        border-bottom-width: 2px;   /* Keep the active line visible but thin */
    }
}

.mobile-sider-drawer-menu .header-nav .nav > li > a{
	padding:12px 15px !important;
	color: #000 !important;
	z-index: 9999;
}
    .mobile-sider-drawer-menu.active .header-nav {
        left: 15px;
        z-index: 9999;
    }
    
     @media (min-width: 992px) {
    .mobile-sider-drawer-menu .header-nav .nav > li > a {
        padding: 12px 15px;
        color: #fff !important;
        z-index: 9999;
    }
}

/* --- MOBILE MENU Z-INDEX & OVERLAP FIX --- */
@media (max-width: 991px) {
    /* 1. Ensure the main header stays on top of everything */
    .site-header.header-fixed {
        z-index: 99999 !important;
    }

    /* 2. Fix the Drawer Container */
    .mobile-sider-drawer-menu .header-nav {
        background-color: #ffffff !important; /* Forces solid background so content doesn't bleed through */
        z-index: 999999 !important; /* Higher than any page element */
        position: fixed !important;
        top: 0;
        bottom: 0;
        height: 100vh !important;
        width: 280px; /* Standard drawer width */
        box-shadow: 5px 0 15px rgba(0,0,0,0.2);
        overflow-y: auto !important; /* Allows scrolling if menu is long */
        display: block !important;
        left: -300px; /* Start hidden */
        transition: all 0.4s ease;
    }

    /* 3. State when menu is open/active */
    .mobile-sider-drawer-menu.active .header-nav {
        left: 0 !important; /* Slides into view */
    }

    /* 4. Fix the menu list items */
    .mobile-sider-drawer-menu .header-nav .nav {
        margin-top: 60px !important; /* Push down to avoid overlapping the 'X' button */
        padding-bottom: 50px;
        display: block !important;
    }

    .mobile-sider-drawer-menu .header-nav .nav > li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-sider-drawer-menu .header-nav .nav > li > a {
        padding: 15px 20px !important;
        color: #000 !important;
        display: block;
        font-weight: 600;
        background: #fff !important;
    }

    /* 5. Sub-menu fix (ensure they also show on top) */
    .mobile-sider-drawer-menu .sub-menu {
        background-color: #f9f9f9 !important;
        position: static !important;
        display: none; /* Usually toggled by JS, or change to block to see always */
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-sider-drawer-menu .nav li.active > .sub-menu,
    .mobile-sider-drawer-menu .nav li:hover > .sub-menu {
        display: block !important;
    }

    /* 6. Hide the page content wiggle when menu is open */
    body.mobile-sider-drawer-menu-active {
        overflow: hidden !important;
    }
}
  .header-fixed .color-fill.main-bar {
    background: #000000ba;
}

.header-nav .nav > li > a {
    color:#fff;
}

@media only screen and (max-width: 991px) {
    .header-nav .nav {
        float: none;
        margin: 0;
        background: #fff;
        display: block;
    }
}

/* Container to align Logo and the entire Right side */
        .header-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* The 5 Quick Links Wrapper */
        .quick-nav-wrapper {
            display: flex;
            align-items: center;
                 margin-left: none;
        }

        .quick-nav-wrapper a {
            text-decoration: none;
            color: #fff;
            
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            padding: 0 12px;
            transition: color 0.3s;
                letter-spacing: 1px;
        }

        .quick-nav-wrapper a.active {
            color: #fdb813;
        }

        /* Vertical Separator | */
        .nav-sep {
            color: #fff;
            font-weight: 300;
            font-size: 18px;
            pointer-events: none;
        }

        /* Enquire Now Button - Yellow Square Style */
        .enquire-btn-top {
            /*background-color: #fdb813 !important;*/
            color: #fff !important;
            padding: 12px 25px !important;
            margin-left: 15px;
            font-weight: 800 !important;
            text-transform: uppercase;
            display: inline-block;
            border-radius: 0px; /* Square as per screenshot */
            line-height: 1;
        }

        .enquire-btn-top:hover {
            background-color: #e5a900 !important;
        }

        /* Hamburger button positioning */
        #mobile-side-drawer {
            margin-left: 20px;
            background: #fff;
            border: none;
            cursor: pointer;
        }

        #mobile-side-drawer .icon-bar {
            background: #000;
        }

        /* Hide navbar only on mobile */
        @media only screen and (max-width: 767px) {
            .quick-nav-wrapper {
                display: none;
            }
            
        }
        /* iPad Mini & iPad Air */
        @media only screen and (min-width: 768px) and (max-width: 1024px) {
        
            .quick-nav-wrapper a {
                font-size: 10px;          /* Better readability on iPad */
                padding: 0 8px;           /* Reduced spacing */
                font-weight: 600;
                  letter-spacing: 0px;
            }
        
        }

        @media only screen and (max-width: 991px) {
            .header-nav .nav {
                background: #fff;
            }
        }
        /* BANNER SETTINGS */
    .wt-bnr-inr {
        /* Ensure the banner is the reference point for the absolute menu */
        position: relative; 
        min-height: 400px; /* Or whatever your theme default is */
        display: flex;
        align-items: center;
    }

    /* ===== MENU WRAPPER ===== */
    /* This wrapper helps position the menu at the bottom of the banner */
    .project-inner-menu-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        transition: all 0.3s ease;
          height: auto; 
    }

    /* ===== THE MENU BAR ===== */
    .project-inner-menu {
        display: flex;
        justify-content: center; /* Center links horizontally */
        flex-wrap: wrap;
        
        padding: 15px 0;
        width: 100%;
        /*border-top: 1px solid rgba(255,255,255,0.1);*/
    }

    /* Links styling */
    .project-inner-menu .project-menu-link {
        padding: 8px 15px;
        margin: 0 5px;
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        font-size: 15px;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    /* Active & Hover States */
    .project-inner-menu .project-menu-link.active,
    .project-inner-menu .project-menu-link:hover {
        color: #fab900;
        border-bottom-color: #fab900;
    }

    /* ===== STICKY STATE (Added by JS) ===== */
    .project-inner-menu-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
     background: #000;
    margin-bottom: 0;
     height: 70px; 
}


    /* Change background to solid black when sticky */
   
.project-inner-menu-wrapper.is-sticky .project-inner-menu {
    background: transparent;
    border-top: none;
}



/* ===== MENU WRAPPER ===== */
    /* This wrapper helps position the menu at the bottom of the banner */
    .project-inner-menu-wrapper-details {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        transition: all 0.3s ease;
          height: auto; 
    }

    /* ===== THE MENU BAR ===== */
    .project-inner-menu-details {
        display: flex;
        justify-content: center; /* Center links horizontally */
        flex-wrap: wrap;
        
        padding: 15px 0;
        width: 100%;
        /*border-top: 1px solid rgba(255,255,255,0.1);*/
    }

    /* Links styling */
    .project-inner-menu-details .project-menu-link {
        padding: 8px 15px;
        
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        font-size: 15px;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    /* Active & Hover States */
    .project-inner-menu-details .project-menu-link.active,
    .project-inner-menu-details .project-menu-link:hover {
        color: #fab900;
        border-bottom-color: #fab900;
    }

    /* ===== STICKY STATE (Added by JS) ===== */
    .project-inner-menu-wrapper-details.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
     background: #000;
    margin-bottom: 0;
     height: 70px; 
}


    /* Change background to solid black when sticky */
   
.project-inner-menu-wrapper-details.is-sticky .project-inner-menu-details {
    background: transparent;
    border-top: none;
}
















    /* Animation for smooth entry */
    @keyframes slideDown {
        from { transform: translateY(-100%); }
        to { transform: translateY(0); }
    }

    /* ===== GENERAL STYLES ===== */
    h1 {
        font-weight: normal;
        font-size: 30px;
        line-height: 56px;
        color: #000;
        text-align: center;
    }
    
.text-black p {
    color: #000;
}
    
    /* Main header default */
.main-bar.p-t5.color-fill{
    transition: all 0.3s ease;
}

/* Hide ONLY when sticky */
.main-bar.p-t5.color-fill.hide-main-header{
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}


/* Hide header when sticky active */
/*.main-bar.p-t5.color-fill.hide-main-header{*/
/*    opacity: 0;*/
/*    transform: translateY(-100%);*/
/*    pointer-events: none;*/
/*}*/
    
    /* ===== STICKY BAR LAYOUT ===== */
.project-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

/* LOGO */
.sticky-logo {
    display: none;
}

.sticky-logo img {
    height: 40px;
}

/* HAMBURGER */
.sticky-hamburger {
    display: none;
}

#sticky-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
}

#sticky-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

/* ===== SHOW ONLY WHEN STICKY ===== */
.project-inner-menu-wrapper.is-sticky .sticky-logo,
.project-inner-menu-wrapper.is-sticky .sticky-hamburger {
    display: block;
}

/* CENTER MENU ADJUSTMENT */
.project-inner-menu {
    flex: 1;
    justify-content: center;
}
/* 🔧 FIX: prevent sticky menu from taking banner height */

/* Ensure inner bar doesn’t stretch */
.project-sticky-bar {
    width: 100%;
    height: 100%;
}
/* Default large logo in banner */
.banner-title-h2 img,
.h2-logo {
    /*height: 80px;*/
    transition: all 0.3s ease;
}

/* Smaller logo when sticky */
.project-inner-menu-wrapper.is-sticky .sticky-logo img {
    height: 40px;
}
/* ===== STICKY PROJECT MENU ===== */
.project-inner-menu-wrapper.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
}

/* ===== HIDE MAIN HEADER ===== */
body.project-menu-sticky .site-header {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* ===== SHRINK HEADER LOGO ===== */
.site-header .logo-header img {
    height: 70px;
    transition: all 0.3s ease;
}

body.project-menu-sticky .site-header .logo-header img {
    height: 40px;
}

/* ===== COLLAPSE BANNER ===== */
body.project-menu-sticky .wt-bnr-inr {
    min-height: 0;
}

/* ===== SHOW STICKY LOGO ===== */
.sticky-logo {
    display: none;
}

.project-inner-menu-wrapper.is-sticky .sticky-logo {
    display: block;
}

.sticky-logo img {
    height: 40px;
}

/* Once sticky starts, visually end the banner */

.quick-nav-wrapper {
    display: block;
}

.project-inner-menu {
    display: flex;
}
@media (max-width: 991px) {
    .quick-nav-wrapper,
    .project-inner-menu {
        display: none !important;
    }
    .site-header .logo-header img {
    height: auto;
   
   }
}


.spec-section{
    padding:80px 0;
    background:#fff;
}

.spec-image-full img{
    width:100%;
    border-radius:14px;
}

.spec-title{
    font-size:32px;
    font-weight:500;
}

.spec-line{
    width:70px;
    height:3px;
    background:#f3c23a;
    display:block;
    margin:10px auto;
}

/* TWO COLUMN FLOW */
.spec-columns{
    column-count:2;
    column-gap:30px;
}

.spec-box{
    background:#C9BCA7;
    border:1px solid #f2d37c;
    border-radius:8px;
    margin-bottom:16px;
    break-inside:avoid;
}

.spec-header{
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    font-weight:500;
}

.spec-toggle{
    font-size:22px;
    transition:0.3s;
}

.spec-body{
    display:none;
    padding:0 20px 16px;
}

.spec-box.active .spec-body{
    display:block;
}

.spec-box.active .spec-toggle{
    transform:rotate(45deg);
}

/* LIST ARROW */
.spec-body ul{
    list-style:none;
    padding:0;
}

.spec-body li{
    position:relative;
    padding-left:18px;
    font-size:14px;
    margin-bottom:6px;
}

.spec-body li::before{
    content:"→";
    position:absolute;
    left:0;
}

/* MOBILE */
@media(max-width:768px){
    .spec-columns{
        column-count:1;
    }
    .spec-title{
        font-size:24px;
    }
}


 /* Amenities Styles */
    .amenities-section{ padding:80px 0; background:#fff; }
    .amenities-title{ text-align:center; margin-bottom:50px; }
    .amenities-title h2{ font-size:32px; font-weight:500; margin-bottom:10px; }
    .title-line{ width:70px; height:3px; background:#f3c23a; display:block; margin:0 auto; }
    .amenities-subtitle{ font-size:18px; font-weight:500; margin-bottom:20px; }
    .amenities-list{ list-style:none; padding:0; margin:0; }
    .amenities-list li{ display:flex; align-items:flex-start; gap:14px; font-size:14px; line-height:1.6; margin-bottom:12px; }
    .amenities-list i{ color:#f3c23a; font-size:15px; margin-top:4px; min-width:18px; }

   
    @media(max-width: 768px){
        .amenities-title h2{ font-size:24px; }
      
    }
    
    
    
    
    /* ===============================
       FLOOR PLAN SECTION
    ================================ */
    .floorplan-section {
        background-color: #f0f2f5;
        padding: 60px 0;
        font-family: 'Roboto', sans-serif;
    }

    .main-title {
        color: #333;
        font-weight: 300;
        margin-bottom: 5px;
    }
    .sub-title {
        color: #000;
        font-weight: 400;
        margin-bottom: 40px;
        text-transform: uppercase;
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    /* --- VERTICAL SPACING FIX --- */
    .floorplan-section .col-12 {
        margin-bottom: 30px;
    }

    /* --- PROPERTY CARD DESIGN --- */
    .property-card {
        background: #fff;
        border: none;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .property-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    /* =========================================
       UPDATED CODE FOR MOBILE RESPONSIVE IMAGE
       ========================================= */
    .card-thumb {
        position: relative;
        height: 240px;
        background: #fff;
        border-bottom: 1px solid #f0f0f0;
        padding: 10px; /* Reduced padding for mobile */
        
        /* Flexbox Centering */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Force the anchor tag to fill the container */
    .card-thumb a {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure image fits inside the anchor without cropping */
    .card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Prevents cutting off */
        transition: transform 0.5s ease;
    }

    .property-card:hover .card-thumb img {
        transform: scale(1.08);
    }

    /* ========================================= */

    .bhk-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 15px;
        color: #000;
        font-weight: 700;
        font-size: 12px;
        border-radius: 4px;
        text-transform: uppercase;
        z-index: 10;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .theme-yellow { background-color: #FAb900; }
    .theme-grey   { background-color: #FAb900; }

    .border-yellow { border-bottom: 4px solid #FAb900; }
    .border-grey   { border-bottom: 4px solid #545454; }

    .card-details {
        padding: 20px;
        text-align: center;
    }

    .flat-code {
        font-size: 15px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
        display: block;
    }

    .area-grid {
        display: flex;
        justify-content: space-between;
        background: #f8f9fa;
        border-radius: 6px;
        padding: 8px 12px;
    }

    .area-box {
        text-align: center;
        width: 50%;
    }
    
    .area-box:first-child {
        border-right: 1px solid #ddd;
    }

    .area-box span {
        display: block;
        font-size: 10px;
        color: #888;
        text-transform: uppercase;
    }

    .area-box strong {
        display: block;
        font-size: 13px;
        color: #333;
        margin-top: 2px;
    }
    
    
    
    .gallery-card {
            background: #fff;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border-radius: 4px;
            overflow: hidden;
            width: 100%;
            max-width: 1200px; /* Limits width on huge screens */
            margin: 0 auto;
        }

        /* --- 2. Image Section Styling --- */
        .carousel-item {
            height: 550px; /* Adjust this height as needed */
            background-color: #000;
            
            /* SPEED FIX: Make the transition much faster (0.2s) */
            transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- 3. Sidebar Styling --- */
        .sidebar-col {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Vertically Center */
            align-items: center;     /* Horizontally Center */
            text-align: center;      /* Center Text */
            background-color: #fff;
        }

        .project-title {
            font-size: 16px;
            font-weight: 400;
            color: #231f20;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 2.5; /* Spacing between lines */
            margin-bottom: 30px;
        }

        /* --- 4. Navigation Arrows (Circles) --- */
        .nav-area {
            display: flex;
            gap: 15px; /* Space between arrows */
            margin-bottom: 40px;
        }

        .custom-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #ddd;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }

        .custom-arrow:hover {
            border-color: #000;
            background-color: #f8f8f8;
        }

        /* SVG Icon styling inside button */
        .custom-arrow svg {
            width: 12px;
            height: 12px;
            fill: #555;
        }

        /* --- 5. Vertical Menu Links --- */
        .menu-links a {
            display: block;
            text-decoration: none;
            color: #666;
            font-size: 15px;
            margin-bottom: 15px;
            transition: color 0.3s;
        }

        .menu-links a:hover, .menu-links a.active {
            color: #dc3545; /* Red Active Color */
        }

        /* --- Responsive Tweaks --- */
        @media (max-width: 991px) {
            .carousel-item {
                height: 300px;
            }
            .sidebar-col {
                padding: 30px 15px;
            }
            .project-title {
                line-height: 1.8;
                margin-bottom: 20px;
            }
        }
        
        .progress-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #dcb163; /* The Gold/Mustard color from your image */
    color: #ffffff;
    text-align: center;
    padding: 8px 0; /* Adjust height of bar here */
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

/* Optional: Mobile adjustment if text is too big on phone */
@media (max-width: 768px) {
    .progress-tag {
        font-size: 12px;
        padding: 6px 0;
    }
}


/* Custom Height Logic */
        .full-width-map {
            width: 100%;
            height: 500px; /* Desktop Height */
        }

        .full-width-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block; /* Removes tiny bottom gap */
        }

        /* Responsive: Make map a bit shorter on mobile if needed */
        @media (max-width: 768px) {
            .full-width-map {
                height: 350px;
            }
        }
        
     /* LOCATION SECTION */
/* Location section base */
.location-section{
    padding:60px 0;
    background:#f9f9f9;
}

/* Map */
.location-map iframe{
    width:100%;
    height:500px;
    border:0;
    border-radius:14px;
}

/* Content card */
.location-content{
    background:#fff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.location-content h2{
    font-size:16px;
    font-weight:500;
    color:#231f20;
    margin-bottom:14px;
}

.location-content p{
    font-size:14px;
    line-height:1.7;
    color:#000;
}

.location-list p{
    font-size:14px;
    margin-bottom:6px;
    color:#000;
}

/* Responsive height */
@media (max-width: 991px){
    .location-map iframe{
        height:320px;
    }
}

@media (max-width: 576px){
    .location-section{
        padding:40px 0;
    }
    .location-content{
        padding:20px;
    }
}




@media (max-width: 767px) {
    .project-inner-menu-details .project-menu-link {
        font-size: 15px;
    }
}

/* Very small mobiles */
@media (max-width: 413px) {
    .project-inner-menu-details .project-menu-link {
        font-size: 11px;
    }
}

