
/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;

}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}







.section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.image-box img {
  width: 100%;
  border-radius: 8px;
  height:550px;
}
.highlights {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  border-top: 3px solid #f4b400;
  /* border-bottom: 3px solid #f39c12; */
  padding: 15px 0;
}

.highlight-items {
  display: flex;
  justify-content: space-around;
  flex: 1;
  text-align: center;
  
}

.highlight-items div {
  margin: 0 15px;
}

.highlight-items h2 {
  font-size: 28px;
  margin: 0;
  color: #1a3b8d; 
}

.highlight-items p {
  font-size: 14px;
  margin: 5px 0 0;
  color: #555;
}

.highlight-logo img {
  max-width: 220px; /* adjust logo size */
  height: auto;
}

@media (max-width: 768px) {
  .highlights {
    flex-direction: column;
  }
  .highlight-items {
    flex-wrap: wrap;
    justify-content: center;
  }
  .highlight-logo {
    margin-top: 15px;
  }
}

.overview-contact {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.overview {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.overview h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

.overview ul {
  list-style: none;
  padding: 0;
}

.overview ul li {
  margin: 10px 0;
}

.overview ul li strong {
  color: #000;
}

.contact-box {
  background: #1b1b1b;
  color: #fff;
  padding: 25px;
  /* border-radius: 8px; */
  text-align: center;
}

.contact-box h4 {
  margin-bottom: 10px;
  color: #F68A0A;
}

.contact-box p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-box button {
  background: #f4b400;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}



@media (max-width: 768px) {
  .highlights {
    flex-direction: column;
  }
  .overview-contact {
    grid-template-columns: 1fr;
  }
}



.project-goal {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
}

.project-goal h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
}

.project-goal p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.goal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: start;
}

.goal-image img {
  width: 100%;
  border-radius: 8px;
}

.goal-list ul {
  list-style: none;
  padding: 0;
}

.goal-list ul li {
  font-size: 15px;
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  color: #333;
}

.goal-list ul li::before {
  content: "✔"; /* orange tick */
  color: #f39c12;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .goal-content {
    grid-template-columns: 1fr;
  }
}



.amenities {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.amenities h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #111;
}

.amenities p {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per row */
  gap: 20px;
}

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

.amenity-box {
  background: #f5f5f5;
  padding: 25px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
}

.amenity-box img {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}

.amenity-box h4 {
  font-size: 15px;
  color: #222;
  margin: 0;
}

.amenity-box:hover {
  background: #eaeaea;
  transform: translateY(-5px);
}



.floor-plans {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}
.floor-plans .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.floor-plans .section-desc {
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tab-btn {
  background: #f1f1f1;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.tab-btn.active {
  background: #2a4d9b;
  color: #fff;
}
.tab-content {
  max-width: 900px;
  margin: 0 auto;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.tab-pane img {
  width: 100%;
  border-radius: 8px;
}

.gallery {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}
.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.carousel {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}
.carousel-track-container {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-slide {
  min-width: 33.33%; /* Show 3 slides at once */
  box-sizing: border-box;
  padding: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  padding: 8px 12px;
  border-radius: 50%;
  z-index: 10;
}
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.carousel-slide img {
  width: 100%;
  height: 250px; /* fixed height */
  object-fit: cover; /* crop instead of stretching */
  border-radius: 15px;
}
