/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5fefe;
  color: #333;
}

/* Navbar */
.navbar {
  background: #101820;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin-left: 1.5rem;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #00d1b2;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  max-width: 300px;
}

.feature h3 {
  color: #004d4d;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, #004d4d, #006666);
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

/* Button */
.btn {
  background: #00d1b2;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #008080;
}

/* Footer */
.footer {
  background: #101820;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* ======= Responsive (Device Friendly) ======= */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar .menu-toggle {
    display: block;
  }

  .navbar .nav-links {
    flex-direction: column;
    background: #101820;
    width: 100%;
    display: none;
    margin-top: 1rem;
    padding: 1rem 0;
    border-radius: 10px;
  }

  .navbar .nav-links li {
    margin: 0.5rem 0;
    text-align: center;
  }

  .navbar .nav-links.show {
    display: flex;
  }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .features {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

/* Who We Are Section */
.who-we-are {
  background: #f0f4f7;
  padding: 4rem 2rem;
  text-align: center;
}

.who-container {
  max-width: 800px;
  margin: auto;
}

.who-text {
  width: 100%;
}

.who-text h2 {
  font-size: 2.2rem;
  color: #004d4d;
  margin-bottom: 1.5rem;
}

.who-text h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #007070;
}

.who-text p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .who-text h2 {
    font-size: 1.8rem;
  }

  .who-text h3 {
    font-size: 1.3rem;
  }

  .who-text p {
    font-size: 1rem;
  }
}


/* Success Story Section */
.success-story {
  background: #ffffff;
  padding: 4rem 2rem;
}

.success-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.success-text {
  flex: 1;
  min-width: 280px;
}

.success-text h2 {
  font-size: 2rem;
  color: #004d4d;
  margin-bottom: 1rem;
}

.success-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.success-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  min-width: 280px;
}

.stat-box {
  background: #e6f7f7;
  border-radius: 12px;
  text-align: center;
  padding: 2rem 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-box h3 {
  font-size: 2rem;
  color: #00b8a9;
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .success-container {
    flex-direction: column;
    text-align: center;
  }

  .success-text h2 {
    font-size: 1.75rem;
  }

  .success-text p,
  .stat-box p {
    font-size: 0.95rem;
  }

  .stat-box h3 {
    font-size: 1.8rem;
  }
}

/* Vision and Mission Section */
.vision-mission {
  padding: 4rem 2rem;
  background: #f1fdfd;
}

.vision-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: nowrap;
}

.vision-image {
  flex: 1;
}

.vision-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.vision-text {
  flex: 1;
  padding: 1rem;
}

.vision-text h2 {
  font-size: 2rem;
  color: #004d4d;
  margin-bottom: 1rem;
}

.vision-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }

  .vision-image img {
    max-width: 100%;
  }

  .vision-text h2 {
    font-size: 1.75rem;
  }

  .vision-text p {
    font-size: 0.95rem;
  }
}
