<style>
/* ---------------------- Global Styles ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  overflow-x: hidden;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3, h4 {
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
  font-size: 1vw;

}
/* Basic container for centering content */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
/* Utility classes */
.btn {
  display: inline-block;
  background: #3e848c;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 10vw;
padding-top: 1.5vh;
padding-bottom: 1.5vh;
}
.btn:hover {
  background: #2f646b;
}

/* ---------------------- Header ---------------------- */
header {
    position: fixed;
    top: 0;
    left: 0; /* Ensure it starts from the left edge */
    width: 100vw; /* Ensures full width */
    box-sizing: border-box; /* Prevents padding from increasing width */
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 1000;
    overflow-x: hidden;
  }
  header .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 3vw;
    color: #3e848c;
  }
  
  header .logo img {
    height: 8vh; /* Adjust the size as needed */
    width: auto;
    margin-right: 10px;
  }
nav ul {
  display: flex;
  list-style: none;
}
nav li {
  font-size: 2.5vh;
  margin-left: 2rem;
}
nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #3e848c;
}

/* ---------------------- Hero Section ---------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  max-height: 500px;
  padding-top: 80px; /* header offset */

  /* Subtle gradient background */
  background: linear-gradient(120deg, #e1f2f5 0%, #f7f7f7 100%);
}
/* Organic shape background (wave) */
.hero-content {
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}
.hero h1 {
  text-align: center;
  font-size: 5.5vw ;
  margin-bottom: 1rem;
  color: #2c2c2c;
}
.hero p {
  font-size: 2vw;
  color: #555;
  margin-bottom: 2rem;
  margin-left: 20rem;
  margin-right: 20rem;
}

/* ---------------------- About Section ---------------------- */
.about {
  background-color: #ffffff;
  padding: 4rem 0;
}
.about .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.about img {
  flex: 1 1 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.about img:hover {
  transform: scale(1.02);
}
.about .text {
  flex: 1 1 400px;
}
.about .text h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #3e848c;
}


/* ---------------------- Testimonials Section ---------------------- */
.testimonials {
  background: #ffffff;
  padding: 4rem 0;
  text-align: center;
}
.testimonials h2 {
  color: #3e848c;
  margin-bottom: 2rem;
}
.testimonials .testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial {
  background: #f2f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 3rem;
  color: #3e848c;
}
.testimonial::after {
  content: "”";
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 3rem;
  color: #3e848c;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial h4 {
  font-weight: bold;
  color: #333;
}

/* ---------------------- Contact Section ---------------------- */
.contact {
  background-color: #f2f9f9;
  padding: 4rem 0;
  position: relative;
}
/* wave shape at the bottom */
.contact a {
  color: #000000;
  text-decoration: underline;
}
.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #3e848c;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  align-items: flex-start;
}
.contact-info, .contact-form {
  flex: 1 1 350px;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-info h3, .contact-form h3 {
  color: #3e848c;
  margin-bottom: 1rem;
}
.contact-info p {
  color: #555;
  margin-bottom: 0.5rem;
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form button {
  align-self: start;
}

/* ---------------------- Footer ---------------------- */
footer {

  background: #3e848c;;
  background-repeat: repeat;
  color: #fff;
  text-align: center;
padding: 0.5rem ;
}
footer p {
  margin-top: 0rem;
  margin-bottom: 0.5rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-map {
  flex: 1;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
h2{
  font-size: 2.5vw;
}
/* ---------------------- Responsive Tweaks ---------------------- */
@media (max-width: 1200px) {
  h2{
    font-size: 8vw;
  }
  p {
    margin-bottom: 1rem;
    font-size: 1rem;
  
  }
    header {
        position: fixed;
        top: 0;
        left: 0; /* Ensure it starts from the left edge */
        width: 100vw; /* Ensures full width */
        box-sizing: border-box; /* Prevents padding from increasing width */
        background-color: rgba(255,255,255,0.9);
        backdrop-filter: blur(6px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0.5rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        z-index: 1000;
        overflow-x: hidden;
      }
      header .logo {
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 1.2rem;
        color: #3e848c;
      }
      
      header .logo img {
        height: 80PX; /* Adjust the size as needed */
        width: auto;
        margin-right: 10px;
      }
      nav ul {
        

         margin: 0;
        flex-direction: column;
        vertical-align: top;
      }
      nav li {
       
        border-radius: 0px;
        background-color: #e1f2f500;
        padding: 0rem 0rem 0rem 0rem ;
   
       
        text-align: center;
        margin-left: 0rem;
        margin-right: 1rem;
      }
      nav a {
        border-style: solid;
        border-color: #2c2c2c;
        border-width: 0px 0px 2px 0px;
        text-align: center;
        font-weight: 500;
        transition: color 0.3s ease;
        padding-left: 2%;
padding-right: 2px;
      }
      .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 100vh;
        max-height: 500px;
        padding-top: 80px; /* header offset */
      
        /* Subtle gradient background */
        background: linear-gradient(120deg, #e1f2f5 0%, #f7f7f7 100%);
      }
      /* Organic shape background (wave) */
      .hero-content {
        z-index: 2;
        width: 100%;
        margin: 0 auto;
      }
      .hero h1 {
        text-align: center;
        font-size: 8vw ;
        margin-bottom: 1rem;
        color: #2c2c2c;
      }
      .hero p {
        font-size: 4vw;
        color: #555;
        margin-bottom: 2rem;
        margin-left: 0rem;
        margin-right: 0rem;
      }
      .btn {

        width: 30vw;

      
}

</style>