/* carousel css */
.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.carousel-caption p {
  font-size: 1.2rem;
}

.carousel-caption {
  padding: 15px;
  bottom: 5%;
  animation: slideUp 1s ease-out forwards;
  opacity: 0;
}

@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.carousel-inner .carousel-item,
.carousel-inner .carousel-item img {
  height: 100vh;
  object-fit: cover;
  background: #c4c2c3;

  background: radial-gradient(
    circle,
    rgba(196, 194, 195, 1) 0%,
    rgba(35, 35, 36, 1) 100%
  );
}
.carousel-inner .carousel-item {
  background: rgba(0, 0, 0, 0.6);
}

/* === Overview Section === */
#overview {
  padding: 40px 10px;
}

.overview-section {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 10px;
  margin-bottom: 0.3rem;
}

.section-description {
  font-size: 16px;
  color: var(--text-dark);
  max-width: 650px;
  margin: 10px auto 0;
}

.overview-content {
  text-align: justify;
  line-height: 1.5rem;
  font-size: 1rem;
}
/* Overview Cards */

.overview-card {
  background: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.overview-card .card-body {
  padding: 20px;
}
.overview-card p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.overview-card h6 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* custombtn */
.view-more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.customBtn {
  background-color: transparent;
  border: 1px solid #518e58d0;
  padding: 8px 30px;
  color: #007432;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin: 30px 0;
  letter-spacing: 2px;
  transition: 0.5s all ease-in-out;
}

.customBtn:hover {
  background-color: var(--primary-blue);
  color: #fff;
  border: 1px solid var(--primary-blue);
}

/* Image Hover */
.image-hover-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.main-img {
  height: 250px;
}

.image-hover-effect {
  transition: transform 0.5s ease;
}

.image-hover-wrapper:hover .image-hover-effect {
  transform: scale(1.05);
}

.image-hover-wrapper-main:hover .image-hover-effect {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 767px) {
  #overview .col-md-6:first-child {
    padding: 0 15px;
  }
  .overview-card h6 {
    font-size: 16px;
  }
  .section-title {
    font-size: 26px;
  }
}

/* GALLARY SECTION */
.gallary-section {
  text-align: center;
  margin-bottom: 40px;
}

.Gallary-img {
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
}

.Gallary-img:hover {
  transform: scale(0.89) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* pricing & booking */
#pricing-section {
  background: #fafafa;
}

.plot-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}

.plot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.plot-header {
  background: var(--primary-blue);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
}

.badge-size {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.plot-body {
  padding: 1.5rem;
  text-align: center;
}

.price-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.4rem;
}

.plot-type {
  color: #666;
  margin-bottom: 1rem;
}

.price-btn {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 500;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.price-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
/* footer-section */
#footer-section {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 40px 0;
}

.footer p {
  margin: 0 30px;
  line-height: 1.6;
}
.footer h2 {
  margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .price-text {
    font-size: 1.2rem;
  }
  .plot-card {
    margin-bottom: 1rem;
  }
}

/* price-section mediaq- */
@media (max-width: 991px) {
  .plot-card {
    max-width: 300px !important;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

/* highlight-section */
.section-header {
  text-align: center;
  position: relative;
}

.section-title {
  display: inline-block;
  position: relative;
  font-size: 3rem;
  color: #087a3c;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 2px;
  background: #087a3c;
}

.section-title::before {
  left: -90px;
}

.section-title::after {
  right: -90px;
}

/* flooor plans */
.hero {
  text-align: center;
  padding: 2rem 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  color: #0a8754;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero h1 .line {
  flex: 1;
  height: 3px;
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  max-width: 150px;
}

.hero p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-title::before,
  .section-title::after {
    width: 40px;
    left: -50px;
    right: -50px;
  }
}

/*  */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.floor-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}

.floor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0a8754 0%, #0db56f 100%);
}

.floor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.floor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.floor-title {
  font-size: 2rem;
  color: #0a8754;
  font-weight: 700;
}

.size-badge {
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(10, 135, 84, 0.3);
}

.floor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.floor-plans {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-item {
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f7 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0a8754;
  transition: all 0.3s;
  cursor: pointer;
}

.plan-item:hover {
  background: linear-gradient(135deg, #e8f5f0 0%, #d4e8e0 100%);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(10, 135, 84, 0.15);
}

.plan-item strong {
  color: #0a8754;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.3rem;
}

.plan-item span {
  color: #666;
  font-size: 0.95rem;
}

.floor-image {
  background: transparent;
  border-radius: 15px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.floor-image::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(10, 135, 84, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.floor-image::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(10, 135, 84, 0.08);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
}

.image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: none;
  /* disable hover animations */
}

.features {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px dashed #e0e0e0;
}

.features h4 {
  color: #0a8754;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.features p {
  color: #666;
  line-height: 1.8;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f7 100%);
  padding: 1rem;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .floor-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  body {
    padding: 1.5rem 0;
  }

  .container {
    padding: 0;
  }

  .hero {
    padding: 2rem 1rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 .line {
    max-width: 50px;
  }

  .floor-card {
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 1.5rem;
  }

  .floor-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* aminites css */
.amenities-section {
  padding: 60px 20px;
  background: #f5f8fa;
}

.amenities-section .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.amenities-title {
  font-size: 2.5rem;
  color: #18a573;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.amenities-subtitle {
  color: #6a7b8a;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.amenity-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(34, 60, 80, 0.1);
  width: 230px;
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}

.amenity-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 18px 34px 0 rgba(34, 60, 80, 0.13);
}

.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #18a573;
}

.amenity-name {
  font-size: 1.18rem;
  font-weight: 600;
  color: #252525;
}

/* faq section */
.faq-section {
  background: #f9f9f9;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 15px 20px;
  display: none;
  color: #555;
}

/* contact section */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
}

.section-hero {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInDown 0.8s ease;
}

.section-hero h1 {
  font-size: 3.5rem;
  color: #0a8754;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.section-hero h1 .line {
  flex: 1;
  height: 3px;
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  max-width: 150px;
}

.section-hero p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.contact-info {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0a8754 0%, #0db56f 100%);
}

.contact-info h2 {
  color: #0a8754;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f7 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: linear-gradient(135deg, #e8f5f0 0%, #d4e8e0 100%);
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
  transform: rotate(10deg) scale(1.1);
}

.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.info-content h3 {
  color: #0a8754;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-content p {
  color: #666;
  font-size: 0.95rem;
}

.info-content a {
  color: #0a8754;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #0db56f;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f8fafb 0%, #f0f4f7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: #0a8754;
  transition: stroke 0.3s ease;
}

.social-link:hover svg {
  stroke: white;
}

/* .contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0a8754 0%, #0db56f 100%);
} */

/* .contact-form h2 {
  color: #0a8754;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.5rem;
} */

/* .form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8fafb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #0a8754;
  background: white;
  box-shadow: 0 0 0 3px rgba(10, 135, 84, 0.1);
} */

/* .form-group textarea {
  resize: vertical;
  min-height: 120px;
} */
/* 
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0a8754 0%, #0db56f 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 135, 84, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(10, 135, 84, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.success-message {
  display: none;
  background: linear-gradient(135deg, #e8f5f0 0%, #d4e8e0 100%);
  border: 2px solid #0a8754;
  color: #0a8754;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.success-message.show {
  display: block;
  animation: slideDown 0.5s ease;
} */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .section-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  body {
    padding: 1.5rem 0.5rem;
  }

  .section-hero h1 {
    font-size: 2rem;
    gap: 1rem;
  }

  .section-hero h1 .line {
    max-width: 50px;
  }

  .contact-info,
  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* Make carousel full height */
/* Full height carousel */
#carousel-section .carousel-inner img {
  height: 100vh;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Overlay text */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3; /* makes text appear above image */
  background: rgba(0, 0, 0, 0.3); /* optional dim for visibility */
}

.carousel-text {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-text.show {
  opacity: 1;
}

/* Make text pop */
.carousel-text h1,
.carousel-text p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Form Styling */
.hero-form {
  max-width: 420px;
  background-color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 5;
}

.hero-form-wrapper {
  z-index: 5;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .carousel-overlay {
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
    background: rgba(0, 0, 0, 0.4);
  }

  .carousel-text h1 {
    font-size: 1.8rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }

  #carousel-section .carousel-inner img {
    height: 100vh; /* full viewport */
  }

  .hero-form-mobile {
    background-color: #f9f9f9;
  }
}
