* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #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; top: 70px; right: 0; width: 100%; flex-direction: column; background: linear-gradient(135deg, #00bfa5, #00796b); display: none; }
  .nav-links.active { display: flex; align-items: center; }
  .nav-links li { margin: 20px 0; }
  .menu-toggle { display: block; }
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .menu-toggle {
    display: block;
  }
}


/* Hero */
.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;
  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 { z-index: 1; position: relative; max-width: 700px; }
.hero h1 { font-size: 2.8rem; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; line-height: 1.6; }

/* Pricing */
.pricing { text-align: center; padding: 100px 10%; background: #fff; }
.pricing h2 { color: #00796b; font-size: 2rem; margin-bottom: 40px; }
.pricing-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 25px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.featured { border: 3px solid #00bfa5; transform: scale(1.05); }

.price { font-size: 1.5rem; color: #00796b; margin: 15px 0; font-weight: 600; }
ul { list-style: none; color: #555; margin: 20px 0; line-height: 1.6; }

.btn {
  background-color: #00bfa5;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}
.btn:hover { background-color: #00997a; }
footer { background: #004d40; color: white; text-align: center; padding: 20px 0; }
.fade-in-up { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }