* { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(to bottom right, #f0f8ff, #e6f2ff);
      color: #111;
    }
    header {
      background: url('bgimg2.jpeg');
      color: #fff;
      padding: 2rem 2rem;
      text-align: left;
      font-size: 2rem;
      font-weight: bold;
      height: 40vh;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: ;
    }
    .section {
      padding: 2rem;
      max-width: 1000px;
      margin: auto;
    }
    .highlight {
      color: #006400;
      font-weight: bold;
    }
    .highlight-native {
      color: #8b0000;
      font-weight: bold;
    }
    h2 {
      font-size: 1.8rem;
      margin-top: 2rem;
      color: #004d4d;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }
    .service {
      background: #FFEBCD;
      padding: 1.5rem;
      border-radius: 1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
    }
    .testimonials-container {
      overflow-x: auto;
      white-space: ;
      display: flex;
      gap: 1rem;
      scroll-behavior: smooth;
    }
    .testimonial {
      background: #fff;
      padding: 1rem;
      border-left: 5px solid #006400;
      border-radius: 1rem;
      display: inline-block;
      min-width: 250px;
    }
    .respected {
      display: grid;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .person {
      background: #fefefe;
      border-bottom: 5px solid #8b0000;
      padding: 1rem;
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      font-size: 1.6vh;
      text-align: center;
      gap: 1rem;
      align-items: center;
    }
    .person img {
      width: 100%;
      object-fit: cover;
      border-radius: 0.5rem;
    }
    .founder{
     /* background: linear-gradient(to right, #FFE4C4, #D2B48C) 
      border-bottom: 5px solid red; */
    }
    form {
      margin-top: 2rem;
      background: #fff;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    form input, form textarea {
      width: 100%;
      padding: 0.7rem;
      margin-bottom: 1rem;
      border-radius: 0.5rem;
      border: 1px solid #ccc;
    }
    form button {
      background: #006400;
      color: #fff;
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 0.5rem;
      font-weight: bold;
      cursor: pointer;
    }
    footer {
      background: #006400;
      color: #fff;
      padding: 1rem;
      text-align: center;
      margin-top: 3rem;
    }
    @media(max-width: 600px) {
      .person {
        flex-direction: column;
        text-align: center;
      }
    }
