/* ===== General Reset ===== */
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #f8f9fa;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  color: #1b318c;
}

/* ===== Navbar ===== */
.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  padding: 0.6rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffd700;
}

/* ===== About Section ===== */
.about-page {
  background: #fff;
}

.about-page h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-page .lead {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #555;
}

.about-page img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Cards (Vision, Mission, Why Choose Us) ===== */
.about-page .shadow {
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.about-page .shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-page h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* ===== Buttons ===== */
.btn-primary {
  background-color: #1b318c;
  border-color: #1b318c;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: #14246a;
  border-color: #14246a;
}

/* ===== Footer ===== */
footer {
  background: #1b318c;
  color: #fff;
  font-size: 0.95rem;
}
