* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
header {
  background: #003366;
  color: white;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  border-bottom: 2px solid #ffd700;
}

.btn {
  background-color: #ffd700;
  color: #003366;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1596495577886-d920f1fb7238?fit=crop&w=1400&q=80') center/cover no-repeat;
  color: white;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-btn {
  margin-top: 1rem;
}

/* About Preview */
.about-preview {
  padding: 3rem 0;
  background-color: #ffffff;
  text-align: center;
}

.about-preview h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-preview p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background: #003366;
  color: white;
  padding: 2rem 0;
  text-align: center;
  margin-top: 2rem;
}
.about-section {
  background: #f9fbfd;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-card {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.about-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

.vision-mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.vm-box {
  flex: 1 1 400px;
  padding: 30px;
  background: #ffffff;
  border-left: 6px solid #0077cc;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.1);
  transition: transform 0.3s ease;
}

.vm-box:hover {
  transform: translateY(-5px);
}

.vm-box h3 {
  color: #0077cc;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.vm-box p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* Animation Styles */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .about-preview h3 {
    font-size: 1.5rem;
  }
}
