/* HERO SECTION */
.about-hero {
  width: 100%;
  height: 380px;
  background: url("assets/about-banner.png") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-overlay h1 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 10px;
}

.hero-overlay p {
  color: #f1f1f1;
  max-width: 700px;
  font-size: 15px;
}

/* CORE OBJECTIVES */
/* CORE OBJECTIVES */
.objectives-section {
  margin: 80px 0;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  color: #5b1b52;
  font-size: 30px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid */
.objectives-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.objective-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 35px;
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #f4eff3);
  padding: 28px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.35s ease;
}

/* Accent bar */
.objective-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  background: #5b1b52;
  border-radius: 6px;
}

/* Hover */
.objective-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(91, 27, 82, 0.25);
}

/* Image container */
.objective-media {
  background: #ffffff;
  padding: 12px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.objective-media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

/* Text */
.objective-text h3 {
  margin-bottom: 10px;
  color: #722f6e;
  font-size: 20px;
  font-weight: 600;
}

.objective-text p {
  line-height: 1.7;
  color: #444;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .objective-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .objective-item::before {
    display: none;
  }

  .objective-media img {
    height: 150px;
  }
}

/* VISION SECTION */
.vision-section {
  background: linear-gradient(to bottom, #fafafa, #ffffff);
  padding: 70px 20px;
  text-align: center;
}

.vision-section h2 {
  color: #5b1b52;
  font-size: 30px;
  margin-bottom: 40px;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  justify-items: center;
}

.vision-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  width: 100%;
  max-width: 300px;
}

.vision-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 35px rgba(91, 27, 82, 0.2);
}

/* Vision icon */
.vision-icon {
  width: 60px;
  height: 60px;
  background: #5b1b52;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.vision-card:hover .vision-icon {
  transform: scale(1.1) rotate(5deg);
  background: #7a1f63;
}

.vision-card strong {
  display: block;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
}

.vision-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ADDITIONAL INFO */
.additional-info {
  margin: 90px 0;
  text-align: center;
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.info-header span {
  width: 60px;
  height: 1px;
  background-color: #999;
}

.info-header h2 {
  font-size: 26px;
  color: #5b1b52;
  font-weight: 600;
}

.info-grid {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* Grid */
.info-grid {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* Framed thumbnail */
.info-frame {
  position: relative;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f2edf1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.info-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(91, 27, 82, 0.25);
}

.info-frame img {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* External link button */
.external-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #5b1b52;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.external-btn:hover {
  background: #7a1f63;
  transform: scale(1.1);
}

/* Label */
.info-label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 15px;
  color: #333;
}