/* ======================================
   HERO SECTION
====================================== */
.about-hero {
  background: linear-gradient(135deg, #2f5db3 0%, #5a8dee 100%);
  color: white;
  padding: 140px 0 110px;
  text-align: center;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 700;
}

.about-hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
}

.about-hero .btn {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ======================================
   MISSION SECTION
====================================== */
.mission-vision {
  padding: 100px 0;
  background: #f9fbff;
}

.mission-vision h2 {
  font-size: 40px;
}

.mission-vision img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* ======================================
   CARDS (VISION / FEATURES)
====================================== */
.card {
  border-radius: 16px !important;
  transition: all 0.3s ease;
  border: none !important;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.card-body {
  padding: 40px !important;
}

/* ======================================
   TIMELINE
====================================== */
.timeline {
  position: relative;
  padding: 100px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(#2f5db3, #ff7a2f);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 60px 0;
}

.timeline-content {
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  max-width: 420px;
  transition: 0.3s;
}

.timeline-content:hover {
  transform: translateY(-6px);
}

/* Left / Right alignment */
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

/* Timeline dot */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #2f5db3;
  border-radius: 50%;
  transform: translateX(-50%);
}

/* Mobile fix */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-content {
    max-width: calc(100% - 60px);
    margin-left: 60px !important;
  }

  .timeline-item::before {
    left: 20px;
  }
}

/* ======================================
   VALUES SECTION
====================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.values-grid > div {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.values-grid > div:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ======================================
   CTA SECTION
====================================== */
.bg-primary {
  background: linear-gradient(135deg, #2f5db3, #4f8cff) !important;
}

.bg-primary h2 {
  font-size: 34px;
}

/* ======================================
   SUCCESS / SMALL POLISH
====================================== */
.text-muted {
  opacity: 0.8;
}

img {
  transition: transform 0.4s ease;
}

img:hover {
  transform: scale(1.03);
}