/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  overflow-x: hidden; /* prevent horizontal scroll */
}
a {
  text-decoration: none;
  color: inherit;
}
/* =======================================
   BASE STYLES (Desktop — unchanged)
   ======================================= */
/* Header container */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* Inner container */
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

/* Logos on left and right */
.logo-left img,
.logo-right img {
  display: block;
  max-height: 70px;
  width: auto;
}

/* Navigation wrapper */
.main-nav {
  position: relative;
  flex: 1;
  margin: 0 20px;
}

/* Horizontal links on desktop */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.nav-links li a {
  font-size: 16px;
  color: #1f3264;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #ff8c00;
}

/* Toggle button (hidden on desktop) */
.nav-toggle {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%; /* center horizontally */
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  background-color: #1f3264;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before {
  top: -8px;
}
.nav-toggle span::after {
  top: 8px;
}
/* When mobile menu is open, animate to “X” */
.main-nav.nav-open .nav-links {
  display: flex;
  flex-direction: column;
}
.main-nav.nav-open .nav-toggle span {
  background: transparent;
}
.main-nav.nav-open .nav-toggle span::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-nav.nav-open .nav-toggle span::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Push page content below the fixed header */
.site-content {
  margin-top: 70px; /* match header height */
}

/* Submenu structure */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px; /* ⬅️ This adds space between parent and submenu */
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  display: none;
  min-width: 160px;
  z-index: 1000;

  list-style: none;
  margin: 0;
}

.submenu li {
  list-style: none; /* Also ensure inside li */
  padding: 0;
}

.submenu li a {
  display: block;
  padding: 8px 16px;
  color: #1f3264;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: #f5f5f5;
  color: #ff8c00;
}

/* Show submenu on hover */
.has-submenu:hover .submenu {
  display: block;
}

/* Dropdown arrow styling */
.dropdown-icon {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-left: 2px solid #1f3264;
  border-bottom: 2px solid #1f3264;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

/* Rotate arrow up on hover */
.has-submenu:hover .dropdown-icon {
  transform: rotate(135deg);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

/* Hero Section */

.banner-swiper {
  position: relative;
  overflow: hidden;
}
.swiper-container {
  width: 100%;
  height: 80vh;
  margin-top: 100px;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-swiper .swiper-container {
  width: 100%;
  height: 100%;
}

.banner-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


.slide-content {
  position: absolute;
  top: 78%;
  right: 29.6%;
  transform: translateY(-50%);
  max-width: 400px;
  text-align: right;
  color: #333;
}

/* ≈14" laptops: 1440px and below */
@media (max-width: 1440px) {
  .slide-content {
    top: 78%;
    right: 25%;
    max-width: 380px;
  }
}

/* most 14" screens (1366px) */
@media (max-width: 1366px) {
  .slide-content {
    top: 78%;
    right: 22%;
    max-width: 350px;
  }
}

/* Tablets and smaller */
@media (max-width: 1024px) {
  .slide-content {
    position: static; /* flows below the slide */
    transform: none;
    margin: 1.5rem auto 0;
    text-align: center;
    max-width: 90%;
  }
}

.slide-content h1 {
  font-size: 3rem;
  color: #e43f3d;
  margin-bottom: 10px;
  font-weight: 400;
}
.slide-content .subtitle {
  font-size: 2rem;
  margin-bottom: 15px;
}
.slide-content .tagline {
  font-size: 1.5rem;
  color: #e43f3d;
  margin-bottom: 25px;
}
.slide-content .btn {
  display: inline-flex;
  align-items: center;
  background: #3c4a70;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
}
.slide-content .btn svg {
  fill: #fff;
  margin-right: 8px;
}
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.8);
}
.swiper-pagination-bullet-active {
  background: #e43f3d;
}
@media (max-width: 768px) {
  .slide-content {
    right: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }
  .slide-content h1 {
    font-size: 2rem;
  }
  .slide-content .subtitle {
    font-size: 1.2rem;
  }
  .slide-content .tagline {
    font-size: 1rem;
  }
}

.banner-swiper-mobile {
  display: none;
}
.banner-swiper {
  display: block;
}

/* At viewport widths ≤ 767px: hide desktop, show mobile */
@media (max-width: 767px) {
  .banner-swiper {
    display: none;
  }
  .banner-swiper-mobile {
    display: block;
  }
}

/*hero section end*/

.features-bar {
  background: #1f3264; /* match header/nav background */
  padding: 10px 0;
}
.features-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.features-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.features-list li {
  position: relative;
  padding: 0 15px 0 25px; /* 35px left padding for the dot */
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* Dot before text on every li */
.features-list li::before {
  content: "";
  position: absolute;
  left: 15px; /* centers dot in that left padding */
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
}

.features-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.features-marquee {
  display: flex;
  animation: scrollFeatures 30s linear infinite;
  width: max-content;
}

@keyframes scrollFeatures {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.features-bar-mobile {
  background: #1f3264;
  padding: 10px 0;
}

.mobile-features-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mobile-features-marquee {
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: max-content;
  animation: scrollMobileFeatures 40s linear infinite;
}

.mobile-features-marquee li {
  position: relative;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 5px 15px 5px 25px;
}

/* Dot */
.mobile-features-marquee li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
}

@keyframes scrollMobileFeatures {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* remove the old ::after rule entirely */

/* Responsive adjustments */
/* ================================
   TABLET & SMALL DESKTOP (≤1024px)
   ================================ */
@media (max-width: 1024px) {
  .features-list {
    gap: 16px;
  }
  .features-list li {
    font-size: 18px;
    padding: 0 20px 0 30px;
  }
}

/* ================================
   MOBILE & LARGE PHONES (≤768px)
   ================================ */
@media (max-width: 768px) {
  .banner-swiper {
    margin-top: 50px; /* push banner below features-bar */
  }
  .features-bar {
    padding: 8px 0;
  }
  .features-list {
    gap: 10px;
    justify-content: flex-start;
  }
  .features-list li {
    font-size: 16px;
    padding: 5px 15px 5px 25px;
  }
  .features-list li::before {
    left: 10px;
    width: 5px;
    height: 5px;
  }
}

/* ================================
   SMALL MOBILE / EXTRA SMALL (≤480px)
   Two items per row 
   ================================ */
@media (max-width: 480px) {
  .banner-swiper {
    margin-top: 50px; /* further push if needed */
  }

  .features-list {
    /* Remove column stacking; use two columns */
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
  }
  .features-list li {
    /* Each <li> occupies roughly 50% of the container */
    flex: 1 1 calc(50% - 8px);
    font-size: 14px;
    padding: 4px 10px 4px 25px;
    box-sizing: border-box;
  }
  .features-list li::before {
    left: 5px;
    width: 4px;
    height: 4px;
  }
}

/* about Section */

/* Container & Layout */
/* ============================
   DESKTOP STYLES (Remain unchanged)
   ============================ */

/* Hero / About Section Container */
.about-section {
  background: #fff;
  padding: 4rem 1rem;
}
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Carousel Container */
.carousel {
  position: relative;
  flex: 1 1 400px;
  max-width: 600px;
}
.slides {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  height: 400px; /* desktop height */
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prev/Next Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: #4d5a7f; /* arrow background */
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.carousel-btn:hover {
  background: #5e6d9a;
}
.carousel-btn.prev {
  left: -24px; /* partially outside carousel on desktop */
}
.carousel-btn.next {
  right: -24px; /* partially outside carousel on desktop */
}
.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Text Content */
.about-content {
  flex: 1 1 300px;
}
.about-content h2 {
  font-size: 38px;
  line-height: 38px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #2e4666;
}
.about-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 33px;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #e94f4f;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
}
.cta-btn .icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  fill: #fff;
}

/* === Mobile “About” (simple) === */
.mobile-about-simple .about-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px; /* adjust as needed */
}

.mobile-about-simple .about-image {
  width: 100%;
  margin-bottom: 16px;
}

.mobile-about-simple .about-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px; /* optional */
}

/* Reuse your existing .about-content styles—they remain unchanged */
.mobile-about-simple .about-content {
  width: 100%;
  text-align: center; /* or left-align if that’s your preference */
}

/* If you need to override any .cta-btn spacing for mobile: */
.mobile-about-simple .cta-btn {
  margin-top: 16px;
}

/* 1. Default states */
.desktop-about {
  display: block;
}
.mobile-about-simple {
  display: none;
}

/* 2. On small screens (mobile): hide desktop, show mobile */
@media (max-width: 767px) {
  .desktop-about {
    display: block;
  }
  .mobile-about-simple {
    display: block;
  }
}

/* 3. On larger screens (tablet/desktop): hide mobile, show desktop */
@media (min-width: 768px) {
  .mobile-about-simple {
    display: none;
  }
  .desktop-about {
    display: block;
  }
  .owl-theme .owl-nav {
    margin-top: 10px;
    display: none;
  }
}
/*end about Section */

/* Section wrapper with exact Figma pattern tiled */
/* SECTION WRAPPER w/ exact tiled background */
/* ====================================
   Project Highlights Section
   ==================================== */
.project-highlights {
  /* background: #f9f9f9 url("../image/bg-image/tridasa-pattern-background.png") center/cover no-repeat; */
  background: #fefafb;
  padding: 80px 20px;
  text-align: center;
}
.project-highlights .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title & Underline */
.project-highlights .ph-title {
  font-size: 38px;
  font-weight: 300;
  color: #2e4666;
  margin: 0;
}
.project-highlights .ph-underline {
  width: 60px;
  height: 4px;
  background-color: #e94e4e;
  margin: 12px auto 100px;
  border-radius: 2px;
}

/* Grid of Cards */
.project-highlights .ph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 80px;
  margin-bottom: 50px;
}

/* Card */
.project-highlights .ph-card {
  position: relative;
  overflow: visible; /* allow the strip to show */
  background-color: #ffffff;
  border-radius: 8px;
  padding: 50px 20px; /* top padding makes room for the icon */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
}

/* Bottom‑only shadow stripe */
.project-highlights .ph-card::after {
  content: "";
  position: absolute;
  bottom: -8px; /* sits 8px below card */
  left: 0;
  width: 100%;
  height: 8px; /* thickness of stripe */
  background-color: #d8e2e7; /* your exact shadow color */
  border-bottom-left-radius: 8px; /* match card corners */
  border-bottom-right-radius: 8px;
  filter: blur(4px); /* soft edge */
  z-index: -1; /* behind the card */
}

/* Tinted variants */
.project-highlights .ph-card:nth-child(2),
.project-highlights .ph-card:nth-child(5) {
  background-color: #f7fbfb;
}

/* Icon Box */
.project-highlights .ph-icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: #44527f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-highlights .ph-icon-wrapper img {
  width: 40px;
  height: 40px;
}

/* Label & Value */
.project-highlights .ph-label {
  margin-top: 16px;
  font-size: 16px;
  color: #e94e4e;
  text-transform: capitalize;
}
.project-highlights .ph-value {
  margin-top: 8px;
  font-size: 18px;
  color: #1e2a3c;
  font-weight: 600;
}

/* Enquiry Button */
.project-highlights .ph-btn {
  display: inline-flex;
  align-items: center;
  background-color: #e94e4e;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s ease-in-out;
  margin-top: 40px;
}
.project-highlights .ph-btn:hover {
  background-color: #d64444;
}
.project-highlights .ph-btn-icon {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}

/* Tablet (≤768px) */
@media (max-width: 767px) {
  .project-highlights {
    padding: 50px 12px;
  }
  .project-highlights .ph-title {
    font-size: 28px;
  }
  .project-highlights .ph-underline {
    width: 50px;
    margin-bottom: 60px;
  }
  .project-highlights .ph-grid {
    gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    margin-bottom: 30px;
  }
  .project-highlights .ph-card {
    padding: 35px 14px;
  }
  .project-highlights .ph-icon-wrapper {
    width: 48px;
    height: 48px;
  }
  .project-highlights .ph-icon-wrapper img {
    width: 24px;
    height: 24px;
  }
  .project-highlights .ph-label {
    font-size: 14px;
    margin-top: 14px;
  }
  .project-highlights .ph-value {
    font-size: 16px;
  }
  .project-highlights .ph-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Mobile (≤576px) */
@media (max-width: 575px) {
  .project-highlights {
    padding: 40px 10px;
  }
  .project-highlights .ph-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .project-highlights .ph-underline {
    width: 40px;
    margin-bottom: 50px;
  }
  .project-highlights .ph-grid {
    gap: 30px;
    grid-template-columns: 1fr;
    margin-bottom: 25px;
  }
  .project-highlights .ph-card {
    padding: 30px 12px;
  }
  .project-highlights .ph-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .project-highlights .ph-icon-wrapper img {
    width: 20px;
    height: 20px;
  }
  .project-highlights .ph-label {
    font-size: 13px;
    margin-top: 12px;
  }
  .project-highlights .ph-value {
    font-size: 15px;
  }
  .project-highlights .ph-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* Project aminities  Section */

.amenities-section {
  position: relative;
  width: 100%;
  /* hero image */
}
.amenities-section img.bg {
  display: block;
  width: 100%;
  height: auto;
}
.amenities-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(44, 43, 43, 0.5); */
}

/* centered title + underline */
.amenities-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}
.amenities-content h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
}
.amenities-content .underline {
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* <-- NEW: tab-buttons is now a direct child of .amenities-section --> */
.tab-buttons {
  position: absolute;
  bottom: -24px; /* overlaps hero by half the button height */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 3;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0px;
}

/* Keep all tabs in one row on typical 14″ laptop widths */
@media (max-width: 1440px) {
  .tab-buttons {
    flex-wrap: nowrap; /* no wrapping */
    gap: 12px; /* tighten the gap so they fit */
    padding: 0 8px; /* add a little side padding */
  }
  .tab-buttons > * {
    white-space: nowrap; /* ensure labels don’t break mid-word */
    font-size: 0.95rem; /* slightly smaller text if needed */
    padding: 0.5rem 1rem; /* tweak button padding */
  }
}

.tab-btn {
  background: #44527f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
  white-space: nowrap;
}
.tab-btn.active {
  background: #e94e4e;
}
.tab-btn:not(.active):hover {
  background: #2f3d6a;
}

/* content panes */
.tabs-container {
  max-width: 1200px;
  margin: 56px auto 0; /* clear the 24px overlap + extra space */
  padding: 0 20px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

@media (max-width: 768px) {
  .amenities-content h2 {
    font-size: 36px;
  }
  .tab-btn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  #Tridasa-Amenities {
    display: none;
  }
}

#Tridasa-Amenities {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

#Tridasa-Amenities .hero-image {
  position: relative;
  width: 100%;
  height: 50vh;
  background-image: url("https://tridasa.in/tridasarise/assets/image/bg-image/amenities-bg-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-end; /* to position text at bottom */
}

#Tridasa-Amenities .hero-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
}

#Tridasa-Amenities .hero-text h2 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

#Tridasa-Amenities .hero-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

#Tridasa-Amenities .buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

#Tridasa-Amenities .buttons button {
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  background:#44527F;
}

#Tridasa-Amenities .buttons button.active{
  background-color: #ef3e3e;
}

/* #Tridasa-Amenities .btn-indoor {
  
}

#Tridasa-Amenities .btn-clubhouse {
  background-color: #4d5dae;
} */

#Tridasa-Amenities .amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 30px 20px;
}

#Tridasa-Amenities .amenity-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

#Tridasa-Amenities .amenity-icon-wrapper {
  margin-bottom: 10px;
}

#Tridasa-Amenities .amenity-icon-wrapper img {
  width: 50px;
  height: 50px;
}

#Tridasa-Amenities .amenity-label {
  font-size: 13px;
  color: #333;
  padding-top: 15px;
  font-weight: 500;
}

.hidden {
  display: none;
}

/* === AMENITIES GRID & CARDS === */
.amenities-grid {
  padding: 60px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 60px;
}
.amenity-card {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 40px 20px 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.amenity-icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #44527f;
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.amenity-icon-wrapper img {
  width: 40px;
  height: 40px;
}
.amenity-label {
  margin-top: 16px;
  font-size: 16px;
  color: #1e2a3c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .amenities-content h2 {
    font-size: 36px;
  }
  .tab-btn {
    flex: 1 1 100%;
    max-width: 100%;
  }
  #amenities {
    display: none;
  }
  .amenities {
    display: none;
  }
  #indoor {
    display: none;
  }

  #Butt {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #clubhouse {
    display: none;
  }

  #mobile-enquery {
    display: none;
  }
  .tabs-container {
    max-width: 1200px;
    margin: 0 !important;
    padding: 0 20px;
  }
}

/* Book A Site Visit */
.book-visit-wrapper {
  text-align: center;
  margin: 40px 0 80px; /* space above & below */
}
.book-visit-btn {
  display: inline-flex;
  align-items: center;
  background-color: #e94e4e;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease-in-out;
}
.book-visit-btn:hover {
  background-color: #d64444;
}
.btn-icon {
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

/*end Project aminities  Section */

/* master plan Section */

.master-plan {
  /* background: #f9f9f9 url("../image/bg-image/tridasa-pattern-background.png") center/cover no-repeat; */
  background: #ffffff;
  padding: 80px 20px !important;
}
.master-plan .mp-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ───────── Title & Underline ───────── */
.master-plan .mp-title {
  font-size: 38px;
  font-weight: 300;
  color: #2e4666;
  margin: 0;
}
.master-plan .mp-underline {
  width: 60px;
  height: 4px;
  background-color: #e94e4e;
  margin: 12px auto 40px;
  border-radius: 2px;
}

/* ───────── Image Wrapper & Uniform Border ───────── */
.master-plan .mp-image-wrapper {
  display: inline-block; /* shrink‑wrap around the image */
  margin: 0 auto 20px; /* center + bottom gap */
  box-sizing: content-box; /* border adds outside image size */
  border: 30px solid #eee9e7; /* thick four‑side border */
  border-radius: 8px; /* match your design rounding */
}
.master-plan .mp-image {
  display: block;
  width: 100%;
  height: auto;
  border: none; /* remove any old borders */
  border-radius: 4px; /* slight inner rounding */
  box-shadow: none !important; /* remove previous shadows */
}

/* ───────── Responsive ───────── */
@media (max-width: 768px) {
  .master-plan .mp-container {
    padding: 0 10px;
  }
  .master-plan .mp-title {
    font-size: 28px;
  }
  .master-plan .mp-underline {
    margin-bottom: 24px;
  }
  .master-plan .mp-image-wrapper {
    border-width: 12px; /* slightly thinner on mobile */
  }
}

/* end master plan Section */

/* ---------------- flour plan Section ---------------- */

/* container + split bg */
.floor-plans {
  position: relative;
  height: 90vh;
  width: 100%;
}

.floor-plans .underline {
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 6px auto 0;
  border-radius: 2px;
}
.floor-plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 70%;
  width: 100%;
  background: linear-gradient(rgba(49, 47, 47, 0.7), rgba(0, 0, 0, 0.7)),
    url("../image/floor-plan-images/floor-plan-bg-image.jpg") center/cover
      no-repeat;
  z-index: 1;
}
.floor-plans::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 0;
  height: 30%;
  width: 100%;
  background: #f9f9f9 url("../image/bg-image/tridasa-pattern-background.png")
    center/cover;
  z-index: 1;
}

/* 14″ laptop view (~1024–1366px) */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .floor-plans::after {
    bottom: 0; /* lift it up by 20px */
    height: 30%; /* slightly less tall */
    /* if you need to adjust the pattern scale: */
    background-size: cover;
  }
}

/* content wrapper */
.floor-plans .floor-plans-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.floor-plans h2 {
  margin: 60px 0 10px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 300;
  line-height: 100%;
}

/* carousel */
.floor-plans .carousel-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: auto;
  padding: 0 100px;
  box-sizing: border-box;
}
.floor-plans .carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  max-width: 1200px;
}
.floor-plans .carousel-item {
  flex: 0 0 calc(50% - 0px);
  box-sizing: border-box;
}
.floor-plans .carousel-item img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.floor-plans .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #44527f;
  border: 2px solid #fff; /* ← white circle border */
  box-sizing: border-box; /* ← include border in the 48px size */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 3;
  transition: opacity 0.2s ease;
}
.floor-plans .carousel-btn:hover {
  opacity: 0.85;
}
.floor-plans .carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.floor-plans .carousel-btn.prev {
  left: 6%;
}
.floor-plans .carousel-btn.next {
  right: 4%;
}

/* responsive: single-slide on mobile */
@media (max-width: 768px) {
  .floor-plans .carousel-item {
    flex: 0 0 100%;
  }
  .floor-plans .carousel-container {
    padding: 0 30px;
    margin-top: -20px;
  }
  .floor-plans h2 {
    margin: 40px 0 40px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    line-height: 100%;
  }
  .floor-plans::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .owl-carousel .owl-stage-outer {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .LocationHighlights {
    /* tweak these as needed */
    padding: 60px 1.5rem 4rem !important;
    margin-top: 30px !important;
  }
}

/* =========== Location Highlights =========== */
.LocationHighlights {
  padding: 60px 2rem 6rem;
  /* background: #f9f9f9 url("../image/bg-image/tridasa-pattern-background.png")
    center/cover; */
  background: #fefbfa;
  text-align: center;
  margin-top: 40px;
}

.LocationHighlights .lh-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 100%;
  color: #2e4666;
  margin: 0 auto;
  display: inline-block;
}
.LocationHighlights .lh-underline {
  width: 80px;
  height: 4px;
  background: #ef4c4c;
  margin: 1.5rem auto 2.8rem;
  border-radius: 2px;
}
.LocationHighlights .lh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* exactly 3 per row */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.LocationHighlights .lh-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 150px;
}
.LocationHighlights .lh-icon {
  flex: 0 0 80px;
  background: #47567d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.LocationHighlights .lh-icon img {
  width: 32px;
  height: 32px;
}
.LocationHighlights .lh-text {
  padding: 2rem 15px;
  text-align: left;
}
.LocationHighlights .lh-heading {
  margin: 0;
  font-size: 0.9rem;
  color: #ef4c4c;
  font-weight: 500;
}
.LocationHighlights .lh-sub {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: #2e3a59;
  font-weight: 600;
}

/* End */

/* Location Map Section */
.location-map-section {
  padding: 10px 20px 60px;
  background: #ffffff;
}
.location-map-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.location-map-section h2 {
  font-size: 38px;
  color: #1f3264;
  line-height: 100%;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
  position: relative;
}
.location-map-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e43f3d;
  margin: 1.5rem auto 2.5rem;
  border-radius: 2px;
}
/* Map card container */
.map-card {
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  padding: 0px;
}
.map-container {
  position: relative;
}
/* Main map styling */
.map-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
/* Inset map styling */
.map-inset {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  border: 2px solid #dddddd;
  border-radius: 6px;
  background: #ffffff;
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .location-map-section {
    padding: 60px 15px;
  }
  .location-map-section h2 {
    font-size: 32px;
  }
  .map-inset {
    width: 180px;
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 768px) {
  .location-map-section {
    padding: 40px 10px;
  }
  .location-map-section h2 {
    font-size: 28px;
  }
  .map-card {
    padding: 15px;
  }
  .map-inset {
    width: 140px;
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 480px) {
  .location-map-section h2 {
    font-size: 28px;
  }
  .map-inset {
    width: 100px;
    top: 8px;
    right: 8px;
  }
}

/* White stripe above for spacing */
.footer-cta-wrapper {
  background: #ffffff;
  position: relative;
  padding-top: 60px;
}

/* Rounded CTA card */
.footer-cta {
  background: #4d5a7f;
  max-width: 1200px;
  margin: -60px auto 0;
  padding: 40px 40px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-cta h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 300;
  margin: 0;
}

/* White pill around input and button */
.input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 5px;
}
.input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 50px;
}
.input-group button {
  background: #e43f3d;
  border: none;
  outline: none;
  padding: 12px 25px;
  margin-left: 5px;
  border-radius: 30px;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.input-group .icon {
  margin-left: 8px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-cta-wrapper {
    padding-top: 40px;
  }
  .footer-cta {
    flex-direction: column;
    text-align: center;
    margin: -40px auto 0;
    padding: 30px 20px;
    border-radius: 20px;
  }
  .input-group {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .input-group input,
  .input-group button {
    width: 100%;
    margin: 5px 0;
  }
}

/* Main Footer */
.footer-main {
  background: #353d53;
  color: #ffffff;
  padding: 120px 0 20px;
}
.footer-main h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 25px;
  color: #ffffff;
}

.con-underline {
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 0px auto 2.5rem;
  border-radius: 2px;
}

.footer-addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 60px;
}
.footer-addresses .address {
  flex: 1 1 220px;
}
.footer-addresses .address h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 10px;
  color: #ffffff;
}
.footer-addresses .address p {
  color: #aab2c3;
  font-weight: 400;
  line-height: 22px;
  font-size: 14px;
}

.footer-addresses .address h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: -30px; /* space between icon & text */
}

.footer-addresses .address h4 .location-icon {
  width: 20px;
  height: 20px;
  fill: #fff; /* match your white heading text */
  flex-shrink: 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #1f3264; /* or your desired icon color */
}

.social-icons a img {
  width: 32px;
  margin-right: 10px;
}

/* =======================================
   TABLET VIEW (≤768px)
   ======================================= */
@media (max-width: 768px) {
  .footer-main {
    padding: 80px 0 20px;
  }
  .footer-main h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .con-underline {
    width: 50px;
    margin-bottom: 2rem;
  }

  .footer-addresses {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
  }
  .footer-addresses .address {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }
  .footer-addresses .address h4 {
    justify-content: center;
    margin-left: 0;
    font-size: 16px;
  }
  .footer-addresses .address p {
    font-size: 13px;
    line-height: 20px;
  }

  .contact-info p {
    justify-content: center;
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .social-icon,
  .social-icons a img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }
}

/* =======================================
   MOBILE VIEW (≤480px)
   ======================================= */
@media (max-width: 480px) {
  .footer-main {
    padding: 60px 0 20px;
  }
  .footer-main h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .con-underline {
    width: 40px;
    height: 3px;
    margin-bottom: 1.5rem;
  }

  .footer-addresses {
    gap: 20px;
    margin-bottom: 30px;
  }
  .footer-addresses .address h4 {
    font-size: 14px;
    line-height: 22px;
  }
  .footer-addresses .address p {
    font-size: 12px;
    line-height: 18px;
  }

  .contact-info p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .social-icons {
    gap: 12px;
  }
  .social-icon,
  .social-icons a img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
}

/* Contact Form Styles */
.contact-form {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* align icon + text */
.contact-info p strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff; /* ensure white text on dark bg */
}

/* size + color the SVGs */
.contact-info .contact-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.form-row {
  display: flex;
  gap: 20px;
}
.form-row input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
}

.contact-form textarea {
  width: 100%;
  min-height: 180px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 12px 15px;
  color: #fff;
  font-size: 14px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-form button {
  align-self: flex-end;
  background: #e43f3d;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Bottom Branding & Disclaimer */

.footerbottom {
  background-color: #353d53;
  color: white;
  padding: 0px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.footer-left,
.footer-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.footer-inner {
  max-width: 90%;
}

.footer-logo {
  width: 200px;
  margin-bottom: 0px;
}

.footer-left h2 {
  font-size: 24px;
  margin: 0;
}

.tagline {
  margin: 5px 0 10px;
  font-weight: 500;
}

.footer-left p,
.footer-right p {
  /* font-size: 14px; */
  line-height: 1.6;
  color: #ccc;
}

.footer-right h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-right h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-divider {
  width: 1px;
  background-color: white;
  height: auto;
  min-height: 100%;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-divider {
    display: none;
  }

  .footer-left,
  .footer-right {
    padding: 20px 0;
    text-align: center;
  }
}

/* Copyright Bar */
.footer-copyright {
  background: #1f3264;
  padding: 20px 20px;
  color: #fff;
  font-size: 14px;
}
.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright a {
  color: #fff;
  text-decoration: underline;
}
/* Responsive */
@media (max-width: 992px) {
  .bottom-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-form {
    max-width: 100%;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .footer-main {
    padding: 120px 0 20px;
    margin-top: -90px;
  }

  
  .footer-bottom {
    padding: 40px 0 20px;
  }
  .bottom-container {
    flex-direction: column;
    gap: 30px;
  }
  .contact-form {
    gap: 15px;
  }
  .form-row {
    flex-direction: column;
  }
}

/* =======================================
   BASE STYLES (Desktop & All Devices)
   ======================================= */
/* Background wrapper */
.footer-wrapper {
  position: relative;
  /* Remove fixed height to allow content flow */
  height: auto;
  padding-top: 80px; /* space for the subscription box */
}

/* Floating subscription box */
.footer-top {
  background-color: #eee9e7;
  padding: 40px 10%;
  border-radius: 20px;
  max-width: 1200px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - 40px);
  box-sizing: border-box;
}

.footer-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-top h2 {
  color: #343639;
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  flex: 1;
}

.footer-input-group {
  display: flex;
  /* background: white; */
  border-radius: 40px;
  overflow: hidden;
  align-items: center;
  flex: 1;
  max-width: 170px;
}

.footer-input-group input {
  flex: 1;
  border: none;
  padding: 25px 20px;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: #333;
}

.footer-input-group a {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  margin-right: 10px;
}

/* Push footer content downward so subscription box doesn't overlap it */
.footer-container {
  margin-top: 120px; /* matches footer-top height + extra spacing */
}

/* =======================================
   TABLET VIEW (≤768px)
   ======================================= */
@media (max-width: 768px) {
  /* Change to relative positioning so it sits in document flow */
  .footer-top {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto;
    width: calc(100% - 30px);
    padding: 30px 15px;
    border-radius: 15px;
  }

  .footer-wrapper {
    padding-top: 0; /* no extra top padding needed now */
  }

  .footer-container {
    margin-top: 0; /* reset */
  }

  .footer-top-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .footer-top h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    flex: none;
  }

  .footer-input-group {
    max-width: 100%;
    flex: none;
  }

  .footer-input-group input {
    padding: 20px 15px;
    font-size: 14px;
  }

  .footer-input-group button {
    padding: 12px 20px;
    font-size: 13px;
    border-radius: 30px;
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }
}

/* =======================================
   MOBILE VIEW (≤480px)
   ======================================= */
@media (max-width: 480px) {
  .footer-top {
    padding: 20px 10px;
    width: calc(100% - 20px);
  }

  .footer-top-wrapper {
    gap: 10px;
  }

  .footer-top h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-input-group {
    flex-direction: column;
    align-items: stretch;
    border-radius: 30px;
  }

  .footer-input-group input {
    width: 100%;
    padding: 15px 10px;
    font-size: 13px;
  }

  .footer-input-group button {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border-radius: 30px;
    margin: 0;
    margin-top: 8px;
  }
}

/* === Floating Vertical Button === */
.schedule-visit {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.schedule-visit a {
  display: block;
  background: #ef4c4c; /* red background */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9px 9px 0 0; /* rounded on left side */
  white-space: nowrap;
  transform: rotate(-90deg) /* rotate text vertically */ translateY(-100%); /* adjust so rotation pivots nicely */
  transform-origin: top right;
}

.schedule-visit a span svg {
  margin-right: 0.5rem; /* space between icon & text */
  vertical-align: middle;

  /* replace with your SVG icon or icon-font class */
}

/* Optional small‐screen tweak */
@media (max-width: 600px) {
  .schedule-visit a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* End of Floating Vertical Button */

/* Modal Styles */

/* ensure the overlay & wrapper stack above your page */
.mfp-bg {
  z-index: 1000;
}
.mfp-wrap {
  z-index: 1001;
}

/* modal container */
.visit-modal {
  background: #fff;
  border: 2px solid #ea5241;
  border-radius: 10px;
  padding: 32px 24px 24px;
  max-width: 480px;
  margin: auto;
  position: relative;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #324b6c;
  text-align: center;
}

/* heading & accent */
.visit-modal h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 500;
}
.visit-modal .modal-accent {
  width: 60px;
  height: 4px;
  background: #ea5241;
  margin: 10px auto 20px;
  border-radius: 2px;
}
.visit-modal p {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.8;
  margin-bottom: 24px;
}

/* form fields */
.visit-modal input,
.visit-modal textarea {
  width: 100%;
  border: 1px solid #bfc9d7;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #324b6c;
  box-sizing: border-box;
  resize: vertical;
}
.visit-modal input::placeholder,
.visit-modal textarea::placeholder {
  color: rgba(50, 75, 108, 0.5);
}

/* submit button */
.visit-modal .modal-submit {
  background: #ea5241;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  float: right;
  display: inline-flex;
  align-items: center;
}
.visit-modal .modal-submit .send-icon {
  margin-left: 6px;
  font-size: 16px;
}

/* close button */
.visit-modal .mfp-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  background: #324b6c;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  border: 2px solid #fff; /* white circular border */
  border-radius: 50%;
  cursor: pointer;
  z-index: 1002;
  box-sizing: border-box; /* ensure border is inside the set dimensions */
}

/* responsive */
@media (max-width: 520px) {
  .visit-modal {
    padding: 24px 16px 16px;
  }
  .visit-modal h2 {
    font-size: 20px;
  }
}

/* ===========================
   DISCLAIMER BAR – STYLES
   =========================== */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.disclaimer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* All text in one full-width block */
.disclaimer-message {
  font-size: 14px;
  line-height: 1.6;
}

.disclaimer-message p {
  margin-bottom: 1rem;
}

.disclaimer-message a {
  color: #1b692e;
  text-decoration: underline;
}

/* Actions sit under the text */
.disclaimer-actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.disclaimer-accept {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-accepted-btn {
  background-color: #278556;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.disclaimer-accepted-btn:disabled {
  background-color: #e94f4f;
  cursor: not-allowed;
}

.disclaimer-accepted-btn:not(:disabled):hover {
  background-color: #1f613f;
}

/* On very small screens, stack actions vertically */
@media (max-width: 600px) {
  .disclaimer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hide mobile‐only swiper by default, show desktop */
.mobile-swiper {
  display: none;
}

/* At viewport widths ≤767px: hide desktop, show mobile */
@media (max-width: 767px) {
  .desktop-swiper {
    display: none;
  }
  .mobile-swiper {
    display: block;
    height: 80vh;
  }
}

/* At viewport widths ≥768px: ensure desktop is visible, mobile hidden */
@media (min-width: 768px) {
  .desktop-swiper {
    display: block;
  }
  .mobile-swiper {
    display: none;
  }
}

/* Mobile Buttons only */
.mobile-slider-buttons {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
  display: flex;
  justify-content: space-around;
  padding: 10px 20px;
  background: rgba(204, 67, 67, 0.85); /* same red tone */
  z-index: 10;
  box-sizing: border-box;
  border-radius: 8px;
}

.mobile-slider-buttons a.mobile-btn {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.mobile-slider-buttons a.mobile-btn i {
  font-size: 18px;
}

/* Only show in mobile */
@media (min-width: 768px) {
  .mobile-slider-buttons {
    display: none;
  }
}

/* Hide contact form on screens 768px wide and below */
@media (max-width: 768px) {
  .contact-form {
    display: none !important;
  }

  .mhide {
    display: none !important; /* show the mobile‐only element */
  }
}

@media (max-width: 767px) {
  #contact {
    display: none !important;
  }
}

/* ===============================
   Map Highlights Section Styles
   (exactly mirroring .LocationHighlights)
   =============================== */
.MapHighlights {
  padding: 30px 2rem 6rem;
  text-align: center;
  margin-top: -60px;
}

.MapHighlights .lh-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 100%;
  color: #2e4666;
  margin: 0 auto;
  display: inline-block;
}

.MapHighlights .lh-underline {
  width: 80px;
  height: 4px;
  background-color: #ef4c4c;
  margin: 1.5rem auto 2.8rem;
  border-radius: 2px;
}

.MapHighlights .lh-grid {
  display: grid;
  /* 3-column container max-width was 1200px with 2 gaps of 2rem (32px), so each card was ≈ (1200−64)/3 ≃ 379px wide */
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem; /* same gap */
  max-width: 1200px; /* same overall container width */
  margin: 0 auto; /* center the grid */
  justify-content: center; /* center the grid tracks when fewer columns */
}

.MapHighlights .lh-card {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 130px;
}

.MapHighlights .lh-icon {
  flex: 0 0 80px;
  background-color: #47567d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.MapHighlights .lh-icon img {
  width: 32px;
  height: 32px;
}

.MapHighlights .lh-text {
  padding: 2rem;
  text-align: left;
}

.MapHighlights .lh-heading {
  margin: 0;
  font-size: 1rem;
  color: #ef4c4c;
  font-weight: 500;
}

.MapHighlights .lh-sub {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  color: #2e3a59;
  font-weight: 600;
}

/* ===== Tablet & Small Desktop (≤992px) ===== */
@media (max-width: 992px) {
  .MapHighlights .lh-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .MapHighlights .lh-card {
    height: 120px;
  }
  .MapHighlights .lh-icon {
    flex: 0 0 70px;
  }
  .MapHighlights .lh-icon img {
    width: 28px;
    height: 28px;
  }
  .MapHighlights .lh-text {
    padding: 1.5rem;
  }
  .MapHighlights .lh-heading {
    font-size: 0.95rem;
  }
  .MapHighlights .lh-sub {
    font-size: 1rem;
  }
}

/* ===== Mobile (≤768px) ===== */
@media (max-width: 768px) {
  .MapHighlights .lh-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .MapHighlights .lh-card {
    flex-direction: row;
    height: auto;
    padding: 0.75rem 0;
  }
  .MapHighlights .lh-icon {
    flex: 0 0 60px;
    padding: 0;
  }
  .MapHighlights .lh-icon img {
    width: 24px;
    height: 24px;
  }
  .MapHighlights .lh-text {
    padding: 0.75rem 1rem;
  }
  .MapHighlights .lh-heading {
    font-size: 0.9rem;
  }
  .MapHighlights .lh-sub {
    font-size: 1rem;
  }
}

/* ===== Small Mobile (≤480px) ===== */
@media (max-width: 480px) {
  .MapHighlights {
    padding: 10px 1rem 4rem;
    margin-top: -60px;
  }
  .MapHighlights .lh-title {
    font-size: 28px;
  }
  .MapHighlights .lh-underline {
    width: 60px;
    height: 3px;
    margin: 1rem auto 2rem;
  }
  .MapHighlights .lh-grid {
    gap: 0.8rem;
  }
  .MapHighlights .lh-card {
    padding: 0.5rem 0;
  }
  .MapHighlights .lh-icon {
    flex: 0 0 50px;
    padding: 0;
  }
  .MapHighlights .lh-icon img {
    width: 20px;
    height: 20px;
  }
  .MapHighlights .lh-text {
    padding: 0.5rem 0.75rem;
  }
  .MapHighlights .lh-heading {
    font-size: 0.85rem;
  }
  .MapHighlights .lh-sub {
    font-size: 0.95rem;
  }
}

/* ===== Thank You Section ===== */
.tridasa-thankyou-section {
  background: #f1f5f9 url("/wp-content/themes/your-theme/assets/pattern.svg")
    center/150px no-repeat;
  padding: 140px 20px 60px;
  text-align: center;
}

.thankyou-container {
  max-width: 500px;
  margin: 0 auto;
}

.thankyou-icon {
  font-size: 3rem;
  color: #059669; /* warm green checkmark */
  margin-bottom: 1rem;
}

.thankyou-title {
  font-size: 2rem;
  color: #031d5e; /* Tridasa primary */
  margin-bottom: 0.5rem;
}

.thankyou-text {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.thankyou-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #031d5e;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.thankyou-btn:hover {
  background-color: #023159;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .tridasa-thankyou-section {
    padding: 60px 10px;
  }
  .thankyou-title {
    font-size: 1.75rem;
  }
  .thankyou-text {
    font-size: 1rem;
  }
}

/* ===== Error Section ===== */
.tridasa-error-section {
  background: #fff5f5
    url("/wp-content/themes/your-theme/assets/error-pattern.svg") center/150px
    no-repeat;
  padding: 140px 20px 60px;
  text-align: center;
}

.error-container {
  max-width: 500px;
  margin: 0 auto;
}

.error-icon {
  font-size: 3rem;
  color: #e63946; /* error red */
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2rem;
  color: #b00020; /* dark red for titles */
  margin-bottom: 0.5rem;
}

.error-text {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.error-link {
  color: #e63946;
  text-decoration: underline;
}

.error-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.error-btn:hover {
  background-color: #c5303e;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .tridasa-error-section {
    padding: 60px 10px;
  }
  .error-title {
    font-size: 1.75rem;
  }
  .error-text {
    font-size: 1rem;
  }
}

/* Know More link styling */
.know-more-link {
  display: inline-block;
  margin-top: 0.8em;
  font-size: 0.9em;
  font-weight: 500;
  color: #4d5a7f;
  cursor: pointer;
  box-shadow: 0 3px 8px -1px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 5px 15px;
}

.know-more-link:hover {
  color: #0056b3;
}

/* ============ Modal Overlay ============ */

/* ============ Modal Overlay ============ */
/* ============ Modal Overlay ============ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ============ Modal Content ============ */
.modal-content {
  position: relative;
  width: 1000px; /* your desired fixed width */
  max-width: 95%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: visible; /* allow close button overlap */
  margin: 0 auto;
}

/* ============ Header Bar ============ */
.modal-head-col {
  margin: 0;
  padding: 16px 24px;
  background-color: #2e4666;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 500;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

/* ============ Close Button ============ */
.modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 32px;
  height: 32px;
  background-color: #ef4c4c;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* ============ Fade‑In Animation ============ */
.modal.show {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============ Grid of Cards ============ */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
  padding: 30px 24px;
}

/* ============ Individual Card ============ */
.detail-card {
  position: relative;
  background: #fcfafa;
  border-radius: 6px;
  padding: 22px 12px 22px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #eee9e7;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  z-index: 1;
}
.detail-card * {
  position: relative;
  z-index: 2;
}

/* ============ Name with Red Dot ============ */
.detail-name {
  position: relative;
  padding-left: 16px;
  margin: 0 0 8px;
  color: #2e3a59;
  font-weight: 500;
  line-height: 1.2;
}
.detail-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  background-color: #ef4c4c;
  border-radius: 50%;
}

/* ============ Distance with Outline Map‑Pin Icon ============ */
.detail-dist {
  margin: 0;
  font-size: 0.9em;
  color: #ef4c4c;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* inject the pin via pseudo-element */
.detail-dist::before {
  content: "\f3c5"; /* FA6 unicode for map-marker-alt */
  font-family: "Font Awesome 6 Free"; /* FA6 Free font */
  font-weight: 900; /* solid style */
  font-size: 1em;
  color: #ef4c4c;
  margin-right: 6px;
  display: inline-block;
}
/* ============ Responsive Breakpoints ============ */
@media (max-width: 480px) {
  .modal-content {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-close {
    top: -10px;
    right: -10px;
  }
}

/* // end of social infra modal styles // */

.tridasa-floor-plan-section {
  position: relative;
  width: 100%;
  height: 400px;
}
.tridasa-floor-plan-section .bg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.tridasa-floor-plan-section .overlay {
  position: absolute;
  inset: 0;
  /* your overlay styling */
}

.floorplan-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}
.floorplan-content h2 {
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}
.floorplan-content .underline {
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 16px auto 0;
  border-radius: 2px;
}

.tab-buttons {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 3;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  background: #44527f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
  white-space: nowrap;
}
/* ✅ Responsive for 1366px to 1600px screens (14-15 inch laptops) */
@media screen and (max-width: 1600px) {
  .tab-btn {
    padding: 16px 30px;
    font-size: 18px;
  }
}

@media screen and (max-width: 1366px) {
  .tab-btn {
    padding: 14px 25px;
    font-size: 16px;
  }
  
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 4px;
  background-color: #2f3d6a;
  border-radius: 2px;
  z-index: -1;
}
.tab-btn.active {
  background: #e94e4e;
}
.tab-btn:not(.active):hover {
  background: #2f3d6a;
}

.tabs-container {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 20px;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.floorplan-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.floorplan-item img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Mobile: single column */
@media (max-width: 768px) {
  .tabs-container {
    max-width: 1200px;
    margin: 56px auto 0;
    padding: 10% 20px;
  }
  .floorplan-gallery {
    grid-template-columns: 1fr;
  }
  @media (max-width: 768px) {
    .tab-buttons {
      top: 80%; /* center vertically */
      bottom: auto; /* cancel the bottom offset */
      transform: translate(-50%, -50%); /* center both axes */
      /* keep the nowrap & flex-sizing you already set */
      flex-wrap: nowrap;
      justify-content: space-between;
      overflow: hidden;
    }
    .tab-buttons .tab-btn {
      flex: 1 1 0;
      padding: 10px 55px;
      font-size: 0.875rem;
      margin: 0;
    }
  }
}

/* // new codes // */

/* --- Section & Title --- */
.specifications {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 38px;
  line-height: 100%;
  color: #2e4666;
  margin-bottom: 40px;
  position: relative;
  font-weight: 300;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff4d4d; /* red underline */
  margin: 8px auto 0;
  border-radius: 2px;
}

/* --- Grid Layout --- */
.accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 24px;
  margin-bottom: 50px;
}

/* --- Each Accordion Cell --- */
.accordion-item {
  position: relative; /* for absolute content */
  z-index: 1;
}

/* Header */
.accordion-header {
  background: #fcfafa;
  padding: 20px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header span {
  color: #4d5a7f;
  font-weight: 500;
}

.accordion-header:hover {
  background: #f8f7f7;
}

/* remove bottom corners when open */
.accordion-item.open .accordion-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Arrow Icon */
.dropdown-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #1f3264;
  border-bottom: 2px solid #1f3264;
  transform: rotate(-45deg);
  transition: transform 0.3s;
}

/* flip up when open */
.accordion-item.open .dropdown-icon {
  transform: rotate(135deg);
}

/* Content Panel */
.accordion-content {
  position: static; /* no absolute positioning */
  background: #344c7b; /* dark blue */
  color: #fff;
  padding: 16px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999; /* keep above background if needed */
}

/* show it when open */
.accordion-item.open .accordion-content {
  display: block;
}
/* Inner content styling */
.accordion-content h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.accordion-content p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

/* LPG center positioning in 3-column layout */
.accordion-grid .center-item {
  grid-column: 2;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .accordion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accordion-grid .center-item {
    grid-column: auto; /* reset LPG position */
  }
}

@media (max-width: 768px) {
  .accordion-grid {
    grid-template-columns: 1fr;
  }
  .accordion-content {
    position: static; /* stack below header on mobile */
    border-radius: 0 0 8px 8px;
    box-shadow: none;
    display: none;
    padding-top: 20px;
  }
  .accordion-item.open .accordion-content {
    display: block;
  }
}

/* ——————————————————————————————————————————
   COOKIE CONSENT BANNER
   —————————————————————————————————————————— */
.cc-banner {
  display: none; /* shown via JS if no consent */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2b2b2b;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10000;
}

.cc-banner__message {
  flex: 1 1 100%;
  margin-bottom: 12px;
}

.cc-banner__message a.cc-banner__settings {
  color: #1e90ff;
  text-decoration: underline;
  margin-left: 6px;
}

.cc-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cc-btn {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cc-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cc-btn--accept {
  background: #0b66e0;
  border-color: #0b66e0;
}

.cc-btn--accept:hover {
  background: #0955c1;
}

.cc-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  margin-top: -8px;
}

/* Media Query for tablets and up */
@media (min-width: 768px) {
  .cc-banner {
    flex-wrap: nowrap;
    padding: 16px 44px;
  }

  .cc-banner__message {
    flex: 1;
    max-width: 70%;
    margin-bottom: 0;
  }

  .cc-banner__actions {
    margin-left: 24px;
  }

  .cc-close {
    margin-left: 16px;
    margin-top: 0;
  }

  
}



.whatsapp-button {
  position: fixed;
  top: 80%;
  right: 10px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  z-index: 10000;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.whatsapp-button:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.whatsapp-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 
// new flour plan section// */

.My-New-floor {
  font-family: sans-serif;
  width: 100%;
  min-height: 65vh;
  padding-top: 100px; /* creates space for floating tabs */
  background: url("../image/floor-plan-images/floor-plan-bg-image.jpg") center/cover no-repeat;
  background-size: cover;
  position: relative;
  box-sizing: border-box;
}

/* Tabs Wrapper Floating */
.floor-tabs {
  display: flex;
  justify-content: center;
  position: absolute;
  top: -40px; /* Push above the section */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.floor-tabs::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  z-index: -1;
}

/* Sub Tabs Floating */
.floor-sub-tabs {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 50px;
}

.floor-sub-tabs::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}

/* Buttons Styling */
.floor-tab-btn{
  padding: 18px 45px;
  background-color: #44527f;
  color: white;
  border: none;
  border-radius: 6px;
  margin: 0 8px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.floor-sub-tab-btn {
  padding: 18px 45px;
  background-color: #44527f;
  color: white;
  border: none;
  border-radius: 0px;
  margin: 0 0px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.floor-tab-btn.active,
.floor-sub-tab-btn.active {
  background-color: #e94e4e;
}
.floor-tab-content,
.floor-sub-tab-content {
  display: none;
}

/* Carousel */
.floor-carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: auto;
  max-width: 100%;
  position: relative;
}
.floor-carousel {
  overflow: hidden;
  width: 1050px;
  max-width: 100%;
  border-radius: 12px;
}
.floor-carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.floor-slide {
  flex: 0 0 50%;
  padding: 0 5px;
  box-sizing: border-box;
}
.floor-slide img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* Arrows */
.floor-carousel-btn {
  background-color: #314470;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: background 0.3s;
}
.floor-carousel-btn:hover {
  background-color: #1f2f55;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .floor-slide {
    flex: 0 0 100%;
  }
  .floor-slide img {
    width: 90vw;
  }
}



.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-right .right-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.phone-number {
  font-size: 14px;
  margin-bottom: 5px;
}

.phone-number i {
  color: #e63946; /* red tone for icon */
  margin-right: 5px;
}

.phone-number a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.phone-number a:hover {
  color: #e63946;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .logo-right .right-logo-wrap {
    align-items: center;
  }
  .phone-number {
    font-size: 13px;
  }
}
