body {
    background-color: #deebe8; /* Light teal */
}

.navbar {
    background-color: #006d6d !important; /* Dark teal */
}
.navbar .nav-link {
    margin-right: 1.5rem;  /* ⬅️ Adjust spacing between items */
}

@font-face {
    font-family: 'RoundedElegance';
    src: url('/static/fonts/Rounded-Elegance.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.navbar .navbar-brand,
.navbar .nav-link {
    font-family: 'RoundedElegance', sans-serif;
    color: #015a60 !important;
    font-weight: normal;
    font-size: 1.25rem;
}

.navbar .nav-link:hover {
    color: #015a60 !important; /* Lighter teal for hover effect */
}

.main-image {
    width:100%;
    max-width: 1400px;
    border-radius: 20px; /* optional if you're using Bootstrap's rounded-4 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
} 

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust height as desired */
  overflow: hidden;
  border-radius: 20px; /* Add rounding to the wrapper */
  margin: 0 auto;
  max-width: 1600px; /* Optional: limit max width */
  padding-top: 120px; /* 👈 adjust based on navbar height */
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    display: block}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%); 
    text-align: center;
    color: white;
    width: 100%;
}

.hero-overlay-text h1 {
    font-size: 2.5rem;
    font-family: "RoundedElegance", sans-serif;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero-overlay-text .btn {
    font-family:  "RoundedElegance", sans-serif;
    font-size: 1.3rem;                 /* 🔼 Increase size */
    padding: 0.75rem 2rem;             /* 🔼 Bigger button */
    background-color: #005c62;         /* ✅ Custom teal/green */
    border: white 2px solid;
    border-radius: 8px;
    color: white;
}

.hero-overlay-text .btn:hover {
    background-color: #027b84;         /* ✅ Custom teal/green */
    color: white;
    text-decoration: none;
}

.nav-btn {
    font-family:   "RoundedElegance", sans-serif;
    font-size: 1.25rem;             /* 👈 Increase text size */
    padding: 0.5rem 1.5rem;        /* 👈 Bigger button size */
    background-color: #005c62;     /* ✅ Button color */
    color: white;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-btn:hover {
    background-color: #005b62d5;     /* 👈 Darker shade on hover */
    color: white;
    text-decoration: none;
}

.info-fullwidth {
    width: 100vw;
    background-color: #fab894b8;
    padding: 4rem 1rem;
    margin-left: calc(-50vw + 50%);
  }
  
  .info-content {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .highlight-main {
    font-size: 3rem;
    font-family:   "RoundedElegance", sans-serif;
    color: #000000;
    margin-bottom: 5rem; /* ✅ add space below the heading */
  }
  
  
  .info-text-1 {
    font-size: 1.4rem;
    font-family: 'Mulish', sans-serif;
    color: #000000;
    line-height: 1.8;
    margin-top: 5rem;  /* 👈 Add more space above */
  }
 
  .how-it-works-container {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.how-it-works-box {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1100px;
    padding: 2rem;
}

.how-it-works-image {
    border-radius: 0;   /* Ensure SVG has no rounded corners */
    box-shadow: none;   /* Remove any shadows from SVG */
    padding: 0;
    margin: 0;
}

.how-it-works-heading {
    font-family: 'RoundedElegance', sans-serif !important;  /* or any other font you want */
    font-size: 2.5rem;
    font-weight: 800;
    color: #005c62; /* Customize color if needed */
}

.science-title {
    font-size: 3rem;
    font-family: "RoundedElegance", sans-serif;
    color: #005c62;
    font-weight: 700;
  }

.science-text p {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  
.science-text h4 {
  font-size: 1.75rem;
  font-weight: 600;
}

.science-section {
  background-color: #ffffffef; /* <== this is where the box color is set */
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.custom-science-bg {
  background-color: #fab89455; /* or any other custom color */
  border-radius: 20px;
}

.science-image {
  max-width: 500px; /* or larger */
  width: 100%;
  height: auto;
}

.science-cta-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.cta-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}


.cta-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: none;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 2rem;
  border-radius: 12px;
  max-width: 900px;
  width: 90%;
}

.cta-heading {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "RoundedElegance", sans-serif;
}

.cta-subtext {
  font-size: 1.25rem;
  font-family: 'Mulish', sans-serif;
}

.cta-overlay-text .btn {
  background-color: rgba(239, 145, 94, 0.965);
  border: none;
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  border: white 2px solid;
  font-family: "RoundedElegance", sans-serif;
}

.cta-overlay-text .btn:hover {
  background-color: #fb9e6bf6;
}


.start-today-btn {
  font-family: "RoundedElegance", sans-serif;
  font-size: 1.4rem;
  padding: 0.75rem 2.5rem;
  background-color: #fb9e6bf6;
  color: #ffffff;
  border: 2px solid white;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.start-today-btn:hover {
  background-color: #027b84;
  color: #ffffff;
  text-decoration: none;
}

.faq-title {
  font-family: 'RoundedElegance', sans-serif;
  font-size: 2.1rem;
  color: #005c62;
  margin-bottom: 3rem;
}

.accordion-button {
  font-family: 'Mulish', sans-serif;
  font-size: 1.3rem;
  background-color: #f8f9fa;
  color: #005c62;
}

.accordion-button:not(.collapsed) {
  background-color: #f0f3e0;
  color: #004b4b;
}

.accordion-body {
  font-size: 1.3rem;
  font-family: 'Mulish', sans-serif;
}

.accordion-button:focus {
  box-shadow: none; /* Remove the blue outline */
}

.contact-btn {
  background-color: #005c62;
  color: white;
  font-family: "RoundedElegance", sans-serif;
  font-size: 1.25rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #027b84;
  color: white;
}
  
  