/* Hero Section */
/* Extra About Page tweaks inside style.css */

/* About Hero */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background-image: url("./imgs/bus.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: color;
    background-color: #2f2f3083;
}

.about-hero .hero-text {
    position: relative;
    text-align: center;
    color: #f4f5f5;
}

/* About section layout */
.about-section {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 60px 10%;
}

.about-section .text {
    flex: 1;
}

.about-section .image {
    flex: 1;
}

.about-section img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Cards reuse same .card but adjust icons */
.cards-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 10%;
}

.cards-section .card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Team section */
.about-team {
    text-align: center;
    padding: 60px 10%;
}

.team-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-cards .card.team {
    width: 220px;
    padding: 20px;
}

.team-cards img {
    border-radius: 50%;
    width: 100%;
    margin-bottom: 15px;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
}
.about-hero .hero-text {
  position: relative;
  text-align: center;
  max-width: 700px;
}
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}
.about-hero p {
  font-size: 1.2rem;
  animation: fadeInUp 1.3s ease;
}

/* Mission, Vision, Values */
.mvv-section {
  padding: 80px 10%;
  text-align: center;
}
.mvv-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0066ff;
}
.mvv-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: rgb(8, 0, 0);
  justify-content: center;
}
.mvv-cards .card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mvv-cards .card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.mvv-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us */
.why-choose {
  padding: 80px 10%;
  background: #f9fafc;
  text-align: center;
  color: #0066ff;
}
.why-choose h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.why-cards .card {
  background: #fff;
  color: black;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.why-cards .card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.why-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.delay1 { transition-delay: 0.2s; }
.delay2 { transition-delay: 0.4s; }
.delay3 { transition-delay: 0.6s; }
