* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "tahoma";
  src: url("./fonts/tahoma.ttf");
}

@font-face {
  font-family: "manrope";
  src: url("./fonts/static/Manrope-Light.ttf");
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "manrope";
  background-color: white;
}
h1,
h2,
h3 {
  font-family: "tahoma";
}
section {
  scroll-margin-top: 100px;
}

#home {
  position: sticky;
  top: 0;
  z-index: 1;
}

.earthscape-hero {
  position: relative;
  z-index: 2;
  background-color: #ffffff; /* Crucial: This solid background hides the image as it scrolls over */
}
.dropdown-toggle::after {
  content: none !important;
}
.navbar {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #ffffff;
  transition: all 0.4s ease;
}
/* Blur effect when scrolled */
.navbar.scrolled {
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.navbar-brand {
  width: 12%;
}
/* .navbar-brand img {
  width: 100%;
} */
.nav-link {
  color: #061e29;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  padding-bottom: 0.4rem;
  margin: 0px 5px;
}
.nav-link:hover {
  color: #061e29;
  border: 1px solid #061e29;
  border-radius: 8px;
  padding: 0.4rem 1.4rem;
}
.navbar-nav .nav-link.active {
  color: #061e29;
  border: 1px solid black;
  border-radius: 8rem;
  padding: 0.4rem 1.4rem;
}
.navbar-nav {
  color: black;
  border-radius: 8rem;
  padding: 0.4rem 2rem;
}
.enquire_now {
  background-color: #04182b;
  position: relative;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8rem;
  padding: 0.6rem 7.4rem 0.6rem 1rem;
}
.connect_btn {
  position: absolute;
  right: 1.5rem;
  background: #fff;
  border-radius: 8rem;
  margin-top: 7px;
  padding: 0.2rem 1rem;
}
#home {
  /* position: relative; */
  margin-top: 110px;
  background-image: url("./images/home-bg.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
}
#more-text {
  /* Required for slide animations to calculate height correctly */
  display: none;
  line-height: 1.6;
}

#read-more-btn {
  text-transform: capitalize;
  transition: 0.3s;
}

#read-more-btn:hover {
  letter-spacing: 1px;
}

@media (max-width: 490px) {
  .unit-plan-section {
    position: relative;
    z-index: 2;
    background: #f3f3f3;
    padding: 0px 0px;
    /* font-family: sans-serif; */
  }
  #home {
    position: relative;
    margin-top: 95px;
    background-image: url("./images/home-bg.png");
    background-size: cover;
    background-position: center;
    height: 100%;
  }
}
/* ===============================
   EARTHSCAPE HERO
================================ */
.earthscape-hero {
  /* background: #f3f3f3; */
  padding: 80px 0;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.hero-grid {
  align-items: center;
}

/* ================= TEXT */
.hero-content {
  text-align: left;
  font-family: "manrope";
}
.hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 0px;
}

.hero-content h3 {
  font-size: 35px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

.hero-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}

.btn {
  padding: 8px 30px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: #0f6b6b;
  color: white;
}

.btn.primary:hover {
  background: #0c5a5a;
}

.btn.outline {
  border-color: #0f6b6b;
  color: #0f6b6b;
}

.btn.outline:hover {
  background: #0f6b6b;
  color: white;
}

/* ================= IMAGE */
.hero-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .hero-image {
  width: 100%;
  max-width: 420px;
  border-radius: 50% / 40%;
  overflow: hidden;
} */

/* ================= CONTROLS */
.hero-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

/* DOTS */
.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.dot.active {
  width: 18px;
  border-radius: 6px;
  background: #0f6b6b;
}

/* =========================
   HIGHLIGHT SECTION
========================= */
.highlight-section {
  position: relative;
  z-index: 2;
  background-color: #00636f; /* teal tone */
  padding: 60px 0px;
}

.highlight-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  text-align: left;
}

/* Each column */
.highlight-item {
  flex: 1;
}

.highlight-item h5 {
  font-family: Tahoma, sans-serif; /* ✅ Tahoma added */
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin: 0;
}
.amenities-section {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f4f6f7;
  padding: 60px 0;
  font-family: Tahoma, sans-serif;
  position: relative;
}

.amenities-header h2 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 32px;
}

.amenities-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 25px;
}

/* Cards */
.amenity-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 190px;
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-card span {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Slider spacing */
.amenitiesSlider {
  padding-bottom: 20px;
}

/* Controls */
.amenities-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  color: #0f5f63 !important;
  width: 35px;
  height: 35px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
}

.swiper-pagination-bullet {
  background: #f2f2f7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0f5f63;
}

/* Button */
.enquire-btn {
  background: #0f5f63;
  color: #fff;
  padding: 10px 38px;
  font-size: 24px;
  border-radius: 18px;
  font-weight: 500;
}

/* Controls wrapper */
.gallery-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #e9ecef;
  font-size: 18px;
}

.gallery-section {
  position: sticky;
  top: 0%;
  z-index: 2;
  background: white;
}
.gallery-section h2 {
  font-size: 32px;
}
.gallery-section p {
  font-size: 16px;
}

/* Cards */
.gallery-card {
  padding: 10px;
  transition: all 0.4s ease;
}

.gallery-card img {
  border-radius: 16px;
  width: 100%;
}

/* ANGLED DESKTOP EFFECT */
@media (min-width: 992px) {
  .gallery-slider .slick-slide {
    transform: scale(0.9) rotate(0deg);
  }

  .gallery-slider .slick-center {
    transform: scale(1) rotate(0deg);
  }

  .gallery-slider .slick-slide:not(.slick-center):nth-child(odd) {
    transform: scale(0.9) rotate(-3deg);
  }

  .gallery-slider .slick-slide:not(.slick-center):nth-child(even) {
    transform: scale(0.9) rotate(3deg);
  }
}

/* Dots */
.slick-dots li button:before {
  font-size: 10px;
  color: #0f6a6a;
}

.slick-dots li.slick-active button:before {
  color: #0f6a6a;
  opacity: 1;
}

/* Button */
.enquire-btn {
  background: #0f6a6a;
  color: #fff;
  padding: 8px 36px;
  font-size: 24px;
  border-radius: 10px;
}

.master-plan-section {
  position: relative;
  z-index: 2;
  background: #f3f3f3;
  padding: 60px 0;
  /* font-family: sans-serif; */
}
.unit-plan-section {
  position: relative;
  z-index: 2;
  background: #f3f3f3;
  padding: 30px 0;
  /* font-family: sans-serif; */
}

/* STEP HEADER */
.plan-steps {
  display: flex;

  gap: 40px;
  margin-bottom: 15px;
}

.step span {
  width: 28px;
  height: 28px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.step h4 {
  margin: 8px 0 5px;
  font-size: 24px;
  color: #000;
}

.step p {
  font-size: 16px;
  color: #777;
}

/* GRID */
/* .plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
} */

/* MASTER PLAN */
.master-plan img {
  width: 100%;
  height: 750px;
  border-radius: 12px;
}
.master-heading {
  font-size: 32px;
  font: bold;
  font-weight: 700;
}
/* CARD */
.unit-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  /* font-family: "Inter", sans-serif; */
}

/* TABS */
.unit-tabs {
  display: flex;
  gap: 30px;
  font-size: 20px;
  padding: 18px 22px 0;
  border-bottom: 1px solid #e5e5e5;
}

.unit-tabs .tab {
  background: none;
  border: none;
  font-weight: 500;
  color: #666;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
}

.unit-tabs .active {
  color: #111;
}

.unit-tabs .active::after {
  content: "";
  height: 2px;
  width: 100%;
  background: #1e7a78;
  position: absolute;
  left: 0;
  bottom: -1px;
}

/* ROW */
.unit-row {
  display: flex;
  align-items: stretch;
}

/* LEFT IMAGE SIDE */
.unit-image {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
}

.unit-image img {
  width: 80%;
  height: auto;
}

/* RIGHT CONTENT */
.unit-details {
  font-size: 20px;
  flex: 1;
  padding: 0px 10px;
}

.unit-details .area {
  font-weight: 500;

  margin-bottom: 8px;
}

.unit-details .desc {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.unit-details .price {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 18px;
}

/* BUTTON */
.btn-request {
  background: #1e7a78;
  color: #fff;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 22px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-request:hover {
  background: #176462;
}

.accordion-container {
  width: 100%;
  max-width: 500px;
  background: white;
  margin: 0 auto;
  padding: 20px 0;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}

.left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.left i {
  font-size: 20px;
  color: #555;
  width: 24px;
}

.accordion-header span {
  font-size: 16px;
  color: #333;
}

.arrow {
  background: none;
  border: none;
  font-size: 14px;
  color: #555;
  transition: 0.3s;
}

.accordion-header:hover {
  /* background: #eeeeee; */
}
.icon {
  height: 40px;
  width: 40px;
}
.loaction-section {
  background: white;
  position: relative;
  z-index: 5;
}

.loaction-section h3 {
  font-size: 32px;
}
.faq-section {
  position: sticky;
  top: 0%;
  z-index: 6;
  background: #f2f2f7;
}

.custom-accordion {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  margin-bottom: 20px;
}

.custom-btn {
  background: white;
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 18px;
}

.custom-btn:not(.collapsed) {
  background: #e9ecef;
  box-shadow: none;
}

.accordion-button::after {
  background-image: none !important; /* remove bootstrap svg */
  content: "+" !important;
  font-size: 18px;
  font-weight: bold;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: none !important; /* remove arrow in active state */
  content: "–" !important;
}

.accordion-body {
  font-size: 14px;
  color: #555;
  background: white;
}
.about-bricks-section {
  position: relative;
  z-index: 7;
  background-color: #b5452e; /* same reddish background */
  color: #ffffff;
}

.about-title {
  font-weight: 600;
  font-size: 40px;
}

.about-text {
  max-width: 1070px;
  font-size: 24px;
  line-height: 1.4;
  color: #f3f3f3;
}

.stats-row {
  margin-top: 40px;
}

.stat-number {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 6px;
}

small {
  font-size: 25px;
  font-weight: 400;
}

.stat-text {
  font-size: 12px;
  color: #f0f0f0;
}

.learn-btn {
  background: #ffffff;
  color: #333;

  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
}

.learn-btn:hover {
  background: #f1f1f1;
  color: #000;
}
.about-bricks-section h3 {
  font-size: 40px;
}
.about-bricks-section p {
  font-size: 20px;
}
.dream-home-section {
  z-index: 10;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #b5452e 5.35%,
    rgba(181, 69, 46, 0.8) 47.44%
  );
  z-index: 1;
}

/* Title */
.dream-title {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}

/* Images */
.dream-img {
  width: 250px;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
}

/* Brochure Button */
.brochure-btn {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 12px;
  padding: 10px 20px !important;
  border: 1px solid rgb(229, 228, 228);
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.brochure-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

/* Contact Card */
.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Inputs */
.custom-input {
  background: #f1f1f1;
  border: none;
  height: 45px;
  font-size: 14px;
  border-radius: 6px;
}

.custom-input:focus {
  box-shadow: none;
  border: 1px solid #b5452e;
}

/* Submit Button */
.submit-btn {
  background: #b5452e;
  color: #fffaf0;
  padding: 5px !important;
  font-size: 24px !important;
  border-radius: 4px;
  font-weight: 500;
}

.submit-btn:hover {
  background: #993824;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  /* Contact Card */
  .contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .dream-title {
    font-size: 32px;
  }

  .dream-img {
    width: 160px;
    height: 120px;
  }

  .dream-home-section {
    padding: 60px 0;
  }
}
.modal-header h1 {
  color: #00636f;
}
.modal-body p,
label {
  color: #00636f;
}
.modal-body .enquire-btn {
  background: #0f6a6a;
  color: #fff;
  padding: 3px 86px;
  font-size: 24px;
  border-radius: 6px;
}
.modal-body {
  background-color: rgb(217, 215, 215);
}

.success_msg,
.error_msg {
  display: none;
  padding: 0 2rem;
}
.modal-content {
  background-color: rgb(183, 180, 180);
  background-size: cover;
  background-position: center;
  padding: 1rem;
  height: auto;
}
.modal-header .btn-close {
  /* border: 2px solid #000; */
  color: #00636f !important;
  padding: 0.3rem;
  opacity: 7;
}

.form-group .form-control {
  margin-bottom: 1.5rem;
  padding: 0.7rem 0.7rem 0.4rem;
}
/* Vertical Download Brochure Button */
.download-brochure-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 200px;
  background-color: #176d6f;
  color: #fff;
  text-decoration: none;
  z-index: 9999;

  box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Icon */
.download-brochure-btn .icon {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Vertical Text Proper Way */
.download-brochure-btn .text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  letter-spacing: 1px;
}

/* Hover */
.download-brochure-btn:hover {
  background-color: #0f5c5e;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .unit-row {
    flex-direction: column;
  }

  .unit-image {
    border-radius: 0;
  }
}

/* Default Desktop */
.modal-dialog {
  max-width: 500px;
}

/* Mobile Optimization */
@media (max-width: 576px) {
  .modal-dialog {
    max-width: 92%;
    margin: 20px auto;
  }

  .modal-content {
    border-radius: 0px !important;
  }

  .modal-header {
    padding: 12px 15px;
  }

  .modal-title {
    font-size: 16px;
  }

  .modal-body {
    padding: 15px;
  }

  .modal-body p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .form-label {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .form-control {
    /* background-color: white; */
    font-size: 14px;
    padding: 8px 10px;
    height: 40px;
  }

  .form-check-label {
    font-size: 12px;
  }

  .enquire-btn {
    font-size: 14px;
    padding: 10px;
    width: 100%;
  }

  .success_msg h4,
  .error_msg h4 {
    font-size: 14px;
  }
}

/* ===============================
   TABLET
================================ */
@media (max-width: 992px) {
  .highlight-section {
    background: #0f5f63;
    padding: 40px 0px;
    font-family: Tahoma, sans-serif;
  }

  .highlight-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .highlight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0c5458;
    padding: 10px 14px;
    border-radius: 3px;
  }

  .highlight-row .label {
    color: #fffcee;
    font-size: 18px;
  }

  .highlight-row .value {
    color: #dad7c8;
    font-size: 16px;
    text-align: right;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 30px;
  }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 576px) {
  .modal {
    margin-top: 50px;
  }
  .chat-bot-icon {
    bottom: 60px !important;
    right: 20px !important;
  }
  .call-float {
    position: fixed;
    bottom: 60px; /* above mobile buttons */
    left: 15px;
    width: 52px;
    height: 52px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  /* Icon */
  .call-icon {
    font-size: 26px;
    color: #fff;
    z-index: 2;
  }

  /* Pulse Animation */
  .call-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.5);
    animation: pulse 1.8s infinite;
    z-index: 1;
  }

  @keyframes pulse {
    0% {
      transform: scale(1.3);
      opacity: 1;
    }
    70% {
      transform: scale(1.6);
      opacity: 0;
    }
    100% {
      transform: scale(1.6);
      opacity: 0;
    }
  }
  .mobile-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
  }

  .mobile-btn {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    font-size: 15px;
    font-family: "satoshi", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: #00636f;
  }

  .left-btn {
    border-right: 2px solid rgba(212, 211, 211, 0.3);
  }

  .right-btn {
    background: #00636f; /* Slight variation like screenshot */
  }

  /* Prevent content hiding behind fixed buttons */
  body {
    padding-bottom: 40px;
  }

  .about-text {
    text-align: left;
    max-width: 1070px;
    font-size: 20px;
    line-height: 1.4;
    color: #f3f3f3;
  }
  .loaction-section h3 {
    font-size: 24px;
  }

  /* MASTER PLAN */
  .master-plan img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .step h4 {
    margin: 8px 0 5px;
    font-size: 24px;
    font-weight: 400;
  }

  .step p {
    font-size: 14px;
    color: #888888;
  }
  .master-heading {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
  }
  .gallery-section p,
  h2 {
    text-align: left;
  }
  .earthscape-hero {
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h3 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 16px;
  }

  .hero-image {
    max-width: 320px;
  }

  .btn {
    font-size: 13px;
    /* padding: 10px 46px; */
  }
  .hero-buttons {
    display: flex;
    gap: 26px;
    margin-top: 28px;
  }
  /* Button */
  .enquire-btn {
    background: #0f5f63;
    color: #fff;
    padding: 10px 38px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 500;
  }
}
/* Container Background & Positioning */
.sticky-form-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #005f69; /* Exact teal from image */
  z-index: 1050;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
}

/* White Input Group Styling */
.custom-input-group {
  background-color: #ffffff;
  border-radius: 10px; /* Smooth rounding like image */
  /* overflow: hidden; */
  height: 40px;
}

.text-teal {
  color: #005f69;
}

/* Form Control Reset */
.custom-input-group .form-control {
  font-size: 0.9rem;
  color: #333;
}

.custom-input-group .form-control::placeholder {
  color: #005f69;
}

/* White Submit Button */
.btn-submit-white {
  background-color: #ffffff;
  color: #005f69;
  border: none;
  height: 40px;
  border-radius: 8px;
  text-transform: capitalize;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-submit-white:hover {
  background-color: #f0f0f0;
  color: #00636f;
  transform: translateY(-1px);
}
