/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Stop horizontal overflow */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* Navbar */
.navbar {
  width: 100%;
  background-color: #fff;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  /* If you want it to stay on top */
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.logo img {
  width: 180px;
  height: auto;
  min-width: 10px;
}
/* All navbar links including dropdown trigger */
.navbar ul li a,
.navbar a,
.nav-links ul li.dropdown > a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  cursor: pointer;
}
.nav-links ul li.dropdown > a {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #000 !important;
  padding: 10px 15px !important;
  cursor: pointer;
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block !important;
}
.dropdown-content,
.dropdown-content a,
.dropdown-box span {
  font-size: 14px; /* keep slightly smaller or same as navbar if you prefer */
}
/* Uniform styling for all navbar links */

html {
  scroll-behavior: smooth;
}

.navbar a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  padding: 10px 12px;
  /* make this same for all */
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.navbar li:hover .dropdown {
  display: block;
}

.navbar a i.fa-caret-down {
  margin-left: 5px;
  font-size: 10px;
}

/* DROPDOWN - Unified */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background-color: #f2f2f2;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.contact-button a {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
}
/* Hero Section */
.hero {
  background-image: url('../images/hero2.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  /* Full screen height */
  width: 100vw;
  /* Full width of the viewport */
  margin: 0;
  padding: 0;
  margin-top: 2px;
  position: relative;

}
.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn,
.btn-outline {
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.btn {
  background: transparent;
  color: white;
  font-weight: bold;
  border: 2px solid white;
}
.btn-residential {
  background: #ff6600;       /* Orange background */
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: none;
}
.btn-commercial {
  background: transparent;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid white;
}
.btn-outline {
  border: 2px solid white;
  color: white;
}
.btn:hover,
.btn-outline:hover {
  background: white;
  color: black;
}
.project-heading {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
  padding: 10px;
  padding-bottom: 49px;
}
 /* Base Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
    background-color: #fff;
  }

  /* Residential Section */
  #residential {
    padding: 80px 20px;
    background-color: #fff;
  }

  #residential h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: left;
  }

  #residential p {
    color: #333333;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0 0 16px 0;
    max-width: 100%;
    line-height: 1.7;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 20px;
  background: #f5f5f5;
}
.filter-container {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.main-container {
  display: flex;
  padding: 20px;
  gap: 20px;
}

/* Sidebar */
.sidebar {
  width: 280px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 20px;
  height: fit-content;
}

.sidebar h2 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-section {
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

.filter-header {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: normal; /* ✅ No bold text */
  color: #333;
  margin-bottom: 15px;
}


.filter-header i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.filter-content {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.filter-content button {
  padding: 6px 12px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.filter-section.active .filter-content {
  display: flex;
}

.filter-section.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Listings */
.listing-area {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.property-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  position: relative;
  transition: 0.3s;
}

.property-card:hover {
  transform: scale(1.02);
}

.property-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
}

.property-card h4 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.property-card p {
  font-size: 14px;
  color: #555;
}

.property-card .price {
  font-weight: bold;
  color: #000;
}

.contact-btn {
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 6px;
  width: 100%;
}

.wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 18px;
  color: #ccc;
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
}


/* Vertical Social Bar */
.social-bar {
  position: fixed;
  top: 30%;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.social-bar a {
  padding: 10px;
  text-align: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.facebook {
  background: #3b5998;
}

.linkedin {
  background: #0077b5;
}

.instagram {
  background: #e4405f;
}

.twitter {
  background: #55acee;
}

.youtube {
  background: #cd201f;
}

.whatsapp {
  background: #25d366;
}

/* Phone Box */
.phone-box a {
  border: 2px solid black;
  padding: 8px 16px;
  border-radius: 6px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 1.3s, color 1.3s;
}

.phone-box a:hover {
  background-color: black;
  color: white;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.floating-btn {
  background: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: #007aff;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #ddd;
  transition: transform 0.3s;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.floating-buttons img {
  width: 30px;
  height: 30px;
}

.floating-icons img {
  width: 45px;
  height: 45px;
}

html {
  scroll-behavior: smooth;
}

.nav-link.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}


/* About section layout */
body,
html {
  margin: 0;
  padding: 0;
}

.about-section {
  padding: 80px 80px 100px;
  /* Top padding to push below banner */
  background-color: #fff;
}

/* About Header Section */
.about-header {
   width: 100%; /* ✅ was 100vw, change to 100% */
  margin: 0;
  padding: 0;
  position: relative;
  background: url('../images/abbt.jpg') no-repeat center center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.about-header::before {
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.about-header .overlay {
  z-index: 2; /* add this */
  position: relative;
}
.about-overlay {
  text-align: center;
  z-index: 2;
  position: relative;
}
.about-header h1,
.about-header .breadcrumb {
  z-index: 3; /* ensures they appear above the overlay */
  position: relative;
}
.about-header .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-content {
  flex: 1 1 50%;
}

.left-title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.about-header h1 {
  font-size: 45px;
  font-weight: bold;
  margin: 5;
}

.about-header .breadcrumb {
  font-size: 18px;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: transparent;
}
.right-breadcrumb {
  font-size: 20px;
  color: #f26522;
  font-weight: bold;
}
.about-overlay p {
  font-size: 18px;
  margin-top: 10px;
  color: #f26522;
}
.about-overlay h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.breadcrumb {
  font-size: 25px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  color: #ff6600;
}

.breadcrumb .dot {
  padding: 0 9px;
  font-weight: bold;
}

/* About Section */
.about-section {
  background-color: #fff;
  padding: 50px 70px;
  margin-top: -1.92rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.about-image img {
  width: 80%;
  max-width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #000;
  font-size: 28px;
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #f26522;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.about-image {
  position: sticky;
  top: 100px;
  /* adjust if you have a fixed navbar */
  display: flex;
  justify-content: center;
  align-items: start;
  /* top alignment for sticky effect */
  height: 100vh;
  /* enough space for sticky to work */
}
/* Flex Container */
.about-container {
  display: flex;
  flex-wrap: wrap;
  padding: 3% 5%;
  gap: 2rem;
  align-items: flex-start;
}

.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Image Left */
.image-section {
  flex: 1;
  height: 100vh;
  overflow-y: scroll;
  /* 🔁 Enable vertical scroll */
  padding-right: 20px;
  background-color: #f9f9f9;
}

/* Text Right */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Horizontally center all children */
  justify-content: center;
  /* Optional: for vertical centering if needed */
  text-align: center;
  /* Center-align all text */
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section {
  flex: 1;
  overflow-y: scroll;
  padding: 30px;
  height: 100vh;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4 {
  text-align: center;
  margin-bottom: 10px;
}

.about-content p,
.about-content ul {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin-bottom: 20px;
}

.about-content h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #333;
}

.about-content p,
.about-content ul {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 0.5rem;
  color: #444;
}

.about-content ul {
  list-style-position: inside;
  padding-left: 0;

}

.about-content ul li {
  margin-bottom: 8px;
}
.service-section {
  background-color: #fff;
  padding: 60px 80px;
}
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.service-header {
  width: 100%; /* ✅ was 100vw, change to 100% */
  margin: 0;
  padding: 0;
  position: relative;
  background: url('../images/services.webp') no-repeat center center;
  background-size: cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
section {
  scroll-margin-top: 80px; /* height of your fixed navbar */
}
#about {
  scroll-margin-top: 80px;
 
  padding-top: 100px;
  margin-top: -100px;
}
 html {
    scroll-behavior: smooth;
  }

.service-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.service-banner-text {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.left-title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.right-breadcrumb {
  font-size: 20px;
  color: #f26522;
  font-weight: bold;
}

.service-overlay {
    background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overlay p {
  font-size: 18px;
  margin-top: 10px;
  color: #f26522;
}

.service-overlay h1 {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.service-header h1 {
    color: white;
  font-size: 40px;
  font-weight: bold;
  margin: 0;
}

.service-header .breadcrumb2 {
  font-size: 18px;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: transparent;
}

.service-header p {
  color: #f26522;
  font-size: 16px;
  margin-top: 10px;
}

.breadcrumb2 {
  font-size: 30px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  color: #f26522;

}

.breadcrumb2 .dot {
  padding: 0 9px;
  font-weight: bold;
}

/* Main Content Styling */
.service-content {

  margin-top: 40px;
  text-align: center;
  /* Center text */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center items horizontally */
  justify-content: center;
  padding: 0 20px;
}

.service-content h4 {
  font-size: 30px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.services-content h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-block {
  width: 100%;
  max-width: 900px;
  /* Keeps blocks centered and clean */
  margin-bottom: 30px;
  text-align: left;
  /* Keep text inside each block left-aligned */
}

.service-block h5 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-block h4 {
  font-size: 18px;
  color: #f26522;
  font-weight: bold;
  margin-bottom: 8px;
}

.service-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.service-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  max-width: 900px;
}

/* Icons */
.service-block i {
  color: #f26522;
  font-size: 18px;
}


a {
  text-decoration: none;
  color: #ff6600;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #ff6600;
}

nav a {
  margin: 0 15px;
  color: #333;
  font-weight: 500;
}

nav a.active {
  color: #ff6600;
  border-bottom: 2px solid #ff6600;
}

.call-btn {
  border: 1px solid #333;
  padding: 8px 14px;
  border-radius: 5px;
  font-weight: bold;
}

.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #fff;
}

.services-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.services-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;

}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.card h3 {
  background: #ff6600;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin: 15px 0 10px;
  font-size: 18px;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  background: white;
}

.card p {
  color: #555;
  font-size: 14px;

}

.card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #003366;
  transition: color 0.3s ease;
  z-index: 2;
  position: relative;
}

.card a:hover {
  color: #ff6600;
  text-decoration: underline;
}

.read-more-btn {
  background: none;
  border: none;
  color: #003366;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.read-more-btn:hover {
  color: #ff6600;
  text-decoration: underline;
}

.more-content {
  display: none;
  text-align: left;
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.more-content h4 {
  color: black;
  margin-top: 1rem;
}

.more-content ol {
  padding-left: 20px;
}

.more-content li {
  margin-bottom: 5px;
}

.read-more-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
  padding: 20px;
}

.main-content {
  flex: 2;
}

.side-boxes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.services-box,
.contact-box {
  background-color: #f7f7f7;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.services-box h3,
.contact-box h3 {
  margin-bottom: 10px;
  color: #d35400;
}

.btn {
  display: inline-block;
  background-color: #ff6a00;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
}

.right-boxes {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero2 {
  background-image: url('../images/gallary.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay2 {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  color: rgb(255, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-text2 {
  text-align: center;
  max-width: 800px;
}

.hero-text2 h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text2 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.icon-center {
  text-align: center;
  margin-top: 20px;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.section-title span {
  color: #ff4f00;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 20px;
}

.gallery-section {
  padding: 40px 0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* ← from 6 to 3 */
  gap: 20px;
  justify-items: center;
}

.gallery-box {
  width: 100%;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  /* or a fixed height if needed */
  margin: auto;
  padding: 0 0 16px 0;
  text-align: center;
}


.gallery-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}


.gallery-box button {
  margin: 16px 12px 0;
  padding: 12px 0;
  height: 48px;
  width: calc(100% - 24px);
  font-size: 16px;
  font-weight: 600;
  background-color: #2c3eaf;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.3s ease;
}

.gallery-box button:hover {
  background-color: #1f2eaa;
}


/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
  padding-top: 60px;
}

.modal-content {
  background: white;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  color: #000;
  cursor: pointer;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

/* Floating Call Button */
.call-us-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Popup Background Overlay */
.form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* Form Box */
.form-container {
  width: 320px;
  background: #000;
  color: white;
  padding: 25px;
  border-radius: 20px;
  position: relative;
}

.form-container h2 {
  margin-top: 0;
  font-size: 20px;
}

.form-container h2 span {
  color: yellow;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.recaptcha {
  background: white;
  color: #333;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin: 10px 0;
}

.form-container button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.form-container button:hover {
  background: #0056b3;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}


.hamburger {
  display: none;
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  color: #333;
}
* {
  box-sizing: border-box;
}
.container, .section, .form-wrapper, .project-row {
  max-width: 100%;
  overflow-x: hidden;
  width: 100vw;  /* BAD, causes scroll with scrollbar */

}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.dropdown-menu li a {
  font-weight: normal;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 15px;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize;
}

.dropdown-content {
  position: absolute;
  top: 30px;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 300;
  min-width: 180px;
}

.dropdown-content.show {
  display: flex !important;
}
.dropdown-content a {
  font-weight: normal !important;
}

.dropdown-box {
  padding: 8px 12px;
  background-color: #f8f8f8;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-box:hover {
  background-color: #eaeaea;
}

.submenu {
  display: none;
  margin-top: 5px;
  margin-left: 15px;
  flex-direction: column;
  transition: all 0.3s ease;
}

.submenu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  margin: 3px 0;
  display: block;
}

.submenu a:hover {
  color: black;
}

.arrow {
 
  transition: transform 0.3s ease;
}

.dropdown-box.open .arrow {
  transform: rotate(90deg);
}

 @media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

 .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}}
/* Show hamburger and hide nav on small screens */
/* Mobile view fixes */
@media (max-width: 768px) {
  .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    margin: 0;
  }

  .nav-links {
    position: absolute;
    top: 60px; /* just below navbar */
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    display: none;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: none;
    padding: 0;
    gap: 0;
  }

  .dropdown-box {
    padding: 10px;
  }

  .submenu {
    margin-left: 0;
    padding-left: 15px;
  }
}

.project-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  width: 550px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.project-card p {
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.main-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  display: flex;
  gap: 20px;
  padding: 15px;
  align-items: flex-start; /* Align vertically to top */
}

.logo {
  width: 100px;
  height: auto;
}

.info {
  flex: 1;
  text-align: left;         /* Ensure left alignment */
  align-self: flex-start;   /* Prevent stretching */
}

.info h3 {
  font-size: 20px;
  color: #004080;
  margin: 0;
}

.location {
  color: #555;
  font-size: 15px;
}

.rera {
  font-size: 14px;
  margin: 6px 0;
}

.desc {
  background: #f9f9f9;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  margin-top: 10px;
  text-align: left;         /* Align description text to left */
  align-self: flex-start;   /* Prevent center alignment in some browsers */
}
.eternia-section {
  padding: 20px;
  background-color: #f5f5f5;
}

.eternia-section h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.eternia-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.eternia-left,
.eternia-right {
  flex: 1 1 100%;
}

.eternia-left img {
  width: 100%;
  height: auto;
}

.info-box {
  background-color: #005989;
  color: white;
  padding: 10px;
  margin-top: 10px;
}

.info-box button {
  background-color: orange;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  margin-top: 5px;
  width: 100%;
}

.eternia-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eternia-buttons button {
  background-color: #1a3e63;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}



/* Responsive layout for tablets and above */
@media (min-width: 768px) {
  .eternia-left,
  .eternia-right {
    flex: 1 1 45%;
  }

  .eternia-buttons {
    flex-direction: row;
  }

  .eternia-buttons button {
    width: auto;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== Ongoing Projects Section ===== */
#ongoing-projects {
  padding: 60px 0;
  background: #fff;
}

#ongoing-projects h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #004080;
  text-align: center;
}

.project-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1 1 350px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
}
.project-card {
  flex: 1 1 100%;
  max-width: 32%;
}
@media (max-width: 900px) {
  .project-card {
    max-width: 48%;
  }
}
@media (max-width: 600px) {
  .project-card {
    max-width: 100%;
  }
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.project-card .main-image {
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-content {
  padding: 15px;
}

.card-content .logo {
  max-width: 120px;
  margin-bottom: 10px;
}
.project-card.active {
  box-shadow: 0 8px 24px rgba(0, 80, 130, 0.3);
  border: 2px solid #1a3e63;
}

.card-content .info {
  flex: 1;
}

.project-title a {
  font-size: 20px;
  font-weight: bold;
  color: #0056b3;
  text-decoration: none;
  transition: color 0.3s;
}

.project-title a:hover {
  color: #ff6600;
}

.location,
.rera,
.desc {
  font-size: 14px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .project-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ===== Eternia Section (Details) ===== */
#eternia-section {
  padding: 60px 20px;
  background-color: transparent;
}

#eternia-section h3 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 20px;
}

#eternia-section h4 {
  font-size: 20px;
  margin-top: 20px;
  color: #1a3e63;
}

#eternia-section p,
#eternia-section ul {
  font-size: 15px;
  margin-bottom: 10px;
}

#eternia-section ul {
  padding-left: 20px;
  list-style-type: disc;
}

.eternia-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.eternia-left {
  width: 100%;
  max-width: 30%;
}

.eternia-left img {
  width: 100%;
  margin-bottom: 10px;
}

.eternia-options {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
}

.eternia-options p {
  margin: 10px 0;
}

.eternia-options button {
  background-color: orange;
  color: white;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.eternia-right {
  width: 100%;
  max-width: 65%;
}

.eternia-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eternia-buttons button {
  background-color: #1a3e63;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition:0.3s ease;
}

.eternia-buttons button:hover {
  background-color: #003366;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  color: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
    align-items: center;
  }

  .eternia-layout {
    flex-direction: column;
  }

  .eternia-left,
  .eternia-right {
    max-width: 100%;
  }
}

#eternia-section {
  padding: 60px 20px;
  background-color: transparent;
  
  display: none;
}

#eternia-section h3 {
  font-size: 28px;
  color: #003366;
  margin-bottom: 20px;
}

.eternia-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.eternia-left {
  width: 100%;
  max-width: 30%;
}

.eternia-left img {
  width: 100%;
  margin-bottom: 10px;
}

.eternia-options {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
}

.eternia-options button {
  background-color: orange;
  color: white;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.eternia-right {
  width: 100%;
  max-width: 65%;
}

.eternia-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eternia-buttons button {
  background-color: #1a3e63;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.eternia-buttons button:hover {
  background-color: #003366;
}
.left-options {
  width: 100%;
  max-width: 280px;
  background-color: #063690; /* Matches Mahagun style */
  color: white;
  font-family: 'Jost', sans-serif;
  padding: 20px 20px 37px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left-options img {
  width: 100%;
  margin-bottom: 15px;
}

.left-options p {
  margin: 10px 0;
}

.left-options button {
  background-color: orange;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px 15px;
  margin: 10px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-radius: 4px;
}

.left-options .price-link {
  color: white;
  text-decoration: underline;
  margin-top: 15px;
  display: block;
}

.enquire-btn {
  background: #ff6600;
  color: white;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.enquire-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.enquiry-modal-content {
  background: white;
  width: 90%;
  max-width: 400px;
  margin: 80px auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.enquiry-close {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.enquiry-modal-content input,
.enquiry-modal-content textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.enquiry-modal-content button {
  width: 100%;
  background: #004080;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}
.navbar {
  list-style: none;
  display: flex;
  gap: 20px;
  background: #f8f8f8;
  padding: 10px 20px;
}

.navbar li {
  position: relative;
}

.navbar a {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  border: 1px solid #ccc;
  z-index: 1000;
  width: 200px;
}

.dropdown-content li {
  position: relative;
}

.dropdown-content li a {
  display: block;
  padding: 10px;
}

.dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 200px;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 180px;
  z-index: 999;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.contact-banner {
  width: 100%;
  height: 250px;
background: url('../images/contacss.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
}
.contact-banner .overlay {
  background-color: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner h1 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}
.contact-section {
  padding: 60px 10%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}
.contact-info h2 {
  color: #e05600;
  margin-bottom: 20px;
}
.section {
  background-color: white;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}
.contact-form h3 {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e05600;
  outline: none;
}
.contact-form button {
  padding: 12px 25px;
  background-color: #e05600;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #d14900;
}
    /* Map Section */
  .map-container {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 5px solid grey; /* ACE orange border */
  border-radius: 12px;
  background-color: white;
}

.custom-map {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  margin: 50px auto;
  border: 8px solid #e05600;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
}
#contact {
  background-color: transparent; /* or just remove this line */
}
footer {
   background-color: #111;
  color: #f0f0f0;
  padding: 60px 0;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
flex: 1 1 22%;
  margin-bottom: 20px;
  min-width: 200px;
}
.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: crimson;
}

.footer-column p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 10px;
}

.newsletter input[type="email"] {
  padding: 10px;
  width: 80%;
  max-width: 250px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 3px;
}

.newsletter button {
  padding: 10px 16px;
  background-color: crimson;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

.newsletter button:hover {
  background-color: #a30b0b;
}

.footer-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  padding-left: 20px;
}

.footer-icons img {
  width: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-column {
    flex: 1 1 100%;
  }

  .newsletter input[type="email"] {
    width: 100%;
  }
}
.footer {
  background-color: #111;
  color: #fff;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 30px;
}

.footer-column {
  flex: 1 1 18%;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-column p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: none;
  width: 100%;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px;
  background: crimson;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #a70000;
}

.google-review-badge {
  margin-top: 10px;
  width: 120px;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    width: 100%;
  }
}


/* Responsive */
@media screen and (max-width: 768px) {

  /* Banner Section */
  .banner-section .banner-img {
    height: calc(100vh - 14vh);
  }

  /* Navigation Menu */
  .nav-links ul {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    display: none;
  }

  .nav-links ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  .about-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .about-section {
    padding: 40px 20px;
  }

  .about-content h2 {
    text-align: center;
  }

  .image-section {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  .text-section {
    flex: 1;
    overflow-y: scroll;
    padding: 40px;
    height: 100vh;
  }

  .about-image img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.container {
  flex-direction: column;
}

.image-section,
.text-section {
  height: auto;
  flex: none;
}

.text-section {
  overflow-y: visible;
  padding: 20px;
}

.about-header {
  height: 150px;
}

.about-header h1 {
  font-size: 50px;
}

.about-section {
  padding: 30px 20px;
}

.about-content {
  flex-direction: column;
  text-align: center;
}

.about-text h2,
.about-text h3 {
  text-align: center;
}

.about-image img {
  max-width: 100%;
}

.service-container {
  flex-direction: column;
  padding: 40px 20px;
}

.service-header {
  height: 200px;
  padding: 0 20px;
}

.service-text h2 {
  text-align: center;
}


.read-more-section {
  flex-direction: column;
}

.side-boxes {
  width: 100%;
}

.gallery {
  grid-template-columns: repeat(2, 1fr);
}

.gallery {
  grid-template-columns: 1fr;
}


  @media (max-width: 768px) {
  .nav-links.show {
    display: flex !important;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }
}
@media (max-width: 500px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
    flex-direction: column;
  }

  .floating-btn {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 24px;
    text-align: center;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
  }

  .hero-text a.btn {
    padding: 10px 16px;
    font-size: 14px;
    display: block;
    margin: 10px auto;
  }
}


      @media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .about-content {
    padding: 20px;
  }
}



  @media (max-width: 768px) {
  .cards-container,
  .gallery-container {
    flex-direction: column;
    align-items: center;
  }

  .gallery-box img {
    width: 100%;
    height: auto;
  }

  .gallery-box button {
    width: 100%;
    margin-top: 10px;
  }
}

  /* Responsive Project Row Layout */
  .project-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
    
  }
  .card-content .button-label {
  color: #ffffff !important;
  font-weight: bold;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: 0px 0px 2px #000; /* Optional: make white text readable on blue */
}


.project-card {
  width: 360px;
  min-width: 360px;
  max-width: 360px;
  min-height: 600px;   /* Optional base height */
  height: auto;        /* 🔵 Let it grow as needed */
   transition: all 0.4s ease;
}
.button-box span {
  color: white;
  font-weight: bold;
  opacity: 1;
  filter: none;
}


  .project-card:hover, .project-card.active {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   
  }

  .main-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
  }

  .card-content {
    padding: 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    overflow: hidden;
  }

  .card-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #005082;
    font-weight: 600;
    cursor: pointer;
  }

  .card-content .logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .info .location, .info .rera {
    font-size: 15px;
    margin: 0 0 5px 0;
    color: #444;
  }
.card-content .price-link,
.card-content .overview-label {
  color: #fff !important;        /* Bright readable color */
  font-weight: bold;
  opacity: 1 !important;         /* Ensure no fading */
  filter: none !important;       /* Cancel any blur */
}

.desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  overflow: visible;
  max-height: none;
  
  overflow: visible;
}

  /* Collapsible section styling */
  #eternia-section, #eros-section, #godrej-section {
    background: #f4f8fc;
    border-radius: 8px;
    padding: 18px;
    margin-top: 18px;
  }
  .left-options img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
  }
  .left-options p {
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #005082;
  }
  .left-options .price-link {
    display: inline-block;
    margin-top: 10px;
    color: #1a3e63;
    text-decoration: underline;
    font-size: 15px;
  }
  @media (max-width: 1200px) {
    .project-row {
      gap: 18px;
    }
    .project-card {
      width: 300px;
      min-width: 300px;
      max-width: 300px;
      height: 600px;
    }
  }
  @media (max-width: 1050px) {
    .project-row {
      flex-wrap: wrap;
      gap: 18px;
    }
    .project-card {
      width: 90vw;
      min-width: 220px;
      max-width: 98vw;
      height: 600px;
    }
  }
  .project-card.active {
    border: 2px solid #005082;
    box-shadow: 0 8px 24px rgba(0, 80, 130, 0.3);
  }
.toggle-btn {
  background-color: #004080;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}
.project-card .info {
  padding: 10px;
  height: auto;
  overflow: visible;
}

.project-card .info p,
.project-card .info div {
  max-height: none !important;
  overflow: visible !important;
}

@media (max-width: 600px) {
  .toggle-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
}
  @media (max-width: 900px) {
    .project-row {
      flex-direction: column;
      gap: 18px;
      align-items: center;
    }
    .project-card {
      width: 98vw;
      min-width: 0;
      margin-bottom: 10px;
      height: auto;
    }
    .main-image {
      height: 150px;
    }
  }


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Floating button */
.call-us-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
}

/* Popup form */
.form-popup {
  display: none; /* Hidden initially */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.form-container h2 {
  color: white;
  margin-top: 0;
  text-align: center;
}

.form-container h2 span {
  color: yellow;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
}

.form-container button[type="submit"] {
  width: 100%;
  margin-top: 15px;
  background-color: blue;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn {
  float: right;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
/* Responsive tweaks */
@media screen and (max-width: 500px) {
  .form-popup {
    width: 90%;
  }
}

  .call-us-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
  }

  .form-popup {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    border-radius: 10px;
    padding: 25px;
    z-index: 1000;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .form-container h2 {
    color: white;
    margin-bottom: 20px;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border-radius: 5px;
    border: none;
  }

  .submit-btn {
    width: 100%;
    background-color: #0000ff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }

  .close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    color: white;
    font-size: 22px;
    cursor: pointer;
  }


    /* ⬇️ Paste the full CSS here */
    .form-section {
      padding: 40px 20px;
      background: #f9f9f9;
      display: flex;
      justify-content: center;
    }
    .form-box {
      background: white;
      padding: 30px;
      border-radius: 10px;
      max-width: 700px;
      width: 100%;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }
    .form-box h2 {
      margin-bottom: 20px;
      color: #004080;
    }
    form input,
    form select,
    form textarea {
      width: 100%;
      margin-bottom: 15px;
      padding: 12px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .form-row {
      display: flex;
      gap: 15px;
    }
    .form-row input {
      flex: 1;
    }
    form button {
      background-color: #004080;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }
    form button:hover {
      background-color: #003060;
    }
  
.commercial-section {
  background: #f9f9f9;
  padding: 60px 20px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.project-card:hover {
  transform: translateY(-5px);
}
.image-container {
  position: relative;
}
.image-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.location-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
}
.photo-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.8);
  padding: 4px 8px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
}
.badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 5px;
}
.badges span {
  background: #ff4f00;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 12px;
}
.project-content {
  padding: 12px 14px; /* was 16px */
  display: flex;
  flex-direction: column;
  gap: 4px; /* Add to control spacing more precisely */
}

.project-content h3 {
  font-size: 17px;
  color: #333;
  margin-bottom: 4px; /* reduced from 8px */
}

.project-content .area,
.project-content p {
  margin: 0; /* prevent browser default spacing */
}

.bottom-bar {
  padding: 10px 14px; /* reduced from 12px 16px */
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-bar .company {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #004080;
  text-decoration: none;
}
.project-grid {
  gap: 20px; /* was 30px */
}

.bottom-bar .company img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  border-radius: 50%;
}
.bottom-bar .icons span {
  margin-left: 10px;
  cursor: pointer;
  font-size: 18px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
.modal iframe {
  border: none;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  height: 80vh;
}
.modal .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.open-email-popup {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 10px auto;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  font-size: 14px;
}

#emailPopupModal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

#emailPopupModal .popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

#emailPopupModal input,
#emailPopupModal textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#emailPopupModal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}


/* Retail Section Container */
#retail-section {
  padding: 40px 20px;
  background: #fff;
}

#retail-section h2 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ff6600;
  font-size: 32px;
  font-weight: bold;
}

/* Project Grid */
.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.project-card {
  width: 300px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}


.project-card:hover {
  transform: translateY(-5px);
}

/* Image Container */
.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Location Tag */
.location-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 64, 128, 0.8);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}

/* Photo Count */
.photo-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}

/* Badges */
.badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
}

.badges span {
  background: #ff6600;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
}

/* Content */
.project-content {
  padding: 15px;
}

.project-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #004080;
}

.project-content .price {
  color: #28a745;
  font-weight: bold;
  margin-bottom: 5px;
}

.project-content .area {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.project-content p {
  font-size: 14px;
  color: #444;
}

/* Bottom Bar */
.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #eee;
}

.bottom-bar .company {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #004080;
  font-weight: bold;
}

.bottom-bar .company img {
  height: 30px;
}

.bottom-bar .icons span {
  margin-left: 10px;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}

.bottom-bar .icons span:hover {
  color: #004080;
}

/* Enquire Now Button */
.enquire-btn {
  background-color: #ff6600;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.enquire-btn:hover {
  background-color: #e65500;
}

/* Modal Form (if not already included) */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal-content button {
  background-color: #004080;
  color: white;
  padding: 10px 15px;
  border: none;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
}

.modal .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
}
.project-card {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.enquire-btn {
  background-color: #ff6600;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal-content button {
  background-color: #004080;
  color: white;
  padding: 10px 15px;
  border: none;
  width: 100%;
  border-radius: 5px;
}

.modal .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 20px;
  cursor: pointer;
}




/* Responsive */
/* Mobile Responsive */
@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: relative;
  }

  .listing-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .listing-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .projects-container {
    flex-direction: column;
    align-items: center;
  }
}

/* CONTACT SECTION STYLES */
.section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-info, .contact-form {
  flex: 1 1 45%;
  min-width: 280px;
}

.contact-info h2,
.contact-form h3 {
  color: #004080;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.contact-info a {
  color: #004080;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #0055aa;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .form-box {
    padding: 20px 15px;
  }
}

.google-review-badge {
  margin-top: 15px;
}
.google-review-badge img {
  width: 80px;
  height: auto;
  display: block;
}
