:root {
  --col-navbar: #fff;
  --col-default-0: rgba(23, 44, 74, 1);
  --col-default-1: rgba(23, 44, 74, 0.1);
  --col-default-2: rgba(23, 44, 74, 0.2);
  --col-default-3: rgba(23, 44, 74, 0.3);
  --col-default-4: rgba(23, 44, 74, 0.4);
  --col-default-5: rgba(23, 44, 74, 0.5);
  --col-default-6: rgba(23, 44, 74, 0.6);
  --col-default-7: rgba(23, 44, 74, 0.7);
  --col-default-8: rgba(23, 44, 74, 0.8);
  --col-default-9: rgba(23, 44, 74, 0.9);
  --col-yellow: #f39c12;
  --col-red: #d32f2f;
  --col-dark: #212529;
  --col-seck: #2c3e50;
  --col-gray: #6c757d;
  --col-light: #f8f9fa;
  --col-pink: #d63384;
  --col-primary: #3498db;
  --col-dark2: #1a2a3a;
  --footer1: #05195a;
  --footer0: #ffffff;
  --primary-blue: #3498db;
  --secondary-blue: #1a2a3a;
  --primary-purple: #1a2a3a;
  --secondary-purple: #172c4a;
  --light-blue: #e8f0fe;
  --light-purple: #f3e8ff;
  --gradient-bg: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  --light-gradient: linear-gradient(
    135deg,
    var(--light-blue),
    var(--light-purple)
  );
}

.mynavbar,
.mynavbar-container,
.mynavbar-brand,
.mynavbar-menu,
.mynavbar-item,
.mynavbar-link,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  background: var(--col-light);
  color: #333;
  min-height: 200vh; /* Untuk testing scroll */
}
/* Smooth transition */
[class^="text-hover-"],
[class*=" text-hover-"] {
  transition: color 0.3s ease;
}

/* Primary */
.text-hover-primary:hover {
  color: var(--bs-primary) !important;
}

/* Secondary */
.text-hover-secondary:hover {
  color: var(--bs-secondary) !important;
}

/* Success */
.text-hover-success:hover {
  color: var(--bs-success) !important;
}

/* Danger */
.text-hover-danger:hover {
  color: var(--bs-danger) !important;
}

/* Warning */
.text-hover-warning:hover {
  color: var(--bs-warning) !important;
}

/* Info */
.text-hover-info:hover {
  color: var(--bs-info) !important;
}

/* Light */
.text-hover-light:hover {
  color: var(--bs-light) !important;
}

/* Dark */
.text-hover-dark:hover {
  color: var(--bs-dark) !important;
}

/* Muted */
.text-hover-muted:hover {
  color: var(--bs-secondary-color) !important;
}

/* White */
.text-hover-white:hover {
  color: #fff !important;
}
/* White */
.text-hover-pink:hover {
  color: var(--col-pink) !important;
}

/* Smooth transition */
[class^="bg-hover-"],
[class*=" bg-hover-"] {
  transition: background-color 0.3s ease;
}

/* Primary */
.bg-hover-primary:hover {
  background-color: var(--bs-primary) !important;
}

/* Secondary */
.bg-hover-secondary:hover {
  background-color: var(--bs-secondary) !important;
}

/* Success */
.bg-hover-success:hover {
  background-color: var(--bs-success) !important;
}

/* Danger */
.bg-hover-danger:hover {
  background-color: var(--bs-danger) !important;
}

/* Warning */
.bg-hover-warning:hover {
  background-color: var(--bs-warning) !important;
}

/* Info */
.bg-hover-info:hover {
  background-color: var(--bs-info) !important;
}

/* Light */
.bg-hover-light:hover {
  background-color: var(--bs-light) !important;
}

/* Dark */
.bg-hover-dark:hover {
  background-color: var(--bs-dark) !important;
}
/* pink */
.bg-hover-pink:hover {
  background-color: var(--col-pink) !important;
}

.bg-hover-default:hover {
  background-color: var(--secondary-purple) !important;
}

/* setings default */
.bg-blue {
  background: var(--col-primary);
}

.text-justify {
  text-align: justify;
}

.text-col-yellow {
  color: var(--col-yellow);
}
.text-col-red {
  color: var(--col-red);
}
.text-col-dark {
  color: var(--col-dark);
}
.text-col-dark2 {
  color: var(--col-dark2);
}
.text-col-seck {
  color: var(--col-seck);
}
.text-col-gray {
  color: var(--col-gray);
}
.text-col-light {
  color: var(--col-light);
}
.text-col-pink {
  --bs-text-opacity: 1;
  color: var(--col-pink);
}
.text-col-primary {
  color: var(--col-primary);
}

.text-col-default {
  color: var(--col-default-0);
}

.box-shadow {
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}

/* Navbar Container */
.mynavbar-top {
  background: var(--col-default-0);
  height: 80px;
}
.mynavbar {
  background: rgba(0, 0, 0, 0);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
  transition: background 0.3s ease;
}

.mynavbar.scrolled {
  background: #05195a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
}

.btn-default {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3498db;
  --bs-btn-border-color: #3498db;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2f4e7c;
  --bs-btn-hover-border-color: #2f4e7c;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2f4e7c;
  --bs-btn-active-border-color: #2f4e7c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3498db;
  --bs-btn-disabled-border-color: #3498db;
}

/* Navbar Wrapper */
.mynavbar-container {
  /* max-width: 100vh; */
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Brand/Logo */
.mynavbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #05195a;
  font-size: 1.9rem;
  font-weight: 700;
  transition: color 0.4s ease;
  z-index: 1001;
  text-shadow:
    3px 3px 6px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5);
}

.mynavbar-brand.scrolled {
  color: #fff;
  transition: color 0.4s ease;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}

.mynavbar-brand-text {
  font-size: 25px;
}

/* Desktop Navigation Menu */
.mynavbar-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.mynavbar-item {
  margin-left: 5px;
  position: relative;
}

.mynavbar-link {
  color: #05195a;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  transition: color 0.4s ease;
  text-shadow:
    3px 3px 6px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5);
}

.mynavbar-link.scrolled {
  color: #fff;
  transition: color 0.4s ease;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}

.mynavbar-link:hover {
  color: #4facfe;
}

.mynavbar-link i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Dropdown Arrow */
.nav-dropdown .mynavbar-link::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.8rem;
  transition: transform 0.4 ease;
}

.nav-dropdown:hover .mynavbar-link::after {
  transform: rotate(180deg);
}

/* Dropdown Menu - Buka ke bawah */
.drop-down-menu {
  margin-top: 13px;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 1);
  min-width: 240px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  padding: 10px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* HOVER: Langsung terbuka ke bawah */
.nav-dropdown:hover .drop-down-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

/* Dropdown Items */
.drop-down-item {
  padding: 14px 25px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1rem;
}

.drop-down-item:hover {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  color: #4facfe;
  padding-left: 35px;
}

.drop-down-item i {
  width: 20px;
  margin-right: 10px;
  color: #4facfe;
}

.drop-down-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #eee, transparent);
  margin: 8px 20px;
}

/* Mobile Menu Toggle */
.mynavbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #05195a;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  transition: transform 0.3s ease;
  text-shadow:
    3px 3px 6px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5);
}

.mynavbar-toggle.scrolled {
  color: #fff;
  transition: transform 0.3s ease;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
}

.mynavbar-toggle:hover {
  transform: scale(1.1);
}

/* Responsive Styles - Tablet & Mobile */
@media (max-width: 1024px) {
  .mynavbar-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Mulai dari luar layar kanan */
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #05195a 0%, #2c3e50 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 20px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1000;
  }

  /* Menu aktif - animasi masuk dari kanan */
  .mynavbar-menu.active {
    right: 0;
  }

  .mynavbar-item {
    margin: 0;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mynavbar-item:last-child {
    border-bottom: none;
  }

  .mynavbar-link {
    color: #fff;
    padding: 18px 0;
    font-size: 1.2rem;
    width: 100%;
    border-radius: 0;
    text-shadow: none;
  }

  .nav-dropdown .mynavbar-link::after {
    content: "\f078";
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .nav-dropdown.active .mynavbar-link::after {
    transform: rotate(180deg);
  }

  /* Dropdown untuk mobile */
  .drop-down-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 5px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.5s ease,
      padding 0.3s ease;
    padding: 0;
    border: none;
  }

  .nav-dropdown.active .drop-down-menu {
    max-height: 500px;
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .drop-down-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px 12px 40px;
  }

  .drop-down-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4facfe;
    padding-left: 45px;
  }

  .drop-down-item i {
    color: rgba(255, 255, 255, 0.7);
  }

  .mynavbar-toggle {
    display: block;
  }
}

/* Overlay untuk mobile */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.container-article {
  width: 100%;
}

.container-page {
  width: 100%;
}

.container-page h1 {
  color: #ffffff;
  margin-bottom: 25px;
  font-size: 2.8rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card i {
  font-size: 2.5rem;
  color: #4facfe;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #1a2a3a;
  margin-bottom: 15px;
}

.mobile-demo {
  display: none;
  background: #1a2a3a;
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}
/* ================================================================================================= */

/* Slider Container */
/* ================================================================================================= */
.slider-container {
  /* height: calc(100vh - 80px);
    max-height: calc(100vh - 80px); */
  /* height: 100vh; */
  width: 100%;
  aspect-ratio: 16 / 9; /* Alternatif selain 100vh */
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Gambar background */
.slide-bg {
  width: 100%;
  /* height: 100vh; Desktop: 100vh */
  background-size: cover; /* Gambar diperbesar sampai memenuhi container */
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Overlay hitam dengan opacity 0.5 di atas gambar */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Efek hitam transparan */
  z-index: 2;
}

/* Konten teks di atas overlay */
.slide-content {
  position: absolute;
  top: 30px;
  left: 200px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 20px;
  text-align: start;
  z-index: 3; /* Di atas overlay */
}

.title-shadow {
  text-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.5);
}

.subtitle-shadow {
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.8),
    0 0 5px rgba(0, 0, 0, 0.5);
}

.slide-title {
  font-family: "Philosopher", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 875px;
  color: #ffffff; /* Warna putih untuk kontras dengan overlay hitam */
  opacity: 0;
  transform: translateX(-250px);
  transition: all 2.5s ease 0.5s;
}

.slide-subtitle {
  font-family: "Work Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 600px;
  margin-bottom: 3rem;
  color: #ffffff; /* Warna putih untuk kontras */
  opacity: 0;
  transform: translateX(-250px);
  transition: all 2.5s ease 2.5s;
}

.slide-button {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background-color: #3498db;
  padding: 12px 35px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 1.3s ease;
  opacity: 0;
  transform: translateY(200px);
  transition: all 3s ease 3s;
  border: none;
  cursor: pointer;
}

/* .slide-button:hover {
  background-color: #171f32;
  transition: all 0.1s ease 0.1s;
  transform: scale(1.05);
}

.slide-button::after {
  background-color: #3498db;
  transition: all 0.1s ease 0.1s;
} */

/* Animasi masuk saat slide aktif */
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-button {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: var(--col-default-3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.5s ease;
  z-index: 4; /* Di atas semua layer */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--col-default-8);
}

/* Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 4; /* Di atas semua layer */
}

.swiper-pagination-bullet-active {
  background: #3498db;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-container {
    height: 400px; /* tinggi tetap 500px */
    aspect-ratio: auto; /* matikan aspect ratio */
    background-position: center center; /* tetap fokus di tengah */
  }
  .slide-bg {
    width: 150vw;
    /* height: 500px; */
    height: auto;
    aspect-ratio: auto;
    background-size: cover;
    background-position: center center;
    justify-content: center;
    align-items: center;
  }

  .slide-content {
    align-items: center;
    text-align: center;
  }
  .slide-content {
    left: 0;
    align-items: center;
  }
  .slide-title {
    font-size: 2.5rem;
    max-width: 90%;
  }

  .slide-subtitle {
    font-size: 1.1rem;
    max-width: 90%;
    margin-bottom: 2rem;
  }

  .slide-button {
    padding: 10px 25px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1.2rem;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .slide-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}
/* ================================================================================================= */

/* Efek Animasi */
/* ================================================================================================= */
.totop-effect {
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease;
}

.totop-effect:hover {
  transform: translateY(-10px);
}

.fade-effect {
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1.5s ease,
    transform 1.5s ease;
}

.fade-effect.show {
  opacity: 1;
  transform: translateY(0);
}

.zoom-effect {
  opacity: 0;
  transform: scale(0.7);
  transition: all 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.zoom-effect.show {
  opacity: 1;
  transform: scale(1);
}

.left-effect,
.right-effect {
  opacity: 0;
  transition:
    opacity 1.5s ease,
    transform 1.5s ease;
}

.left-effect {
  transform: translateX(-80px);
}

.right-effect {
  transform: translateX(80px);
}

.left-effect.show,
.right-effect.show {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
/* ================================================================================================= */
footer {
  margin: 0;
  padding: 0;
}

.container-footer {
  padding: 5% 10% 5% 10%;
}

.footer-top ul li:hover {
  opacity: 0.8;
}

.footer-top ul li a i {
  width: 200px;
  height: 200px;
  background: #ffffff;
  color: #172c4a;
  padding: 10px 12px 10px 12px;
  border-radius: 50%;
}

.col-footer {
  background-color: var(--footer1);
}

.col-footer ul {
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.col-footer ul li {
  list-style-type: none;
}

.col-footer ul li a {
  text-decoration: none;
  color: white;
}

.col-footer ul li a {
  text-decoration: none;
  white-space: nowrap;
}

.text-pink {
  --bs-text-opacity: 1;
  color: var(--pink) !important;
}

.col-footer-info {
  background-color: var(--footer0);
}
.footer-info {
  padding: 30px 0px 30px 0px;
}

.link-info-1 .col-lg-6 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-info-1 .col-lg-6 ul li {
  position: relative;
  padding: 0 12px;
  text-decoration: none;
}

.footer-2 ul li {
  position: relative;
  padding: 0 12px;
  text-decoration: none;
}

/* Garis pemisah | */
.link-info-1 .col-lg-6 ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: #999;
}

.link-info-1 ul li a {
  color: #808080;
}

.link-info-1 ul li a:hover {
  color: #3498db;
}

.col-lg-6 ul li a {
  text-decoration: none;
  align-items: end;
}

@media (max-width: 700px) {
  .container-footer {
    padding: 10px 10px;
  }

  .footer-2 ul li a {
    white-space: normal;
  }

  .link-info-1 .col-lg-6 ul {
    flex-direction: column;
  }

  .link-info-1 .col-lg-6 ul li::after {
    content: none;
  }
  .link-info-1 .col-lg-6 ul li:not(:last-child)::after {
    content: "";
  }
}

.footer-nama-yayasan {
  position: relative;
  width: 350px;
}

/* Select Style */
.footer-nama-yayasan select {
  width: 100%;
  background-color: #05195a;
  color: white;
  padding: 18px 45px 18px 20px;
  font-size: 18px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  appearance: none;
  outline: none;
  cursor: pointer;
}

/* Arrow */
.footer-nama-yayasan::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  transition: 0.3s;
}

/* Hover Effect */
.footer-nama-yayasan select:hover {
  background-color: #05195a;
}

/* Focus Effect */
.footer-nama-yayasan select:focus {
  border-bottom: 1px solid #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-nama-yayasan {
    font-size: 14px;
    min-width: 200px;
    padding: 10px 38px 10px 14px;
  }
}

@media (max-width: 576px) {
  .footer-nama-yayasan {
    font-size: 13px;
    min-width: 180px;
    padding: 8px 34px 8px 12px;
  }
}

/* Custom dropdown arrow wrapper */
.position-relative {
  position: relative;
}

/* Logo glow effect */
.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 226, 0.4) 0%,
    rgba(74, 144, 226, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: pulse 2s infinite;
}

/* Animasi glow */
@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* Logo image transition */
.logo-img {
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05);
}

/* Style untuk wrapper select - mirip Select2 container */
.d-flex.align-items-center {
  gap: 12px;
}

/* ================================================================================================= */
.article-hero {
  background-size: cover;
  width: 100%;
  background-position: center;
  color: white;
  padding: 120px 0 80px 0;
  text-align: center;
  margin: 0;
  margin-bottom: 50px;
}

.bg-effect {
  background: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1440 320\"><path fill=\"%23ffffff\" fill-opacity=\"0.1\" d=\"M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,149.3C672,149,768,203,864,202.7C960,203,1056,149,1152,122.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z\"></path></svg>');
}

.article-nav {
  top: 80px;
}

/* .article-full {
  margin-left: -17%;
  margin-right: -17%;
} */

.article-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
  z-index: -2;
}

.article-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.article-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero {
  background-size: cover;
  width: 100%;
  background-position: center;
  color: white;
  padding: 120px 0 80px 0;
  text-align: center;
  margin: 0;
  margin-bottom: 50px;
}

.page-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
  z-index: -2;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  z-index: 3;
}

.meta-item {
  display: flex;
  align-items: center;
  margin: 0 15px;
  font-size: 14px;
}

.meta-item i {
  margin-right: 8px;
  color: var(--primary);
}

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  margin: 5px;
  font-size: 14px;
  transition: var(--transition);
}

.tag:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Main Content */
.article-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.article-content {
  flex: 3;
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.article-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin: 30px 0 20px;
  color: var(--secondary);
}

.article-body h3 {
  font-size: 24px;
  margin: 25px 0 15px;
  color: var(--secondary);
}

.article-body p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.highlight-box {
  background-color: var(--gray);
  border-left: 5px solid var(--primary);
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
}

.highlight-box p {
  font-style: italic;
  color: var(--secondary);
  font-size: 18px;
  margin: 0;
}

.article-body ul,
.article-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.article-body li {
  margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
  flex: 1;
}

.sidebar-widget {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--secondary);
  position: relative;
  padding-bottom: 10px;
}

/* .sidebar-widget .news-title a:hover {
    color: var(--col-primary);
} */

.sidebar-widget h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
}

.related-article {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray);
}

.related-article:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.related-article .img img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

.related-article .new-title h4 {
  font-size: 16px;
}

.related-article .new-title a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

.related-article a:hover {
  color: var(--col-primary);
}

/* Responsive */
@media (max-width: 992px) {
  .article-container {
    flex-direction: column;
  }

  .article-hero {
    padding: 120px 0 60px 0;
    margin-bottom: 40px;
  }
  /* .article-full {
    margin-left: -30%;
  } */

  .article-hero .hero-background {
    height: 320px;
  }

  .article-hero .hero-overlay {
    height: 320px;
  }

  .article-hero h1 {
    font-size: 36px;
  }
  .page-container {
    flex-direction: column;
  }

  .page-hero {
    margin-bottom: 10px;
    padding: 100px 0 0 0;
  }

  .page-hero .hero-background {
    height: 200px;
  }

  .page-hero .hero-overlay {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .article-hero h1 {
    font-size: 28px;
  }

  .article-content {
    padding: 25px;
  }
  .page-hero h1 {
    font-size: 28px;
  }

  .page-content {
    padding: 25px;
  }
}
/* ================================================================================================= */

/* News
/* ================================================================================================= */
/* .new-container {
  display: flex;
  justify-content: center;
}

.news-box {
  background: white;
  padding: 15px 15px 0 15px;
  border-radius: 15px;
  height: 380px;
}

.news-box figure {
  height: 250px;
}

.news-box .img {
  width: 324.25px;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
}

.news-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-widget .new-title a:hover {
  color: var(--col-primary);
}

.collab-box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  border: 1px solid #e9ecef;
}

.img-collab {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.img-collab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.new-container {
  margin-left: 0;
  margin-right: 0;
}

.news-box {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  height: auto; /* PENTING */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.news-box figure {
  margin: 0;
}

.news-box .img {
  width: 100%;
  aspect-ratio: 16 / 9; /* AMAN MOBILE */
  overflow: hidden;
  border-radius: 10px;
}

.news-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-caption {
  margin-top: 10px;
}

.figure-caption {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.figure-caption i {
  margin-right: 4px;
}

.news-box .btn {
  font-size: 13px;
  padding: 5px 10px;
}
@media (max-width: 576px) {
  .news-box {
    padding: 12px;
  }

  .figure-caption {
    font-size: 13px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-box {
    padding: 14px;
  }
}

/* ================================================================================================= */

/* Animasi Loading */
/* ================================================================================================= */
.loading-container {
  width: 100vw;
  height: 100vh;
  text-align: center;
  display: flex;
  position: fixed;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: rgba(250, 250, 250, 1);
  z-index: 2000;
  transition:
    opacity 0.8s ease-out,
    visibility 0.8s ease-out;
  opacity: 1;
  visibility: visible;
}

.loading-container.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Loading spinner 2 */
.double-spinner {
  width: 70px;
  height: 70px;
  border: 7px solid transparent;
  border-radius: 50%;
  border-top-color: #3498db;
  border-bottom-color: #3498db;
  animation: spin 1s linear infinite;
  margin: 0 15px;
}
/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .loading-wrapper {
    flex-wrap: wrap;
    height: auto;
    gap: 30px;
  }
}
/* ================================================================================================= */

/* Whatsapp dan to top */
/* ================================================================================================= */
/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Chat Box */
.chat-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.whatsapp-widget.active .chat-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Chat Header */
.chat-header {
  background: #25d366;
  padding: 15px 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.chat-header h3 {
  font-size: 16px;
  font-weight: 500;
}

.close-button {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.close-button svg {
  width: 12px;
  height: 12px;
}

/* Chat Content */
.chat-content {
  padding: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.chat-message {
  background: #f0f0f0;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

.chat-message:before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: #f0f0f0;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

/* Chat Footer */
.chat-footer {
  padding: 15px 20px;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}

.send-button {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.send-button:hover {
  background: #128c7e;
}

.send-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 130px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
  background: #0056b3;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
  }

  .chat-box {
    width: calc(100vw - 30px);
    right: 0;
    bottom: 65px;
  }

  .back-to-top {
    bottom: 85px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-button svg {
    width: 28px;
    height: 28px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 80px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}
/* ================================================================================================= */

.bg-albiruni {
  background-color: var(--primary-color);
}

.text-albiruni {
  color: var(--primary-color);
}

.btn-albiruni {
  background-color: var(--accent-color);
  color: white;
  font-weight: 600;
}

.btn-albiruni:hover {
  background-color: #d97706;
  color: white;
}

.hero-section {
  background:
    linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.9)),
    url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
  color: white;
}

.school-logo {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info-box {
  border-radius: 15px;
  border: none;
  transition: transform 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.program-card {
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  height: 100%;
}

.program-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

.program-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}

.timeline-container {
  position: relative;
  padding-left: 30px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--secondary-color);
}

.testimonial-card {
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
  height: 100%;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
}

.faq-header {
  background-color: #f8fafc;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content.show {
  padding: 20px;
  max-height: 500px;
}

.form-section {
  background-color: #f8fafc;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e5e7eb;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  border: 3px solid white;
}

.step.active .step-circle {
  background-color: var(--secondary-color);
  color: white;
}

.step.completed .step-circle {
  background-color: var(--green-color);
  color: white;
}

.step-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.step.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .step-indicator {
    flex-wrap: wrap;
    gap: 20px;
  }

  .step-indicator::before {
    display: none;
  }
}

.announcement-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.announcement-card:hover {
  transform: translateY(-5px);
}

.announcement-header {
  background-color: var(--primary-color);
  color: white;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.announcement-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.announcement-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.announcement-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.announcement-body {
  padding: 30px;
  background-color: white;
}

.announcement-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
}

.important-date {
  background-color: #fef3c7;
  border-left: 5px solid var(--accent-color);
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.important-date h5 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.info-box {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-top: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.info-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-section {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
  border-radius: 15px;
  margin-top: 40px;
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.btn-primary-custom {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #d97706;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-section {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 50px 0 20px;
}

.footer-title {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #374151;
  font-size: 0.9rem;
  color: #9ca3af;
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
}

.stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transform: rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.official-signature {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px dashed #d1d5db;
  text-align: center;
}

.signature-line {
  border-bottom: 1px solid #4b5563;
  width: 300px;
  margin: 0 auto 10px;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2.2rem;
  }

  .header-subtitle {
    font-size: 1.1rem;
  }

  .announcement-header {
    padding: 20px;
  }

  .announcement-body {
    padding: 20px;
  }
}
/* ============================================================================ */
