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

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

.hero-title,
.form-title {
    font-family: 'Playfair Display', serif; /* Elegant Serif for high-impact text */
    font-weight: 700;
}

.main-header {
    /* Padding remains here to ensure background color spans full width */
    padding: 10px 0; 
    background-color: #5D3E3A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- 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: 60px;
    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: #F8E3C9;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.2s;
}

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

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

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

.call-now-button:hover {
    background-color: #ffb873;
}

.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: #5D3E3A;
        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%; /* 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-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: #F8E3C9;
        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: 1; /* 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: 2; /* 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/swartattvam-banner.jpg'); /* 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: rgba(0, 0, 0, 0.4); /* 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: #F8E3C9; /* 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.1rem;
    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:rgb(4 23 46 / 41%); /* 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: #D4A373; /* Accent color for the button */
    color: #333;
    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: #C09063;
}

/* --- 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: #5D3E3A; /* Primary brand color */
    margin-bottom: 10px;
}

.about-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #D4A373; /* 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: #D4A373; /* Accent color */
    color: #333;
    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: #5D3E3A; /* Darker brown on hover */
    color: #ffffff;
    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;
    }
    
    .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-banner.jpg') center/cover no-repeat;
  overflow: hidden;
}

.swartattvam-amenities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 80%);
  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: rgba(255, 255, 255, 0.1);
  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: #fff;
}
.swartattvam-amenities .amenity-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 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: 100px 0;
  
}
.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: #0c2a5c;
  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 {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.feature-img:hover img {
  transform: scale(1.05);
  filter: brightness(70%);
}
.feature-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  transition: all 0.4s ease;
}
.feature-img:hover .overlay {
  opacity: 1;
}
.feature-img .overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.feature-box h3 {
  font-size: 1.2rem;
  color: #0c2a5c;
  font-weight: 600;
  margin-top: 15px;
}

@media (max-width: 767px) {
  .feature-img .overlay {
    position: static;
    opacity: 1;
    background: none;
    color: #444;
    padding: 10px 0 0;
  }
  .feature-img:hover img {
    transform: none;
    filter: none;
  }
  .feature-box h3 {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .feature-img .overlay p {
    max-width: 100%;
  }
  .feature-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.4s ease;
}
}


.swiper {
  padding-bottom: 10px;
}



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

.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: #5a3a2f;
  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: 100px 0;
}

.swartattvam-location .container {
  max-width: 1200px;
  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: 50px;
  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: #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: #c79c62;
  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: #2d2d2d;
  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: #c79c62;
  border: none;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #b2884f;
}

/* ===== 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;
  }

  .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 */
  }
}

#mobile-view{
    margin-bottom: 50px;
}
.swartattvam-footer {
  width: 100%;
  background: #5d3e3a;
  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: 160px;
  margin-bottom: 15px;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #c79c62;
  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: -4%;
}

.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: #d8d8d8;
}

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

.contact-info a {
  color: #d8d8d8;
  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: #bbb;
}

.footer-bottom a {
  color: #c79c62;
  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;
    }
}




.swartattvam-sizes {
    width: 100%;
    background: #f5f5f0;
    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: #7d6441;
    margin-bottom: 10px;
}

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

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

/* 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: #7d6441;
}

/* LABELS */
.stat-label {
    font-size: 20px;
    color: #8a7660;
    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: #333;  /* Text color */
}

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

.site-button:hover {
  background-color: #c07b54;  /* 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;
  }
}

a {
    text-decoration: none;
}

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

/*.hero-subtitle-rera a{*/
/*  color: white;*/
/*  font-weight: 700;*/
/*  font-size: 20px;*/
/*  text-decoration:none;*/
/*}*/

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