 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      background: #fff;    
      font-family: 'Arial', sans-serif; /* Choose a web-safe font */
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: #222;
    }
h1 {
  font-size: clamp(2rem, 5vw, 4rem); /* Scales between 2rem and 4rem */
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 3rem); /* Scales between 1.5rem and 3rem */
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2.25rem); /* Scales between 1.25rem and 2.25rem */
  line-height: 1.4;
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1rem, 2vw, 1.75rem); /* Scales between 1rem and 1.75rem */
  line-height: 1.5;
  margin-bottom: 1rem;
}
p {
  font-size: 1.125rem; /* 18px */
  line-height: 1.7;
}
.small {font-size: 1rem;
  line-height: 1.5;}
.center {align-items: center;
	text-align: center;}
.styled-hr {
  border: none;
  height: 6px;
  width: 20vw; /* 10% of the viewport width */
  background-color: #0e7cbf;
  margin: 50px auto; /* 50px top & bottom, auto left & right to center */
}
.section-single-column a,
.grid-two-column a,
.grid-three-column a,
.grid-four-column a {
  color: #0e7cbf; /* Link color */
  text-decoration: underline;
}

.section-single-column a:hover,
.grid-two-column a:hover,
.grid-three-column a:hover,
.grid-four-column a:hover {
  color: #21ab65; /* Hover color */
}
.section-single-column {
  padding: 3% 20%;
  box-sizing: border-box;
}
/* Background utility: blue */
.blue {
  background-color: #0e7cbf;
  color: white;
}

/* Optional: ensure headings and links inside also turn white */
.blue h1,
.blue h2,
.blue h3,
.blue h4,
.blue h5,
.blue h6,
.blue p,
.blue a,
.blue li {
  color: #fff;
}
.blue a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

.blue a:hover {
  color: #9bd6bb;
}
/* HEADER AND NAV */
     header {
      background-color: white;
      padding: 20px 40px;
      position: relative;
      z-index: 100;
    }
	 nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      max-width: 400px;
    }

    .logo img {
      width: 100%;
      height: auto;
    }

.logo img a {text-decoration:none}

    .menu-toggle {
      display: none;
      font-size: 30px;
      cursor: pointer;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      padding: 8px 0;
      display: inline-block;
      position: relative;
    }

    /* Gradient hover underline */
    nav ul li a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 6px;
      background: linear-gradient(to right, #22aa66, #0e7cbf);
      transition: width 0.4s ease;
    }

    nav ul li a:hover::after {
      width: 100%;
    }

    /* Dropdown styles */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: linear-gradient(to right, #22aa66, #0e7cbf);
      border-radius: 10px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
      padding: 10px 0;
      min-width: 220px;
      z-index: 999;
      display: block;
    }

    .dropdown-menu li {
      padding: 8px 20px;
    }

    .dropdown-menu li a {
      color: #fff;
      text-decoration: none;
      font-weight: normal;
    }

    nav ul li:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
.dropdown-menu li a {
  display: block;
}
	  .dropdown-menu li:hover a {
  color: #333;
}
    .dropdown-menu li:hover {
      background: rgba(255, 255, 255, 0.75);
    }
/* Remove underline hover effect for dropdown links */
.dropdown-menu li a::after {
  content: none;
}
    /* Responsive styles */
    @media (max-width: 1024px) {
      .menu-toggle {
        display: block;
      }

      nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #fff;
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }

      nav ul.showing {
        display: flex;
      }

      nav ul li {
        width: 100%;
        padding: 10px 0;
      }

      nav ul li a {
        width: 100%;
        display: block;
      }

      .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1 !important;
        visibility: visible !important;
        background: linear-gradient(to right, #22aa66, #0e7cbf);
        border-radius: 0;
        padding-left: 20px;
      }

      nav ul li:hover .dropdown-menu {
        transform: none;
        opacity: 1;
        visibility: visible;
      }
    }
/* HERO SECTION */
    .hero-section {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 4vw 6vw 0;
      min-height: 300px;
    }

    .hero-text {
      max-width: 50%;
      z-index: 3;
    }

    .hero-text h1 {
      font-size: 5vw;
      margin: 0;
		color:#333
    }

    .overlay-image {
      position: absolute;
      top: 0;
      right: 6vw;
      width: 500px;
      z-index: 4;
      pointer-events: none;
    }
	 @media (max-width: 1100px) {  
    .overlay-image {
      z-index: 2;
	  opacity: 0.5;
      right: 4vw;
      width: 300px;
    }
	    .hero-text {
      max-width: 100%;
      z-index: 3;
    }
	    .hero-text h1 {
      font-size: 8vw; 
    }
	  }
/* SLIDER SECTION */
    .slider-wrapper {
      overflow: hidden;
      width: 100%;
      height: 30vw;
      max-height: 250px;
		clear: both;
      position: relative;
      margin-top: -150px; /* pull slider up behind overlay */
      z-index: 1;
    }

    .slider-track {
      display: flex;
      gap: 20px;
      animation: scroll 30s linear infinite;
    }

    .slider-track img {
      width: 25vw;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Optional: gradient fade effect at edges
    .slider-wrapper::before,
    .slider-wrapper::after {
      content: "";
      position: absolute;
      top: 0;
      width: 10%;
      height: 100%;
      z-index: 2;
      pointer-events: none; 
    }

    .slider-wrapper::before {
      left: 0;
      background: linear-gradient(to right, #0e7cbf 0%, transparent 100%);
    }

    .slider-wrapper::after {
      right: 0;
      background: linear-gradient(to left, #0e7cbf 0%, transparent 100%);
    }*/
	 @media (max-width: 768px) {  
.slider-wrapper {
    height: 50vw; /* Increase height to 50% of viewport width */
    max-height: 400px; /* Optional: Set a maximum height */
  }

  .slider-track img {
    width: 50vw; /* Adjust image width to match new slider width */
  }
}
		 
/* STATS Circles */
.stats-section {
  padding: 3vw 6vw;
  margin-top: 1vw; /* Default for small-to-medium screens */
  background: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 10%; /* Responsive padding, 10% on both sides */
  overflow: hidden; /* Ensures content doesn't overflow */
}

.stat-item {
  display: flex;
  align-items: flex-start; /* Align items to the top */
  gap: 20px;
  max-width: 45%;
  flex: 1;
}

.circle {
  width: 20vw; /* Make it proportional to viewport width */
  height: 20vw; /* Same as width to keep it circular */
  max-width: 120px; /* Limit the size on larger screens */
  max-height: 120px; /* Keep it from growing too large */
  border-radius: 50%; 
  background-color: #22aa66;
  flex-shrink: 0; /* Prevent shrinking */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}

.circle span {
  font-size: 2rem;
  font-weight: bold;
}

.text h2 {
  font-size: 1.6rem;
  margin: 0;
  color: #333;
}

.text p {
  font-size: 1rem;
  color: #666;
}
	  
/* FULL WIDTH IMAGE */

.full-width-image-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.full-width-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* BUTTONS */
.btn-gradient {
  display: inline-block;
  background: linear-gradient(to right, #23a86b, #0e7cbf);
  color: #fff !important;
  font-weight: bold;
  padding: 12px 28px;
	margin: 24px 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  text-decoration: none !important;
  transition: background 0.4s ease;
}

.btn-gradient:hover {
  background: linear-gradient(to left, #23a86b, #0e7cbf);
}

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #222 !important;
	text-decoration: none !important;
  font-weight: bold;
  padding: 12px 28px;
margin: 24px 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  text-align: center;
  transition: background 0.4s ease;
}

.btn-secondary:hover {
  background: #21ab65;
  color: #fff !important;
	text-decoration: none !important;
}
.button-left {
  text-align: left;
}

.button-center {
  text-align: center;
}
 @media (max-width: 1024px) {
  .menu-toggle {
    display: block;
	  font-size: 50px;
  cursor: pointer;
  color: #333;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  nav ul.showing {
    display: flex;
  }

  nav ul li {
    width: 100%;
    padding: 10px 0;
  }

  nav ul li a {
    width: 100%;
    display: block;
    color: #333;
  }

  .dropdown-menu {
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    padding-left: 20px;
    transform: none;
    border-radius: 0;
    background: linear-gradient(to right, #22aa66, #0e7cbf);
  }

  nav ul li:hover .dropdown-menu {
    display: block;
  }
}

/* GRIDS */
/* Base styling for content within grid sections */
.content {
  padding: 20px;
  border: 1px solid #ddd; /* Optional: adds borders around columns */
}

/* Two-column grid layout */
.grid-two-column {
  display: grid;
  gap: 20px; /* Space between columns */
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px; /* Space between sections */
}
/* =========================
   FORM WRAPPER
========================= */

.form-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   LABELS
========================= */

form label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin: 28px 0 8px;
  color: #000;
}

/* Required indicator already in text */
form label span {
  font-weight: normal;
}

/* =========================
   INPUTS
========================= */

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
  width: 100%;
  height: 48px;
  padding: 10px 12px;
  font-size: 16px;
  border: 2px solid #bfc3c6;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: #fff;
}

/* Placeholder style */
form input::placeholder {
  color: #8c8c8c;
}

/* Focus state (accessible) */
form input:focus {
  outline: none;
  border-color: #0066b3;
}

/* =========================
   CHECKBOX
========================= */

form input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
}

form .checkbox-label {
  display: flex;
  align-items: center;
  margin-top: 28px;
  font-weight: normal;
}

/* =========================
   BUTTON
========================= */

form button {
  margin-top: 32px;
  background-color: #0066b3;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover / focus */
form button:hover,
form button:focus {
  background-color: #004f8c;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  form label {
    margin-top: 22px;
  }

  form button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .grid-two-column {
    grid-template-columns: 1fr;
  }
}

/* Three-column grid layout */
.grid-three-column {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .grid-three-column {
    grid-template-columns: 1fr;
  }
}

/* Four-column grid layout */
.grid-four-column {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .grid-four-column {
    grid-template-columns: 1fr;
  }
}
/* HTML GRID EXAMPLES
<section class="grid-two-column">
  <div class="content">Content for the first column</div>
  <div class="content">Content for the second column</div>
</section>

<section class="grid-three-column">
  <div class="content">Content for the first column</div>
  <div class="content">Content for the second column</div>
  <div class="content">Content for the third column</div>
</section>

<section class="grid-four-column">
  <div class="content">Content for the first column</div>
  <div class="content">Content for the second column</div>
  <div class="content">Content for the third column</div>
  <div class="content">Content for the fourth column</div>
</section> */
@media (max-width: 1000px) {
		.stats-section {
flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
   .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
	max-width: 100%;    
  }
  .stat {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .stat-circle {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }

  .stat-text {
    max-width: 100%;
  }
}
  .circle {
    width: 25vw; /* Increase size for smaller screens */
    height: 25vw; /* Keep circle proportional */
    min-width: 80px; /* Make the circle smaller on mobile */
    min-height: 80px; /* Ensure circle stays proportional */
	   margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
	.hero-text h1 {
        font-size: 6vw;
      }

      .overlay-image {
        width: 180px;
      }

      .hero-text {
        padding-right: 180px;
      }
  .container {
    padding: 0 5vw; /* 5vw padding for smaller screens */
  }
.section-single-column {
  padding: 3% 5%;
  box-sizing: border-box;
}
  .stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .circle {
    margin-bottom: 10px; /* Adds space between the circle and text */
  }
	  }