body {
    font-family: 'Playfair Display', serif;
    }
    h1, h2, h3, p {
    font-family: 'Playfair Display', serif;
}
@font-face {
    font-family: "HelveticaNowDisplay";
    src: url("fonts/HelveticaNowDisplay-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}
p {
    font-family: "HelveticaNowDisplay", Arial, Helvetica, sans-serif;
}
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar a {
  color: #fff !important;
  font-weight: 500;
}

.navbar.sticky {
  position: fixed;
  background: #00491e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.sticky a {
  color: #ffffff !important;
}

/*.hero-slider .carousel-item {*/
/*  height: 100vh;*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  position: relative;*/
/*}*/

/*.hero-slider .carousel-item::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: rgba(0, 0, 0, 0.45);*/
/*}*/

/*.hero-content {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  color: #fff;*/
/*  max-width: 600px;*/
/*}*/

.btn-main {
    background: #00491e;
    border: 1px solid #ffffff96;
    padding: 12px 30px;
    color: #fff;
}
.btn-main:hover {
    background: #00491e;
    border: 1px solid #ffffff96;
    padding: 12px 30px;
    color: #fff;
}

.section {
  padding: 100px 0;
}
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}


.stats h3 {
  color: #00491e;
  font-size: 36px;
  font-weight: 700;
}
.about-section {
  padding: 100px 0 0px 0px;
  background: #fff;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #00491e;
  margin-bottom: 20px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.stats h3 {
  color: #00491e;
  font-size: 36px;
  font-weight: 700;
}

.stats p {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}


.contact-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact-card h4 {
  color: #00491e;
  font-weight: 700;
  text-align: center;
}

.contact-card .small {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.contact-card .form-control {
  margin-bottom: 15px;
  padding: 12px;
}

.submit-btn {
  width: 100%;
  background: #00491e;
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  border: none;
}

.submit-btn:hover {
  background: #003615;
}

.privacy-text {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #555;
}
.amenities-section {
  padding: 100px 0;
}

/* Tabs */
.amenity-tabs {
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.amenity-tabs .nav-link {
  border: none;
  background: none;
  text-align: center;
  padding: 20px;
  color: #002b1b;
  min-width: 120px;
}

.amenity-tabs .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.amenity-tabs .nav-link.active {
  color: #ff4d4d;
  border-bottom: 2px solid #ff4d4d;
}


.tab-pane h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4d4d;
  font-weight: bold;
}


@media (max-width: 768px) {
  .amenity-tabs {
    gap: 10px;
  }
}
.project-gallery {
  padding: 80px 15px;
  background: #00491e21;
}

.pg-head {
  text-align: center;
  margin-bottom: 40px;
}

.pg-head h2 {
  font-size: 36px;
}

.pg-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.pg-tabs li {
  padding: 12px 24px;
  background: #fff;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.pg-tabs li.active,
.pg-tabs li:hover {
  background: #00491e;
  color: #fff;
}

.pg-tab-content {
  display: none;
  animation: pgFade 0.5s ease;
}

.pg-tab-content.active {
  display: block;
}

.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pg-grid img,
.pg-grid iframe {
  width: 100%;
  border-radius: 16px;
  border: none;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s;
}

.pg-grid img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .pg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pg-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes pgFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects-slider-section {
  padding: 90px 0;
  background: #f5f6f8;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-info {
  padding: 18px;
}

.project-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.project-info span {
  font-size: 14px;
  color: #777;
}


.swiper {
  padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #00491e;
}

.swiper-pagination-bullet-active {
  background: #00491e;
}


@media (max-width: 768px) {
  .project-card img {
    height: 200px;
  }
}
.faq-section {
  padding: 90px 0;
  background: #f8f9fa;
}

.faq-section .section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-section .section-title p {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #555;
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 16px;
  background: #fff;
  color: #00491e;
  padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #00491e;
  color: #fff;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  font-size: 15px;
  color: #555;
  background: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
}
.contact-map-section {
  padding: 90px 0;
  background: #00491e1c;
}

.contact-info-box {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-box h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #00491e;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.info-item i {
  font-size: 22px;
  color: #00491e;
  margin-top: 4px;
}

.info-item h6 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

.info-item p {
  margin: 0;
  font-size: 14.5px;
  color: #555;
}

.map-box {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .map-box iframe {
    min-height: 350px;
  }
}

.cta-banner {
  position: relative;
  background: url("../img/bg-cta.jpg") center/cover no-repeat;
  /* height: 380px; */
  overflow: hidden;

  padding: 27px;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* brand green overlay */
}

.cta-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.cta-content h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  max-width: 700px;
  margin-bottom: 25px;
}

.cta-btn {
  background: #ffffff; /* maroon */
  color: #00491e;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #00491e;
  color: white;
}


.cta-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cta-modal.active {
  display: flex;
}

.modal-box {
  background: #fff;
  padding: 35px;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
}

.modal-box h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #00491e;
}

.modal-box form input,
.modal-box form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.modal-box form textarea {
  resize: none;
  height: 100px;
}

.modal-box form button {
  width: 100%;
  padding: 12px;
  background: #00491e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }
}

.site-footer {
  background: transparent;
  padding: 50px 20px 30px;
  text-align: center;
}


.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #00491e; /* brand green */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #00491e;
  color: #ffffff;
  transform: translateY(-4px);
}

/* COPYRIGHT BAR */
.footer-bottom {
  background: #00491e;
  padding: 14px 10px;
  text-align: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}


@media (max-width: 768px) {
  .footer-logo img {
    max-width: 150px;
  }
}
.hero-section-single {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    /* padding-top: 120px; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-section-single .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 60px;
}

.hero-content p {
  font-size: 18px;
  max-width: 500px;
}




.lead-form {
    background: #000000ad;
    padding: 30px;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    position: relative;
    z-index: 2;
    font-family: ha;
    font-family: "HelveticaNowDisplay", Arial, Helvetica, sans-serif;
    margin-bottom: 19px;
}
.lead-form h5{
      font-family: 'Playfair Display', serif;
}

.lead-form .form-control,
.lead-form .form-select {
  margin-bottom: 15px;
  height: 48px;
}

.btn-enroll {
    background: #00491e;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
}
.btn-enroll:hover {
    background: #00491e;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
}

.form-footer {
  margin-top: 15px;
  background: #ffc107;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 30px;
  }
}




.image-container {
  position: relative;
  width: 600px; /* Adjust as needed */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.main-img {
  width: 100%;
  display: block;
}

.secondary-img {
  position: absolute;
  bottom: 20px; /* Distance from bottom */
  right: 20px;  /* Distance from right */
  width: 180px; /* Adjust size */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 3px solid #fff; /* Optional white border */
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
   
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Mobile only */
@media (max-width: 768px) {
    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #00491e; /* CTA bar color */
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    }
    .row.min-vh-100.align-items-center {
    margin-top: 155px;
}
.footer-bottom{
    display:none;
}
    .mobile-cta .cta-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        transition: transform 0.2s;
    }

    .mobile-cta .cta-item img {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
    }

    .mobile-cta .cta-item:hover {
        transform: scale(1.1);
    }
}


@media (min-width: 769px) {
    .mobile-cta {
        display: none;
    }
}