<style>
    .hero a, .contact button {
  transition: background-color 0.3s ease;
}

.hero a:hover {
  background-color: #00997a;
}

.contact button:hover {
  background-color: #555;
}
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f4f4;
      color: #333;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background-color: #ffffff;
    }
    header img {
      height: 60px;
    }
    header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
}

    nav a {
      color: rgb(0, 0, 0);
      margin-left: 20px;
      text-decoration: none;
      font-weight: bold;
    }
    section {
      padding: 3rem 2rem;
    }
    .hero {
      text-align: center;
      padding: 4rem 2rem;
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: white;
    }
    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .hero p {
      font-size: 1.2rem;
    }
    .hero a {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.75rem 1.5rem;
      background-color: #00b894;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }
    .services {
      background-color: #fff;
      text-align: center;
    }
    .services h2 {
      margin-bottom: 2rem;
    }
    .service-list {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .service-list div {
      flex: 1 1 300px;
      padding: 1.5rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      background-color: #fafafa;
    }
    .contact {
      background-color: #f9f9f9;
    }
    .contact form {
      max-width: 500px;
      margin: 0 auto;
    }
    .contact input,
    .contact textarea {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .contact button {
      padding: 0.75rem 1.5rem;
      background-color: #333;
      color: white;
      border: none;
      cursor: pointer;
    }
    footer {
      text-align: center;
      padding: 1rem;
      background-color: #2c3e50;
      color: white;
      font-size: 0.9rem;
    }

/* Preloader styles with logo */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader-logo {
  width: 100px;
  height: auto;
  animation: pop 1s ease-in-out infinite alternate;
}

/* Optional animation for effect */
@keyframes pop {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Logo */
.logo {
  height: 60px;
}

/* Nav container layout */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #ffffff;
  position: relative; /* Allows absolute positioning of the nav menu */
  z-index: 1000; /* Ensures it stays above other content */
  width: 100%; /* Ensures it takes full width of the viewport */
  max-width: 100vw; /* Ensures it doesn't stretch beyond viewport */;
}

/* Nav links */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
}

/* Hamburger styles */
#hamburger {
  position: absolute; /* Allows it to be positioned relative to the nav container */
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

#hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: rgb(0, 0, 0);
  transition: all 0.3s ease;
}

/* Mobile layout */
@media (max-width: 768px) {
  #hamburger {
    display: flex;
  }

#navMenu {
  position: absolute; /* Allows it to be positioned relative to the nav container */
  top: 100%;            /* places it directly below the header container */
  right: 0;             /* aligns the right edge of nav with the container */
  background: #2c5364; /* dark background for contrast */
  flex-direction: column; /* stacks items vertically */
  align-items: flex-start; /* aligns items to the start */
  padding: 1rem; /* adds padding around the menu */
  gap: 1rem; /* space between items */
  display: none; /* hidden by default */
  z-index: 1000; /* ensures it stays above other content */
  width: max-content;  /* ensures it doesn't stretch full width */

  opacity: 0; /* Initially hidden */
  transform: translateY(-10px); /* Slightly above its position */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */}

  #navMenu.active {
    display: flex; /* Show the menu when active */
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Reset position */
  }
}

/* Dropdown background & link color for mobile */
@media (max-width: 768px) {
  #navMenu {
    background: #2c5364; /* Removes dark background */
  }

  #navMenu a {
    color: white; /* Makes dropdown links white */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); /* Optional for contrast */
  }
}
#navMenu a:hover {
  color: #00b894; /* Change to a lighter color on hover */
}

  /* Line base styles */
#hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: rgb(0, 0, 0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When active - transform to "X" */
#hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.back-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #333;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #555;
}
.back-button,
.forward-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #333;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin: 0.5rem;
}

.back-button:hover,
.forward-button:hover {
  background-color: #555;
}
.logo:hover {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

/* Service button styles */

.service-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #00b894;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.service-button:hover {
  background-color: #00997a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.feature-box-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-box {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  background-color: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  background-color: #f0f0f0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}

.feature-box-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-box {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  background-color: #f0f0f0;
}
.testimonial-carousel {
  overflow-x: auto;
  padding: 2rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}
@keyframes scrollTestimonials {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Adjust based on total width needed */
}

.auto-scroll {
  display: flex;
  animation: scrollTestimonials 60s linear infinite;
}

/* Make sure the cards line up correctly */
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
}

.testimonial-carousel {
  overflow: hidden; /* Prevent scrollbars */
  padding: 2rem;
}

.testimonial-carousel {
  overflow: hidden;
  padding: 2rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
}

.auto-scroll {
  animation: scrollTestimonials 60s linear infinite;
}

.auto-scroll:hover {
  animation-play-state: paused;
}


.testimonial-card {
  flex: 0 0 300px;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
  scroll-snap-align: start;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #00b894;
  box-shadow: 0 4px 16px rgba(0, 184, 148, 0.2);
}


.testimonial-name {
  font-weight: bold;
  margin-top: 1rem;
  color: #00b894;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #777;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Scroll halfway since we duplicated the set */
}
.testimonial-form {
  max-width: 500px;
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-form input,
.testimonial-form textarea {
  padding: 0.75rem 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
  border-color: #00b894;
  outline: none;
}

.testimonial-form button {
  background-color: #00b894;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-form button:hover {
  background-color: #00997a;
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  width: 50px;
  height: 28px;
  display: inline-block;
  background-color: transparent;       /* Removes grey */
  border-radius: 34px;
  position: relative;
  transition: box-shadow 0.3s ease;
  box-shadow: none;
  overflow: hidden;
}

input:checked + .slider {
  background-color: transparent;       /* Ensures no grey when toggled */
  box-shadow: 0 0 10px rgba(0, 184, 148, 0.4); /* Mint glow */
}

.slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: #00b894;           /* Mint knob */
  border-radius: 50%;
  transition: transform 0.4s ease;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.switch:hover .slider:before {
  animation: pulseGlow 1.2s ease infinite;
}

@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 rgba(0, 184, 148, 0.4); }
  50%  { box-shadow: 0 0 12px rgba(0, 184, 148, 0.6); }
  100% { box-shadow: 0 0 0 rgba(0, 184, 148, 0.4); }
}



.plan-toggle-inline {
  margin-bottom: 0.5rem;
  gap: 0.25rem;
}
.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #00b894;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.4rem 0.7rem;
  transform: rotate(15deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 2;
}

.plan-card {
  position: relative; /* to anchor the ribbon */
}
.payg-section {
  background-color: #fff;
  padding: 2rem;
}

.payg-card {
  max-width: 100%;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  margin-top: 2rem;
}

.payg-title {
  font-size: 2rem;
  color: #00b894;
  margin-bottom: 0.5rem;
}

.payg-description {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.payg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.payg-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.payg-button {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

.ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #00b894;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.4rem 0.7rem;
  transform: rotate(15deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
  z-index: 2;
}
.nav-item {
  position: relative;
  display: inline-block;
}

.submenu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 0.5rem 0;
  border-radius: 6px;
  z-index: 99;
}

.submenu a {
  display: block;
  padding: 0.6rem 1rem;
  color: #333;
  text-decoration: none;
  transition: background 0.3s;
}

.submenu a:hover {
  background-color: #f2f2f2; /* Lighter background on hover */
}

.nav-item {
  position: relative; /* Allows submenu to be positioned relative to this item */
}

.submenu {
  display: none; /* Hidden by default */
  position: absolute;  /* Positioned relative to the nav item */
  background-color: #ffffff; /* White background for contrast */
  min-width: 180px; /* Minimum width for the submenu */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Subtle shadow for depth */
  border-radius: 6px; /* Rounded corners */
  padding: 0.5rem 0; /* Padding for the submenu */
  z-index: 99;  /* Ensures it appears above other content */
}

.nav-item.open .submenu {
  display: block; /* Show submenu when parent is open */
}

.submenu a {
  display: block;
  padding: 0.6rem 1rem;
  color: #333; /* Dark text for readability */
  text-decoration: none;
  transition: background 0.3s;
}

.submenu a:hover {
  background-color: #ffffff; /* Lighter background on hover */
}

.submenu a {
  color: #111 !important; /* Force black text */
}

.submenu a:hover {
  background-color: #f2f2f2;
  color: #00b894; /* Mint accent on hover */
}

  </style>