* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
}
header {
  background: #0a3d62;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
header h1 {
  font-size: 1.5rem;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh; /* make it full screen */
  width: 100vw;  /* take full width */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh; /* ensures at least full screen */
  background-size: cover; /* no crop */
  background-repeat: no-repeat;
  background-position:center;
  display: none;
}



.hero-slide.active {
  display: block;
}


.hero-overlay {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for text visibility */
  display: flex;
  flex-direction: column;
  padding: 0rem 20rem;
  color: #fff;
}
section {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.project-title {
  font-size: 3rem;
  color: #007aff;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
}

.bhk-type {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}

.launch-pill {
  
  color: red;
  padding: 0.5rem;
  font-size: 2rem;
  position: absolute;
  top: 9%;
  right: 48%;
  text-align: center;
  font-weight: bold;
  
 
}

.price-box {
  margin-top: 2rem;
}

.price-label {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

.price-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  display: block;
}

.price-value small {
  font-size: 1rem;
  vertical-align: super;
}

.hero{
  margin-top: 50px;
}


.floor-plans img {
  width: 100%;
  max-width: 200px;
  filter: blur(6px);
  cursor: pointer;
}
.cta,
.form-popup {
  background: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 2rem;
  border-radius: 5px;
}
.cta button,
.form-popup button,
form button {
  background: #ffce00;
  border: none;
  padding: 0.8rem 2rem;
  margin-top: 1rem;
  font-weight: bold;
  cursor: pointer;
}
form input,
form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  margin: 10px;
  border-radius: 10px;
}
.form-popup {
  display: none;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  color: #000;
  padding: 2rem;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.form-popup.active {
  display: block;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  z-index: 999;
  text-decoration: none;
}




@media (max-width: 992px) {
  
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #0a3d62;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 20px;
    transition: right 0.3s ease;
  }
  nav.active {
    right: 0;
    display: flex;
  }
  header {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-overlay{
    padding: 0px 20px;
  }
  .project-title{
    font-size: 30px;
  }
  .launch-pill{
    top: 40px;
    right: 10px;
  }
  .bhk-type{
    font-size: 1rem;
  }

  
}
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container img {
  width: 100%;
  height: auto; /* maintain natural height */
  object-fit: cover; /* crop image neatly */
  display: block;
  max-height: 100vh; /* Optional: Prevent it from being too tall */
}
