/* --- Base Reset and Setup --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  /* Recommended body font */
}

a{
    text-decoration:none;
}

.hero-title,
.form-title {
  font-family: 'Playfair Display', serif;
  /* Elegant Serif for high-impact text */
  font-weight: 700;
}
section {
  scroll-margin-top: 100px; /* adjust if header height differs */
}

.main-header {
  padding: 10px 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;

  /* ✅ Soft modern shadow */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

}

/* --- New Container Styling (1200px Max Width) --- */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  /* Constrain the inner content */
  width: 95%;
  /* Use 95% width to prevent edge-to-edge content on smaller screens */
  margin: 0 auto;
  /* Center the container horizontally */
}

.header-logo {
  height: 80px;
  width: auto;
  display: block;
}

.main-nav {
  flex-grow: 1;
  text-align: center;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.nav-link {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.call-now-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  background-color: #140000;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.2s;
  font-size: 1rem;
}

.call-now-button:hover {
  background-color: #c79c62;
  color: rgb(0, 0, 0);
}

.button-icon {
  margin-right: 8px;
}

.menu-toggle {
  display: none;
}

/* --- Responsiveness (Mobile/Tablet) --- */

@media (max-width: 900px) {

  /* Mobile nav position adjusted based on header padding */
  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #9c9c9c;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 5%;
    gap: 10px;
    /* Use general padding for full-width menu */
  }

  .header-container {
    /* On mobile, remove max-width and let it fill the parent, using margins for mobile padding */
    max-width: none;
    width: auto;
    margin: 0 3%;
    /* Apply padding to the inner container on mobile */
  }

  .main-header {
    padding: 8px 0;
    /* Adjusted vertical padding on mobile */
  }

  .nav-list li {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-list li a {
    color: #ffffff;
  }

  .nav-list li a:hover {
    color: #0c2a5c;
  }

  .nav-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #9c9c9c;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
  }

  .header-logo {
    height: 45px;
  }

  .button-text {
    display: none;
  }

  .call-now-button {
    padding: 8px;
  }

  .button-icon {
    margin-right: 0;
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  .hero-content-container {
    /* Stack items vertically on smaller screens (This is the key to reordering) */
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* 1. Place the Form (hero-right) FIRST */
  .hero-right {
    order: 2;
    /* Assigns a lower order value, making it appear first */
    width: 100%;
    max-width: 450px;
    margin-bottom: 40px;
    /* Add space below the form before the text */
  }

  /* 2. Place the Content (hero-left) SECOND */
  .hero-left {
    order: 1;
    /* Assigns a higher order value, making it appear second */
    max-width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 0;
    /* Clear previous margin */
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .swartattvam-about-us {
    min-height: auto;
  }

  /* Center the enquiry button when text is centered */
  .btn-enquiry {
    margin: 0 auto;
  }
}



/* --- Hero Section Styles (swartattvam-about-us) --- */
.swartattvam-about-us {
  /* 1. Full height setup */
  min-height: 90vh;

  /* 2. Background image setup */
  background-image: url('assests/images/banner/skyven-banner.webp');
  /* REPLACE with your actual image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  /* Overlay for better text readability */
  position: relative;
  z-index: 1;
  /* For stacking context */
}

/* Optional: Add a subtle dark overlay for text readability */
.swartattvam-about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #251e13bf;
  /* Dark overlay */
  z-index: 2;
}

/* Center and constrain content */
.hero-content-container {
  position: relative;
  z-index: 3;
  /* Ensure content is above the overlay */
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  /* Max width for desktop viewing */
  margin: 0 auto;
  padding: 0 5%;
  min-height: 90vh;
  /* Inherit height to vertically align content */
}

/* --- Left Content Styling --- */
.hero-left {
  flex: 1;
  /* Takes up available space */
  max-width: 50%;
  color: #ffffff;
  padding-right: 40px;
  /* Space from the form */
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  /* Light, complementary color */
  margin-bottom: 10px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-paragraph {
  font-size: 1.0rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-enquiry {
  display: inline-block;
  padding: 12px 30px;
  background-color: #5D3E3A;
  /* Brown from logo */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-enquiry:hover {
  background-color: #7A534F;
}

/* --- Right Form Styling --- */
.hero-right {
  flex-shrink: 0;
  /* Prevents shrinking */
  width: 400px;
  /* Fixed width for the form card */
  max-width: 100%;
}

.contact-form-card {
  background-color: #00000066;
  /* Semi-transparent white card */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 1.8rem;
  color: #f5f5f5;
  margin-bottom: 25px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ffffff;
}

.hero-form input[type="text"],
.hero-form input[type="tel"],
.hero-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.btn-book-apartment {
  width: 100%;
  padding: 12px;
  background-color: #ffffff;
  /* Accent color for the button */
  color: #140000;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* .btn-book-apartment:hover {
    background-color: ;
} */

/* --- Mobile Responsiveness (Adjusting columns) --- */
@media (max-width: 992px) {
  .hero-content-container {
    /* Stack items vertically on smaller screens */
    flex-direction: column;
    justify-content: flex-start;
    /* Align content to the top */
    padding-top: 50px;
    /* Add top space */
    padding-bottom: 50px;
    /* Add bottom space */
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
    /* Reduce title size */
  }

  .hero-right {
    width: 100%;
    max-width: 450px;
    /* Constrain form width */
  }

  .swartattvam-about-us {
    /* Allow content to push height beyond 90vh if necessary on mobile */
    min-height: auto;
  }
}


/* --- About Us Section Styling (swartattvam-about) --- */
.swartattvam-about {
  padding: 80px 5%;
  /* Generous vertical padding and responsive horizontal padding */
  background-color: #F8F8F8;
  /* Light neutral background for a simple, modern look */
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;

  /* Flexbox for the two-column layout */
  display: flex;
  align-items: center;
  /* Vertically align items */
  gap: 50px;
  /* Space between the two columns */
}

/* --- Content (Text) Styling --- */
.about-content {
  flex: 1;
  /* Allows content to take up the necessary space */
}

.section-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: 2.5rem;
  font-weight: 700;
  color: #66543d !important;
  /* Primary brand color */
  margin-bottom: 10px;
}

.about-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
  /* Accent color */
  margin-bottom: 25px;
  /* text-transform: uppercase; */
  letter-spacing: 1.5px;
}

.about-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

/* --- Image Styling --- */
.about-image-wrapper {
  flex: 1;
  /* Allows image to take up the necessary space */
  position: relative;
  /* Optional: Add a subtle shadow for depth and modernity */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  /* Smooth transition for the hover effect */
  transition: transform 0.5s ease-in-out;
}

/* Optional: Smooth transition/hover effect for the image */
.about-image:hover {
  transform: scale(1.05);
}

/* --- Learn More Button --- */
.btn-learn-more {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 10px;
  background-color: #140000;
  /* Accent color */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* Smooth transition */
}

.btn-learn-more:hover {
  background-color: #c79c62;
  /* Darker brown on hover */
  color: #000000;
  transform: translateY(-2px);
  /* Subtle lift on hover */
}


/* --- Mobile Responsiveness --- */
@media (max-width: 850px) {
  .about-container {
    /* Stack columns vertically on smaller screens */
    flex-direction: column;
    gap: 40px;
  }

  .swartattvam-about {
    padding: 60px 5%;
    /* Reduce padding on mobile */
  }

  .section-title {
    font-size: 2rem;
    text-align: center;

  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }


  .about-content {
    text-align: center;
    /* Center text for better mobile presentation */
  }

  .about-image-wrapper {
    order: -1;
    /* Place image above text on mobile for better visual hierarchy */
  }
}


.swartattvam-amenities {
  position: relative;
  color: #fff;
  padding: 100px 0;
  background: url('assets/images/amenities-background.jpg') center/cover no-repeat;
  overflow: hidden;
}

.swartattvam-amenities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #251e13bf;
  z-index: 0;
}

.swartattvam-amenities .container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.swartattvam-amenities .section-heading {
  margin-bottom: 60px;
}

.swartattvam-amenities .section-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.swartattvam-amenities .section-heading h3 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 10px;
}

.swartattvam-amenities .section-heading p {
  color: #f7c35f;
  font-size: 18px;
  margin-top: 10px;
}

.swartattvam-amenities .amenity-box .icon-img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.swartattvam-amenities .amenity-box:hover .icon-img {
  transform: scale(1.1);
}


.swartattvam-amenities .amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}


.swartattvam-amenities .amenity-box {
  background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  animation: fadeUp 1s ease both;
}

/* .swartattvam-amenities .amenity-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
} */

.swartattvam-amenities .amenity-box .icon {
  display: block;
  font-size: 36px;
  margin-bottom: 15px;
  color: #f7c35f;
}

.swartattvam-amenities .amenity-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #66543d;
}



.swartattvam-amenities .amenity-box p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
}

/* Fade-Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1199px) {
  .swartattvam-amenities .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .swartattvam-amenities .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .swartattvam-amenities {
    padding: 70px 0;
  }

  .swartattvam-amenities .section-heading h2 {
    font-size: 28px;
  }

  .swartattvam-amenities .section-heading h3 {
    font-size: 20px;
  }

  .swartattvam-amenities .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .swartattvam-amenities .amenity-box {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .swartattvam-amenities .section-heading h2 {
    font-size: 24px;
  }

  .swartattvam-amenities .section-heading h3 {
    font-size: 18px;
  }

  .swartattvam-amenities .section-heading p {
    font-size: 15px;
  }
}

.swartattvam-unique {
  background: #fff;
  padding: 80px 0 100px;
}

.swartattvam-unique .container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique-title {
  text-align: center;
  margin-bottom: 60px;
}

.unique-title h2 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}

.unique-title p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.feature-box {
  text-align: center;
}

.feature-img {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: zoom-in;
}

.feature-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Fancybox close button clarity */
.fancybox__button--close {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .feature-img {
    box-shadow: none;
  }
}





.swiper {
  padding-bottom: 10px;
}



.swartattvam-map {
  width: 100%;
  padding: 80px 0;
  background: #9c9c9c;
}

.swartattvam-map .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.swartattvam-map .map-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: white;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.swartattvam-map .map-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: nowrap;
}

.swartattvam-map .map-image {
  flex: 1 1 55%;
}

.swartattvam-map .map-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.swartattvam-map .map-content {
  flex: 1 1 45%;
}

.swartattvam-map .map-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}

.swartattvam-map .map-list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

@media (max-width: 991px) {
  .swartattvam-map .map-row {
    flex-direction: column;
  }

  .swartattvam-map .map-image {
    order: 1;
  }

  .swartattvam-map .map-content {
    order: 2;
    margin-top: 30px;
  }

  .swartattvam-map .map-list {
    columns: 1;
  }

  .swartattvam-map .map-heading {
    font-size: 30px;
    margin-bottom: 35px;
  }
}



.swartattvam-location {
  width: 100%;
  background: #ffffff;
  padding: 40px 0 100px;
}

.swartattvam-location .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.location-row {
  display: flex;
  align-items: center;
  /* ✅ vertically middle alignment */
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

/* ===== Location Highlights ===== */
.location-highlights {
  flex: 0 0 70%;
  background: #fafafa;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.section-title {
  font-size: 36px;
  color: #2d2d2d;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #9c9c9c, #c79c62);
  position: absolute;
  bottom: -12px;
  left: 0;
  border-radius: 3px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 15px 40px;
}

.highlight-list li {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 30px;
}

.highlight-list strong {
  color: #9c9c9c;
  font-weight: 700;
}

/* ===== Enquiry Form ===== */
.location-form {
  flex: 0 0 30%;
  background: #f7f7f7;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-form h3 {
  font-size: 26px;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

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

.location-form input,
.location-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.location-form input:focus,
.location-form textarea:focus {
  border-color: #c79c62;
  box-shadow: 0 0 0 2px rgba(199, 156, 98, 0.15);
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #140000;
  border: none;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #9c9c9c;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .location-row {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .location-highlights,
  .location-form {
    flex: 100%;
  }

  .location-highlights {
    padding: 35px 25px;
  }

  .section-title {
    font-size: 28px;
    text-align: center;

  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .highlight-list {
    grid-template-columns: 1fr;
  }

  .highlight-list li {
    font-size: 16px;
  }

  .location-form {
    order: -1;
    margin-bottom: 40px;
    width: 100%;
    /* ✅ full width form on mobile */
  }
}

/* ===== LANDMARK GROUPED DESIGN ===== */

.landmark-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 15px;
}

.landmark-col {
  background: #ffffff;
  padding: 25px 25px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.landmark-title {
  font-size: 20px;
  font-weight: 700;
  color: #9c9c9c;
  margin-bottom: 18px;
  border-bottom: 2px solid #f0e1d2;
  padding-bottom: 8px;
}

.landmark-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landmark-col li {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.landmark-col li:last-child {
  border-bottom: none;
}

.landmark-col strong {
  color: #9c9c9c;
  font-weight: 700;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .landmark-group {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .landmark-title {
    font-size: 18px;
  }

  .landmark-col li {
    font-size: 15px;
  }
}



#mobile-view {
  margin-bottom: 50px;
}

.swartattvam-footer {
  width: 100%;
  background: #140000;
  color: #fff;
  padding: 70px 0 40px;
  font-family: "Poppins", sans-serif;
}

.swartattvam-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.footer-col {
  flex: 1;
  text-align: center;
}

.brand-info {
  text-align: left;
}

.brand-info .footer-logo img {
  width: 250px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #f2eeee;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  background: #66543d;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #b88a4d;
  transform: translateY(-3px);
}

.partners-section h4 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  text-align: center;
}

.partners-section h4::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #c79c62;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partner-item {
  text-align: center;
}

.partner-item img {
  width: 70px;
  height: auto;
  margin-bottom: 8px;
}

/* ===== Right Column: Contact Info DESKTOP FIX ===== */
.contact-info {
  /* Ensure column is left-aligned in desktop view */
  text-align: left;
  margin-top: -3%;
}

.contact-info h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  /* Make sure h4 behaves like a block/inline-block to contain the pseudo-element */
  display: inline-block;
}

.contact-info h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #c79c62;
  position: absolute;
  bottom: -8px;
  /* Fix: Reset to left: 0 for left-alignment in desktop view */
  left: 0;
  /* Fix: Remove horizontal translation for left-alignment */
  transform: translateX(0);
  border-radius: 2px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Ensure the list content is left-aligned */
  text-align: left;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #f2eeee;
  line-height: 30px;
}

.contact-info i {
  color: #fff;
  margin-right: 10px;
}

.contact-info a {
  color: #f2eeee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #c79c62;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

.footer-bottom p {
  font-size: 14px;
  color: #f2eeee;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== Responsive (Mobile) - Ensure center alignment is maintained ===== */
@media (max-width: 991px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .brand-info,
  .partners-section,
  .contact-info {
    text-align: center;
  }

  .footer-desc {
    text-align: center;
  }

  /* Mobile Fix: Re-center the contact heading underline */
  .contact-info h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .partners-logos {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }

  .partner-item img {
    width: 60px;
  }

  /* Ensure list items are centered in mobile view */
  .contact-info ul {
    display: block;
    text-align: center;
  }

  .contact-info ul li {
    text-align: center;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-buttons .float-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-buttons .float-btn img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.floating-buttons .float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* ===== Specific Button Colors (Optional Background Tint) ===== */
.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #c79c62;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }

  .floating-buttons .float-btn {
    width: 50px;
    height: 50px;
  }

  .floating-buttons .float-btn img {
    width: 50px;
    height: 50px;
  }
}




.swartattvam-location-near {
  width: 100%;
  background: #f7f5f1;
  padding-bottom: 60px;
}

/* HEADER */
.location-header {
  background: #5b3f27;
  background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center everything */
  gap: 25px;
  text-align: center;
  /* Center the text inside the block */
  color: #fff;
}


.location-number {
  font-size: 70px;
  font-weight: 300;
}

.location-text h4 {
  font-size: 20px;
  margin: 0;
}

.location-text h1 {
  font-size: 46px;
  margin-top: 5px;
}

/* MAIN CONTENT CONTAINER */
.location-container {
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* ROW STYLE */
.loc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

/* Reverse row (image left) */
.loc-row.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.loc-row.reverse .loc-text {
  direction: ltr;
}

/* TEXT CONTENT */
.loc-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #644d33;
}

.loc-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #504636;
}

/* IMAGE STYLE */
.loc-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .loc-row,
  .loc-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .loc-row.reverse .loc-text {
    order: 2;
  }

  .loc-row.reverse .loc-img {
    order: 1;
  }

  .loc-img img {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .location-header .location-number {
    font-size: 60px;
  }

  .location-header h1 {
    font-size: 32px;
  }

  .loc-text h2 {
    font-size: 24px;
  }
}



/* RESPONSIVE */
@media (max-width: 992px) {

  .loc-row,
  .loc-row.reverse {
    grid-template-columns: 1fr;
    gap: 25px;
    direction: ltr;
    /* reset direction */
  }

  /* IMAGE FIRST, CONTENT NEXT */
  .loc-row .loc-img {
    order: 1;
  }

  .loc-row .loc-text {
    order: 2;
  }

  /* even for reverse rows */
  .loc-row.reverse .loc-img {
    order: 1;
  }

  .loc-row.reverse .loc-text {
    order: 2;
  }

  .loc-img img {
    height: 260px;
  }
}

/* Small mobile */
@media (max-width: 600px) {
  .location-header .location-number {
    font-size: 60px;
  }

  .location-header h1 {
    font-size: 32px;
  }

  .loc-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  .swartattvam-location {
    padding: 40px 0;
    /* reduced from 100px */
  }

}


.swartattvam-sizes {
  width: 100%;
  background: #9c9c9c;
  padding: 80px 20px;
}

.sizes-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* TOP TEXT */
.sizes-top h4 {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}

.sizes-top .size-range {
  font-size: 62px;
  font-weight: 400;
  color: #f8f8f8;
  margin-bottom: 70px;
}

.sizes-top .size-range span {
  font-size: 32px;
  color: #ffffff;
}

/* BOTTOM STAT BOXES */
.sizes-stats {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* BOX DESIGN */
.stat-box {
  width: 33.33%;
  background: #ffffff;
  padding: 35px 15px;
  border-radius: 12px;
  border: 1px solid #e4e1db;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* NUMBERS */
.stat-number {
  font-size: 58px;
  font-weight: 400;
  color: #9c9c9c;
}

/* LABELS */
.stat-label {
  font-size: 20px;
  color: #000000;
  margin-top: 5px;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sizes-top .size-range {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .sizes-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 600px) {

  .sizes-top .size-range {
    font-size: 42px;
  }

  .sizes-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-box {
    width: 100%;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 16px;
  }
}






.swartattvam-thanyou {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
  text-align: center;
}

.swartattvam-thanyou .container {
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-box {
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease both;
}

.thankyou-icon {
  margin-bottom: 25px;
  animation: pop 1s ease both;
}

.thankyou-box h1 {
  color: #0e1d40;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.thankyou-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.back-home {
  display: inline-block;
  background: #0e1d40;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.back-home:hover {
  background: #f2bf33;
  color: #0e1d40;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  80% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .thankyou-box {
    padding: 40px 25px;
  }

  .thankyou-box h1 {
    font-size: 26px;
  }

  .thankyou-box p {
    font-size: 15px;
  }
}




.swartattvam-error {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px;
  text-align: center;
}

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

.error-box {
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease both;
}

.error-icon {
  margin-bottom: 25px;
  animation: shake 1s ease both;
}

.error-box h1 {
  color: #0e1d40;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.error-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.back-home {
  display: inline-block;
  background: #0e1d40;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.back-home:hover {
  background: #f2bf33;
  color: #0e1d40;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-6px);
  }

  40%,
  80% {
    transform: translateX(6px);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .error-box {
    padding: 40px 25px;
  }

  .error-box h1 {
    font-size: 26px;
  }

  .error-box p {
    font-size: 15px;
  }
}



/* Container for the button and text */
.site-button-container {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* Optional margin to add spacing */
}

/* Text and Button Styling */
.site-button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
  /* Text color */
}

/* Button Styling */
.site-button {
  background-color: #140000;
  color: white;
  padding: 10px 20px;
  margin-left: 10px;
  /* Space between text and button */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.site-button:hover {
  background-color: #9c9c9c;
  /* Darker shade on hover */
}

/* Mobile and Desktop View */
@media (max-width: 768px) {
  .site-button-text {
    font-size: 1rem;
  }

  .site-button {
    font-size: 1rem;
    padding: 8px 15px;
  }
}


.hero-subtitle-rera {
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.about-subtitle-rera {
  color: black;
  margin-bottom: 10px;
}



/* ===============================
   CONSTRUCTION SITE UPDATES
================================ */

.construction-updates {
  padding: 80px 20px;
  background: #f6f8fa;

}

.cu-container {
  max-width: 1300px;
  margin: auto;
}

/* Header */
.cu-header {
  text-align: center;
  margin-bottom: 50px;
}

.cu-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.cu-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 700px;
  margin: auto;
}

/* Grid */
.cu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Item */
.cu-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Zoom */
.cu-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.cu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cu-item:hover .cu-overlay {
  opacity: 1;
}

.cu-overlay span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .cu-header h2 {
    font-size: 28px;
  }

  .cu-header p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .construction-updates {
    padding: 60px 15px;
  }

  .cu-overlay span {
    font-size: 14px;
  }
}




/* =========================================
   MODERN LEFT SIDE DESIGN
========================================= */

.modern-left {
  flex: 0 0 65%;
  padding: 30px 40px 30px;
}

/* Modern heading */
.modern-left .section-title {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #9c9c9c;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

/* Accent underline */
.modern-left .section-title::after {
  content: "";
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #9c9c9c, #c79c62);
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 3px;
}

/* Modern list layout */
.modern-left .highlight-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 720px;
}

/* Modern card-like rows */
.modern-left .highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #f9f9fb;
  padding: 16px 18px;
  border-radius: 10px;
  border-left: 4px solid #9c9c9c;
  transition: all 0.3s ease;
}

/* Hover interaction (desktop only) */
@media (hover: hover) {
  .modern-left .highlight-list li:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
}

/* Distance / label highlight */
.modern-left .highlight-list strong {
  font-weight: 700;
  color: #9c9c9c;
  white-space: nowrap;
}

/* =========================================
   RESPONSIVE – TABLET & MOBILE
========================================= */

@media (max-width: 991px) {

  .modern-left {
    padding: 0;
    text-align: center;
  }

  .modern-left .section-title {
    font-size: 30px;
    margin-bottom: 26px;
  }

  .modern-left .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .modern-left .highlight-list {
    max-width: 100%;
    margin: 0 auto;
  }

  .modern-left .highlight-list li {
    font-size: 15px;
    text-align: left;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .modern-left .section-title {
    font-size: 26px;
  }

  .modern-left .highlight-list li {
    padding: 14px 14px;
    font-size: 14.5px;
  }
}



/* ===== Floor Plan Section ===== */
.fp-simple {
  padding: 80px 0 20px;
  background: #fff;
  overflow-x: hidden;
}

.fp-container {
  max-width: 100%;
  /* 🔑 as requested */
  margin: 0 auto;
  padding: 0 0px;
  text-align: center;
}

.fp-image {
  width: 100%;
  max-width: 1200px;
  border-radius: 0px;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fp-image:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== Popup ===== */
.fp-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.fp-popup.active {
  opacity: 1;
  visibility: visible;
}

.fp-popup img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 12px;
  cursor: zoom-out;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .fp-simple {
    padding: 50px 0;
  }
}








.lacasa-floor {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  /* font-family: 'Poppins', sans-serif; */
}

.lacasa-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

.lacasa-header {
  text-align: center;
  margin-bottom: 50px;
}

.lacasa-discover {
  color: #66543d;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.lacasa-header h2 {
  font-size: 36px;
  color: #66543d;
  margin: 10px 0;
}

.lacasa-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 15px;
}

/* Slider */
.lacasa-slider {
  overflow: hidden;
}

.lacasa-track {
  display: flex;
  gap: 40px;
  animation: lacasaScroll 18s linear infinite;
}



.lacasa-slide {
  min-width: calc(50% - 20px);
  background: #fff;
}

.lacasa-slide img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.lacasa-info {
  padding: 20px 0;
}

.lacasa-info h3 {
  color: #66543d;
  margin-bottom: 5px;
  font-size: 25px;
}

.lacasa-info p {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.lacasa-info span {
  display: block;
  font-size: 18px;
  line-height: 1.5rem;
  color: #666;
}

/* Tablet */
@media (max-width: 1024px) {
  .lacasa-slide {
    min-width: calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .lacasa-slide {
    min-width: 100%;
  }
}

/* Auto loop animation */
/* @keyframes lacasaScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
} */




/* FAQ styles - scoped only inside .swartattvam-location */
.swartattvam-location .faq-list {
  margin-top: 10px;
}

.swartattvam-location .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 0;
}

.swartattvam-location .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: #66543d;
}

.swartattvam-location .faq-icon {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.swartattvam-location .faq-answer {
  display: none;
  padding: 6px 0 0;
}

.swartattvam-location .faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* active state */
.swartattvam-location .faq-item.active .faq-answer {
  display: block;
}

.swartattvam-location .faq-item.active .faq-icon {
  content: "-";
}


.swartattvam-sizes {
  width: 100%;
  background: #200d4d;
  padding: 80px 20px;
}

.sizes-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* TOP TEXT */
.sizes-top h4 {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}

.sizes-top .size-range {
  font-size: 62px;
  font-weight: 400;
  color: #f8f8f8;
  margin-bottom: 70px;
}

.sizes-top .size-range span {
  font-size: 32px;
  color: #ffffff;
}

/* BOTTOM STAT BOXES */
.sizes-stats {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* BOX DESIGN */
.stat-box {
  width: 33.33%;
  background: #ffffff;
  padding: 35px 15px;
  border-radius: 12px;
  border: 1px solid #e4e1db;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* NUMBERS */
.stat-number {
  font-size: 58px;
  font-weight: 400;
  color: #200d4d;
}

/* LABELS */
.stat-label {
  font-size: 20px;
  color: #000000;
  margin-top: 5px;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sizes-top .size-range {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .sizes-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 600px) {

  .sizes-top .size-range {
    font-size: 42px;
  }

  .sizes-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-box {
    width: 100%;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-label {
    font-size: 16px;
  }
}