body {
  padding: 0;
  margin: 0;
  object-fit: cover;
  scroll-behavior: smooth;
}

[data-aos] {
  transform: translate3d(0, 30px, 0);
}
.btn-success{
    background:#9D8B3F;
}


.contact-overlay {
  position: absolute;
  top: 45%;
  left: 65%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 5px;
  z-index: 10;
}

.open-form-btn.wtsp {
  background-color: #25D366 !important;
  /* WhatsApp green */
  color: white;
}

.open-form-btn.wtsp:hover {
  background-color: #1ebe5d !important;
  /* darker green on hover */
}

/* @media (max-width: 768px) {
    .contact-overlay {
        display: none;
    }
} */


.carousel-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
}

.open-form-btn {
  background-color: var(--gold-light) !important;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  .carousel-item {
    height: 120vh;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 100vh;
  }
}

.property-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--burlywood);
  padding: 40px 30px;
  transform: none;
  filter: none;
}

@media (max-width: 576px) {
  .property-info {
    padding: 20px 15px;
  }
}

.property-price {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.SeeMore {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .property-price {
    font-size: 24px;
  }
}

.property-address {
  font-size: 20px;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .property-address {
    font-size: 16px;
  }
}

.property-details {
  font-size: 14px;
  opacity: 0.9;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  margin: 5px;
  background-color: var(--gold-medium);
  border: none;
  border-radius: 5px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--gold-medium);
}


@media (max-width: 767px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none; /* Hides the previous and next buttons */
  }

  .carousel-indicators {
    display: none;
  }
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-indicators button.active {
  background-color: white;
}


/* transition */
.carousel-item {
  position: relative;
  background-size: cover;
  background-position: center;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);

  z-index: 1;
}

.property-info {
  position: relative;
  z-index: 2;
  top: 50%;
  left: 33px;
  width: 500px;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  color: var(--gold-light);
  transform: translate(0, -50%);
  font-family: system-ui;
  opacity: 0;
  animation: slideIn 1s ease-in-out 1 forwards;
  background: none;
}

.property-price,
.property-address,
.property-details,
.SeeMore button {
  opacity: 0;
}

.property-price {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  animation: slideIn 1s ease-in-out 0s 1 forwards;
}

.property-address {
  margin-top: 10px;
  animation: slideIn 1s ease-in-out 0.3s 1 forwards;
}

.property-details {
  margin-top: 10px;
  margin-bottom: 20px;
  animation: slideIn 1s ease-in-out 0.6s 1 forwards;
}

.SeeMore a {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: var(--gold-medium);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.673);
  transition: all 0.5s;
  animation: slideIn 1.7s ease-in-out forwards;
}

.SeeMore a:hover {
  background-color: rgb(255, 255, 255);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* gallery section */
.gallery-section {
  padding: 4px;
  background-color: var(--cream);
}

.gallery-card {
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.gallery-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}


.gallery-title-line {
  position: relative;
}

.gallery-title-line .section-title {
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  color: var(--charcoal);
  font-family: "gf_Cormorant_Garamond variant0";
  font-style: normal;
  font-weight: 400;
  font-size: 27px;
  text-transform: capitalize;
}

.section-subtitle {
  color: var(--charcoal);
  font-family: "gf_Cormorant_Garamond variant0";
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
}

.gallery-title-line::before,
.gallery-title-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 2px;
  background-color: var(--burlywood);

}

.gallery-title-line::before {
  left: 0;
}

.gallery-title-line::after {
  right: 0;
}

/* form section */

.form-section {
  font-family: "Poppins", sans-serif;
  color: var(--charcoal);
}

/* Compact Contact Form */
.contact-form {
  background-color: var(--gold-light);
  padding: 20px 18px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  margin: auto;
}


.contact-header {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

/* Labels and Inputs */
.contact-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 12px;
  background: #fff;
}

textarea {
  min-height: 70px;
  resize: vertical;
}

/* Button */
.contact-button button {
  width: 100%;
  padding: 8px 12px;
  background-color: var(--gold-dark);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-button button:hover {
  background-color: var(--gold-medium);
  transform: scale(1.01);
}

/* For modal version */
.modal-content {
  border-radius: 10px;
  padding: 10px !important;
}

.form-title {
  font-size: 26px;
  color: var(--gold-medium);
}

.form-text,
.word {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    max-width: 90%;
    padding: 15px;
  }
}




/* floor plan section */
.floor-plans-section {
  padding: 2rem 0;
}

.floor-plan-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.floor-plan-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.floor-plan-image-wrapper {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
}

.floor-plan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
}

.expand-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.floor-plan-card:hover .expand-btn {
  opacity: 1;
}

.expand-btn:hover {
  background: #fff;
}

.floor-plan-content {
  padding: 1.5rem;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.plan-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.spec-icon {
  width: 20px;
  height: 20px;
  color: #495057;
}

.spec-value {
  font-weight: 500;
  color: #1a1a1a;
}

.price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.price-label {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 400;
}

.floor-plan-content {
  position: relative;
}

.view-details-btn {
  background: var(--gold-medium);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  position: absolute;
  right: 20px;
  top: 20px;
}

.availability-badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: var(--gold-medium);
  color: var(--charcoal);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

@media (max-width: 768px) {
  .floor-plans-section {
    padding: 1.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .floor-plan-image-wrapper {
    height: 200px;
  }

  .plan-specs {
    gap: 1rem;
  }

  .price {
    font-size: 1.25rem;
  }

  .view-details-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Location Section start  */
.locations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-head {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  font-weight: 40px;
}

.locations-list li {
  position: relative;
  padding-left: 25px;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.locations-list li::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
}

.locations-list li span {
  color: blue;
  font-weight: 600;
}

.location-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 1.4rem;
}

.location-map {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 0 1rem;
  height: 100%;
}

.location-map iframe {
  width: 100%;
  height: 100%;

  border: none;
  border-radius: 12px;
  transform-origin: center center;
}



/* aminites section */
.aminites-title {
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  color: var(--charcoal);
  font-family: "gf_Cormorant_Garamond variant0";
  font-style: normal;
  font-weight: 400;
  font-size: 57px;
}

.aminites-subtitle {
  color: var(--gold-medium);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.amenities-section {
  padding: 60px 0;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.amenities-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: var(--gold-medium);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-medium), transparent);
  margin: 25px auto;
}

.section-header p {
  color: #777;
  font-size: 1.05rem;
  font-weight: 300;
  margin-top: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.amenities-grid {
  margin-top: 70px;
}

.amenity-card {
  position: relative;
  height: 100%;
  padding: 10px 10px;
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold-light);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-card:hover::after {
  opacity: 1;
}

.amenity-icon-wrapper {
  margin-bottom: 35px;
  display: inline-block;
  align-self: flex-start;
}

.amenity-icon {
  font-size: 2.5rem;
  color: var(--gold-medium);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
  border-left: 3px solid var(--gold-dark);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.amenity-card:hover .amenity-icon {
  color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.1));
  border-left-color: var(--gold-medium);
  transform: translateX(5px);
}

.amenity-title {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.amenity-description {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.row {
  row-gap: 40px;
}

@media (max-width: 768px) {
  .amenities-section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .amenity-card {
    padding: 40px 25px;
  }

  .amenity-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .amenity-title {
    font-size: 1.3rem;
  }

  .amenity-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .amenity-card {
    padding: 30px 20px;
  }
}

/* overvivew section  */
.overview-card {
  flex: 0 0 25%;
  max-width: 25%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
  background-color: var(--green-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-item h4 {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.overview-item p {
  color: #fff;
  font-weight: 400;
  font-size: 0.8rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

.image-hover-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.for-paras {
  text-align: justify;
  line-height: 1.5rem;
  text-justify: inter-word;
  font-size: 1rem;
}


.short-img {
  filter: none !important;
  min-height: 500px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .highlight-card {
    align-items: center;
    gap: 1.5rem;
  }

  .short-img {
    min-height: 250px !important;
  }

  .image-hover-effect {
    filter: none !important;
  }

  .price-box {
    width: 100%;
  }

  .view-more {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .para-effect {
    z-index: 10 !important;
  }
}

@media (max-width: 480px) {
  .highlight-card {
    align-items: center;
    gap: 1.5rem;
  }
}

/* overview-section css */

/* overview-section css close */
.overview {
  background: #fff;
  padding: clamp(48px, 6vw, 88px) 0;
}

/* Grid – mobile first */
.overview-grid {
  display: grid;
  gap: 24px;
}

.sec-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.6rem 0;
  font-weight: 600;
}

.lead-copy {
  font-size: 1rem;
  color: #272827;
  text-align: justify;
  line-height: 2;
  margin: 0 0 1.1rem 0;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 576px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-title-line .section-title {
    font-size: 37px;
  }
}

@media (min-width: 1200px) {
  .stats {
    grid-template-columns: repeat(5, 1fr);
  }

  .gallery-title-line .section-title {
    font-size: 57px;
  }
}

.stat-label {
  font-size: 0.82rem;
  color: var(--burlywood);
  margin-top: 6px;
}

.stat {
  /* background: var(--cream); */
  border: 1px solid var(--gold-medium);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px 10px;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-num {
  font-weight: 600;
  color: var(--burlywood);
  font-size: 1.15rem;
  line-height: 1.2;
}

.stat-num .u {
  display: block;
  font-size: 0.78rem;
  color: var(--burlywood);
  margin-top: 2px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--burlywood);
  margin-top: 6px;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 2px 0 0 0;
  list-style: none;
}

.feature-chips li {
  font-size: 0.86rem;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
}

/* Media collage */
.overview-media {
  width: 100%;
}

.media-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 130px;
}

.media-card {
  background: #dde7ef;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6edf2;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card.tall {
  grid-row: span 2;
}

.media-card.wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* Caption */
.media-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

/* Subtle hover effect */
.media-card:hover img {
  transform: scale(1.03);
  transition: transform 0.45s ease;
}

@media (min-width: 992px) {
  .overview-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 40px;
  }

  .media-grid {
    grid-auto-rows: 230px;
  }
}


/* faq section */
.faq-section {
  background-color: var(--cream) !important;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 0.3rem;
}

.accordion-button {
  background-color: var(--secondary-gray);
  color: #1d1d1d;
  /* Default question text color */
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #dee2e6;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--cream);
  color: black;
  /* Question text color when active */
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f7d1bc' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 8H14'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.brochure-section .form-control,
.brochure-section .form-select {
  border-radius: 3px;
  border-color: #ccc;
  font-size: 0.9rem;
  padding: 10px;
}

.brochure-section .form-control:focus,
.brochure-section .form-select:focus {
  box-shadow: 0 0 0 2px rgba(0, 116, 50, 0.419);
}

/* ================================
   Base Styles (Mobile First)
================================ */

/* --- Carousel Base --- */
#heroCarousel .carousel-item img {
  height: 100vh;  
  object-fit: cover;
  filter: brightness(70%);
  border-radius: 3px;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
	height:100%; 
  gap: 1rem;
  padding: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
}
.main-div {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  text-align: left;
  height: 100%
}

/* --- Carousel Controls --- */
.carousel-control-next,
.carousel-control-prev {
  width: 30px;
  z-index: 11;
  display: none;
}

/* --- Text Content --- */
.text-content {
  max-width: 90%;
  z-index: 2;
}

.text-content h1 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.text-content p {
  font-size: 1rem;
  color: #ffffff;
  margin: 0 auto 1rem;
  max-width: 400px;
}

/* --- Form Box --- */
.contact-form-box {
  position: relative;
  border-radius: 3px;
  padding: 1rem;
  width: 100%;
  max-width: 100%;
  background: #fff;
  margin-bottom: 1rem;
  box-shadow: none;
  z-index: 3;
}

.icon-circle {
  background-color: #007432;
  color: #fff;
  border-radius: 50%;
  padding: 5px 10px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
  border-radius: 3px;
  border-color: #ccc;
  font-size: 0.9rem;
  padding: 10px;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  box-shadow: 0 0 0 2px rgba(0, 116, 50, 0.419);
}

.contact-form-box button.btn-success {
  background: linear-gradient(135deg, #007432, #1a5031);
  border: none;
  font-weight: 600;
  border-radius: 3px;
  padding: 10px 0;
  width: 100%;
  transition: all 0.3s ease;
}

.contact-form-box button.btn-success:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* --- Buttons & CTAs --- */
.btn {
  border-radius: 3px !important;
}

/* --- Animations --- */

/* ================================
   Breakpoints
================================ */

/* ≥576px (small devices) */
@media (min-width: 576px) {
  #heroCarousel .carousel-item img {
    height: 100vh;
  }

  .contact-form-box {
    max-width: 420px;
  }

  .text-content h1 {
    font-size: 1.7rem;
  }
}

/* ≥768px (medium devices / tablets) */
@media (min-width: 768px) {
  .main-div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 2rem;
	height: 100%;
  }
  

  .text-content {
    max-width: 400px;
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content p {
    font-size: 1.05rem;
  }

  .contact-form-box {
    margin: 0;
    max-width: 380px;
  }
  .navbar-brand img {
    width: 71px;
	height:66px;
	object-fit: cover;
  }

  .carousel-control-next,
  .carousel-control-prev {
    display: block;
  }
}

/* ≥992px (large devices / desktops) */
@media (min-width: 992px) {
  #heroCarousel .carousel-item img {
    height: 100vh;
  }

  .carousel-overlay {
    padding: 3rem;
  }

  .text-content h1 {
    font-size: 2.3rem;
  }

  .text-content p {
    font-size: 1.1rem;
  }

  .contact-form-box {
    position: static;
    max-width: 420px;
    background: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  }

  .modal .contact-form-box {
    max-width: 100%;
  }
}

/* --- Custom Carousel Controls --- */
.carousel-control-prev,
.carousel-control-next {
  width: 38px;
  height: 38px;
  background: #9D8B3F; /* green shade */
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  border: 1px solid #fff;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #025d29; /* vivid green */
  transform: translateY(-50%);
}

/* Icon customization */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* remove Bootstrap’s default icon */
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}

/* Add custom Font Awesome or Bootstrap Icons */
.carousel-control-prev-icon::before {
  content: "\f053"; /* Font Awesome 'angle-left' */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.carousel-control-next-icon::before {
  content: "\f054"; /* Font Awesome 'angle-right' */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.custom-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.custom-checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1rem;
}

.custom-checklist li::before {
	
  content: "\2714";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f0fff7;
  /* color: #fff; */
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 11px;
}