/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "League Spartan", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("../images/about-hero.jpg") center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* Headings */
section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #004aad;
  text-align: center;
  font-weight: 600;
}

/* Paragraphs */
section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  text-align: justify;
}

/* Why Choose Us & Values – Grid Layout */
.why-choose ul,
.values ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
}

.why-choose ul li,
.values ul li {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.why-choose ul li:hover,
.values ul li:hover {
  background: #eaf2ff;
  transform: translateY(-3px);
}

.why-choose ul li i,
.values ul li i {
  color: #004aad;
  margin-right: 12px;
  font-size: 1.3rem;
}

/* Mission & Vision Centered */
.mission, .vision {
  text-align: center;
  background: #f5f9ff;
  border-radius: 12px;
  padding: 40px 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
  background: #002a5c;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #fff;
}

.footer p, .footer ul {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #fff;
}

.footer .location-item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer .location-item i {
  margin-right: 10px;
  color: #fcd34d;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 40px 15px;
  }

  section h2 {
    font-size: 1.6rem;
  }

  section p {
    font-size: 0.95rem;
  }

  .hero {
    height: 55vh;
    padding: 0 10px;
  }
}
