* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title-h2 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-optical-sizing: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.title-h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* HEADER */

.header {
  width: 100%;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
}

.container.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  max-width: 160px;
}

/* NAVIGATION */

.nav-list {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-list a:hover {
  color: #c5a059;
}

.call-btn.nav-call {
  display: none;
}

/* CONTACT BUTTONS */

.header-contact {
  display: flex;
  align-items: center;
}

.call-btn {
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-btn svg {
  width: 19px;
  height: 19px;
  animation: 2s ease 0s infinite normal none running wiggle;
}

.gradient-btn {
  background: linear-gradient(
    -45deg,
    #f3e2c2,
    #e0b84f,
    #fff6d5,
    #d4a93a,
    #f3e2c2
  );
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite;
  animation-delay: 2s;
  padding: 10px 15px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1.5px;
  border-radius: 3rem;
  width: 100%;
}

.whatsapp-sticky {
  position: fixed;
  bottom: 30px; /* Distance from bottom */
  right: 30px; /* Distance from right */
  width: 60px;
  height: 60px;
  background-color: #25d366; /* WhatsApp Brand Color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Keeps it above everything else */
  transition: transform 0.3s ease;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Optional: Pulse effect to draw attention */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-sticky {
  animation: pulse 2s infinite;
}

@keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes wiggle {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}

/* --- Reusable Section CTA Styles --- */
.section-cta-container {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start; /* Aligns left by default */
}

/* For sections where text is centered (like Amenities or About) */
.center-cta {
  justify-content: center;
}

.section-btn {
  background: #1f3f8b; /* Your Primary Navy */
  color: #fff;
  padding: 12px 28px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.section-btn:hover {
  background: #c5a059; /* Your Gold Accent */
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* MOBILE MENU */

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

/* HERO SECTION */

/* Breadcrumb */

.breadcrumb {
  position: absolute;
  top: 20px;
  left: 5%;
  z-index: 2;
}

.breadcrumb ul {
  display: flex;
  gap: 10px;
  list-style: none;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-project {
  color: #f2c94c;
}

/* HERO CONTENT */

/* --- Hero Layout --- */
.hero {
  display: flex;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-left {
  flex: 1.8; 
  position: relative;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right {
  flex: 1;
  background: #f3e2c2; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-box {
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.hero-box h1 {
  font-size: 30px;
  color: #1f3f8b; 
  margin-top: 20px;
  line-height: 1.2;
}

.hero-box .sub {
  color: #1f3f8b;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 20px 0 40px;
  font-size: 22px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px;
  gap: 10px;
}

.stat-col span {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  color: #1f3f8b;
}

.stat-col h2 {
  font-size: 29px;
  color: #1f3f8b;
}

.stat-divider {
  width: 3px;
  height: 100px;
  background: #1f3f8b;
}

.location-desc {
  font-size: 17px;
  font-weight: 700;
  color: #1f3f8b;
  margin-bottom: 30px;
}

.sector-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #1f3f8b;
}

.sector-line .line {
  flex: 1;
  height: 2px;
  background: #1f3f8b;
}

.sector-text {
  font-weight: 700;
  font-size: 14px;
  color: #1f3f8b;
  white-space: nowrap;
}

/* --- Bottom Amenities Bar --- */
.amenities-bar {
  position: absolute;
  bottom: 0;
  width: 60%;
  display: flex;
  justify-content: space-around;
  padding: 15px 10px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  text-align: center;
}

.amenity-item p {
  color: #fff;
  font-size: 11px;
  margin-top: 5px;
  font-weight: 500;
}


/* LOCATION */
.location {
  font-size: 14px;
  margin: 20px 0;
  color: #444;
}

/* BUTTON */
.hero-btn {
  background: #1f3f8b;
  color: #f3e2c2;
  padding: 16px 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 17px;
}

.hero-btn:hover {
  background: #c5a059;
}

/* SECTOR */
.sector {
  font-weight: 600;
  letter-spacing: 1px;
  color: #1f3f8b;
}

.project-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.project-highlights li {
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-left: 22px;
}

.project-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4fc3f7;
  font-weight: bold;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #0e56a8;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #d1b464 0%, #9f7928 50%, #5d4a1f 100%);

  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

/* Highlights */

/* Button */

.cta-btn {
  margin-top: 20px;

  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #000;
  border: none;
  padding: 14px 26px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 50px;
}

/* GALLERY SECTION */

.gallery-section {
  padding: 80px 0;
  background: #f5f7fb;
}

.section-title span {
  padding-left: 70px;
  position: relative;
}

.section-title span::before {
  content: "";
  width: 60px;
  height: 3px;
  background: #f4a000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

/* ITEMS */

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */

.gallery-item:hover img {
  transform: scale(1.08);
}

/* SIZE VARIATIONS */

.gallery-item.big {
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* OVERVIEW SECTION */

.overview {
  padding: 70px 0;
  background-color: #eeeff0;
  background: url("images/bg/one-dxp-bg.webp");
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

/* SECTION TITLE */

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* SUMMARY GRID */

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 50px;
  margin-top: 30px;
}

.summary-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}

.summary-item h4:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #2a66c7;
  display: block;
  margin-top: 8px;
}

.summary-item p {
  font-size: 15px;
  color: #333;
  margin-top: 8px;
}

/* FORM BOX */

.lead-form {
  background: #212529;
  padding: 30px;
  color: #fff;
}

.form-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.form-title span {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  font-weight: 400;
}

/* FORM */

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.form-group input::placeholder {
  color: #ccc;
}

/* BUTTON */

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0e56a8 0%, #1f3f8b 100%);
  color: #fff;
  border: 1px solid #c5a059;
  padding: 14px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 4px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #d1b464 0%, #9f7928 50%, #5d4a1f 100%);
}

/* INTRODUCTION SECTION */

.introduction {
  padding: 70px 0;
  background: #f5f7fb;
}

/* TITLE */

.small-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  position: relative;
  margin-left: 62px;
  font-weight: 600;
}

.small-title:before {
  content: "";
  width: 4em;
  margin: 0;
  position: absolute;
  top: 50%;
  left: -5em;
  border-style: solid;
  border-width: 1px 0 0;
}

/* TEXT */

.introduction p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.introduction .small-title {
  font-size: 12px;
}

/* LINK */

.text-link {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  color: #c5a059;
}

/* HIGHLIGHTS SECTION */

.highlights {
  padding: 70px 0;
  background: #fff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* IMAGE */

.highlight-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

/* CONTENT */

.highlight-content {
  padding: 20px;
}

.highlight-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 30px;
}

/* orange underline */

.highlight-title::after {
  content: "";
  width: 60px;
  height: 3px;

  background: #c5a059;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* LIST */

.highlight-list {
  margin-top: 20px;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
}

.highlight-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4fc3f7;
}

/* AMENITIES SECTION */

.amenities-section {
  padding: 70px 0;
}

/* GRID */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* CARD */

.amenity-card-icons {
  background: #fff;
  padding: 40px 20px;
  border-radius: 6px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.amenity-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
    /* Glassmorphism Effect */
    background: rgba(15, 23, 42, 0.75); 
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    border-left: 3px solid #C5A059; /* Luxury Gold Accent Line */
    text-align: center;
}

.amenity-icons {
  display: flex;
  justify-content: end;
  margin-bottom: 5px;
}

.amenity-card-icons:hover {
  transform: translateY(-5px);
}

.amenity-card-icons:nth-child(even) {
  background: #d8d8d8;
  color: #0e56a8;
}

.amenity-card-icons:nth-child(odd) {
  background: #0e56a8;
  color: #fff;
}


/* ICON */

.amenity-card i {
  font-size: 34px;
  color: #0e56a8;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */

.amenity-card p {
  font-size: 15px;
  font-weight: 500;
}

/* Feature Amenities */

.feature-amenities-section {
  padding: 70px 0;
  background: #f5f7fb;
}

/* HEADER */

.amenities-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  padding-left: 50px;
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.subtitle:before {
  content: "";
  width: 40px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  top: 8px;
}

.title {
  font-size: 40px;
  color: #2d5aa6;
}

/* SLIDER */

.amenities-slider {
  /* display: flex;
  gap: 25px;
  overflow: hidden;
  scroll-behavior: smooth; */
  display: flex;
  gap: 20px;
  overflow-x: auto; /* Enables finger scrolling */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  scroll-snap-type: x mandatory; /* Makes cards 'snap' into place */
  scrollbar-width: none; /* Hides scrollbar for Firefox */
  /* padding: 10px 0; */
  padding: 10px 8px;
}

/* Hide scrollbar for Chrome/Safari */
.amenities-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */

.amenity-card {
  min-width: 33.33%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  padding: 40px 20px;

}

.amenity-card:hover {
  transform: translateY(-5px);
}

.amenity-card:nth-child(even) {
  background: #d8d8d8;
  color: #0e56a8;
}

.amenity-card:nth-child(odd) {
  background: #0e56a8;
  color: #fff;
}

.amenity-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ARROWS */

.slider-controls button {
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  background: #fff;
  cursor: pointer;
  margin-left: 10px;
  font-size: 20px;
}

/* PRICE SECTION */

.price-section {
  padding: 70px 0;
  background: #fff;
  text-align: center;
}

.price-section .section-heading {
  text-align: right;
}

/* TABLE WRAPPER */

.price-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

/* TABLE */

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.price-table th {
  background: #0e56a8;
  color: #fff;
  padding: 14px;
  font-size: 15px;
}

.price-table td {
  padding: 14px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
}

.price-table tr:hover {
  background: #f8f8f8;
}

/* BUTTON */

.price-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.price-btn:hover {
  background: #0e56a8;
}

/* MOBILE NOTE */

.scroll-note {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
  display: none;
}

/* LOCATION SECTION */

.location-section {
  padding: 70px 0;
  background: #f5f7fb;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* IMAGE */

.location-image img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* CONTENT */

.location-content {
  padding: 20px;
}

/* LIST */

.location-list {
  margin-top: 20px;
  list-style: none;
}

.location-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
}

.location-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0e56a8;
}

/* BROCHURE */

.brochure-section {
  background: #eef2f7;
  padding: 80px 0;
}

.brochure-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

/* LEFT IMAGE */

.brochure-image {
  background-color: #d8d8d8;
  flex: 1;
}

.brochure-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  padding: 30px;
}

/* RIGHT CONTENT */

.brochure-content {
  flex: 1;
  padding: 60px;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 50px;
}

.subtitle:before {
  content: "";
  width: 40px;
  height: 2px;
  background: #000;
  position: absolute;
  left: 0;
  top: 8px;
}

.title {
  font-size: 42px;
  color: #2d5aa6;
  line-height: 1.2;
  margin-bottom: 20px;
}

.brochure-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */

.brochure-btn {
  background: #e6e6e6;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.brochure-btn:hover {
  background: #2d5aa6;
  color: #fff;
}

/* RERA SECTION */

.rera-section {
  padding: 50px 0;
  background: #fff;
  /* text-align: center; */
  border-top: 1px solid #eee;
}

.rera-section .container {
  text-align: right;
}

/* TITLE */

.rera-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.rera-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c5a059;
  position: absolute;
  right: 0;
  bottom: -10px;
}

/* BOX */

.rera-box strong {
  color: #000;
}

.rera-box a {
  color: #c5a059;
  text-decoration: none;
  font-weight: 500;
}

.rera-box a:hover {
  text-decoration: underline;
}

/* MOBILE */

/* ABOUT SECTION */

.about-section {
  padding: 70px 0;
  background: #f5f7fb;
}

/* LINK */

.developer-link {
  color: #000;
  text-decoration: none;
}

.developer-link:hover {
  color: #c5a059;
}

/* TEXT */

.about-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
  text-align: justify;
}

/* MOBILE */

/* PROJECTS SECTION */

.projects-section {
  padding: 70px 0;
  background: #fff;
}

/* SLIDER */

.projects-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card a {
  text-decoration: none;
}

.projects-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects-title {
  position: relative;
  text-align: center;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card:hover .project-overlay {
  background-color: #0e56a8;
}

.project-card:hover .project-overlay h3,
.project-overlay p {
  color: #fff;
}

.project-card:hover .project-overlay p {
  color: #fff;
}

.project-card:hover .project-overlay .arrow {
  color: #fff;
}

/* IMAGE */

.project-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* INFO */

.project-overlay {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 35px 30px;
  width: 75%;
  text-align: center;
  transition: 0.4s;
}

.project-overlay h3 {
  color: #1f3f8b;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.project-overlay p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ARROW BUTTON */

.project-overlay .arrow {
  text-decoration: none;
  font-size: 26px;
  color: #1f3f8b;
  display: inline-block;
  transition: 0.3s;
}

.project-overlay .arrow:hover {
  transform: translateX(5px);
}

/* HOVER EFFECT */

.project-card:hover img {
  transform: scale(1.05);
  transition: 0.6s;
}

.project-card:hover .project-overlay {
  bottom: 50px;
}

/* TABLET */

/* DISCLAIMER */

.disclaimer-section {
  background: #111;
  padding: 60px 0;
}

.disclaimer-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.disclaimer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
  margin-bottom: 15px;
  text-align: justify;
}

/* MOBILE */

/* FOOTER */

.footer {
  background: #f5f7fb;
  padding: 40px 0;
  text-align: center;
}

/* LOGO */

.footer-logo img {
  width: 140px;
  margin-bottom: 20px;
}

/* LINKS */

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.footer-links a:hover {
  color: #c5a059;
}

/* COPYRIGHT */

.footer-copy {
  font-size: 14px;
  color: #555;
}

/* FIXED FORM */

.fixed-form {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

/* CALLBACK BAR */

.callback-bar {
  background: #0e56a8;
  padding: 12px;
}

#callback-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.callback-title {
  color: #fff;
  font-weight: 600;
  margin-right: 10px;
}

/* INPUT */

.input-field {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

/* BUTTON */

.callback-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.callback-btn:hover {
  background: linear-gradient(135deg, #d1b464 0%, #9f7928 50%, #5d4a1f 100%);
}

/* QUICK CONTACT */

.quick-contact {
  display: none;
  justify-content: center;
  background: #222;
}

.contact-btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.whatsapp {
  background: #25d366;
}

.enquire {
  background: #0e56a8;
}

.call {
  background: #333;
}

/* MOBILE */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2px 10px;
}

/* modal box */

.modal-box {
  background: #fff;
  width: 360px;
  padding: 50px 30px 30px;
  border-radius: 6px;
  position: relative;
  text-align: center;
}

/* gold header */

.modal-header {
  position: absolute;
  top: -39px;
  left: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(
      ellipse farthest-corner at right bottom,
      #fedb37 0%,
      #fdb931 8%,
      #9f7928 30%,
      #8a6e2f 40%,
      transparent 80%
    ),
    radial-gradient(
      ellipse farthest-corner at left top,
      #ffffff 0%,
      #ffffac 8%,
      #d1b464 25%,
      #5d4a1f 62.5%,
      #5d4a1f 100%
    );
  color: #fff;
  padding: 0px 16px;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 20px;
}

.modal-header span {
  font-size: 14px;
}

/* close button */

.modal-header .close-modal {
  cursor: pointer;
  font-size: 40px;
  font-weight: 100;
}

/* inputs */

.modal-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  font-size: 14px;
}

/* form text */

.form-note {
  font-size: 13px;
  color: #666;
  margin: 10px 0 20px;
  line-height: 1.5;
}

/* submit button */

.modal-submit {
  background: linear-gradient(135deg, #0e56a8 0%, #1f3f8b 100%);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.modal-submit:hover {
  background: linear-gradient(135deg, #d1b464 0%, #9f7928 50%, #5d4a1f 100%);
}

/* media query */

@media (max-width: 1200px) {
  .nav-list a {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 100vh; 
    height: 100dvh; 
    position: relative;
    display: block; 
  }

  .hero-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-right {
    position: relative;
    z-index: 2;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
  }

  .hero-box {
    background: #f3e2c2;
    padding: 25px 20px;
    width: 95%;
    max-width: 420px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .hero-box h1 {
    font-size: 25px;
    margin-top: 10px;
  }

  .hero-box .sub {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .stat-col h2 {
    font-size: 24px;
  }

  .location-desc {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 15px;
    margin-bottom: 15px;
  }

  .amenities-bar {
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 10; 
    padding: 10px 5px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }

  .amenity-item {
    flex: 1;
    padding: 0 5px;
  }

  .amenity-item svg {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 5px;
  }

  .amenity-item p {
    font-size: 9px !important;
    line-height: 1.2;
    margin-top: 2px;
  }

  .hero-right {
    padding-bottom: 80px; 
  }

  /* Branding for Mobile */
  .mobile-branding {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
  }

  .mobile-branding p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #333;
    margin: 0;
  }

  .mobile-branding h2 {
    font-size: 22px;
    color: #c5a059;
    font-weight: 800;
    margin: 0;
  }

  .stat-col span {
    font-size: 15px;
  }

  .stat-divider {
    height: 55px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 40px 20px;
  }

  .nav-list {
    flex-direction: column;
    gap: 18px;
  }

  .nav.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .header-contact {
    display: none;
  }

  .call-btn.nav-call {
    display: block;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form {
    margin-top: 20px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-content {
    padding: 0;
  }

  .section-title {
    font-size: 26px;
  }

  .highlight-list li {
    font-size: 15px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }

  .location-list li {
    font-size: 15px;
  }

  .projects-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-item.big,
  .gallery-item.tall {
    grid-row: span 1;
  }

  .floor-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .brochure-container {
    flex-direction: column;
  }

  .brochure-content {
    padding: 40px 25px;
    /* text-align: center; */
  }

  .subtitle {
    padding-left: 0;
  }

  .subtitle:before {
    display: none;
  }

  .title {
    font-size: 32px;
  }

  .amenity-card {
    min-width: 50%;
  }
}

@media (max-width: 768px) {
  /* .hero-content {
    max-width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 28px;
  } */

  .whatsapp-sticky {
    display: none;
  }

  .project-highlights li {
    font-size: 14px;
  }

  .hero-card {
    padding: 25px;
  }

  .breadcrumb {
    position: relative;
    padding: 10px 20px;
  }
  .introduction p {
    font-size: 15px;
  }

  .scroll-note {
    display: block;
  }

  .section-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 15px;
  }

  .disclaimer-title {
    font-size: 22px;
  }

  .disclaimer-text {
    font-size: 13px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-links a {
    display: inline-block;
    margin: 6px 8px;
  }

  #callback-form {
    flex-direction: column;
  }

  .input-field {
    width: 100%;
  }

  .callback-btn {
    width: 100%;
  }

  .quick-contact {
    display: flex;
  }

  .callback-bar {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-image {
    order: -1;
  }
   .amenity-title {
    padding: 5px 9px;
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .hero {
    height: auto;
  }

  .hero-bg {
    position: relative;
    height: auto;
  }

  .hero-bg img {
    height: auto;
  }

  .hero-content {
    position: static;
    display: block;
    padding: 20px;
    background: #000;
  }

  .hero-card {
    max-width: 100%;
    margin-top: 20px;
    padding: 5px;
  }

  .hero-box h1 {
    font-size: 20px;
  }

  .stat-col span {
    font-size: 14px;
  }

  .location-desc {
    font-size: 14px;
  }

  .main-title {
    font-size: 25px;
  }

  .container {
    padding: 5px;
  }

  .highlight-title {
    font-size: 25px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 23px;
  }

  .rera-title {
    font-size: 22px;
  }

  .rera-box {
    font-size: 14px;
    padding: 20px;
  }

  .projects-slider {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item img {
    height: auto;
  }

  .floor-slider {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 32px;
  }

  .floor-info {
    padding: 20px;
  }

  .amenity-card {
    min-width: 100%;
  }

  .title {
    font-size: 30px;
  }

  .amenities-header {
    align-items: end;
    flex-direction: column;
  }

  .hero-right {
    padding-bottom: 110px; /* Space for the amenities bar */
  }

 
}
