* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ================= SLIDER BACKGROUND ================= */

#heroSlider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#heroSlider .carousel-inner,
#heroSlider .carousel-item {
  height: 100%;
}

.bg-slide {
  min-height: 100%;
  background-size: cover;
  /* background-position: center center; */
  background-repeat: no-repeat;
}

/* ================= DARK OVERLAY ================= */

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 2;
} */

/* ================= LOGOS ================= */

.hero-logos {
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 5;
}

.hero-logos img {
  max-height: 55px;
}

/* LEFT LOGO BIGGER */
.hero-logos .logo-left {
  max-height: 100px;
}

/* ================= CONTENT ================= */

.container.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  /* display: flex; */
  align-items: center;
  padding-top: 83px;
  padding-bottom: 200px;
}
/* ================= RESPONSIVE HERO ================= */

/* Tablets */
@media (max-width: 992px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-logos {
    top: 24px;
  }

  .hero-logos img {
    max-height: 48px;
  }

  .hero-logos .logo-left {
    max-height: 82px;
  }
}

/* Mobile */
@media (max-width: 578px) {

  .hero-section {
    min-height: 725px;
    padding-bottom: 45px;       /* reduce empty space */
  }

  .bg-slide {
    height: 70svh;              /* background still visible */
  }

  .hero-content {
    padding-top: 80px;          /* tighter spacing */
    padding-bottom: 30px;
  }

  .hero-logos {
    top: 20px;
  }

  .hero-logos img {
    max-height: 35px;
  }

  .hero-logos .logo-left {
    max-height: 60px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .hero-content {
    padding-top: 88px;
  }

  .hero-logos .logo-left {
    max-height: 45px;
  }
}

/* ================= FORM ================= */

.hero-form {
  margin-top: 15px;
  width: 100%;
  max-width: 415px;
  background: #ffffff;
  padding: 32px 30px 20px;
  border-radius: 15px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}


/* TITLE */
.form-title {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 22px;
  text-align: center;
  color: #17195A;
}

/* INPUTS */
.hero-form .form-control,
.hero-form select,
.hero-form textarea {
  height: 44px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  margin-bottom: 14px;
  padding: 10px 12px;
  box-shadow: none;
  color:#495057;
}

.hero-form textarea {
  height: 70px;
  padding-top: 10px;
  resize: none;
}

.hero-form .form-group label {
  font-size: 13px;
  color: #17195A;
  padding-bottom: 8px;
}

.hero-form ::placeholder {
  color: #9a9a9a;
  font-size: 12px;
}

/* CAPTCHA */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #555;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 10px 12px;
  margin: 14px 0 20px;
}

/* SUBMIT BUTTON */
.submit-btn,#enquiryModal input[type=submit], .hero-form input[type=submit] {
  width: 100%;
  background: #17195A;
  color: #ffffff;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.submit-btn:hover, .hero-form input[type=submit]:hover {
  background: #ffffff;
  border:1px solid #17195A;
  color: #17195A;
}

/* ================= RESPONSIVE FORM ================= */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .hero-form {
    max-width: 800px;
    align-items: center;
    padding: 30px 26px 42px;
    
  }
}

@media (max-width: 768px) {
   .hero-section {
    min-height: auto;
    overflow: visible;
    padding: 0;
  }

  #heroSlider {
    position: relative;
    height: 90vh;
  }

  .container.hero-content {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .hero-form {
    max-height: none;
    margin-top: 24px;
  }

  .hero-indicators {
    display: none;
  }

  .hero-info-bar {
    display: none!important;
  }

  .hero-content {
    display: none;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .hero-form {
    max-width: 100%;
    padding: 26px 20px 34px;
    border-radius: 14px;
    margin: 0 auto;
    margin-top: 24px;
  }

  .form-title {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .hero-form .form-control,
  .hero-form select,
  .hero-form textarea {
    font-size: 13px;
    height: 42px;
  }

  .hero-form textarea {
    height: 64px;
  }

  .captcha-box {
    font-size: 11px;
    padding: 9px 10px;
    gap: 8px;
  }

  .submit-btn, .hero-form input[type=submit] {
    font-size: 13px;
    padding: 11px;
  }
}

/* Very small phones */
@media (max-width: 400px) {
  .hero-form {
    padding: 22px 16px 30px;
  }
}

/* ================= INFO BAR ================= */

.hero-info-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  border: 3px solid rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 36px;
  min-height: 78px;
  z-index: 5;
}

.info-item {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

.info-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.info-divider {
  width: 3px;
  height: 42px;
  background: rgb(255, 255, 255);
}

/* ================= QR CODE ================= */

.hero-qr {
  position: absolute;
  bottom: 42px;
  left: 30px;
  z-index: 5;
}

.hero-qr img {
  width: 75px;
  background: #ffffff;
  padding: 6px;
  border-radius: 6px;
}

/* ================= SLIDER DOTS (MATCH IMAGE) ================= */

.hero-indicators {
  position: absolute;
  bottom: 55px;
  right: 40px;
  left: auto;
  margin: 0;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-indicators .active {
  background: #ffffff;
  border-color: #ffffff;
}

.two-item-fields {
  display: flex;
  gap:20px;
}

.two-item-fields .form-group {
  width: 100%;
}

.two-item-fields .form-select {
  width: 100%;
}

 #heroSlider .hero-indicators {
    right: -78%!important;
  }

@media (max-width: 768px) {
  .hero-indicators {
    display: none;
  }

  #heroSlider .hero-indicators{
        bottom: -3px!important;
  }
}


/* ================= Medium Device ================= */

@media (max-width: 768px) {
  .hero-info-bar {
    flex-direction: column;
    gap: 10px;
    width: 90%;
    text-align: center;
  }

  .info-divider {
    display: none;
  }

  .hero-dots {
    display: none;
  }

  #heroSlider .hero-indicators {
    right: 0!important;
  }
}

/* ================= Small ================= */

@media (max-width: 572px) {
  .hero-info-bar {
    bottom: 20px;
  }

  .two-item-fields {
    gap: 0;
    flex-direction: column;
  }
}
/* 576 */
/* ================= FLOATING CTA ================= */
.floating_cta {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating_cta .btn {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0 6px 6px 0;
  font-size: 18px;
}


/* ================= PROJECTS SECTION ================= */
.projects-section {
  padding: 80px 0;
  background: #f6f6fb;
}

.section-title {
  font-weight: 600;
  font-size: 28px;
  color: #1c1f5b;
}

.section-title span {
  color: #1aa36f;
}

.section-desc {
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.section-desc .dot {
  width: 8px;
  height: 8px;
  background: #7fd1ae;
  display: inline-block;
  border-radius: 2px;
}

/* CARD */
.project-card {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.project-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.project-card .card-body {
  padding: 18px;
  color: #1c1f5b;
}

.project-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.location {
  font-size: 13px;
  color: #1aa36f;
  margin-bottom: 12px;
}

.meta p {
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
}

/* DETAILS */
.details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  margin-bottom: 12px;
}

.details small {
  font-size: 11px;
  color: #777;
}

.details p {
  font-size: 13px;
  margin: 0;
}

/* ACTIONS */
.card-actions {
  display: flex;
  gap: 8px;
}

.btn.brochure-btn {
  flex: 1;
  border: 1px solid #1aa36f!important;
  color: #1aa36f;
  font-size: 13px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1aa36f;
  font-size: 13px;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-btn {
   width: 44px;
  height: 44px;              /* 🔑 important */
  border: none;
  background: #1c1f5b;
  color: #fff;
  border-radius: 4px;

  display: flex;             /* 🔑 */
  align-items: center;       /* vertical center */
  justify-content: center;   /* horizontal center */
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 10px;
  }
}
/* ================= AMENITIES SECTION ================= */
.amenities-section {
  padding: 90px 0;
  background: #ffffff;
}

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 12px;
}

.amenities-title {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
  color: #1c1f5b;
}

.amenities-title span {
  color: #1aa36f;
}

.amenities-desc {
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
  max-width: 590px;
  width: 100%;
}

.amenities-desc .dot {
  min-width: 8px;
  height: 8px;
  background: #7fd1ae;
  margin-top: 6px;
  border-radius: 2px;
}

/* AMENITY BOX */
.amenity-box {
  border: 1.5px solid #2b2f55;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2b2f55;
  background: #fff;
}

.amenity-box i {
  background: #2b2f55;
  color: #ffffff;
  width: 22px;
  height: 22px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .amenities-title {
    font-size: 28px;
  }

  .amenities-desc {
    margin-top: 20px;
  }
}

/* ================= PROJECT OVERVIEW ================= */
.project-overview {
  padding: 100px 0;
  background: #f6f6fb;
  position: relative;
}

/* SINGLE WHITE CARD */
.overview-box {
  background: #ffffff;
  padding: 50px;
  border-radius: 8px;
}
.overview-title{
  color: #1c1f5b;
}
/* IMAGE */
.overview-img {
  position: relative;
}

.overview-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* PRICE BADGE */
.price-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: #0c0f3f;
  color: #ffffff;
  padding: 14px 18px;
  text-align: center;
}

.price-badge h4 {
  font-size: 34px;
  font-weight: 700;
  margin: 6px 0;
}

.price-badge span {
  font-size: 13px;
}

.price-badge small {
  font-size: 11px;
  letter-spacing: 1px;
}

/* RIGHT CONTENT */
.overview-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.overview-title span {
  color: #1aa36f;
}

/* LIST */
.overview-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.overview-list li {
  display: flex;
  gap: 14px;
  padding: 6px 0 14px;
  font-size: 14px;
  position: relative;
}

.overview-list li::after{
  content: "";
  background: #e3e3e3;
  width: 100%;
  height: 0.5px;
  position: absolute;
  bottom: 6px;
  left: 22px;
}

.overview-list li span {
  width: 8px;
  height: 8px;
  background: #7fd1ae;
  margin-top: 7px;
  flex-shrink: 0;
}

.overview-list-item {
  display: flex;
  flex-direction: column;
  color: #565656;
}

.overview-list-item strong {
  color:#000000;
}

/* BUTTON */
.enquire-btn {
  background: #1c1f5b!important;
  color: #ffffff!important;
  padding: 14px 34px!important;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
}

/* ===== DOTS (MATCH IMAGE) ===== */
.project-overview .carousel-indicators {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  margin: 0;
}

.project-overview .slick-dots button {
  min-width: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #17195A;
  opacity: 1;
  border: none;
}

.project-overview .carousel-indicators .active {
  background: #1c1f5b;
  position: relative;
}

.project-overview .carousel-indicators .active::before {
     content: "";
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #17195A;
    position: absolute;
    bottom: -3px;
    left: -3px;
    border-radius: 50%;
}

/* PREVENT HEIGHT JUMP BETWEEN SLIDES */
.project-overview .carousel-item {
  transition: opacity 0.6s ease-in-out;
}

.project-overview .carousel-control-next, .project-overview .carousel-control-prev {
  display: none;
}
.projectSlider {
  overflow: hidden;
}

.projectSlider .slide-item {
  width: 100%;
}

.projectSlider .slick-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.projectSlider .slick-slide.slick-active {
  opacity: 1;
}

/* Remove weird transform jumps */
.slick-track {
  display: flex !important;
}

/* Fix Bootstrap row overflow */
.projectSlider .row {
  margin-left: 0;
  margin-right: 0;
}

/* Hide default arrows if needed */
.slick-prev,
.slick-next {
  z-index: 10;
}


/* DOT CONTAINER */
.projectSlider .slick-dots {
  bottom: 10px;
  display: flex !important;
  justify-content: center;
  gap: 10px;
}

/* REMOVE DEFAULT BUTTON */
.projectSlider .slick-dots li button {
  display: none;
}

/* DOT BASE */
.projectSlider .slick-dots li {
  width: 10px;
  height: 10px;
  background: #1c1f5b;
  border-radius: 50%;
  opacity: 1;
  position: relative;
  cursor: pointer;
  padding: 5px;
}

/* ACTIVE DOT */
.projectSlider .slick-dots li.slick-active {
  opacity: 1;
}

/* ACTIVE OUTER RING */
.projectSlider .slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1.5px solid #1c1f5b;
  border-radius: 50%;
  top:44.5%;
  left: 48%;
  transform: translate(-50%, -50%);
}


.slick-prev, .slick-next {
  display: none!important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .overview-box {
    padding: 35px;
  }

  .overview-title {
    margin-top: 35px;
  }

    .projectSlider .slick-dots {
    display: none!important;
  }

  .slick-prev, .slick-next {
    display: block!important;
  }
  .slick-prev:before, .slick-next:before {
    font-size: 30px;
  }

  .slick-prev, .slick-next {
    top: 26%!important;
    color: #000000!important;
    width: 30px!important;
    height: 30px!important;
  }

  .slick-prev:before, .slick-next:before {
    font-size: 30px!important;
    color: #000000!important;
  }

  .slick-prev {
      left: 20px!important;
  }

  .slick-next {
    right: 19px!important;
  }
}

@media (max-width: 768px) {
  .overview-box {
    padding: 28px;
  }


}


/* ================= WHY CHOOSE US ================= */
.why-choose-section {
  padding: 90px 0;
  background: #ffffff;
}

/* TITLE */
.why-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  color: #1c1f5b;
}

.why-title span {
  color: #1aa36f;
}

/* CARD */
.why-card {
  background: #1c1f5b;
  border-radius: 14px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  color: #ffffff;
}

.why-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ICON */
.why-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(26,163,111,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  color: #1aa36f;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-title {
    font-size: 24px;
  }
}
/* ================= TESTIMONIALS ================= */
/* SECTION */
.testimonial-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.tag {
  font-size: 13px;
  letter-spacing: 1px;
  color: #1c1f5b;
}

.testimonial-header h2 {
  color: #1b7b55;
  font-weight: 700;
}

.testimonial-header p {
  max-width: 518px;
  width: 100%;
  display: flex;
  gap: 10px;
  color: #555;
}

.dot {
  min-width: 10px;
  height: 10px;
  background: #3cb371;
  margin-top: 6px;
}

/* SLIDER */
.testimonial-slider {
  position: relative;
}

.slider-window {
  overflow: hidden;
  width: calc((360px * 3) + (30px * 2));
  margin: 0 auto;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
}

/* VIDEO CARD */

.video-card {
  flex: 0 0 360px;     /* wider */
  height: 220px;       /* shorter */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #ccc;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* PLAY BUTTON */
.play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play::before {
  content: "";
  width: 64px;
  height: 64px;
  background: url("https://upload.wikimedia.org/wikipedia/commons/7/75/YouTube_social_white_squircle_%282017%29.svg")
    center / contain no-repeat;
}

/* NAV */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.slider-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* ================= SITE VISIT CTA ================= */
.site-visit-cta {
  padding: 0px 0 70px;
  background: #ffffff;
}

.cta-box {
  background: #1c1f5b;
  border-radius: 6px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.cta-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: #ffffff;
}

.cta-icon {
  font-size: 32px;
}

.cta-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
  max-width: 555px;
  width: 100%;
}

/* RIGHT BUTTON */
.cta-btn {
  background: #ffffff;
  color: #1c1f5b;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
}

.info-item.hero-info-address {
  max-width: 148px;
  text-transform: uppercase;
  font-weight: 600;
  white-space:unset;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .cta-left {
    align-items: flex-start;
  }

  .cta-right {
    margin-left: 47px;
  }
}

@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    align-items: center;
  }

  .cta-left {
    flex-direction: column;
    align-items: center;
  }

  .cta-right {
    margin-left: 0;
  }
}
/* ================= RESPONSIVE FIXES ================= */

/* -------- DESKTOP LARGE -------- */
@media (min-width: 1200px) {
  .slider-window {
    width: calc((360px * 3) + (30px * 2));
  }
}

/* -------- TABLET -------- */
@media (max-width: 1024px) {
  .testimonial-header {
    flex-direction: column;
    gap: 20px;
  }

  .slider-window {
    width: calc((360px * 2) + 30px);
  }

  .testimonial-header p {
    max-width: 100%;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 16px;
  }

  .slider-window {
    width: 100%;
  }

  .slider-track {
    gap: 20px;
  }

  .video-card {
    flex: 0 0 100%;
    height: 200px;
  }

  .slider-nav {
    margin-top: 20px;
  }

  /* CTA */
  .cta-box {
    padding: 24px;
    text-align: center;
  }

  .cta-left {
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* -------- SMALL MOBILE -------- */
@media (max-width: 480px) {
  .testimonial-header h2 {
    font-size: 22px;
  }

  .video-card {
    height: 180px;
  }
}

/* ================= FINAL CTA ================= */
.final-cta-section {
  padding: 100px 0;
  background: url("assets/finlctc.jpg")
    center / cover no-repeat;
  position: relative;
}

/* GREEN OVERLAY CARD */
.final-cta-card {
  max-width: 620px;
  background: rgba(0, 91, 42, 0.73);
  padding: 45px 50px;
  border-radius: 22px;
  color: #ffffff;
  border: 1px solid #00AA4E;
}

/* TEXT */
.final-cta-card h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

.final-cta-card p {
  font-size: 15px;
  margin-bottom: 28px;
  opacity: 0.95;
}

/* BUTTON */
.final-cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #141414;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  /* border-radius: 4px; */
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 70px 0;
  }

  .final-cta-card {
    padding: 35px 30px;
  }

  .final-cta-card h3 {
    font-size: 22px;
  }
}
/* ================= FAQ ================= */
.faq-section {
  padding: 90px 0;
  background: #ffffff;
}

.faq-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1c1f5b;
}

/* ACCORDION */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-accordion .accordion-button {
  font-size: 15px;
  font-weight: 500;
  color: #1c1f5b;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #ffffff;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-size: 14px;
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: #555;
  padding: 0 22px 18px;
}

/* REMOVE BLUE FOCUS */
.accordion-button:focus {
  box-shadow: none;
}
/* ================= FOOTER ================= */
.site-footer {
  background: #171c5a;
  color: #ffffff;
  padding: 80px 20px 30px 20px;
  font-size: 14px;
}

.site-footer p {
  opacity: 0.9;
}

/* BRAND */
.footer-brand img {
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 420px;
}

/* ADDRESS + INFO */
.footer-address h6,
.footer-info h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 25px 0 10px;
  letter-spacing: 0.5px;
}

.footer-info p {
  margin-bottom: 8px;
}

.footer-info i {
  margin-right: 8px;
}

/* SOCIAL */
.footer-social {
  margin: 35px 0 25px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  margin-right: 8px;
  border-radius: 4px;
  text-decoration: none;
}

/* DIVIDER */
.site-footer hr {
  border-color: rgba(255,255,255,0.15);
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-info {
    margin-top: 30px;
  }
}

#enquiryModal .modal-lg {
    max-width: 1000px;
}

#enquiryModal .carousel-inner {
  aspect-ratio: 3 / 4;   /* adjust if needed */
}

#enquiryModal .carousel-item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  border-radius: 16px;
}

#enquiryModal .modal-right {
    padding: 30px 25px 30px 25px;
}

#enquiryModal .modal-right h4 {
  font-weight: 500;
  font-size: 27px;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #17195A;
  margin: 25px 0!important;

}

#enquiryModal .btn-close {
    right: 20px !important;
    top: 7px;
    font-size: 13px;
}

#enquiryModal .carousel {
  padding: 20px;
}

#enquiryModal .btn-enquire {
    background-color: #17195A;
    color: #fff;
}

#enquiryModal .btn-enquire:hover {
    background-color: #fff;
    border: 1px solid #17195A;
    color: #17195A;
}
#enquiryModal .carousel-indicators {
    bottom: 10px;
}

#enquiryModal .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.8;
}

#enquiryModal .carousel-indicators .active {
    opacity: 1;
}

#enquiryModal .carousel-control-prev, #enquiryModal .carousel-control-next {
  display: none;
}

#enquiryModal .form-label span {
  color: red;
}

#enquiryModal .form-label {
  color:#17195A;
  font-size: 14px;
}

#enquiryModal .form-control {
  font-size: 13px;
}


#enquiryModal .form-select {
  color:#495057;
  font-size: 13px;
}

#enquiryModal .carousel-indicators button, #heroSlider .carousel-indicators button {
  min-width: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  border: none;
}

#enquiryModal .carousel-indicators .active, #heroSlider .carousel-indicators .active {
  background: #fff;
  position: relative;
}

#enquiryModal .carousel-indicators .active::before, #heroSlider .carousel-indicators .active::before {
     content: "";
    width: 16px;
    height: 16px;
    background: transparent;
    border: 1px solid #fff;
    position: absolute;
    bottom: -3px;
    left: -3px;
    border-radius: 50%;
}


.banner-contact-form-wrap {
  display: flex;
  justify-content: flex-end;
}

#enquiryModal .carousel-item {
  height: 100%;
}

@supports (-webkit-touch-callout: none) {
  #enquiryModal .carousel {
    overflow: hidden;
  }

  #enquiryModal .carousel-inner {
    height: auto !important;
  }
}

@media (max-width:1024px) { 
  #enquiryModal .modal-right h4 {
    font-size: 22px!important;
    margin: 10px 0!important;
  }
}


@media (max-width:768px) {
  #enquiryModal .modal-right {
    padding: 15px 20px 30px 22px;
  }

  #enquiryModal .modal-right h4 {
    font-size: 21px!important;
    margin: 10px 0!important;
  }

  #enquiryModal .btn-close {
    right: 0px !important;
    top: -4px;
    font-size: 11px;
    z-index: 1;
  }

  #enquiryModal .carousel {
    padding: 35px 20px 20px;
  }

   #heroSlider .hero-indicators {
    bottom: -10px;
   }

   #enquiryModal {
    padding-right: 0!important;
  }

  #enquiryModal .carousel-indicators {
    bottom: 26px;
  }
}
