
        :root {
            --navy-dark: #0a192f;
            --navy-light: #172a45;
            --gold-start: #bf953f;
            --gold-mid: #fcf6ba;
            --gold-end: #b38728;
            --text-dark: #222222;
            --text-muted: #666666;
            --white: #ffffff;
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
        }

        /* --- GLOBAL --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--navy-dark);
        }

        p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        .section-padding {
            padding: 70px 0;
        }

        .bg-light-grey {
            background-color: #f8f9fa;
        }

        /* Dark Theme Sections */
        .bg-navy {
            background-color: var(--navy-dark);
            color: white;
        }

        .bg-navy h2,
        .bg-navy h3,
        .bg-navy h4,
        .bg-navy p,
        .bg-navy span {
            color: white !important;
        }

        .bg-navy .text-muted {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .section-title {
            font-size: 2.8rem;
            margin-bottom: 8px;
            line-height: 1.1;
        }

        .section-subtitle {
            font-size: 0.85rem;
            letter-spacing: 3px;
            color: var(--gold-end);
            text-transform: uppercase;
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        /* --- BUTTONS (COMPACT & CURVED) --- */
        .gold-btn-solid {
            background: linear-gradient(45deg, var(--gold-start), var(--gold-end)) !important;
            border: none;
            color: white !important;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
            transition: 0.3s;
            box-shadow: 0 4px 12px rgba(191, 149, 63, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        .gold-btn-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(191, 149, 63, 0.6);
            color: white;
        }

        .gold-btn-outline {
            background: transparent;
            border: 2px solid var(--gold-start);
            color: rgba(185, 125, 6, 0.711);
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            transition: 0.3s;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .gold-btn-outline:hover {
            background: var(--gold-start);
            color: white !important;
            border-color: var(--gold-start);
        }

        header.scrolled .gold-btn-outline {
            color: var(--navy-dark);
            border-color: var(--navy-dark);
        }

        header.scrolled .gold-btn-outline:hover {
            background: var(--navy-dark);
            color: white !important;
        }

        /* --- HEADER & OFFCANVAS --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 10px 0;
            transition: 0.4s;
             background: #090633 !important;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 8px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            height: 50px;
            filter: brightness(0) invert(1);
            transition: 0.3s;
        }

        header.scrolled .navbar-brand img {
            filter: none;
            height: 45px;
        }

        .navbar-toggler {
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 0;
        }

        header.scrolled .navbar-toggler {
            color: var(--navy-dark);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Mobile Menu (Offcanvas) */
        .offcanvas {
            background-color: var(--navy-dark);
            color: white;
            width: 300px !important;
        }

        .offcanvas-header .btn-close {
            filter: invert(1);
            opacity: 1;
        }

        .offcanvas-title {
            font-family: var(--font-heading);
            color: var(--gold-mid);
            font-size: 1.8rem;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 5px 10px;
            transition: 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--gold-end);
        }

        @media(min-width: 992px) {
            /*header.scrolled .nav-link {*/
            /*    color: var(--navy-dark) !important;*/
            /*}*/

            header.scrolled .nav-link:hover {
                color: var(--gold-end) !important;
            }

            .nav-link {
                margin: 0 12px;
            }
        }

        /* --- BOOTSTRAP HERO CAROUSEL --- */
        .carousel-item {
            height: 100vh;
            /*background-color: #000;*/
        }

       

        /* Darken image for text visibility */
        .carousel-caption {
            bottom: 30%;
            z-index: 10;
            text-align: left;
        }

        .hero-title {
            font-size: 4rem;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 20px;
        }

        .stat-item span {
            display: block;
            font-size: 12px;
            color: var(--gold-mid);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .stat-item strong {
            font-size: 22px;
            font-family: var(--font-heading);
            color: white;
        }

       .exp-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


        /* ===== BANK SECTION ===== */

        .bank-card {
            background: #fff;
            border-radius: 14px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: 0.35s ease;
        }

        .bank-card img {
            max-height: 42px;
            max-width: 100%;
            filter: grayscale(100%);
            /* opacity: 0.75; */
            transition: 0.35s ease;
        }

        .bank-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .bank-card:hover img {
            filter: grayscale(0);
            opacity: 1;
        }

        /* Navigation Arrows */
        .bank-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--gold-end);
            background: transparent;
            color: var(--gold-end);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .bank-arrow:hover {
            background: var(--gold-end);
            color: #fff;
        }


        /* --- FEATURE BOX --- */
        .feature-box {
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            border: 1px solid #eee;
            height: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        }

        .feature-box:hover {
            transform: translateY(-5px);
            border-color: var(--gold-start);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .feature-icon {
            font-size: 35px;
            color: var(--gold-end);
            margin-bottom: 15px;
            display: block;
        }

        .feature-box h4 {
            font-size: 1.2rem;
            color: var(--navy-dark);
            margin-bottom: 10px;
        }


        /* --- AMENITIES --- */
      .gallery-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}


        /* AMENITIES ICON CARDS */
.amenity-icon-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.amenity-icon-card i {
    font-size: 42px;
    color: var(--navy-dark);
    margin-bottom: 16px;
    display: block;
}

.amenity-icon-card p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: var(--navy-dark) !important;
}

.amenity-icon-card:hover {
    border-color: #c59a3a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
/* Arrows */
.amenities-prev,
.amenities-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #c59a3a;
    background: transparent;
    color: #c59a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.amenities-prev:hover,
.amenities-next:hover {
    background: #c59a3a;
    color: #000;
}
/* Swiper spacing fix */
.amenities-icon-swiper .swiper-slide {
    height: auto;
}

        /* --- TABS --- */
        .nav-pills {
            justify-content: center;
            margin-bottom: 40px;
            gap: px;
        }

        .nav-pills .nav-link {
            border: 1px solid #ddd;
            color: var(--navy-dark) !important;
            border-radius: 50px;
            padding: 10px 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
            transition: 0.4s;
            background: white;
        }

        .nav-pills .nav-link:hover,
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--gold-start), var(--gold-end));
            color: white !important;
            border-color: transparent;
            box-shadow: 0 5px 15px rgba(191, 149, 63, 0.4);
        }

        /* --- PRICE TABLE & EMI --- */
        .luxury-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .luxury-table th {
            background: var(--navy-dark);
            color: white;
            padding: 15px;
            font-weight: 400;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .luxury-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
        }

        .luxury-table tr:last-child td {
            border-bottom: none;
        }

        .price-tag {
            color: var(--navy-dark) !important;
            font-weight: 700;
            
            font-size: 1.2rem;
        }

        .emi-box {
            background: var(--navy-dark);
            padding: 30px;
            border-radius: 20px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .emi-label {
            font-size: 11px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }

        .emi-val {
            color: var(--gold-mid);
            font-weight: 600;
            float: right;
            font-size: 14px;
        }

        input[type=range] {
            width: 100%;
            accent-color: var(--gold-end);
            margin-top: 5px;
        }

        /* --- FAQ & FORM --- */
        .faq-accordion .accordion-item {
            border: 1px solid #eee;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
            background: white;
        }

        .faq-accordion .accordion-button {
            font-weight: 700;
            color: var(--navy-dark);
            font-size: 15px;
            padding: 18px;
            background: white;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background: #fffcf5;
            color: var(--gold-end);
            box-shadow: none;
        }

        .accordion-body {
            font-size: 14px;
            color: var(--text-muted);
            padding: 20px;
            background: #fff;
        }

        .contact-form-box {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--navy-dark);
        }

        .form-control {
            border: 1px solid #ddd;
            padding: 12px 15px;
            border-radius: 8px;
            background: #fcfcfc;
            font-size: 14px;
            color: #333;
        }

        .form-control:focus {
            border-color: var(--gold-start);
            box-shadow: none;
            background: white;
        }

        /* --- FOOTER --- */
        footer {
            background: #050e1c;
            color: #888;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }

        /* --- MOBILE BAR --- */
        .mobile-bar {
            position: fixed;
            bottom: 0;
            width: 100%;
            display: flex;
            z-index: 9999;
        }

        .mobile-btn {
            flex: 1;
            padding: 14px;
            text-align: center;
            color: white !important;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
        }

        /* --- POPUP --- */
        #popup {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 30px;
            color: #333;
            z-index: 10;
            cursor: pointer;
        }

        @media(max-width: 991px) {
            .hero-title {
                font-size: 2.8rem;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: flex-start;
            }

            .carousel-caption {
                bottom: 20%;
                left: 5%;
                right: 5%;
            }

            .section-padding {
                padding: 50px 0;
            }
        }
    /* =========================================================
   COMPLETE MOBILE RESPONSIVE FIX – JASHN ELEVATE
   Paste at END of <style>
========================================================= */

@media (max-width: 767px) {

  /* ===== GLOBAL FIX ===== */
  body {
    overflow-x: hidden;
  }

  .section-padding {
    padding: 45px 0;
  }

  /* ===== HERO SECTION ===== */
  .carousel-caption {
    bottom: 18%;
    left: 5%;
    right: 5%;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-stats {
    gap: 12px;
    padding-top: 15px;
    flex-wrap: wrap;
  }

  .stat-item strong {
    font-size: 18px;
  }

  .stat-item span {
    font-size: 10px;
  }

  /* ===== NAV PILLS / TABS (MOST IMPORTANT FIX) ===== */
  .nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .nav-pills::-webkit-scrollbar {
    display: none;
  }

  .nav-pills .nav-item {
    flex: 0 0 auto;
  }

  .nav-pills .nav-link {
    white-space: nowrap;
    font-size: 11px;
    padding: 8px 16px;
  }

  /* ===== EXPERIENCE SLIDER IMAGES ===== */
  .exp-img {
    height: 220px;
    border-radius: 12px;
  }

  /* ===== AMENITIES ===== */
  .amenity-card {
    height: 260px;
  }

  .amenity-info h4 {
    font-size: 1.2rem;
  }

  /* ===== PRICE TABLE ===== */
  .luxury-table th,
  .luxury-table td {
    font-size: 12px;
    padding: 10px;
  }

  /* ===== EMI CALCULATOR ===== */
  .emi-box {
    padding: 20px;
  }

  .emi-val {
    float: none;
    display: block;
    margin-top: 4px;
    font-size: 13px;
  }

  #emi-result {
    font-size: 1.6rem;
  }

  /* ===== FORMS ===== */
  .form-control {
    font-size: 14px;
    padding: 14px 16px;
  }

  .contact-form-box {
    padding: 25px;
  }

  .gold-btn-solid {
    padding: 12px 20px;
    font-size: 11px;
  }

  /* ===== OFFCANVAS MENU ===== */
  .nav-link {
    padding: 12px 10px;
    font-size: 14px;
  }

  /* ===== BANK & ARROWS ===== */
  .bank-arrow {
    width: 38px;
    height: 38px;
  }

}

/* ===== SMALL PHONES (VERY SMALL DEVICES) ===== */
@media (max-width: 380px) {

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .gold-btn-solid {
    font-size: 10px;
  }

}
/* HERO BASE */
#home {
    position: relative;
    margin-top:30px;
}

/* LEFT SIDE OVERLAY */
.hero-overlay {
    position: absolute;
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 20;
}

/* CARD – LIGHT & PREMIUM */
.overlay-card {
    width: 350px;
    background: rgba(255,255,255,0.96);
    border-radius: 20px;
    padding: 22px 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
}

/* TAG */
.overlay-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4efe6;
    color: #8a6d3b;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

/* TITLE */
.overlay-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: #0f1e2e;
    margin-bottom: 6px;
}

/* SUB */
.overlay-sub {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 14px;
}

/* PRICE */
.overlay-price {
    background: linear-gradient(135deg,#c59a3a,#e6c26b);
    color: #fff;
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* LOCATION */
.overlay-location {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}

.overlay-location i {
    color: #c59a3a;
    margin-right: 4px;
}

/* QR */
.overlay-qr {
    text-align: center;
    margin-bottom: 16px;
   
}

.overlay-qr img {
    width: 100%;
    border-radius: 10px;
    padding: 6px;
    background:var(--navy-dark);
    align-items: center;
    border: 1px solid #eee;
}

.overlay-qr span {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}

/* CTA */
.overlay-cta {
    display: flex;
    gap: 10px;
}

.overlay-btn {
    flex: 1;
    border-radius: 26px;
    padding: 9px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.overlay-btn.solid {
    background: #0f1e2e;
    color: #fff;
}

.overlay-btn.outline {
    background: transparent;
    border: 1px solid #c59a3a;
    color: #c59a3a;
}

/* NOTE */
.overlay-note {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    color: #777;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 16px;
    }

    .overlay-card {
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
}
/* =========================
   HERO – SINGLE SOURCE FIX
========================= */




#home {
    margin-top: 80px; /* header height compensation */
}


/* Image */
#heroCarousel img {
   
    object-fit: cover;
}



