@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&display=swap');
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
    background: linear-gradient(
    135deg,
    rgba(240, 240, 240, 0.8),
    rgba(230, 230, 230, 0.7)
  );
}
.row {
  --bs-gutter-x: 0; /* hilangkan jarak horizontal antar kolom */
}
/* === Teacher List Section === */
#teacher-list {
  margin-bottom: 40px; /* sebelumnya 60px */
  padding: 0 20px; /* sebelumnya 30px */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 16px; /* sebelumnya 24px 20px */
}

/* === Section Judul Jabatan (Versi Elegant iOS Style) === */
.teacher-group {
  width: 100%;
  text-align: center;
  margin: 40px 0 20px; /* sebelumnya 60px 0 25px */
  position: relative;
}

.teacher-group h5 {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 1.1rem; /* sedikit lebih kecil */
  letter-spacing: 0.5px;
  color: #004b5a;
  padding: 8px 18px; /* sebelumnya 10px 22px */
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(0,95,115,0.05), rgba(10,147,150,0.07));
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  backdrop-filter: blur(5px);
  transition: all 0.35s ease;
}

/* Garis halus di bawah judul */
.teacher-group h5::after {
  content: "";
  display: block;
  width: 60%; /* sebelumnya 70% */
  height: 2px; /* sebelumnya 3px */
  background: linear-gradient(90deg, #005f73, #0a9396);
  margin: 6px auto 0; /* lebih rapat */
  border-radius: 3px;
  opacity: 0.75;
  transition: width 0.35s ease, opacity 0.35s ease;
}

/* Hover effect */
.teacher-group h5:hover {
  color: #003845;
  background: linear-gradient(90deg, rgba(0,95,115,0.1), rgba(10,147,150,0.15));
  box-shadow: 0 4px 14px rgba(10,147,150,0.08);
}

.teacher-group h5:hover::after {
  width: 85%;
  opacity: 1;
}

/* === Card Guru === */
.teacher-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 200px; /* sebelumnya 210px */
  flex: 0 1 auto;
}

.teacher-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 110%;
  height: 35%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0, 95, 115, 0.12), rgba(10, 147, 150, 0.08));
  border-radius: 0 0 50% 50%;
  z-index: 0;
}

/* Hover effect */
.teacher-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(10, 147, 150, 0.14);
}

/* === Foto Guru === */
.teacher-card .ratio {
  background: #eaf6f7;
}

.teacher-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.teacher-card:hover img {
  transform: scale(1.04);
}

/* === Isi Card === */
.teacher-card .card-body {
  padding: 12px 8px 14px; /* dikurangi */
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Nama Guru */
.teacher-card h6 {
  font-weight: 700;
  font-size: 0.88rem;
  color: #0a2a33;
  margin-bottom: 3px;
}

/* Jabatan */
.teacher-card p {
  font-size: 0.76rem;
  color: #6c757d;
  margin-bottom: 6px;
}

/* Kontak */
.teacher-card .contact-info {
  font-size: 0.74rem;
  color: #007d86;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* === Responsif === */
@media (max-width: 992px) {
  #teacher-list {
    padding: 0 8px;
    gap: 16px 12px;
  }

  .teacher-card {
    width: 175px;
  }
}

/* === 📱 Mobile (≤480px): 2 card per baris === */
@media (max-width: 480px) {
  #teacher-list {
    padding: 0 10px;
    gap: 12px 8px;
    justify-content: space-between;
  }

  .teacher-card {
    width: 47%;
    border-radius: 12px;
  }

  .teacher-card .card-body {
    padding: 9px 7px 11px;
  }

  .teacher-card h6 {
    font-size: 0.83rem;
  }

  .teacher-card p {
    font-size: 0.7rem;
  }

  .teacher-card .contact-info {
    font-size: 0.68rem;
  }
}


.background-abstract {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.ios-button {
  display: inline-block;
  background: linear-gradient(180deg, #ffdd57 0%, #ffcc00 100%);
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 50px; /* Membulat */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 18px;
}

/* Efek hover lembut */
.ios-button:hover {
  background: linear-gradient(180deg, #ffe066 0%, #ffcc00 100%);
  box-shadow: 0 6px 14px rgba(255, 204, 0, 0.4);
  transform: translateY(-2px);
}

/* Efek saat ditekan */
.ios-button:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* 🌫️ Lapisan blur khas iOS di atas SVG */
.background-abstract::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(1px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  z-index: 2;
}

footer {
  position: relative;
  z-index: 1;
}
/* 🌟 Hero Section */
.content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 5vw, 3.6rem);
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
/* 📦 About Section */
.about-section {
  max-width: 1200px;
  margin: 0 auto 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

/* Hapus padding container tapi tetap pertahankan posisi kanan */
.about-section.container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

.about-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0 !important;
  margin-left: auto;     /* ⬅️ Dorong seluruh kolom ke kanan */
  width: 95%;            /* ⬅️ Sesuaikan area agar lebih nempel kanan */
  max-width: none !important;
}

.about-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0;
  padding: 0;
  transition: transform 0.5s ease, filter 0.4s ease;
  z-index: 2;
}

.about-photo {
  width: 100%;
  object-fit: cover;
  margin: 0 !important;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);

  /* 🌿 Bentuk blob lembut tanpa sudut tajam */
  clip-path: ellipse(49% 46% at 50% 50%);
  border-radius: 48% 52% 55% 45% / 50% 47% 53% 50%;
}

.about-photo-wrapper:hover .about-photo {
  transform: scale(1.03);
}

/* Blob lembut di belakang foto */
.photo-bg {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 450px;
  opacity: 0.18;
  z-index: 0;
  filter: blur(25px);
  animation: floatBlob 8s ease-in-out infinite alternate;
}

/* ====== BUBBLE AREA (KIRI ATAS FOTO) ====== */
.about-left {
  position: absolute !important;
  top: 40px;
  left: 60px; /* atur seberapa jauh dari kiri foto */
  z-index: 2;
  width: 360px;
}
/* ====== AREA TEKS POLOS ====== */
.about-bubble {
  background: none !important;      /* hilangkan box / blur background */
  backdrop-filter: none !important; /* matikan efek kaca */
  box-shadow: none !important;      /* hilangkan bayangan */
  border-radius: 0 !important;      /* hilangkan lengkungan */
  padding: 0;                       /* hilangkan padding agar teks rapi */
  max-width: 400px;
  position: relative;
  z-index: 3;
}

.about-bubble::after {
  display: none !important; /* hilangkan ekor bubble */
}

/* Import font di bagian atas file CSS kamu */
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:wght@700&display=swap');


.about-bubble h2 {
  font-family: 'Lobster Two', cursive;
  font-weight: 700;
  font-size: 3rem;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: none;
}

.about-bubble p {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
  max-width: 380px;
  letter-spacing: 0.2px;
}

/* Blob belakang tetap lembut */
.bubble-bg {
  position: absolute;
  top: -40px;
  left: -50px;
  width: 320px;
  opacity: 0.25;
  z-index: 1;
  filter: blur(12px);
  animation: floatBlob 8s ease-in-out infinite alternate;
}
/* Hilangkan padding Bootstrap bawaan */
.row {
  --bs-gutter-x: 0 !important;
}

.col-md-8,
.col-md-4 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.about-section .col-md-8 {
  margin: 0 !important;
}

/* ====== BANNER ABSTRAK SOFT (REVISI) ====== */
.muhammadiyah-banner {
  position: absolute;
  bottom: -270px; /* nempel ke bagian bawah foto */
  right: -130px;  /* sedikit keluar ke kanan agar terasa menyatu */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  width: 120%; /* perbesar sedikit */
}

/* SVG blob lembut */
.banner-bg {
  width: 200%; /* buat besar dan menyebar ke kanan */
  max-width: 1100px;
  height: auto;
  filter: blur(2px) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
  animation: floatBlob 9s ease-in-out infinite alternate;
  opacity: 0.9;
}
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&display=swap');

.banner-text {
  position: absolute;
  right: 25%;
  bottom: 30%;
  font-family: 'Fredoka', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 800;
  color: #111;
  text-transform: none;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.banner-text span {
  display: inline-block;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.8px;
}
.banner-text i {
  font-size: 2rem;
  color: #333;
  margin-bottom: 8px;
  opacity: 0.9;
}
@keyframes floatBlob {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-10px) scale(1.05); }
}




/* 📱 Responsif */
@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }

  .about-bubble {
    margin-bottom: 50px;
    padding: 30px 25px;
  }

  .about-photo-wrapper {
    max-width: 100%;
  }

  .photo-bg {
    display: none;
  }
}
/* ====== SECTION SEJARAH SINGKAT ====== */
.history-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
    margin-top: -140px; /* Tambahkan ini */
}

.history-photo-wrapper {
  text-align: center;
}

.history-photo {
  width: 90%;
  transition: transform 0.4s ease;
}

.history-photo:hover {
  transform: scale(1.03);
}

/* TEKS */
.history-text h2 {
  font-family: 'Lobster Two', cursive;
  font-weight: 700;
  font-size: 2.8rem;
  color: #111;
  margin-bottom: 20px;
}

.history-text p {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}
.history-text p strong {
  font-weight: 700; /* tebal */
}
/* Tombol */
.btn-history {
  background: #ffce3a;
  color: #111;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 206, 58, 0.4);
  transition: all 0.3s ease;
}

.btn-history:hover {
  background: #ffd84d;
  box-shadow: 0 6px 14px rgba(255, 206, 58, 0.5);
}

/* ====== SECTION IDENTITAS ====== */
.identity-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  margin-top: -80px;
}

/* TEKS */
.identity-text h2 {
  font-family: 'Lobster Two', cursive;
  font-weight: 700;
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* Garis highlight lembut di bawah judul */
.identity-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ffb347, #ffd46b);
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(255, 179, 71, 0.3);
}

/* Efek lembut saat hover (jika ingin interaktif) */
.identity-text h2:hover {
  color: #000;
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

.identity-text p {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Tombol */
.btn-identity {
  background: #ffb347;
  color: #111;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 179, 71, 0.4);
  transition: all 0.3s ease;
}

.btn-identity:hover {
  background: #ffc45a;
  box-shadow: 0 6px 14px rgba(255, 179, 71, 0.5);
}

/* FOTO */
.identity-photo-wrapper {
  position: relative;
  text-align: center;
}

.photo-group {
  position: relative;
  display: inline-block;
}

.identity-photo {
  top: 180px;
  width: 75%;
  transition: transform 0.4s ease;
}

/* Foto utama */
.main-photo {
  position: relative;
  z-index: 2;
}

/* Foto kedua (di atas atau agak miring) */
.overlay-photo {
  position: absolute;
  top: -180px;        /* geser ke atas */
  right: -40px;      /* geser ke kanan */
  width: 60%;
  z-index: 1;
  opacity: 0.95;
}

.identity-photo:hover {
  transform: scale(1.03);
}
/* ==========================
   Responsif untuk HP kecil
   ========================== */
@media (max-width: 480px) {
  .overlay-photo {
    display: none; /* sembunyikan foto kedua di layar kecil */
  }

  .identity-photo {
display: none;
  }
   .identity-text h2 {
    font-size: 1.8rem; /* perkecil agar pas di layar kecil */
    text-align: center; /* pastikan tetap rapi */
    margin-bottom: 16px;
    letter-spacing: 0.3px;
  }

  .identity-text h2::after {
    width: 60px; /* sedikit lebih pendek */
    height: 3px;
    margin-top: 8px;
    box-shadow: 0 1px 6px rgba(255, 179, 71, 0.25);
  }
}
/* Container utama */
.identity-programs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 0px 14px; /* lebih rapat */
  justify-items: center;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 25px;
  position: relative;
}

/* Card ketiga (alamat) di tengah sendiri */
.identity-programs .program-card:nth-child(3) {
  grid-column: 1 / span 2;
  justify-self: center;
  max-width: 500px;
  margin-top: -12px;
}

/* Gaya tiap "card" */
.program-card {
  transition: transform 0.25s ease;
  margin-bottom: 6px;
  position: relative;
}

.program-card:hover {
  transform: translateY(-3px);
}

/* Ilustrasi */
.program-icon {
  width: 260px; /* sedikit lebih kecil */
  height: auto;
  margin-bottom: 10px; /* lebih rapat ke judul */
  transition: transform 0.25s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.program-card:hover .program-icon {
  transform: scale(1.04);
}

/* Judul */
.program-card h3 {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem; /* sedikit lebih kecil */
  color: #111;
  margin-bottom: 4px; /* rapat */
  letter-spacing: 0.2px;
}

/* Deskripsi */
.program-card p {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  line-height: 1.45;
  max-width: 85%;
  margin: 0 auto;
}

/* =====================================================
   Tambahan gaya dekoratif dan tipografi elegan
   ===================================================== */

/* Garis dekoratif lembut di atas ikon */
.program-deco {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ffb347, #ffd46b);
  border-radius: 10px;
  margin: 0 auto 12px auto;
}

/* Data utama (angka atau kode) — misal NPSN atau Akreditasi */
.program-card .program-code {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ff9d00;
  margin-bottom: 6px;
}

/* Deskripsi kecil tambahan */
.program-card .program-desc {
  font-size: 0.88rem;
  color: #666;
  max-width: 85%;
  margin: 0 auto;
  line-height: 1.45;
}

/* Sedikit efek bayangan lembut untuk memberi depth */
.program-card:hover .program-deco {
  box-shadow: 0 2px 10px rgba(255, 179, 71, 0.25);
}

/* Responsif */
@media (max-width: 992px) {
  .identity-programs {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .identity-programs .program-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin-top: 0;
  }

  .program-icon {
    width: 200px;
  }
}
/* ===== SECTION TENAGA PENGAJAR ===== */
.teacher-section {
  position: relative;
  margin-top: 20px;
  z-index: 1;
}

/* Bungkus foto utama */
.teacher-photo-wrapper {
  text-align: center;
  position: relative;
}

/* Bentuk pill (telur berdiri) */
.photo-pill {
  width: 280px;
  height: 380px;
  background: #fff;
  border-radius: 50% / 60%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Gambar di dalam pill */
.teacher-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.photo-pill:hover .teacher-photo {
  transform: scale(1.03);
}

/* Overlay teks di dalam foto */
.teacher-overlay {
  position: absolute;
  bottom: 8%; /* sedikit lebih naik agar tampak lebih natural */
  width: 100%;
  text-align: center;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 10%, 
    rgba(0, 0, 0, 0.4) 40%, 
    rgba(0, 0, 0, 0) 100%
  );
  padding: 50px 10px 20px; /* gradasi halus dari bawah */
  color: #fff;
  border-bottom-left-radius: 50% 60%;
  border-bottom-right-radius: 50% 60%;
  transition: all 0.4s ease;
  opacity: 1;
}

/* Saat hover: overlay sedikit lebih terang dan teks naik lembut */
.photo-pill:hover .teacher-overlay {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 15%, 
    rgba(0, 0, 0, 0.45) 50%, 
    rgba(0, 0, 0, 0) 100%
  );
  transform: translateY(-4px);
}

/* Nama */
.teacher-name {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Jabatan */
.teacher-title {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Efek lembut saat hover di foto */
.photo-pill:hover .teacher-name {
  transform: translateY(-2px);
  color: #ffcc5c; /* aksen lembut seperti highlight emas */
}

.photo-pill:hover .teacher-title {
  opacity: 1;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
  .teacher-overlay {
    bottom: 6%;
    padding: 40px 8px 15px;
  }

  .teacher-name {
    font-size: 1.1rem;
  }

  .teacher-title {
    font-size: 0.9rem;
  }
}
/* ====== VISI MISI VALUE (3 ICON DALAM COL-MD-8, DENGAN HIASAN LEMBUT) ====== */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
  text-align: center;
}

/* Kartu */
.vm-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 24px;
  padding: 32px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hiasan lembut di bagian atas (gradasi tipis toska) */
.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 130%;
  height: 35%; /* lebih tipis agar tidak ganggu teks */
  transform: translateX(-50%);
  background: linear-gradient(
    120deg,
    rgba(0, 95, 115, 0.12),
    rgba(10, 147, 150, 0.08)
  );
  border-radius: 0 0 60% 60%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px); /* buat glow lembut */
}

/* Hover efek lembut */
.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 95, 115, 0.15);
}

/* Saat hover, gradasi sedikit lebih hidup */
.vm-card:hover::before {
  background: linear-gradient(
    120deg,
    rgba(0, 95, 115, 0.18),
    rgba(10, 147, 150, 0.12)
  );
  transition: all 0.3s ease;
}


/* Ikon */
.vm-icon {
  width: 150px;
  height: auto;
  margin-bottom: 14px;
  z-index: 1;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.1));
}

.vm-card:hover .vm-icon {
  transform: scale(1.07);
}

/* Judul */
.vm-card h4 {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* Garis kecil di bawah judul */
.vm-card h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ffb347, #ffd46b);
  margin: 8px auto 0;
}

/* Teks / Paragraf */
.vm-card p {
  font-family: "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  line-height: 1.55;
  margin: 10px 0 0;
  z-index: 1;
}

/* List Misi */
.vm-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  text-align: left;
  z-index: 1;
  width: 100%;
}

.vm-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 10px 0;
  position: relative;
  transition: all 0.25s ease;
}

/* Garis gradasi tipis */
.vm-card li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px; /* tipis */
  background: linear-gradient(90deg, #005f73, #0a9396);
  opacity: 0.15; /* lembut agar tidak mencolok */
}

/* Hilangkan garis di item terakhir */
.vm-card li:last-child::after {
  display: none;
}

/* Efek hover lembut */
.vm-card li:hover {
  background: linear-gradient(90deg, rgba(0, 95, 115, 0.05), rgba(10, 147, 150, 0.05));
  border-radius: 6px;
  transform: translateX(3px);
}

/* Ikon checklist */
.vm-card li img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
  opacity: 0.9;
  transition: transform 0.25s ease;
}

.vm-card li:hover img {
  transform: scale(1.15);
  opacity: 1;
}

/* Responsif */
@media (max-width: 992px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vm-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .vm-icon {
    width: 140px;
  }
}
