 @font-face {
     font-family: 'Austin-News-Regular';
    src: url('fonts/Austin-News-Regular.ttf');
} 
@font-face {
     font-family: 'euclid-circular-a-regular';
    src: url('fonts/euclid-circular-a-regular.ttf');
}  
/*@font-face {*/
/*     font-family: 'Austin-News-Regular';;*/
/*    src: url('fonts/BegumSans-Regular.ttf');*/
/*} */

.section-wrapper {
  overflow-x: hidden; /* limits horizontal scroll only here */
}
/* Reset & basic */
    *{box-sizing:border-box;margin:0;padding:0;}
   html {
  scroll-behavior: smooth; /* Smooth scrolling */
}

html, body {
  height: 100%;
  font-family: 'euclid-circular-a-regular';
  color: #fff;
  
}
    
    a{color:inherit;text-decoration:none}

    /* Header / Hero */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 30px;
  transition: all 0.3s ease;
/*   background: transparent; */
    background: rgba(0, 0, 0, 0.95);

}

/* Background black only on mobile view */
@media (max-width: 768px) {
  .header {
    background: #000;
  }
}


.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.brand img,
.brand-right img {
/*   max-height: 50px;*/
  width: auto; 
  max-height: 61px;
    
}

nav {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 8px 18px;
  gap: 25px;
}

nav a {
  color: #000;
  font-size: 13px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "▲";
  color: #cc683a;
  font-size: 8px;
  margin-left: 6px;
  opacity: 0.6;
}

nav a:hover {
/*   color: #d49a50; */
}

/* Enquire Now button */
.enquire-btn {
  background: #64d37a;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.enquire-btn:hover {
  background: #4cb362;
}

/* Responsive - Mobile Menu */
/* .menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
} */
.menu-toggle, .menu-close {
  font-size: 28px;
  color: #000;
  cursor: pointer;
  display: none;
  z-index: 1001;
  color: #fff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-close {
    display: none;
  }

  nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
/*     height: 100vh; */
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  nav a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
  }

  /* When menu is open: hide hamburger, show close */
  .menu-toggle.hide {
    display: none;
  }

  .menu-close.show {
    display: block;
  }
}
/* @media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    border-radius: 0;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
} */

/* Default: Show desktop, hide mobile */
.hero-banner-desktop {
  display: block;
}
.hero-banner-mobile {
  display: none;
}

/* Mobile View: Show mobile banner only */
@media (max-width: 768px) {
  .hero-banner-desktop {
    display: none;
  }
  .hero-banner-mobile {
    display: block;
  }

  .hero-banner-mobile img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-banner-mobile .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #000;
    padding: 10px
  }
}

/* Hamburger icon hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
  background:#000;
}

/* --- Mobile View --- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background:#00000000;
            padding: 6px;
        border-radius: 10px;
  }

  /* Hide menu by default */
  .header nav {
    display: none;
    flex-direction: column;
    position: absolute;
/*     top: 70px; */
    right: 0;
    background: #000000c4;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Show when active */
  .header nav.active {
    display: flex;        padding: 100px 0 20px 0;
  }

  .header nav a {
    padding: 10px 0;
    font-size: 15px;
  }
}



  /* HERO SECTION */
.hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-banner-desktop {
  position: relative;
  width: 100%;
}

.hero-banner-desktop img {
  width: 100%;
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
      font-family:'Austin-News-Regular';;

}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.open-form-btn {
      background-image: linear-gradient(45deg, #011015 0%, #00171d 20%, #002a36 50%, #003a48 80%, #003f4e 100%);

  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.open-form-btn:hover {
  background: #28a745;
}

/* RIGHT SIDE STATIC FORM */
.hero-form {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 3;
  width: 350px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.form-container {
  position: relative;
}

.close-btn-static {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  z-index: 2;
}

.close-btn-static:hover {
  color: #000;
}

.popup-image img {
  width: 100%;
  display: block;
}

.popup-body {
  padding: 0 20px;
}

.popup-body h3 {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color:#000;
}

.form-group {
  margin-bottom: 15px;
}

.popup-body input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #007bff;
  padding: 6px 0;
  font-size: 14px;
  outline: none;
}

.submit-btn1 {
     /*background-image: linear-gradient(45deg, #011015 0%, #00171d 20%, #002a36 50%, #003a48 80%, #003f4e 100%);*/
   background:#cc683a;
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn1:hover {
  background: #28a745;
}

.checkbox {
  display: flex;
/*   align-items: flex-start;
  margin-top: 10px;
  gap: 10px; */
}

.checkbox label {
  font-size: 11px;
  line-height: 1.4;
  color: #333;
      margin-left: 10px;
      margin-top: 10px;

}

/* Popup Overlay (existing) */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  overflow: hidden;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  z-index: 2;
}



@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-form {
    position: relative;
    width: 90%;
    margin: 20px auto;
    right: auto;
    transform: none;
  }

  .hero-content {
    position: static;
    transform: none;
    text-align: center;
    color: #000;
    background: rgba(255,255,255,0.7);
    margin-top: 20px;
  }
}

.enquire-fixed-btn {
  position: fixed;
  right: 40px;
  top: 40%;
  transform: rotate(-90deg);
  transform-origin: right top;
  background: #cc683a;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 8px 8px 0 0;
  z-index: 9999;
  font-weight: 600;
}
.enquire-fixed-btn:hover {
  background: #000000;
  border:1px solid #fff;
}


    /* Slight dark header after scroll */
/*     .header.scrolled{background:rgba(0,0,0,0.5);box-shadow:0 6px 18px rgba(0,0,0,0.4)} */
/* Add black overlay background after scroll */
 .header.scrolled {
    background: rgba(0, 0, 0, 0.7); /* black overlay on scroll */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
    /* Enquire button (vertical) */
    .enquire-btn{position:fixed;right:8px;top:35%;transform:translateY(-50%);z-index:80}
    .enquire-btn button{writing-mode:vertical-rl;transform:rotate(180deg);background:#5b2b6f;padding:12px 10px;border-radius:4px;color:#fff;border:none;cursor:pointer}


/*****about sectoon********/
.slider-section {
  position: relative;
  width: 100%;
/*   height: 100vh; */
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 600px; 
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
   opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 400px;
}

/* ✅ White semi-transparent overlay behind text */
.text-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-overlay h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #000;
   font-family:'Austin-News-Regular';;
}

.text-overlay h1 span {
  font-weight: 300;
 
}

.text-overlay strong {
  font-weight: 700;
}

.text-overlay p {
  margin-top: 10px;
/*   letter-spacing: 2px; */
  color: #333;
  font-family:'Austin-News-Regular';;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 25px;
      background: #cc683a !important;
  border: 1px solid #fff;
  color: #fff !important;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
      border-radius: 8px;
}

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

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  user-select: none;
}

.arrow:hover {
  color: #ccc;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .text-overlay {
    padding: 20px;
    max-width: 90%;
  }

  .text-overlay h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 8px 18px;
    font-size: 14px;
  }
}



/*******interest form******/
.express-section {
  position: relative;
  width: 100%;
/*   height: 100vh; */
  background: url('images/interest-background.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
@media (max-width: 768px) {
  .express-section {
    background:#000;
  }
}
/* Background Zoom Animation */
.express-section {
  overflow: hidden; /* Ensures zoom doesn't overflow edges */
  background-size: 100%;
  transition: background-size 2s ease-out;
}

.express-section.bg-zoom {
  background-size: 115%;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
/*   max-width: 1200px; */
/*   gap: 50px;  */
 
}

.textinner{
      margin: 100px 20px;
/*     line-height: 2; */
}
/* LEFT SIDE */
.left-side {
  flex: 1;
  text-align: left;
}

.left-side h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
    font-family:'Austin-News-Regular';
    font-weight: 400;

}

.left-side strong {
  font-weight: 400;
}

.links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  margin: 8px 0;
  transition: color 0.3s;
}

.links a:hover {
  color: #f9cc65;
}

.socials {
  margin-top: 30px;
}

.socials a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.socials a:hover {
  color: #f9cc65;
}

/* RIGHT SIDE FORM */
.right-side {
  flex: 1;
}

.interest-form {
  width: 100%;
  max-width: 500px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 0.8rem;
/*   letter-spacing: 2px; */
  margin-bottom: 5px;
  color: #fff;
}

input, select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #888;
/*   padding: 8px 0; */
  color: #000;
  font-size: 1rem;
  outline: none;
}

.form-group1 input {
  color: #fff!important;
}

.phone-group {
  display: flex;
  gap: 10px;
/*   align-items: flex-end; */
}

.fixed-code {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid #888;
/*   padding: 8px 0; */
  width: 50px;
  text-align: center;
}
.mobile-field {
  flex: 1;
}

.terms {
  font-size: 0.8rem;
  margin-top: -10px;
  color: #bbb;
}

.terms a {
  color: #f9cc65;
  text-decoration: none;
}

.submit-btn {
  width: 100%;
  margin-top: 25px;
  padding: 12px 20px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  border: none;
  color: #fff;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.submit-btn:hover {
  background: rgba(255,255,255,0.4);
  color: #000;
}

/* Scroll Animation Hidden states */
.hidden-left,
.hidden-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 2s ease-out;
}

/* Left animation */
.hidden-left {
  transform: translateX(-50px);
  background:#000;
}

/* Responsive fix - no gap on small screens */
@media (max-width: 768px) {
  .hidden-left,
  .hidden-right {
    transform: translateX(0);
  }
}


.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .left-side, .right-side {
    width: 100%;
  }
  .left-side h1 {
    font-size: 2rem;
  }
  .interest-form {
    max-width: 100%;
  }
}
/* Mobile layout adjustment */
@media (max-width: 768px) {
  .content {
    display: flex;
    flex-direction: column-reverse; /* Reverse order so form shows first */
  }

  
  .left-side, 
  .right-side {
    width: 100%;
    text-align: center;
  }

  .left-side .links {
    margin-top: 20px;
  }

  .textinner {
    margin: 50px 20px;
  }
}
/* Default: show desktop title, hide mobile title */
.desktop-title {
  display: block !important;
}
.mobile-title {
  display: none !important;
}

/* On mobile: reverse visibility */
@media (max-width: 768px) {
  .desktop-title {
    display: none !important;
  }
  .mobile-title {
    display: block !important;
  }
}


/**************configureation*******/
.floorplan-section {
  width: 100%;
  padding: 50px 5%;
  background: #fff;
  font-family:'Austin-News-Regular';;
}

.tab-container {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 30px;
}

.tab {
  background: none;
  border: none;
  font-size: 18px;
  padding-bottom: 10px;
  cursor: pointer;
  font-weight: 500;
  color: #888;
  transition: 0.3s;
}

.tab.active {
  border-bottom: 2px solid #000;
  color: #000;
  font-weight: 600;
}

.floorplan-slider {
  position: relative;
  overflow: hidden;
}

.floorplan-content {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: 0.6s ease;
}

.floorplan-content.active {
  display: flex;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {opacity: 0; transform: translateX(50px);}
  to {opacity: 1; transform: translateX(0);}
}

.floorplan-info {
  flex: 1;
  color: #000;
/*   padding-left: 50px; */
}

.floorplan-info h2 {
  font-size: 26px;
  font-weight: 400;
/*      background-image: linear-gradient(45deg, #011015 0%, #00171d 20%, #002a36 50%, #003a48 80%, #003f4e 100%);
 */
  margin-bottom: 20px;
}

.floorplan-info h2 span {
  color: #000;
  font-weight: 600;
}

.floorplan-info p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #222;
}

.floorplan-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.floorplan-image img {
  width: 100%;
  border-radius: 6px;
  filter: blur(3px);
  transition: 0.3s ease;
}

.floorplan-image:hover img {
  filter: blur(1.5px);
}

.cta-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
     /*background-image: linear-gradient(45deg, #011015 0%, #00171d 20%, #002a36 50%, #003a48 80%, #003f4e 100%);*/
     background:#c30010;
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #000;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 30px;
  color: #615c5c;
  cursor: pointer;
  transition: 0.3s;
  z-index: 2;
}

.arrow:hover {
  color: #000;
}

/* .arrow.left { left: -30px; }
.arrow.right { right: -30px; } */

.tab-content { display: none; }
.tab-content.active { display: block; }

@media (max-width: 768px) {
  .floorplan-content { flex-direction: column; }
  .arrow.left { left: 10px; }
  .arrow.right { right: 10px; }
}
/****************amenities section of mobile*********/
/* Hide desktop section on mobile */
@media (max-width: 767px) {
  .desktop-amenities {
    display: none !important;
  }
}

/* Hide mobile section on desktop */
@media (min-width: 768px) {
  .mobile-amenities {
    display: none !important;
  }
}

/* ===== Mobile Amenities Section ===== */
.mobile-amenities {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
/*   font-family: 'fonntsBegum'; */
}

.mobile-amenities h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mobile-amenities p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 25px;
}

/* Amenities horizontal scroll */
.amenities-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
  padding-bottom: 15px;
  scrollbar-width: none; /* hide scrollbar */
}

.amenities-slider::-webkit-scrollbar {
  display: none;
}

.amenity {
  background: #1a1a1a;
  border-radius: 10px;
  flex: 0 0 80%;
  scroll-snap-align: start;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.amenity img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.amenity h3 {
  padding: 12px 0;
  font-size: 16px;
  color: #f9cc65;
  font-weight: 500;
}

/* Smooth scrolling */
.amenities-slider {
  scroll-behavior: smooth;
}
.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.slider-buttons button {
  background-color: #f9cc65;
  color: #111;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-buttons button:hover {
  background-color: #fff;
  color: #111;
  transform: scale(1.1);
}
.desktop-amenities{
  background:#000;
  padding:70px 0;
}



/*********/
/* Default: hide both */
.desktop-only,
.mobile-only {
  display: none;
}

/* Show desktop version */
@media (min-width: 769px) {
  .desktop-only {
    display: inline-block;
  }
}

/* Show mobile version */
@media (max-width: 768px) {
  .mobile-only {
    display: inline-block;
  }
}


/*****[]project overview******/
.section{
  padding:80px 40px;
}

.project-overview {
/*   padding: 80px 5%; */
  background-color: #1a1815;
  color: #ffffff;
  font-family:'Austin-News-Regular';;
 
}

.overview-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

/* Left text content */
.overview-text {
  flex: 1 1 45%;
}

.overview-text h1 {
  font-size: 36px;
  font-weight: 200;
  margin-bottom: 10px;
  font-family:'Austin-News-Regular';
      text-transform: uppercase;
  background: linear-gradient(313deg, rgb(140, 84, 56) 0%, rgb(199, 106, 67) 50%, rgb(243, 183, 158) 100%) text;
    -webkit-text-fill-color: transparent;
}

.overview-text h3 {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  
}

.overview-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
/*   margin-bottom: 40px; */
  font-family:'euclid-circular-a-regular';
}

/* Features Grid */
.overview-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*gap: 2px 10px;*/
  margin-top: 20px;
}

.feature {
/*   display: flex;
  align-items: flex-start; */
  gap: 10px;
      padding: 10px;
}
.featureinner{
  padding: 10px;
      background: #343434;
}
.feature img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature p {
  font-size: 12px;
  line-height: 1.6;
}

/* Right Image */
.overview-image {
  flex: 1 1 45%;
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .overview-container {
    flex-direction: column;
  }

  .overview-text,
  .overview-image {
    flex: 1 1 100%;
  }

  .overview-text h1 {
    font-size: 32px;
  }

  .overview-features {
/*     grid-template-columns: 1fr; */
  }
}
/* ---------- Overview Carousel (scoped) ---------- */
.overview-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

/* slides row */
.overview-carousel .oc-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* each slide should take full carousel width */
.overview-carousel .oc-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

/* image styling */
.overview-carousel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

/* arrows */
.oc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  z-index: 5;
  backdrop-filter: blur(4px);
}
.oc-prev { left: 12px; }
.oc-next { right: 12px; }

/* dots */
.oc-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  display: flex;
  gap: 8px;
  z-index: 6;
}
.oc-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.oc-dots button.active {
  background: #cc683a;
}

/* focus outline */
.oc-arrow:focus,
.oc-dots button:focus {
  outline: 2px solid rgba(249,204,101,0.6);
  outline-offset: 2px;
}

/* responsive tweaks */
@media (max-width: 480px) {
  .oc-arrow { padding: 6px 8px; font-size: 18px; }
  .oc-dots { gap: 6px; bottom: 8px; }
  .oc-dots button { width: 9px; height: 9px; }
}

/*******8fixed contact form****/
/* Contact Form - Default and Sticky Styles */
.contact-form-container {
    position: relative;
    bottom: 0;
    left: 120px;
    right: 120px;
    background: url('./rectangle-14.svg');
    background-size: cover;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 999;
      border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.contact-form-container.sticky-form {
    position: fixed;
    /* top: 80px; */
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    /* max-width: 1200px; */
    /* background: rgba(0, 0, 0, 0.9); */
    /* border-radius: 10px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
      background: #000;
    border: 1px solid #fff;
}

.contact-form-container.sticky-form-hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.sticky-form-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.sticky-form-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-form-container.sticky-form .sticky-form-close {
    display: flex;
}

.contact-form {
    max-width: 1524px;
    margin: 0 auto;
    position: relative;
}

.contact-form h3 {
/*     font-family: 'Poppins', sans-serif; */
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.form-fields {
     display: flex
;
    gap: 1rem;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
}

.form-field {
       background: white;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 0px 10px;
    min-width: 224px;
    flex: 1;
    /* line-height: 10px; */
    height: 32px;
}

.form-field label {
    display: block;
/*     font-family: 'Poppins', sans-serif; */
    font-size: 10px;
    color: #50b348;
    font-weight: 500;
}

.form-field input {
    border: none;
    outline: none;
/*     font-family: 'Poppins', sans-serif; */
    font-size: 12px;
    color: #333;
    width: 100%;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 9px;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-container label {
/*     font-family: 'Poppins', sans-serif; */
    font-size: 0.5625rem;
    color: white;
    font-weight: 500;
}

/********disclaimer popup****/
/* Overlay Background */
.popup-overlay1 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

/* Popup Box */
.popup-content1 {
  background: #fff;
  margin: 5% auto;
  padding: 25px 30px;
  border-radius: 8px;
  width: 70%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-family: Arial, sans-serif;
  color: #333;
  position: relative;
}

/* Close Button */
.close-btn1 {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #000;
}

/* Scrollbar */
.popup-content1::-webkit-scrollbar {
  width: 8px;
}
.popup-content1::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.popup-content1::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.popup-body {
  line-height: 1.6;
  font-size: 14px;
  margin-top: 10px;
}

.popup-content1 h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 768px) {
  #bottom-form1 {
    display: none !important;
  }
}
/* Hidden by default (for desktop) */
.mobile-enquire {
  display: none;
}

/* Visible only on mobile screens */
@media (max-width: 768px) {
  .mobile-enquire {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
/*     background-image: linear-gradient(45deg, #011015 0%, #00171d 20%, #002a36 50%, #003a48 80%, #003f4e 100%); */
    color: #fff;
    background: #cc683a;
    text-align: center;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .mobile-enquire a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
  }

  .mobile-enquire a:hover {
    opacity: 0.85;
  }
}

/* Optional: smooth scroll to form */
/***********about slider*****/
.left-panel {
            flex: 2;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .right-panel {
            flex: 1;
            background-color: #1a1a1a;
            color: #fff;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .property-header h1 {
            margin: 0;
            font-size: 2.2em;
            font-weight: 700;
            color: #333;
        }

        .address-info {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .address-info .icon {
            width: 24px;
            height: 24px;
            background-color: #007bff; /* Example icon color, replace with actual icon */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 0.8em;
            flex-shrink: 0;
        }

        .address-info p {
            margin: 0;
            font-size: 0.95em;
            line-height: 1.5;
            color: #555;
        }

        .address-info a {
            color: #007bff;
            text-decoration: none;
            font-weight: 600;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
        }

        .star {
            color: #ffc107; /* Gold star color */
            font-size: 1.2em;
        }

        .rating span {
            font-size: 1em;
            font-weight: 600;
            color: #333;
        }

        .rating a {
            color: #007bff;
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 500;
        }

        .map-container {
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
            height: 350px; /* Adjust height as needed */
            width: 100%;
            background-color: #e0e0e0; /* Placeholder for map */
            display: flex;
            justify-content: center;
            align-items: center;
            color: #777;
            font-size: 1.2em;
        }

        .map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .view-map-link {
            margin-top: 10px;
            font-size: 0.9em;
            font-weight: 600;
        }

        .view-map-link a {
            color: #007bff;
            text-decoration: none;
        }

        .connectivity-header h2 {
            margin: 0;
            font-size: 1.8em;
            font-weight: 600;
            color: #fff;
            border-bottom: 2px solid #555;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .connectivity-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .connectivity-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .connectivity-item .dot {
            width: 10px;
            height: 10px;
            background-color: #ff8c00; /* Orange dot color */
            border-radius: 50%;
            flex-shrink: 0;
        }

        .connectivity-item .text {
            display: flex;
            justify-content: space-between;
            width: 100%;
            font-size: 1.05em;
            color: #e0e0e0;
        }

        .connectivity-item .location-name {
            font-weight: 500;
        }

        .connectivity-item .distance {
            font-weight: 400;
        }

        @media (max-width: 900px) {
            .container {
                flex-direction: column;
                width: 95%;
                margin-top: 20px;
            }

            .left-panel, .right-panel {
                padding: 20px;
            }

            .property-header h1 {
                font-size: 1.8em;
            }

            .connectivity-header h2 {
                font-size: 1.5em;
            }
        }

        @media (max-width: 600px) {
            .left-panel, .right-panel {
                padding: 15px;
            }

            .property-header h1 {
                font-size: 1.5em;
            }

            .address-info p, .rating span, .rating a, .view-map-link a, .connectivity-item .text {
                font-size: 0.9em;
            }

            .connectivity-header h2 {
                font-size: 1.3em;
            }
        }


/**amenities*****/
.amenities-section {
            padding: 60px 0;
        }

        .amenity-card {
background-color: #35353566;
          border-radius: 12px;
            padding: 20px;
/*             margin-bottom: 25px; */
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
          margin-bottom:20px;
        }

        .amenity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            background-color: #353535; /* Darker on hover */
        }

        .amenity-icon {
            font-size: 20px;
            color: #cc683a;
            margin-bottom: 15px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
/*             background: rgba(160, 82, 45, 0.2);  */
background:#fff;
        }

        .amenity-card h3 {
           font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .amenity-card p {
            font-size: 0.95rem;
            color: #ccc;
            line-height: 1.6;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 50px;
            text-align: center;
        }



.config-wrap1 {
    text-align: center;
    border-top: 2px solid #cc683a;
    border-bottom: 2px solid #cc683a;
    padding: 20px 0;
    height: 176px;
    border-radius: 60px;
    margin-bottom: 20px;
    transition: 0.5s;
}

.config-wrap1:hover {
    border-color: #d0d0d0;
    box-shadow: 0 10px 8px -6px rgba(0,0,0,0.5);
    transform: translateY(-10px);
}

.config-wrap1 h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #fff;
    font-family:'PlayfairDisplay-Regular';
}

.config-line {
    height: 1px;
    background: #cc683a;
    width: 50px;
    margin: 12px auto;
}
