body {
      background: #f9f9f9;
      font-family: 'Poppins', sans-serif;
    }
    .section-title {
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 1rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .section-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: #0d6efd;
      border-radius: 3px;
    }
    .icon-list li {
      margin-bottom: 0.7rem;
      font-size: 1.1rem;
    }
    .icon-list li i {
      color: #0d6efd;
      margin-right: 10px;
    }
    .history-img {
      max-width: 100%;
      border-radius: 10px;
      margin-bottom: 1.5rem;
      box-shadow: 0 5px 15px rgba(13,110,253,.3);
    }
    .highlight {
      background-color: #e7f1ff;
      padding: 1rem;
      border-left: 5px solid #0d6efd;
      margin-bottom: 2rem;
      border-radius: 4px;
      font-style: italic;
      color: #1a202c;
    }
  .minimalist-title-small {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.8rem; /* lebih kecil */
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .minimalist-title-small::after {
    content: '';
    display: block;
    width: 40px; /* lebih pendek */
    height: 2px;  /* lebih tipis */
    background-color: #4a90e2;
    margin: 0.5rem auto 0 auto;
    border-radius: 2px;
  }
  .card-ios {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .card-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #222;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .icon-circle-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .icon-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
  }
  .card-visi-misi {
  border: none;
  background: linear-gradient(145deg, #ffffff, #f0faff);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.4s;
  position: relative;
  overflow: hidden;
}

.card-visi-misi:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #e8faff, #ffffff);
}

.card-visi-misi:hover .icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-visi-misi .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: subtle animated glow */
.card-visi-misi::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.card-visi-misi:hover::before {
  opacity: 1;
}
.hero-about {
  position: relative;
  width: 100%;
  height: 40vh; /* tinggi seperempat layar */
  background: url('../images/sekolah.jpg') center center/cover no-repeat;
}

.hero-about .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* overlay gelap */
}

.hero-about .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}

.hero-about .hero-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-about .hero-subtitle {
  font-size: 1rem;
}

/* Penyesuaian untuk layar besar (≥768px) */
@media (min-width: 768px) {
  .hero-about {
    height: 30vh;
  }
  .hero-about .hero-title {
    font-size: 2.5rem;
  }
  .hero-about .hero-subtitle {
    font-size: 1.25rem;
  }
}
html {
  scroll-behavior: smooth;
}