* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #f9fafb;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: linear-gradient(135deg, #00bfa5, #00796b);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 30px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #c8fff4;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 70px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #00bfa5, #00796b);
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 20px 0;
  }
  .menu-toggle {
    display: block;
  }
}
.hero {
  background: url('../Images/aboutus.jpg') no-repeat center center / cover;
  color: white;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
  background-attachment: fixed;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  max-width: 700px;
  z-index: 1;
  position: relative;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.about, .why-us, .testimonials {
  text-align: center;
  padding: 100px 10%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
.about h2, .why-us h2, .testimonials h2 {
  color: #00796b;
  font-size: 2rem;
  margin-bottom: 20px;
}
.about p, .why-us p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}
.testimonial-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}
.testimonial-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.testimonial-card h3 {
  color: #00796b;
  margin-bottom: 10px;
}
.testimonial-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}
footer {
  background: #004d40;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.95rem;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}