/* about.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f1f8f6;
}

/* Navbar */
.navbar {
  background-color: #004d40;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.nav-links {
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2em;
}

/* About Section */
.about {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  color: #004d40;
  margin-bottom: 15px;
}

.about-text p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Mission Section */
.mission {
  background-color: #e0f2f1;
  text-align: center;
  padding: 60px 20px;
}

.mission h2 {
  color: #004d40;
  margin-bottom: 10px;
}

.mission p {
  color: #333;
  font-size: 1.1em;
}

/* Why Choose Us Section */
.why-choose {
  text-align: center;
  padding: 60px 20px;
}

.why-choose h2 {
  color: #004d40;
  margin-bottom: 25px;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.why-card {
  background-color: #e0f2f1;
  color: #004d40;
  font-weight: 600;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

/* Footer */
footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
  }
}
