/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-image: url('Layout\ PPTQq.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  background-attachment: scroll;
  overflow-x: hidden;
}


body {
  font-family: 'Poppins', sans-serif;
  padding-top: 112px; /* default space untuk topbar + navbar (desktop) */
}

body, html {
  margin: 0;
  padding: 0;
}

.top-bar {
  background-color: #fff;
  color: #003b2b;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* opsional bayangan */
}

/* Beri padding ke konten utama agar tidak tertutup */
body {
  padding-top: 40px; /* sama tinggi dengan .top-bar */
}

/* Topbar links */
.top-bar .right a {
  text-decoration: none;
  color: #003b2b;
  margin-left: 10px;
  font-weight: 700;
}

.top-bar .right a:hover {
  color: #006b50;
  text-decoration: underline;
}


/* Navbar */
.navbar {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 40px;
  left: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: top 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive behavior */
@media (max-width: 767px) {
  .top-bar {
    display: none;
  }

  .navbar {
    top: 0 !important;
  }

  body {
    padding-top: 64px;
  }
}

@media (min-width: 430px) {
  body {
    padding-top: 96px; /* topbar 40 + navbar ~56 */
  }
}




.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Right-side icons */
.right-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-icon-mobile {
  font-size: 24px;
  color: inherit;
  display: none;
  text-decoration: none;
}
.cart-icon-desktop {
  display: inline-block;
  text-decoration: none;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Dropdown */
.dropdown {
  position: relative;
}
/* Dropdown Button (Tombol Dropdown) */
.dropdown-toggle {
  display: inline-flex;
  align-items: center; /* Biar arrow sejajar teks */
  gap: 6px; /* Jarak antara teks dan panah */
  background: none;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
}

/* Underline efek saat hover */
.dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: white;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.dropdown-toggle:hover::after {
  transform: scaleX(1);
}

/* Arrow-nya */
.dropdown-toggle .arrow {
  font-size: 0.8em;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* Pas dropdown kebuka */
.dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(221, 221, 221, 0.4);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #323232;
}



/* Hamburger Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* RESPONSIVE TABLET & MOBILE */
@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(55, 55, 55, 0.6);
    backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    z-index: 999;
    border-radius: 0 0 12px 12px;
  }

  .nav-links.active {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 20px;
  }

  .nav-links .dropdown,
  .nav-links .dropdown-toggle,
  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 10px 0;
  }

  .dropdown-menu {
    position: relative;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding-left: 15px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
  }

  .dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    transform: translateY(0);
  }

  .cart-icon-mobile {
    display: inline-block;
  }
  .cart-icon-desktop {
    display: none;
  }
}


body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  box-sizing: border-box;
  background-image: url(images/Layout\ PPTQ.png)
}

.blur-container {
  width: 100%;
  padding: clamp(2px, 0.5vw, 6px) clamp(10px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center; /* Pusatkan isi */
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  gap: clamp(8px, 2vw, 20px);
  box-sizing: border-box;
  overflow-x: hidden;
}

.left {
  flex: 1;
  font-size: clamp(10px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  min-width: 0;
}

.divider {
  width: 1px;
  height: clamp(30px, 6vw, 70px);
  background-color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.right {
  display: flex;
  gap: clamp(4px, 1vw, 10px);
  flex-wrap: nowrap;
}

.right button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  color: white;
  padding: clamp(2px, 0.5vw, 8px) clamp(6px, 1.2vw, 14px);
  font-size: clamp(9px, 1.2vw, 12px);
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s;
}

.right button:hover {
  background: rgba(255, 255, 255, 0.1);
}



/* Footer */
footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 50px 0;
  font-family: sans-serif;
}

.footer-item h4 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-item p,
.footer-item a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-item a:hover {
  color: #61A084;
  text-decoration: underline;
}

.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item ul.menu-list li {
  margin-bottom: 10px;
}

.footer-item .address {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  padding-left: 0;
}

.social-icons li {
  list-style: none;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  color: #005131;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #61A084;
  color: #fff;
}

.footer-item iframe {
  width: 250px;
  height: 250px;
  border: 0;
  border-radius: 4px;
  margin-top: 10px;
}

/* Subfooter */
.sub-footer {
  background-color: #111;
  color: #ccc;
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
}

.sub-footer a {
  color: #ccc;
  text-decoration: none;
}

.sub-footer a:hover {
  color: #fff;
}

/* Center align content in sub-footer */
.sub-footer .container,
.sub-footer .row,
.sub-footer .col-md-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Layout Desktop */
@media (min-width: 430px) {
  .footer-item {
    margin-bottom: 0;
  }

  .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-item {
    width: 23%;
  }
}

/* Layout Mobile */
@media (max-width: 767px) {
  .row {
    display: block;
  }

  .footer-item {
    margin-bottom: 30px;
  }

  .footer-item iframe {
    width: 100%;
    height: 200px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .sub-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* Efek zoom dan elevasi untuk link */
.footer-item a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  transform-origin: left center;
}

.footer-item a:hover {
  color: #61A084;
  text-decoration: underline;
  transform: scale(1.05);
}

/* Efek zoom-in dan shadow pada ikon sosial */
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  color: #005131;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.social-icons a:hover {
  background-color: #61A084;
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Efek hover untuk iframe peta */
.footer-item iframe {
  width: 250px;
  height: 250px;
  border: 0;
  border-radius: 4px;
  margin-top: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-item iframe:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Sub-footer link hover lebih halus */
.sub-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sub-footer a:hover {
  color: #fff;
}



.blur-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  flex-wrap: nowrap;
  gap: 20px;
  box-sizing: border-box;
}

.blur-container .left {
  flex: 1;
  padding: 0;
  font-size: 14px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blur-container .divider {
  width: 1px;
  background-color: white;
  height: 30px;
}

.blur-container .right {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.blur-container button {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
  transition: background 0.3s;
  font-weight: bold; /* <<< tambahkan ini */
}


.blur-container button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* MODE MOBILE */
@media (max-width: 430px) {
  .blur-container {
    padding: 1px 12px; /* <<< LEBIH GEPENG di mode mobile */
    gap: 10px;
  }

  .blur-container .left {
    font-size: 12px;
  }

  .blur-container button {
    font-size: 9px;
    padding: 4px 8px;
  }

  .blur-container .divider {
    height: 40px;
  }
}

.hero-section {
  position: relative;
  min-height: 10px;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


/* Kontainer gambar & isi */
.hero-inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  width: 95%;
  max-width: 950px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto; /* ➜ Ini yang bikin gambar center */
}


/* Tombol */
.hero-buttons {
  position: absolute;
  bottom: 600px;
  left: 120px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 2;

  /* Animasi masuk */
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Tambahin animasi masuk */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Efek hover umum semua tombol */
.hero-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Tombol putih */
.hero-btn.program {
  background-color: white;
  color: #004331;
  border-color: #004331;
}

.hero-btn.program:hover {
  background-color: #004331;
  color: #ffffff;
}

/* Tombol hijau */
.hero-btn.daftar {
  background-color: #004331;
  color: white;
  border-color: #004331;
}

.hero-btn.daftar:hover {
  background-color: #ffffff;
  color: #003b2b;
}


  .hero-inner {
    flex-direction: column; /* ✅ Tambahkan ini agar isi termasuk gambar di-center */
    align-items: center;     /* ✅ Ini untuk center horizontal */
  }

  @media (max-width: 600px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Biar teks (jika ada) juga rata tengah */
  }

  .hero-bg {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Default: tampilkan gambar desktop, sembunyikan mobile */
.hero-desktop {
  display: block;
  width: 100%;
  max-width: none;
}


.hero-mobile {
  display: none;
}



/* Mode mobile: tampilkan gambar mobile, sembunyikan desktop */
@media (max-width: 600px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Default: Desktop Mode --- */
.hero-section {
  padding: 60px 20px;
}

.hero-buttons {
  bottom: 100px;
  left: 100px;
  gap: 12px;
}

.hero-btn {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 10px;
}

/* --- Mobile Mode (≤ 600px) --- */
@media (max-width: 430px) {
  .hero-section {
    padding: 20px 0;
  }

  .hero-buttons {
    bottom: 40px;
    left: 35px;
    gap: 10px;
  }

  .hero-btn {
    padding: 4px 12px;
    font-size: 6px;
    border-radius: 5px;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .hero-section {
    padding: 40px 10px;
  }

  .hero-buttons {
    bottom: 65px;
    left: 50px;
    gap: 10px;
  }

  .hero-btn {
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 5px;
  }
}



.cta-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 50px;
  padding: 12px 32px;
  gap: 16px;
  max-width: 1100px;

  /* Tengah horizontal */
  margin: 20px auto;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background-image: url('background-image.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-wrap: nowrap;
}

.cta-btn {
  text-decoration: none; /* Hilangkan garis bawah */
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-btn.secondary {
  background-color: #f0f0f0;
  color: #333;
}

.cta-btn:hover {
  background-color: #0056b3;
  text-decoration: none; /* Pastikan tetap tanpa underline saat hover */
}


.cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-logo {
  height: 60px;
  width: auto;
}


.cta-buttons {
  position: absolute;
  bottom: 25px; /* ⬅️ Geser dari bawah */
  left: 450px;   /* ⬅️ Geser dari kiri */
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-left: 0; /* Tidak perlu lagi auto margin */
  margin-top: 0;  /* Tidak perlu offset manual */
}

.cta-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  background-color: #014d36;
  color: white;
}

.cta-btn:hover {
  background-color: #ffffff;
  color: #003b2b;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Tombol sekunder: outline saja */
.cta-btn.secondary {
  background-color: transparent;
  color: #014d36;
  border: 2px solid #014d36;
}

.cta-btn.secondary:hover {
  background-color: #eaf7f2;
  border-color: #026b4c;
  color: #026b4c;
  transform: scale(1.05);
}

/* Responsive */


/* === RESPONSIVE CTA CARD === */

@media (max-width: 430px) {
  .cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    gap: 20px;
    margin: 16px;
    position: relative;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .cta-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  .cta-logo {
    height: 48px;
    display: block;
  }

  .cta-text {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
  }

  .cta-divider {
    display: none;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    width: 100%;

    /* Tambahan posisi manual */
    position: absolute;
    bottom: 19px; /* Ubah sesuai kebutuhan */
    left: 120px;   /* Ubah sesuai kebutuhan */
  }

  .cta-btn {
  padding: 9px 24px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
  background-color: #014d36;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease; /* Transisi halus untuk animasi */
}

.cta-btn:hover {
  background-color: #000000; /* Warna latar saat hover */
  transform: scale(1.05); /* Sedikit membesar */
}

.cta-btn:hover {
  background-color: #ffffff;
  color: #003b2b;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


  .cta-btn.secondary {
    display: none; /* hanya tampilkan 1 tombol */
  }
}


@media (max-width: 430px) {
  .cta-card {
    padding: 12px;
    border-radius: 6px;
    margin: 12px;
    gap: 16px;
  }

  .cta-logo {
    height: 40px;
  }

  .cta-btn {
  font-size: 10px;
  padding: 8px 20px;
  margin-bottom: 1px;  /* ✅ Jarak bawah */
  margin-left: 0px;     /* ✅ Jarak kiri */
  margin-right: 80px;    /* ✅ Jarak kanan */
}
}



.cta-spacer {
  margin-bottom: 90px; /* default untuk desktop */
}

@media (max-width: 430px) {
  .cta-spacer {
    margin-bottom: 370px; /* untuk tablet dan mobile */
  }
}



/* Section Umum */
.info-section {
  padding: 60px 20px;
  background-image: url('images/Frame\ 19.png'); /* Tetap seperti aslinya */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* Seperti object-fit: contain */
  color: #1c1c1c;
  font-family: 'Poppins', sans-serif;
}


.info-container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: 0;         /* total ke kanan */
  padding-right: 10px;     /* beri jarak dari sisi kanan */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}




.pengumuman-box,
.agenda-box {
  flex: 1;
  min-width: 300px;
}

.pengumuman-box h2,
.agenda-box h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1c1c1c;
}

.pengumuman-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 4px solid #014d36;
}

.pengumuman-item .tanggal {
  font-weight: bold;
  font-size: 14px;
  color: #014d36;
  margin-bottom: 4px;
}

.pengumuman-item p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.agenda-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 14px;
}

.agenda-date {
  width: 42px;
  height: 42px;
  background-color: #014d36;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agenda-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 430px) {
  .info-section {
  background-image: url('');
  padding: 60px 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; /* Seperti object-fit: contain */
  }

  .info-container {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .pengumuman-item,
  .agenda-item {
    align-items: flex-start;
    text-align: left;
  }

  .pengumuman-item {
    padding-left: 24px;
    border-left: 4px solid #014d36;
  }
}

.pengumuman-item a,
.agenda-item a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

/* Efek garis bawah animasi */
.pengumuman-item a::after,
.agenda-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #014d36;
  transition: width 0.3s ease;
}

/* Hover efek gabungan: garis bawah, warna, dan zoom */
.pengumuman-item a:hover,
.agenda-item a:hover {
  color: #014d36;
  transform: scale(1.03);
}

.pengumuman-item a:hover::after,
.agenda-item a:hover::after {
  width: 100%;
}



.berita-section {
  padding: 60px 20px;
  background-image: url('images/Frame\ 19.png');  /* Gambar desktop */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #1c1c1c;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
}

/* Mode mobile - ganti background image */
@media (max-width: 430px) {
  .berita-section {
    padding: 30px 15px;
    background-image: url('images/Frame\ 12.png');  /* Gambar mobile */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-height: auto;
  }
}

.berita-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.berita-header h2 {
  font-size: 28px;
  color: #333;
  margin: 0;
  position: relative;
  top: 80px;
  left: 70px;
  display: inline-block;
  padding-bottom: 5px; /* jarak underline ke teks */
}

/* Mode mobile: layar maksimal 768px */
@media (max-width: 430px) {
  .berita-header h2 {
    font-size: 38px;       /* font lebih kecil */
    top: 50px;             /* posisi turun dikurangi */
    left: 10px;            /* geser kiri lebih sedikit */
    padding-bottom: 1px;   /* padding bawah lebih kecil */
  }
}


.berita-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;  /* tepat di bawah teks */
  left: 0;
  height: 2px; /* ketebalan garis */
  width: 50%;  /* panjang garis (setengah) */
  background-color: #333; /* warna garis */
}



.selengkapnya {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  margin-top: 90px;
  transition: all 0.3s ease;
  position: relative;
  right: 50px;
  padding-bottom: 3px;
  display: inline-block;
}

@media (max-width: 430px) {
  .selengkapnya {
    color: #003b2b;
    font-size: 12px;     /* ukuran font lebih kecil */
    margin-top: 40px;    /* jarak atas dikurangi */
    left: 250px;         /* geser kanan lebih kecil */
    bottom: 0px; /* padding bawah disesuaikan */
  }
}


.selengkapnya::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;                 /* Mulai dari 0 supaya tidak terlihat */
  background-color: #ffffff;
  transition: width 0.3s ease;  /* Animasi smooth untuk width */
}

.selengkapnya:hover {
  transform: translateX(5px);
  color: #004d4d;
}

.selengkapnya:hover::after {
  width: 50%;               /* Saat hover, underline melebar ke 50% */
}

.berita-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.berita-card {
  width: 200px;
  background: #333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 90px; /* tambahkan jarak antar baris */
}


.berita-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail {
  width: 100%;
  height: 180px;
}

.info {
  padding: 10px;
  background: #1a1a1a;
  color: white;
}

.tanggal {
  font-size: 12px;
  color: #ccc;
  display: block;
  margin-bottom: 5px;
}

.info p {
  font-size: 13px;
  margin: 0;
}

/* Responsif */
@media (max-width: 430px) {
  .berita-section {
    padding: 20px;
  }

  .berita-list {
    gap: 15px;
    justify-content: start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .berita-card {
    flex: 0 0 auto;
  }

  .berita-header {
    flex-direction: column;
    gap: 10px;
  }

  .berita-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 430px) {
  .berita-list {
    display: flex;
    gap: 15px;
    overflow-x: hidden; /* sembunyikan scrollbar */
    scroll-behavior: smooth;
  }

  .berita-card {
    flex: 0 0 auto;
    width: 200px;
  }
}

@media (max-width: 430px) {
  .berita-list {
    overflow-x: hidden;  /* sembunyikan scrollbar */
    scroll-behavior: smooth; /* smooth scroll */
  }
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info a {
  text-decoration: none;
  color: white;
  display: block;
}

.info a:hover p {
  color: #00ffc8; /* atau sesuaikan */
}


.tokoh-section {
  position: relative;
  min-height: 10px;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.tokoh-inner {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* agar isi termasuk gambar di-center */
}

.tokoh-bg {
  width: 95%;
  max-width: 950px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
}

.tokoh-buttons {
  position: absolute;
  bottom: 700px;
  left: 120px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 2;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tokoh-btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.tokoh-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.tokoh-btn.program {
  background-color: white;
  color: #004331;
  border-color: #004331;
}

.tokoh-btn.program:hover {
  background-color: #004331;
  color: #ffffff;
}

.tokoh-btn.daftar {
  background-color: #004331;
  color: white;
  border-color: #004331;
}

.tokoh-btn.daftar:hover {
  background-color: #ffffff;
  color: #003b2b;
}

@media (max-width: 600px) {
  .tokoh-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .tokoh-bg {
    margin-left: auto;
    margin-right: auto;
  }
}

.tokoh-desktop {
  display: block;
  width: 100%;
  max-width: none;
}

.tokoh-mobile {
  display: none;
}

@media (max-width: 600px) {
  .tokoh-desktop {
    display: none;
  }

  .tokoh-mobile {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Default: Desktop Mode --- */
.tokoh-section {
  padding: 60px 20px;
}

.tokoh-buttons {
  bottom: 130px;
  left: 110px;
  gap: 12px;
}

.tokoh-btn {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 10px;
}

/* --- Mobile Mode (≤ 600px) --- */
@media (max-width: 430px) {
  .tokoh-section {
    padding: 20px 0;
  }

  .tokoh-buttons {
    bottom: 40px;
    left: 35px;
    gap: 10px;
  }

  .tokoh-btn {
    padding: 4px 12px;
    font-size: 6px;
    border-radius: 5px;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .tokoh-section {
    padding: 40px 10px;
  }

  .tokoh-buttons {
    bottom: 65px;
    left: 50px;
    gap: 10px;
  }

  .tokoh-btn {
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 5px;
  }
}



.video-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  overflow: hidden;
}

.video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.video-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  top: 0px; /* Geser ke bawah 200px */
}



/* Default: tampilkan desktop bg, sembunyikan mobile */
.video-desktop {
  display: block;
}

.video-mobile {
  display: none;
}

/* Mobile: sembunyikan desktop bg, tampilkan mobile bg */
@media (max-width: 600px) {
  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }
}

.video-container {
  position: relative;
  text-align: center;
  max-width: 800px;
  width: 100%;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.video-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.video-subtitle {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

.video-frame {
  background-color: #111;
  border-radius: 20px;
  padding: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.video-frame iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}


.more-info.about-info {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.more-info-content .row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Content */
.right-content {
  text-align: left;
}

.right-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

.right-content h2 em {
  color: #91c239;
  font-style: normal;
}

.right-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.right-content a.filled-button {
  display: inline-block;
  background-color: #004331;
  color: white;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
}

/* Left Image */
.left-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .more-info-content .row {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .right-content h2 {
    font-size: 20px;
  }

  .right-content p {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .more-info.about-info {
    padding: 40px 0;
  }

  .right-content h2 {
    font-size: 18px;
  }

  .right-content p {
    font-size: 14px;
  }

  .right-content a.filled-button {
    font-size: 14px;
    padding: 6px 14px;
  }
}

.right-content a.filled-button {
  display: inline-block;
  background-color: #004331;
  color: white;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.right-content a.filled-button:hover {
  background-color: #7da32c;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root {
  --primary-color: #014d36;
  --secondary-color: #e6f9eb;
}

.tab-switcher {
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  padding: 1rem;
  transform: scale(0.9);
}

.tab-switcher .tabs {
  display: flex;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 0 1px rgba(24, 94, 224, 0.15), 0 6px 12px rgba(24, 94, 224, 0.15);
  padding: 0.75rem;
  border-radius: 99px;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-switcher .tab-item {
  position: relative;
}

.tab-switcher .tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 200px;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.tab-switcher .tab-button:hover {
  background-color: var(--secondary-color);
}

.tab-switcher .notification {
  margin-left: 0.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-switcher .arrow {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.tab-switcher .tab-item.open .arrow {
  transform: rotate(180deg);
}

/* Dropdown dengan animasi smooth */
.tab-switcher .dropdown {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 0 1rem;
  width: 200px;
  flex-direction: column;
  z-index: 10;
}

.tab-switcher .dropdown a {
  text-decoration: none;
  color: #333;
  padding: 0.5rem 0;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
}

.tab-switcher .dropdown a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 0.5rem;
  padding-left: 0.75rem;
}

.tab-switcher .tab-item.open .dropdown {
  max-height: 500px;
  opacity: 1;
  padding: 1rem;
}

/* Responsive Mobile */
@media (max-width: 700px) {
  .tab-switcher .tabs {
    flex-direction: column;
    border-radius: 1rem;
    gap: 0;
    transform: scale(0.8);
    width: 100%;
  }

  .tab-switcher .tab-button {
    width: 100%;
    justify-content: space-between;
    padding: 0 1rem;
  }

  .tab-switcher .dropdown {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    background: #fff;
  }

  .tab-switcher .tab-item.open .dropdown {
    padding: 1rem;
    max-height: 500px;
    opacity: 1;
  }

  .tab-switcher .dropdown a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}





#myImg {
  max-width: 300px;
  cursor: zoom-in;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.lightbox-content {
  margin-top: 5%;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}



@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

*,
*:after,
*:before {
  box-sizing: border-box;
}

body, html {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  color: #2c3e50;
}

.contact-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(24, 224, 71, 0.15);
  box-shadow:
    0 1px 3px rgba(24, 94, 224, 0.12),
    0 6px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.25s ease;
}

.contact-container:hover {
  box-shadow:
    0 4px 12px rgba(52, 52, 52, 0.2),
    0 12px 24px rgba(0, 139, 0, 0.25);
}

h1 {
  text-align: center;
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form, .contact-info {
  flex: 1 1 300px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #34495e;
  transition: color 0.3s ease;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1.5px solid rgba(0, 74, 23, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 15px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #005131;
  box-shadow: 0 0 8px rgba(24, 94, 224, 0.4);
}

.contact-form button {
  margin-top: 10px;
  padding: 14px 28px;
  background-color: #005131;
  color: white;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 12px rgba(24, 94, 224, 0.15);
}


.contact-info h2 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 12px;
}

.contact-info p {
  color: #555;
  margin-bottom: 8px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-info p:hover {
  color: #005131;
  cursor: default;
}

.kontak-social-icons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.kontak-social-icons a {
  font-size: 24px;
  color: #005131;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-radius: 50%;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* Hilangkan garis bawah */
}


/* Warna hover khusus platform */
.tiktok:hover { color: #000; }
.youtube:hover { color: #ff0000; }
.web:hover { color: #0066cc; }
.whatsapp:hover { color: #25d366; }
.instagram:hover { color: #e1306c; }
.facebook:hover { color: #3b5998; }

/* FAQ Section */
.faq-section {
  margin-top: 50px;
}

.faq-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.faq {
  border-top: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 12px;
}

.faq:last-child {
  border-bottom: 1px solid #ddd;
}

.faq:hover {
  background-color: #f0f5ff;
}

.question {
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

.faq:hover .question {
  color: #185ee0;
}

.answer {
  max-height: 0;
  overflow: hidden;
  padding-left: 5px;
  color: #555;

  opacity: 0;
  transition:
    max-height 0.5s ease,
    padding 0.4s ease,
    opacity 0.5s ease;
}

.faq.active .answer {
  max-height: 300px;
  padding-top: 10px;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    padding: 25px 20px;
    margin: 30px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .contact-form button {
    width: 100%;
  }

  .kontak-social-icons {
    gap: 15px;
  }

  .faq-section h2 {
    font-size: 1.6rem;
  }

  .question {
    font-size: 1rem;
  }

  .answer {
    font-size: 0.95rem;
  }
}

/* FAQ container dan question */
.faq {
  position: relative;
  border-top: 1px solid #ddd;
  padding: 15px 0 15px 40px;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.3s ease;
  user-select: none;
}

.faq:hover {
  background-color: #f0f5ff;
}

/* Question dengan underline animasi */
.question {
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  transition: color 0.4s ease;
  color: #34495e;
}

.faq:hover .question {
  color: #0fb366;
}

/* Underline animasi */
.question::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #0fb366;
  transition: width 0.35s ease;
}

.faq:hover .question::after,
.faq.active .question::after {
  width: 100%;
}

/* Plus/minus ikon dengan animasi putar 3D */
.faq::before {
  content: "+";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) rotateY(0deg);
  font-size: 1.6rem;
  font-weight: 900;
  color: #0fb366;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.4s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.faq.active::before {
  content: "−";
  color: #0fb366;
  transform: translateY(-50%) rotateY(360deg);
}

/* Jawaban dengan animasi fade + slide + scale */
.answer {
  max-height: 0;
  overflow: hidden;
  padding-left: 5px;
  color: #555;
  opacity: 0;
  transform-origin: top left;
  transform: translateY(-10px) scale(0.95);
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s ease,
    opacity 0.6s ease,
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq.active .answer {
  max-height: 320px;
  padding-top: 10px;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover tombol dan icon */
.contact-form button:hover {
  background-color: #ffffff;
  color: #005131;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.kontak-social-icons a:hover {
  color: #ffffff;
  transform: scale(1.1);
  box-shadow:
    0 1px 18px rgba(0, 0, 0, 0.55);
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}



/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap');

/* Global Reset */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f1f1f1;
}

/* Grid Container */
.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

/* Card Style */
.card-wrap {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  border: 4px solid #ffffff; /* STROKE PUTIH */
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* SHADOW DI BELAKANG */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25); /* SHADOW LEBIH KUAT SAAT HOVER */
}


/* Header Ikon */
.card-header {
  height: 140px;
  border-bottom-right-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 48px;
}


@media (max-width: 767px) and (min-width: 429px) {
  .card-header {
    height: 70px;
    font-size: 32px;
    border-bottom-right-radius: 60px;
  }
}

@media (max-width: 428px) {
  .card-header {
    height: 90px;
    font-size: 54px;
    border-bottom-right-radius: 40px;
  }
}


/* Warna Header & Tombol */
.card-header.one,
.card-btn.one {
  background: linear-gradient(135deg, #294F5C, #61A084);
}

.card-header.two,
.card-btn.two {
  background: linear-gradient(135deg, #294F5C, #61A084);
}

.card-header.three,
.card-btn.three {
  background: linear-gradient(135deg, #294F5C, #61A084);
}

.card-header.four,
.card-btn.four {
  background: linear-gradient(135deg, #294F5C, #61A084);
}

/* Konten Kartu */
.card-content {
  padding: 25px 20px 30px;
  text-align: center;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Tombol */
.card-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
}

.card-btn:hover {
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  justify-items: center;
}

/* Tablet dan mobile menengah: 2 kolom */
@media screen and (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile ukuran 430px ke bawah tetap 2 kolom */
@media screen and (max-width: 576px) and (min-width: 430px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP kecil (di bawah 430px): 1 kolom */
@media screen and (max-width: 429px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP kecil (di bawah 428px): 1 kolom */
@media screen and (max-width: 420px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}



.card-btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 25px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
}

/* Section styling */
.ijazah-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.ijazah-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

/* Grid layout */
.ijazah-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card styling */
.ijazah-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ijazah-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.75s ease-in-out;
}

.ijazah-card:hover::before {
  left: 130%;
}

.ijazah-card:hover {
  transform: translateY(-10px) rotateZ(-1deg);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}


/* Icon */
.ijazah-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #294F5C, #61A084); /* hijau ke hijau terang */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}


.ijazah-card:hover .ijazah-icon {
  transform: scale(1.1);
}

/* Text */
.ijazah-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.ijazah-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .ijazah-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ijazah-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .ijazah-card {
    padding: 2px 15px;
    border-radius: 10px;
  }

  .ijazah-icon {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .ijazah-card h3 {
    font-size: 18px;
  }

  .ijazah-card p {
    font-size: 13px;
  }
}

