* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fff;
  color: #333;
}
.myname{
    display: flex;
    margin-left: 10px;
}

header {
  background-color: #007e6c;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;

}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  flex-wrap: wrap;
}

.profile-pic {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 126, 108, 0.3);
  margin: 20px;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  max-width: 600px;
  margin: 20px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 10px 0;
}

.hero-text h2 {
  font-size: 24px;
  color: #333;
}

.hero-text h2 span {
  color: #007e6c;
  font-weight: bold;
}

.hero-text p {
  margin-top: 15px;
  color: #666;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  color: #007e6c;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #004d40;
}

.btn {
  display: inline-block;
  background-color: #007e6c;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background-color: #005f54;
}
 @media (min-width: 768px) {
      .container {
        flex-direction: row;
        text-align: left;
        justify-content: center;
        gap: 50px;
      }

      .text-content {
        max-width: 600px;
      }
    }



 /*hero Section */
 /* Reset & base */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #e6f7f7;
    color: #222;
    line-height: 1.5;
  }

  /* Container for the section */
  .services-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 16px;
  }

  /* Section header */
  .services-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  .services-header .highlight {
    color: #00796b; /* Teal shade */
  }

  /* Card container grid */
  .services-grid {
    display: grid;
    gap: 24px;
    /* Mobile first: single column */
    grid-template-columns: 1fr;
  }

  /* Card styling */
  .service-card {
    background-color: #cbf0f0;
    padding: 2rem 1.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s ease;
  }
  .service-card:hover,
  .service-card:focus-within {
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  }

  /* Material icons styling */
  .service-icon {
    font-size: 48px;
    color: #00796b;
    margin-bottom: 1rem;
  }

  /* Service title */
  .service-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  /* Descriptive text */
  .service-desc {
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 2rem;
    max-width: 320px;
  }

  /* Read More button */
  .read-more-btn {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    align-self: center;
    min-width: 110px;
  }
  .read-more-btn:hover,
  .read-more-btn:focus {
    background-color: #004d40;
    outline: none;
  }

  /* Media query: tablets and up - 2 columns */
  @media(min-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .service-desc {
      max-width: 280px;
    }
  }

  /* Large desktop max width constraint */
  @media(min-width: 1440px) {
    .services-section {
      max-width: 1440px;
    }
  } 
  /*testiminoles Section */
  
   main {
      flex-grow: 1;
      padding: 48px 16px 96px;
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
    }
    h1 {
      font-size: 2.75rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 48px;
      color: #000;
    }
    /* Grid for testimonials */
    .testimonials-grid {
      display: grid;
      gap: 32px;
      grid-template-columns: 1fr;
      justify-items: center;
    }
    /* Individual testimonial card */
    .testimonial-card {
      background: white;
      border-radius: 16px;
      box-shadow: 0 12px 24px rgb(0 0 0 / 0.12);
      padding: 32px 24px 48px;
      max-width: 320px;
      width: 100%;
      text-align: center;
      position: relative;
      transition: transform 0.3s ease;
    }
    .testimonial-card:hover,
    .testimonial-card:focus-within {
      transform: translateY(-8px);
      box-shadow: 0 24px 48px rgb(0 0 0 / 0.16);
      outline: none;
    }

    /* Circular photo container with teal border and shadow */
    .photo-container {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 16px;
      border: 4px solid #0d756d;
      box-shadow: 0 0 8px #0d756d88;
    }
    .photo-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Name styling */
    .testimonial-name {
      font-weight: 700;
      font-size: 1.125rem;
      margin-bottom: 12px;
      color: #111;
    }
    /* Star rating container */
    .star-rating {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 16px;
    }
    .star-rating .material-icons {
      font-size: 20px;
      color: #fbbf24; /* yellow-400 */
      filter: drop-shadow(0 0 0.8px #b38f00);
    }
    /* Testimonial text */
    .testimonial-text {
      font-size: 0.9rem;
      line-height: 1.5;
      color: #444;
      margin: 0;
    }
  @media (min-width: 768px) {
      nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        gap: 32px;
        background: none;
        padding: 0;
        box-shadow: none;
      }
      .hamburger {
        display: none;
      }
      .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
      }
      main {
        padding: 72px 24px 128px;
      }
    }
    @media (min-width: 1440px) {
      main {
        max-width: 1440px;
      }
    }

   /*contact section */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    margin: 0;
    background: #fff;
    color: #0c615f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  header, footer {
    background-color: #0c615f;
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
  }

  main {
    flex-grow: 1;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
  }

  .contact-form-container {
    width: 100%;
    max-width: 720px;
  }

  h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
    color: #0c615f;
  }

  form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 16px;
  }

  /* Inputs and textarea styling */
  input[type="text"],
  input[type="email"],
  textarea {
    border: 2px solid #0c615f;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #0c615f;
    font-weight: 400;
    transition: border-color 0.3s ease;
    resize: vertical;
    width: 100%;
  }

  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    outline: none;
    border-color: #067a74;
  }

  textarea {
    grid-column: 1 / -1;
    min-height: 160px;
  }

  /* Placeholders to match text color */
  ::placeholder {
    color: #4e7a7a;
    font-weight: 400;
  }

  /* Responsive layout */

  /* Mobile: single column */
  @media (max-width: 767px) {
    form {
      grid-template-columns: 1fr;
      gap: 16px 0;
    }
    textarea {
      min-height: 140px;
    }
  }

  /* Large desktop max width and centering */
  @media (min-width: 1440px) {
    .contact-form-container {
      max-width: 800px;
      padding: 0 2rem;
    }
  }
