 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    header {
       background: linear-gradient(to right, #ffffff, #051f35);
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
    }

    .logo-container {
      display: flex;
      align-items: center;
      padding-left: 10px;
    }

    .logo-container img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      margin-right: 40px;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
.hero {
  width: 100%;
  height: 650px; /* 🔼 Increased height */
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 10s infinite;
}

.slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 34%;
  height: 135%; /* Match section height */
  object-fit: cover; /* Ensures consistent image fill */
}

@keyframes slide {
  0%, 20% { transform: translateX(0); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 100% { transform: translateX(0); }
}


    .content-section {
      padding: 40px 20px;
      text-align: center;
      background-color: #f1f8f7;
    }

    .content-section h2 {
      color: #ffffff;
      margin-bottom: 30px;
      font-size: 2rem;
    }
 .content-section {
    padding: 60px 30px;
    background: linear-gradient(to right, #ffffff, #051f35);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
    position: relative;
  }

  .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ff4d4d;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    width: 280px;
    min-width: 280px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
  }

  .icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ff4d4d;
  }

  .service-card h3 {
    font-size: 1.4em;
    margin: 10px 0;
    color: #222;
  }

  .service-card p {
    color: #8a5353;
    font-size: 0.95em;
    line-height: 1.5em;
  }

  /* Scrollbar for overflow if needed */
  .services-grid::-webkit-scrollbar {
    height: 8px;
  }

  .services-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }

  @media screen and (max-width: 768px) {
    .services-grid {
      flex-wrap: nowrap;
    }

    .service-card {
      flex: 0 0 auto;
    }
  }

    .contact {
    background: linear-gradient(to right, #051f35, #e0f2f1);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #004d40;
  }

  .contact h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
  }

  .contact h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
  }

  .contact-box {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .contact-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 20px 30px;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }

  .contact-item .icon {
    font-size: 32px;
    color: #00897b;
  }

  .contact-item p {
    margin: 0;
    font-weight: bold;
    color: #03211e;
  }

  .contact-item a {
    color: #545d98;
    text-decoration: none;
    font-size: 1rem;
  }

  .contact-item a:hover {
    text-decoration: underline;
    color: #004d40;
  }

  @media screen and (max-width: 600px) {
    .contact-box {
      padding: 0 10px;
    }

    .contact-item {
      flex-direction: column;
      text-align: center;
    }
  }

    footer {
        background: linear-gradient(to right, #e0f2f1,#051f35     );
      color: white;
      text-align: center;
      padding: 10px;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
      }

      .logo-container img {
        width: 120px;
        height: 120px;
      }
    }

  .about {
    background: linear-gradient(to right, #051f35, #e0f2f1);
    padding: 60px 30px;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    text-align: center;
  }

  .about h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
  }

  .about h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #26a69a;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }

  .about-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0f2f1;
  }

  .about-text .highlight {
    color: #26a69a;
    font-weight: bold;
  }

  .about-text .mission {
    margin-top: 20px;
    background-color: rgba(224, 247, 250, 0.1);
    padding: 15px;
    border-left: 5px solid #26a69a;
    border-radius: 8px;
    font-size: 1.05rem;
  }

  .about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    
    transition: transform 0.4s ease;
  }

  .about-image img:hover {
    transform: scale(1.05);
  }

  @media screen and (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }

    .about-text {
      text-align: center;
    }
  }
  .why-us {
    background: linear-gradient(to right,#e0f2f1,#051f35);
    padding: 60px 30px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
  }

  .why-us h2 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 40px;
    position: relative;
  }

  .why-us h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #26a69a;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
  }

  .why-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 20px;
    width: 280px;
    color: #e0f2f1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  }

  .why-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #26a69a;
  }

  .why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
  }

  .why-card p {
    font-size: 0.95rem;
    color: #d0f2eb;
  }

  @media screen and (max-width: 768px) {
    .why-grid {
      flex-direction: column;
      align-items: center;
    }
  }