  /* --- CSS VARIABLES --- */
        :root {
            --navy: #0F172A;
            --navy-light: #1E293B;
            --gold: #D4AF37;
            --gold-light: #F3E5AB;
            --gray-bg: #F8F9FA;
            --gray-text: #64748B;
            --white: #FFFFFF;
            --shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.1);
            --radius: 16px;
            --transition: all 0.3s ease;
        }

        /* --- RESET & BASE --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--navy);
            line-height: 1.7;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); font-weight: 700; }
        p { color: var(--gray-text); font-weight: 400; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; height: auto; }

        /* --- UTILITIES --- */
        .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
        
        .section-padding { padding: 6rem 0; }
        .text-center { text-align: center; }
        
        .section-header { margin-bottom: 4rem; text-align: center; }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
        .section-header .divider { height: 3px; width: 80px; background: var(--gold); margin: 0 auto; }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-primary { background-color: var(--navy); color: var(--white); border: 2px solid var(--navy); }
        .btn-primary:hover { background-color: var(--gold); border-color: var(--gold); color: var(--navy); }
        .btn-outline { background: transparent; color: var(--white); border: 2px solid #CFAD66; }
        .btn-outline:hover { background: var(--white); color: var(--navy); }
        .btn-full { width: 100%; text-align: center; }

        /* --- NAVIGATION --- */
        nav {
            /* position: fixed; */
            /* top: 0; */
            width: 100%;
            background: rgb(20, 54, 34);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            padding: 1rem 0;
        }

        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: -0.5px;
            z-index: 1001;
        }
        .logo_1 span { color: var(--gold); }
        .logo_1 img { width:7rem; }

        .nav-links { display: flex; gap: 2rem; }
        .nav-links a { font-size: 0.9rem; font-weight: 500; color: #FFF; transition: color 0.3s; }
        .nav-links a:hover { color: var(--gold); }

        /* Mobile Menu Toggle (Hidden on Desktop) */
        .mobile-toggle { display: none; font-size: 1.5rem; color: #FFF; cursor: pointer; z-index: 1001; }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            min-height: 600px;
            background:url('../images/c_right2.webp');
            background-size: cover;
            background-position: top center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding-top: 80px; /* Offset for fixed nav */
        }

        .hero-content h1 { font-size: 4.5rem; color: var(--white); margin-bottom: 1rem; line-height: 1.1; }
        h1 { 
                font-size: 2.5rem !important;
                color: #000;
                margin-bottom: 1rem !important;
                line-height: 1.1;
            }
        .hero-content p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; letter-spacing: 1px; text-transform: uppercase; }
        .hero-buttons { display: flex; gap: 1.5rem; justify-content: center; }

        /* --- OVERVIEW --- */
        .overview { background-color: var(--white); }
        .overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .overview-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
        .overview-text h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
        
        .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; border-top: 1px solid #eee; padding-top: 2rem; }
        .stat h4 { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.5rem; }
        .stat span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

        /* --- HIGHLIGHTS --- */
        .highlights { background-color: var(--gray-bg); }
        .card-grid { display: grid; grid-template-columns: repeat(3, minmax(300px, 1fr)); gap: 2rem; }
        
        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        .feature-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--gold); }
        .feature-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
        .feature-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }

        /* --- PRICING --- */
        .price-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid #eee;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .price-card.premium { border: 2px solid var(--gold); transform: scale(1.05); z-index: 2; }
        .price-header { background: var(--navy); color: var(--white); padding: 2rem; text-align: center; }
        .price-header h3 { color: var(--white); font-size: 1.5rem; }
        .price-header .price { font-size: 2rem; color: var(--gold); margin-top: 0.5rem; }
        .price-body { padding: 2rem; flex-grow: 1; }
        .price-features li { list-style: none; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; color: var(--navy-light); }
        .price-features i { color: var(--gold); }
        .price-footer { padding: 0 2rem 2rem; }
        .floor-footer { padding:2rem 2rem; }

        /* --- GALLERY --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 1.5rem;
        }
        .gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; height: 100%; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .gallery-item:hover img { transform: scale(1.1); }
        .g-1 { grid-column: span 2; grid-row: span 2; }

        /* --- LOCATION --- */
        .location-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
        .map-frame { width: 100%; background-color: #eee; border-radius: var(--radius); overflow: hidden; }
        .location-list { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
        .location-item { display: flex; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #eee; }
        .location-item:last-child { border: none; }
        .loc-icon { min-width: 40px; height: 40px; background: var(--gray-bg); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; }

        /* --- CONTACT --- */
        .contact { background-color: var(--navy); color: var(--white); }
        .contact h2, .contact p { color: var(--white); }
        .contact p { opacity: 0.8; }
        .contact-form { 
            max-width: 600px;
            margin: 3rem auto 0;
            background: rgba(4, 4, 4, 0.5);
            padding: 3rem;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.78);
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-input { 
            width: 100%;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.62);
            border-radius: 8px;
            color: #FFF;
            font-family: inherit;
        }

        .form-input::placeholder { color: rgba(255,255,255,0.5); }
        .form-input:focus { outline: none; border-color: var(--gold); }

        .form-control{
            padding: 1rem;
            border: 1px solid rgb(181, 173, 173);
            width: 100%;
        }
        footer { background: #050d1a; color: rgba(255,255,255,0.4); padding: 2rem 0; text-align: center; font-size: 0.8rem; }
        .col-50{
            width: 50%;
        }
        .fxc{
            display: flex;
            flex-direction: column;
            align-self: center;
        }
        ul{
           list-style-type: decimal !important;
            padding-left: 2rem !important;
        }
        ul li{
            margin-bottom: 0.5rem;
        }
        /* --- MOBILE RESPONSIVE QUERIES --- */
        @media (max-width: 900px) {
            /* General */
            .section-padding { padding: 3rem 0; }
            .container { padding: 0 1.5rem; }
            .col-50{
                width: 100%;
            }
            .flex {
                display: flex;
                flex-direction: column;
            }
            .card-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
                gap: 2rem;
            }
            /* Nav */
            .mobile-toggle { display: block; }
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                box-shadow: 0 5px 10px rgba(0,0,0,0.05);
            }
            .nav-links.active { max-height: 400px; }
            .nav-links a { padding: 15px; width: 100%; text-align: center;color:#000; border-bottom: 1px solid #f0f0f0; }

            /* Hero */
            .hero { background-attachment: scroll; /* Fixes mobile jitter */ }
            .hero-content h1 { font-size: 1.5rem !important;}
            .hero-buttons { flex-direction: column; width: 100%; gap: 1rem; }
            .hero-buttons .btn { width: 100%; text-align: center; }
            .hero-content p {
                font-size: 1rem !important;
                color: rgba(255,255,255,0.9);
                margin-bottom: 1.5rem !important;
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            /* Grids (Stacking) */
            .overview-grid, 
            .location-grid, 
            .gallery-grid { 
                grid-template-columns: 1fr; 
                gap: 2rem; 
            }

            /* Stats */
            .stats-grid { gap: 1rem; }
            .stat h4 { font-size: 1.8rem; }

            /* Pricing */
            .price-card.premium { transform: scale(1); margin: 10px 0; } /* Remove scale on mobile */
            
            /* Gallery */
            .gallery-grid { grid-template-rows: auto; }
            .g-1 { grid-column: span 1; grid-row: auto; height: 250px; }

            /* Location */
            .map-frame { height: 300px; }

            /* Contact */
            .contact-form { padding: 1.5rem; }
        }


/* Form Css */
        

   .bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  }
.bottom-nav {
    display: none;
}
.form-inner{
  background-image: url(../images/bg_1.webp);
  background-position: center;
}
.form-inner::before{
    position: absolute;
    content: '';
    background: url(../images/form-top.png);
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    left: 16px;
    top: 0px;
    height: 190px;
    width: 93%;
    background-size: cover;
    opacity: 1;
    background-position: center;
}
 #close{
      z-index: 999;
      position: absolute;
      top: 0;
      right: 20px;
      color: #fff;
  }

@media screen and (max-width: 499px) {
   .bottom-nav {
    display: block !important;
  }
  .bottom-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f37a21;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  }
  .bottom-nav>div{
    position: relative;
  }
  .bottom-nav-btn{
    position: absolute;
    bottom: 25px;
    right: 43%;
  }
  .bottom-nav .contact-four__call__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--zoomvilla-white, #FFFFFF);
    font-size: 30px;
    color: var(--zoomvilla-base, #D7984E);
    transition: all 0.4s ease-in-out;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  }
  .bottom-nav a{
    color: #f37a21;
  }
  .bottom-nav .contact-four__call__icon::before {
      content: "";
      position: absolute;
      top: 6px;
      left: 6px;
      bottom: 6px;
      right: 6px;
      border: 2px dashed var(--zoomvilla-base, #D7984E);
      border-radius: 50%;
      background-color: transparent;
      z-index: -1;
      animation: rotate 14s linear infinite;
  }

   .bottom-nav .contact-four__call__icon i{
    line-height: 2;
  }

  .bottom-nav .contact-four__call__icon::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    bottom: 6px;
    right: 6px;
    background-color:  #FFFFFF;
    border-radius: 50%;
    z-index: -2;
    transition: all 0.4s ease-in-out;
  }

  .bottom-nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 !important;
    list-style: none;
    padding: 0 !important;

  }
  .bottom-nav ul li{
    flex: 1;
    text-align: center;
    padding: 10px 0;
    box-sizing: border-box;
    list-style: none;
    
    
  }
  .bottom-nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
  }
    .form-inner::before{
        position: absolute;
        content: '';
        background: url(../images/form-top.png);
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
        left: 16px !important;
        top: 0px;
        height: 175px !important;
        width: 92% !important;
        background-size: cover;
        opacity: 1;
        background-position: center;
    }

  .contact-four__inner{
    background-color: transparent;
    padding: 0;
  }

  .form-inner .contact-four__inner{
    border:none;
  }
  .cf{
        margin-top: 5rem !important;
    }
    .fix-call-btn{
       display: none;
    }
    .fix-btn{
       display: none;
    }
    .fix-whatsapp{
      display: none;
    }
    .fix-whatsapp-bottom{
      /* display: none; */
      right: -130px !important;
    }

    .floorplantab ul li a{
      font-size: 11px !important;
    }
    .fix-call-btn img{
      width: 220px !important;
      
    }

    /* .header-form{
      display:none;
    } */
     .home-slider-btn_dn{
      display:none;
     }
     .header-form {
        position: absolute;
        bottom: 14% !important;
        right: 0% !important;
        z-index: 99;
    }

    .header-form .form-one__group{
      background: #ffffff8a;
      padding: 10px !important;
      border: none !important;
    }

}
.form-header{
  color: #234467;
  font-size: 1.5rem;
  background: #db8c23;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0 0 0 0 #db8c23;
}

.text-black{
    color: #000 !important;
}
.text-white{
    color: #fff !important;
}
.text-green{
    color: #0e751e !important;
}
.thank{
    text-align: center;
    padding: 2rem 0;
    font-size: 21px;
    font-weight: 600;
}
.spacing-1{
  padding:10rem 0 ;
}
.heading-1{
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}
.thank-heading{
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
}


.pt-8{
    padding-top: 8rem !important;
  }
.h-10 {
  height: 2.5rem !important;
}
.w-10 {
  width: 2.5rem !important;
}
#floating-form{
  z-index: 999;
  /* width: 45rem !important;
  height: 55rem; */
}
.cf{
  margin-top: 6rem;
}
.form-one__control{
  margin: 1rem 0;
}


.enq_btn {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn a:hover{
  color: #fff;
}

.enq_btn .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  color: #fff;
  margin: auto;
}

.btn.call-buttun {
  background-color: #007bff; /* Blue */
}

.btn.call-buttun:hover {
  background-color: #0056b3;
}

.btn.whatsapp-btn {
  background-color: #25D366; /* WhatsApp green */
}

.btn.whatsapp-btn:hover {
  background-color: #1DA851;
}
.fix-call-btn{
  position:fixed;
  right: 0;
  top: 65%;
  z-index: 99;
  text-align: right;
}
.fix-call-btn a{
  background: #f37a21;
  color: #fff;
  padding: 10px 15px;
  border-radius: 35px 0px 0px 35px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}
.fix-call-btn img{
      width: 300px ;
  }
.fix-msg{
  position: fixed;
  top: 51%;
  right: 0;
  z-index: 99;
}
.fix-msg h5{
  padding-right:10px;
}
.fix-btn{
  position:fixed;
  right: 0;
  top: 40%;
  z-index: 99;
}
.fix-whatsapp{
   position:fixed;
  right: 0;
  top: 50%;
  z-index: 99;
}

.fix-whatsapp-bottom{
  position:fixed;
  right: -16px;
  bottom: 15%;
  z-index: 99;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.offer-img-pulse {
    color: #333;
    font-weight: 500;
    text-align: left;
    border-radius: 40px 0px 0px 40px;
    box-shadow: 0 0 0 0 #923a17;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.new-launch{
    color: #333;
    font-weight: 500;
    text-align: left;
    box-shadow: 0 0 0 0 #923a17;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-size: 21px;
}

@-ms-keyframes pulse {
    to {
      box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);
    }
}

@keyframes pulse {
    to {
      box-shadow: 0 0 0 20px rgba(255, 232, 160, 0);
    }
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Form Css End */

/* =================================== Property Xpo Header And Other CSS[Start] ====================================== */

.topHeader .fixed-top {
  background: #222;
}
.topHeader .logo img {
  height: 40px;
}
.innerPage .searchWrapper {
  float: right;
  width: 70%;
}
.searchWrapper .propertyType {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 30px;
  background: rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.searchWrapper .searchField {
  width: 100%;
}
.searchWrapper .form-control {
  padding: 10px 80px 10px 90px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 50px;
  border: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.searchWrapper .searchBtn {
  width: 20%;
}
.searchWrapper .searchBtn button {
  top: 0;
  width: 75px;
  height: 50px;
  border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  background: #f29620 url(../../../new-style-css/img/search-icon2.png) center center no-repeat;
  position: absolute;
  right: 0;
  border: none;
}
.ht{
  margin-top: 6.5rem !important;
}
.searchWrapper {
  position:relative;
}
@media (max-width: 768px) {
  .extraMenu{
    display: none !important;
  }

  h3{
    line-height: 2.1rem !important;
    font-size: 26px !important;
  }
}
@media (min-width: 576px) {
    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
}
.justify-content-between {
    justify-content: space-between !important;
}
.d-flex {
    display: flex !important;
}
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-center {
    justify-content: center !important;
    z-index: 9 !important;
}
@media (min-width: 576px) {
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0 !important;
}
/* =================================== Property Xpo Header And Other CSS[End] ====================================== */