

:root {
    --navy: #0F1E35;
    --navy-light: #1A2D4C;
    --gold: #d97706;
    --gold-gradient: #d97706;
    --bg-light: #FBFBFB;
    --text-dark: #2C3E50;
    --text-muted: #6C7A89;
}

html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

section#hero [data-aos],
section#hero [data-aos^="fade"],
section#hero [data-aos^="slide"],
section#hero [data-aos^="zoom"] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
}

section#hero .col-lg-5,
section#hero .col-lg-7,
section#hero .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

body {
    font-family: 'Montserrat', 'Noto Sans Devanagari', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

.cinzel-font {
    font-family: "Tenor Sans","Helvetica Neue",Arial,sans-serif;
    letter-spacing: 0.5px;
}

.tracking-wide { letter-spacing: 1.5px; }
.tracking-widest { letter-spacing: 3px; }

/* Text & Bg Utilities */
.gold-text {
    background: #d97706;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.bg-navy { background-color: var(--navy) !important; }
.bg-navy-light { background-color: var(--navy-light) !important; }
.section-bg-light { background-color: var(--bg-light); }
.text-navy { color: var(--navy); }
.text-light-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-light-50 { color: rgba(255, 255, 255, 0.5) !important; }
.border-gold { border: 1px solid var(--gold) !important; }
.border-gold-subtle { border: 1px solid rgba(201, 163, 78, 0.3) !important; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }
.py-100 { padding: 100px 0; }

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--navy);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.gold-spinner {
    width: 60px; height: 60px;
    border: 3px solid rgba(201, 163, 78, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%; height: 4px;
    background: var(--gold-gradient);
    z-index: 99999;
    transition: width 0.1s;
}

/* Navbar */
.navbar {
    padding: 10px 0;
    transition: all 0.4s ease;
    background: #ffffffa3;
}
.navbar.scrolled {
    background: rgb(255 255 255 / 98%);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.navbar-nav .nav-link {
    color: rgba(40, 40, 40, 0.85) !important;
    font-weight: 500;
    font-size: 16px;
    margin: 0 6px;
    position: relative;
    transition: color 0.3s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    /* color: var(--gold) !important; */
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    /* background: var(--gold); */
    transition: width 0.3s;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #ffffff !important;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(201, 163, 78, 0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(201, 163, 78, 0.5);
    background: linear-gradient(135deg, #E5C378 0%, #C9A34E 100%);
}
.btn-outline-light-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 500;
    transition: all 0.3s;
}
.btn-outline-light-gold:hover {
    background: var(--gold);
    color: #000;
}
.btn-navy {
    background-color: var(--navy);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-navy:hover {
    background-color: var(--gold);
    color: #000;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('images/cover.png') center/cover no-repeat fixed;
    position: relative;
    /* margin-top: 77px; */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(15, 30, 53, 0.68) 0%, rgba(15, 30, 53, 0.56) 50%, rgba(15, 30, 53, 0.54) 100%); */
}
.relative-z { position: relative; z-index: 2; }
.badge-gold {
    background: rgb(217 119 6 / 11%);
    border: 1px solid var(--gold);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Glassmorphism Form */
.glass-form-card {
    background: rgba(15, 30, 53, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 163, 78, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.glass-form-card .form-control, .glass-form-card .form-select {
    border-color: rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
}
.glass-form-card .form-control:focus, .glass-form-card .form-select:focus {
    box-shadow: none;
    border-color: var(--gold);
}
.glass-form-card input::placeholder { color: rgba(255,255,255,0.6); }

/* Overview Section */
.overview-image-wrapper {/* padding: 20px; */}
.gold-frame {
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    /* border: 3px solid var(--gold); */
    z-index: -1;
    transform: translate(-15px, -15px);
}
.experience-badge {
    bottom: -20px; right: 20px;
    border: 2px solid var(--gold);
}

/* Residence Cards */
.residence-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.residence-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: var(--gold) !important;
}
.card-img-wrapper overflow-hidden img {
    transition: transform 0.6s ease;
}
.residence-card:hover img {
    transform: scale(1.08);
}

/* Amenities Grid */
.amenity-card {
    border: 1px solid #EAECEF;
    transition: all 0.3s ease;
}
.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 30, 53, 0.08) !important;
    border-color: var(--gold);
}
.icon-wrapper {
    width: 70px; height: 70px;
    background: rgba(201, 163, 78, 0.1);
    transition: background 0.3s;
}
.amenity-card:hover .icon-wrapper {
    background: var(--navy);
}

/* Gallery Section */
.btn-filter {
    background: #EAECEF;
    color: var(--navy);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.btn-filter.active, .btn-filter:hover {
    background: var(--gold-gradient);
    color: #000;
}
.gallery-card {
    height: 280px;
    cursor: pointer;
}
.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 30, 53, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.max-h-85vh { max-height: 85vh; }

/* Floor Plans Tabs */
.nav-pills .nav-link {
    background: #EAECEF;
    color: var(--navy);
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 400;
}
.nav-pills .nav-link.active {
    background: var(--navy);
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(15, 30, 53, 0.2);
}

/* Invest Cards */
.invest-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.invest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* Testimonials */
.testimonialSwiper { padding-bottom: 50px !important; }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.4; }
.swiper-pagination-bullet-active { background: var(--gold) !important; opacity: 1; width: 25px; border-radius: 5px; }

/* Accordion */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(201, 163, 78, 0.1);
    color: var(--navy);
    box-shadow: none;
}
.custom-accordion .accordion-button:focus { box-shadow: none; }

/* Floating Buttons */
.floating-group {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 9999;
}
.floating-btn {
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.floating-btn:hover { transform: scale(1.1); color: #fff; }
.wa-btn { background-color: #25D366; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); }
.call-btn { background-color: var(--gold); color: #000; box-shadow: 0 8px 20px rgba(201, 163, 78, 0.4); }
.top-btn {
    background-color: var(--navy);
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border: 1px solid var(--gold);
}
.top-btn.show { opacity: 1; pointer-events: auto; }

/* Hover effects */
.hover-gold:hover { color: var(--gold) !important; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fbfbfb;
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        border: 1px solid var(--gold);
    }
    .hero-title { font-size: 2.2rem; }
    .py-100 { padding: 60px 0; }

    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .row > [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .col-lg-6,
    .col-lg-5,
    .col-lg-7,
    .col-lg-12,
    .col-md-6,
    .col-md-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: auto;
    }

    .table-responsive table {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }

    .table-responsive td,
    .table-responsive th {
        white-space: normal !important;
    }

    section#hero [data-aos],
    section#hero .aos-init[data-aos],
    section#hero .aos-animate[data-aos],
    section#hero .col-lg-5,
    section#hero .col-lg-7 {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .hero-section,
    .hero-section .row,
    .hero-section .row.align-items-center,
    .hero-section .container,
    .hero-section .container-fluid {
        overflow-x: hidden;
    }

    .hero-section .row.align-items-center {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .hero-section {
        background-attachment: scroll;
    }
}

.hero-title {
  font-size: 32px;
}

.logo a img {
  width: 115px;
  height: 100%;
}
#heroForm i {
  color: white;
}

.lead {
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
}

.get_sec {
  color: white;
  font-size: 15px;
}
form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);}

  .get_secYour {
  color: white;
}
.about-hed {
  font-size: 32px;
}
.foolr-hed {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 1px;
}
.map-box img{
    width: 100%;
}

.navbar-brand.{
  justify-content: center;
}

.navbar-brand img{
  justify-content: center;
}

.navbar-brand img{
    width: 160px;
    height: 100%;
}
.navbar-brand{
   text-align: center;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}

.brand-color {
            color: #d97706 !important;
        }
        
        .brand-bg {
            background-color: #d97706 !important;
        }
        
        .badge-custom {
            background: transparent;
            border: 1px solid #d97706;
            color: #d97706;
            font-weight: 500;
        }
        
        .feature-card {
            background-color: #1e293b;
            border: 1px solid #334155;
            transition: all 0.3s ease;
        }
        
        .form-card {
            background-color: #1e293b;
            border-radius: 1rem;
        }
        
        .custom-input {
            background-color: #0f172a;
            border: 1px solid #334155;
            color: white;
        }
        
        .custom-input:focus {
            background-color: #0f172a;
            border-color: #d97706;
            color: white;
            box-shadow: 0 0 0 0.25rem rgba(217, 119, 6, 0.25);
        }
        
        /* Active field border color matching image */
        .custom-input-active {
            border: 1px solid #d97706;
        }

        .stat-divider {
            border-right: 1px dashed #475569;
        }
        .stat-divider:last-child {
            border-right: none;
        }

        @media (min-width: 1200px) {
    .display-4 {
        font-size: 2.5rem;
    }
}


/* privcy */
.policy-section{
    padding:80px 0;
}

.policy-box{
    background:#fff;
    padding:50px;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.policy-box h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.policy-box h3{
    font-size:22px;
    font-weight:700;
    margin-top:35px;
    margin-bottom:15px;
}

.policy-box p{
    line-height:1.9;
    font-size:16px;
}

.policy-box ul{
    padding-left:20px;
}

.policy-box ul li{
    margin-bottom:10px;
    line-height:1.8;
}

.contact-box{
    background:#f8f8f8;
    padding:25px;
    border-radius:8px;
    margin-top:20px;
}

@media(max-width:767px){
    button.btn.brand-bg.text-white.fw-bold.w-100.py-3.mb-3.fs-5.border-0 {
    font-size: 14px !important;
}
    .btn-gold {

    font-size: 14px;
}

.policy-box{
padding:25px;
}

.policy-box h1{
font-size:30px;
}

}