@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


/* ----------------------------
   Global CSS
----------------------------- */
:root {
  --primary-color: #A888B8;
}

body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}
/* .main-menu,
.menu-list li a {
  font-family: 'Helvetica Neue', sans-serif;
} */
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
  color: #000000;
}
h2{
  font-size: 36px;
  font-weight: 500;
}
/* Links */
a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
}
p{
  font-size: 18px;
}
a:hover {
  color: var(--primary-color);
}


/* Responsive scaling */
@media (max-width: 992px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 1.3rem;
  }
}

/****Custom Css***/
.color-secondary{
  color: #e6cf84;
}
.sec_padding {
  padding: 80px 0;
}


.img-radius {
  border-radius: 20px;
}

.color-title {
  color: var(--primary-color);
}

.sticky-img {
  position: sticky;
  top: 120px;
}
.prm-btn{
  padding: 12px 23px;
  border-radius: 0;
  border: 0;
  background-color: #1E1E1E;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.prm-btn:hover{
  color: #fff;
  transform: scale(1.05);
}
ul li{
  color: #000000;
  line-height: 2.5rem;
  font-size: 18px;
}
/***Main Menu***/
/* ================= BASE ================= */
.main-menu {
  border-bottom: 1px solid #C4C4C4;
  background: #fff;
  padding: 14px 0;
  position: relative;
  z-index: 1000;
}

.menu-wrapper {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= MENU LIST ================= */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
}

.menu-list li a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}

.menu-list li a:hover {
  color: var(--primary-color);
}

.highlight {
  font-weight: 600;
}

/* ================= LOGO ================= */

/* ================= ICONS ================= */
.menu-icon {
  min-width: 40px;
}

.menu-icon i {
  font-size: 16px;
  color: #000;
}

/* ================= HAMBURGER ================= */
.hamburger {
  width: 26px;
  height: 2px;
  background: #000;
  display: block;
  position: relative;
}

.hamburger::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #000;
  position: absolute;
  top: -7px;
  left: 0;
}

/* Disable third bar on desktop */
.hamburger::after {
  display: none;
}
/* ================= SEARCH PANEL ================= */
.search-panel {
  position: fixed;
  top: 0;
  right: -120%;
  width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.08);
  transition: right 0.4s ease;
  z-index: 2000;
  padding: 25px;
}

.search-panel.active {
  right: 0;
}

.search-header h5 {
  font-size: 18px;
  letter-spacing: 1px;
}

.search-body {
  margin-top: 30px;
}

.search-body input {
  height: 48px;
  font-size: 15px;
  border-radius: 0;
}

/* ================= DESKTOP ================= */
@media (min-width: 992px) {

  .mobile-logo {
    display: none;
  }

  .center-menu {
    display: flex !important;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  /* Hide desktop menu & search */
  .center-menu,
  .menu-icon:last-child {
    display: none !important;
  }

  /* Mobile logo */
  .mobile-logo {
    display: block;
  }

  .mobile-logo h2 {
    width: 46px;
    height: 46px;
  }

  /* Mobile menu */
  .mobile-menu {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 20px 0;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-menu li {
    padding: 12px 0;
  }

  .mobile-menu a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
  }
   .hamburger {
    width: 26px;
    height: 2px;
    background: #000;
    position: relative;
  }

  .hamburger::before,
  .hamburger::after {
    content: "";
    width: 26px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
  }

  .hamburger::before {
    top: -8px;
  }

  .hamburger::after {
    top: 7px;
    display: block;
  }
}

/***********************
************************/
/* ================= Banner ================= */

.banner-section{
  padding-top: 50px;
}
.banner-section .banner-heading .color-prime{
  font-size: 80px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 300;
}
.banner-section .banner-heading img{
  margin-top: -36px;
    width: 225px;
}
.banner-section .banner-desc{
  font-size: 22px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin-top: 0px;
}
.banner-section .banner-image{
  margin: 30px 0 30px;
}
.banner-section .banner-cont-2 p{
  width: 60%;
  margin: auto;
  font-size: 18px;
  color: #000;
  line-height: 2em;
}
/*****************Highlights********************/
.highlights-section{
  overflow-x: hidden;
}
.highlights-section .container{
    background: #A888B81A;
    padding:60px 0;
    border-radius:12px;
}

.highlight-value{
    font-size:32px;
    font-weight:600;
    color:var(--primary-color);
    margin-bottom:6px;
}

.highlight-text{
    font-size:18px;
    color:#000;
    margin:0;
}
 .highlights-section .counter{
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 767px){
    .highlight-value{
        font-size:26px;
    }
 .highlights-section .counter{
        font-size:26px;
 }
}

.the-future-being-sec p{
  width: 83%;
}
/************Amenities  Section*************/

.amenities-stick{
    position: absolute;
    top: -48px;
    width: 120px;
    right: 20px;
}
/**********form  section******/
.form-design{
    width:100%;
}

.enquiry-card{
    background:#A888B81A;
    padding:30px;
    border-radius:18px;
    max-width:500px;
    margin:auto;
}

.form-design .form-control{
    height:52px;
    border-radius:8px;
    border:none;
    font-size:14px;
    padding:12px 16px;
}

.form-design .form-control::placeholder{
    color:#aaa;
}

.form-design .form-control:focus{
    box-shadow:none;
    border:1px solid #cfdfea;
}

.enquire-btn{
    background:#1c1c1c;
    color:#fff;
    height:52px;
    border-radius:8px;
    font-size:15px;
    font-weight:500;
}

.enquire-btn:hover{
    background:#000;
    color:#fff;
}

/* Mobile */
@media (max-width:767px){
    .enquiry-card{
        padding:22px;
    }
}

/****location map section****/
.location-map-sec iframe{
  border-radius: 20px;
}

.footer-section {
    background-color: #272727;
    padding: 60px 0 20px;
    color: #cfcfcf;
}

.footer-logo {
    max-width: 70px;
}

.footer-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-text {
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0px;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.subscribe-form .form-control {
    background-color: #6d6d6d;
    border: none;
    color: #ffffff;
    border-radius: 0px;
    padding: 15px !important;
    outline: none;
    box-shadow: none;
}

.subscribe-form .form-control::placeholder {
    color: #b0b0b0;
}

.btn-subscribe {
    background-color: #ffffff;
    color: #272727;
    font-weight: 500;
    border: none;
    border-radius: 0;
    margin-top: 20px ;
    padding: 11px 22px 10px;
}

.footer-social-links a img {
    width: 20px;
    margin-right: 12px;
    opacity: 0.8;
}

.footer-social-links a img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 15px;
    font-size: 13px;
    color: #9c9c9c;
}


/*********Popup *************/
.popup-23 .modal-dialog{
    max-width:420px;
}

.popup-content{
       background: #A888B880;
    backdrop-filter: blur(3px);

    border-radius:16px;
    border:none;
    padding:25px;
}

.popup-close{
    position:absolute;
    top:12px;
    right:12px;
    background:#000;
    opacity:1;
}

.popup-body{
    color:#fff;
}

.popup-logo span{
    display:inline-block;
    width:56px;
    height:56px;
    border-radius:50%;
    border:2px solid #ffd84d;
    color:#ffd84d;
    font-weight:700;
    line-height:52px;
}

.popup-title{
    font-weight:300;
    letter-spacing:1px;
    font-size: 26px;
}

.popup-title span{
    color:#ffd84d;
}

.popup-form .form-control{
    height:48px;
    border-radius:8px;
    border:none;
    font-size:14px;
}

.popup-form .form-check-label{
    font-size:14px;
    line-height:1.4;
}

.popup-btn{
    background:#1c1c1c;
    color:#fff;
    height:50px;
    border-radius:8px;
}

.popup-btn:hover{
    background:#000;
}
.popup-23 .modal-dialog{
    max-width: 520px;
}
.popup-close{
  color: #fff;
}
.btn-close{
      width: 1.8em;
    height: 1.5em;
}
.btn-close:hover{
  color: #fff;
}
@media (max-width: 767px){
    .popup-23 .modal-dialog{
        max-width: 95%;
    }
    .banner-section .banner-heading .color-prime{
      font-size: 35px;
    }
    .banner-section .banner-heading img {
    margin-top: 0px;
    width: 90px;
}
.banner-section .banner-desc {
    font-size: 12px;
    margin-top: 0px;
}
.banner-section .banner-cont-2 p {
    width: 100%;
    font-size:16px;
}
.banner-section .banner-image {
    padding: 0;
        margin: 15px 0 20px;
}
.sec_padding {
  padding: 50px 0;
}
.highlight-text{
  font-size: 16px;
}
p{
  font-size: 16px;
}
ul li{
  font-size: 16px;
}
}

/* amenitoes section*/

/* ===== Amenities Section ===== */
.amenities-section img{
    border-radius: 12px;
}

/* Stick image (center image overlay if needed) */
.amenities-stick{
    position: absolute;
    top: -47px;
    right: 35px;
    width: 90px;
}

/* ===== MOBILE SCROLL ===== */
@media (max-width: 767px){

    .amenities-section .row{
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .amenities-section .row::-webkit-scrollbar{
        display: none;
    }

    .amenities-section .col-12{
        flex: 0 0 80%;
        max-width: 80%;
        scroll-snap-align: center;
        padding-right: 15px;
    }

    .amenities-section img{
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    /* prevent container cutting scroll */
    .amenities-section .container{
        overflow: visible;
    }
}

/*****Buttons*****/
.sidebar-btn{
  padding: 12px 23px;
  border-radius: 0;
  border: 0;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  position: fixed;
    top: 50%;
    right: -52px;
    transform: rotate(270deg);
}
.sidebar-btn:hover{
  color: #fff;
}
.mobile-bottom-buttons{
  position: fixed;
  bottom: 0;
  display: flex;
  width: 100%;
  border-top: 1px solid #b0b0b04f;
}
.mobile-bottom-buttons .mob-btn-1{
   padding: 12px 23px;
  border-radius: 0;
  border: 0;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  width: 100%;
  display: inline-block;
  text-align: center;
}
.mobile-bottom-buttons .mob-btn-1:hover{
  color: #fff;
}
.mobile-bottom-buttons .mob-btn-2{
   padding: 12px 23px;
  border-radius: 0;
  border: 0;
  background-color: #1e1e1e;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  width: 100%;
  display: inline-block;
  text-align: center;
}
.mobile-bottom-buttons .mob-btn-2:hover{
  color: #fff;
}

@media(max-width: 767px){
   .sidebar-btn{
    display: none;
   }
   .location-map-sec iframe{
    height: 280px;
}
.amenities-stick{
  width: 80px;
}
.footer-social-links.mt-3 {
    margin-bottom: 50px !important;
}
}

@media(min-width:767px){
  .mobile-bottom-buttons{
    display: none;
  }
}
@media(min-width:768px) and (max-width:1200px){
  .banner-section .banner-heading .color-prime {
    font-size: 69px;
  }
  .banner-section .banner-heading img {
    margin-top: -27px;
    width: 175px;
}
}

.form-check-input:checked {
    background-color: #1c1c1c !important;
    border-color: #1c1c1c !important;
}
button.btn-close.popup-close {
    background-color: #1c1c1c;
}
