:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #017a2a;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #017a2a;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #017a2a;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2a2c39;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #404356;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: white;
  color: var(--heading-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu .dropdown ul .navmenu a:focus {
    color: white;
    padding: 8px 10px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active:focus {
    background-color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    color: black;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;

}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-tentang .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-tentang .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-tentang .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-tentang p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
  animation: float-badge 3s ease-in-out infinite;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 100px;
  /* Panjang garis */
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 3px 10px;
  /* Jarak antara teks dan garis */
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/* Tombol bulat kecil */
.arrow-button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.arrow-button:hover {
  background-color: var(--contrast-color);
  color: var(--surface-color);
}

.arrow-button i {
  font-size: 14px;
  line-height: 0;
}

/*--------------------------------------------------------------
# beranda Section
--------------------------------------------------------------*/

.beranda {
  padding: 0;
}

.beranda .carousel {
  width: 100%;
  min-height: 95vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: left;
}

@media (max-height: 400px) {
  .beranda .carousel {
    min-height: 100vh;
  }
}

.beranda img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.beranda .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  /* Putih dengan transparansi 50% */
  z-index: 1;
}

.carousel-item img {
  position: relative;
  z-index: 0;
}

.carousel-container {
  position: relative;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,
      255,
      255,
      0.9);
  /* Warna putih dengan transparansi 50% */
  z-index: 1;
}

.beranda .carousel-container {
  position: absolute;
  inset: 10px 30px 150px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
  text-align: left;
}

.beranda .carousel-item h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

.beranda .carousel-item h2 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .beranda .carousel-item h2 {
    font-size: 30px;
  }
}

.beranda .carousel-item p {
  animation: fadeInDown 1s both 0.2s;
  color: black;
}

@media (min-width: 1024px) {
  .beranda .carousel-item h2 {
    font-size: 30px;
    text-align: center;
  }

  .beranda .carousel-item p {
    color: black;
  }

  .beranda h2,
  .beranda p {
    max-width: 50%;
    font-weight: 400;
    text-align: justify;
  }
}

.beranda .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.beranda .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.beranda .carousel-control-prev,
.beranda .carousel-control-next {
  width: 15%;
  transition: 0.3s;
  opacity: 0.4;
}

.beranda .carousel-control-prev:focus,
.beranda .carousel-control-next:focus {
  opacity: 0.5;
}

.beranda .carousel-control-prev:hover,
.beranda .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .beranda .carousel-control-prev,
  .beranda .carousel-control-next {
    width: 5%;
  }
}

.beranda .carousel-control-next-icon,
.beranda .carousel-control-prev-icon {
  background: none;
  color: var(--default-color);
  font-size: 48px;
  line-height: 1;
}

.beranda .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: var(--accent-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

.beranda .carousel-indicators li.active {
  opacity: 1;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .beranda .carousel-indicators li {
    margin-bottom: 20px;
  }
}

.beranda .featured {
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .beranda .featured {
    margin-top: 0;
  }
}

.beranda .featured-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.beranda .featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.beranda .featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.beranda .featured-item .icon {
  margin-bottom: 10px;
}

.beranda .featured-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.beranda .featured-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.beranda .featured-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.beranda .featured-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.beranda .featured-item:hover h4 a,
.beranda .featured-item:hover .icon i,
.beranda .featured-item:hover p {
  color: var(--contrast-color);
}

.beranda .featured-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

@media (max-width: 991px) {

  /* Hanya berlaku untuk layar HP (lebar ≤ 991px) */
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# sambutan Section
--------------------------------------------------------------*/

.sambutan {
  top: 90%;
  /* Letakkan di tengah dari atas */
  left: 50%;
  /* Letakkan di tengah horizontal */
  z-index: 99;
  /* Pastikan berada di atas beranda dan staf */
  background: none;
  /* Hapus warna latar belakang */
  border: none;
  /* Hapus border */
}

.sambutan {
  position: relative;
}

.sambutan .customers-badge {
  background-color: var(--surface-color);
  animation: float-badge 3s ease-in-out infinite;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  align-items: center;
}

/* Versi Desktop */
@media (min-width: 1200px) {
  .sambutan {
    transform: translate(-50%, -55%);
    /* Pusatkan secara sempurna */
  }

  .sambutan .customers-badge {
    position: static;
    width: calc(90% - 40px);
    /* Sesuaikan dengan lebar layar mobile */
    margin: 0 auto;
    /* Pusatkan */
    flex-direction: column;
    /* Susun vertikal untuk mobile */
    text-align: center;
    padding: 1rem;
    /* Padding lebih kecil di mobile */
  }
}

/* Versi Mobile */
@media (max-width: 1199px) {
  .sambutan {
    transform: translate(-50%, -48%);
    /* Pusatkan secara sempurna */
  }

  .sambutan .customers-badge {
    position: static;
    width: calc(100% - 40px);
    /* Sesuaikan dengan lebar layar mobile */
    margin: 0 auto;
    /* Pusatkan */
    flex-direction: column;
    /* Susun vertikal untuk mobile */
    text-align: center;
    padding: 1rem;
    /* Padding lebih kecil di mobile */
  }
}

.sambutan .customers-badge .avatar {
  width: 150px;
  /* Ukuran avatar */
  height: 150px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
}

.sambutan .customers-badge h3 {
  font-size: 1.25rem;
  color: black;
  font-weight: 1000;
}

.sambutan .customers-badge p {
  font-size: 16px;
}

.sambutan .customers-badge .button {
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sambutan .customers-badge .button:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.profile-card .button {
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.profile-card .button:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY();
  }
}

.title-container {
  display: flex;
  /* Atur elemen di dalamnya sejajar horizontal */
  justify-content: space-between;
  /* Jarak maksimum antara judul dan tombol */
  align-items: center;
  /* Selaraskan tombol dan teks secara vertikal */
}

/*--------------------------------------------------------------
# stats Section
--------------------------------------------------------------*/

.stats {
  transform: translate(-0%, -15%);
}

@media (min-width: 992px) {
  .stats {
    transform: translate(-0%, -50%);
    padding-left: 300px;
  }
}

.stats i {
  animation: float-badge 3s ease-in-out infinite;
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;

}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;

}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# tentang Section
--------------------------------------------------------------*/

.tentang ul {
  list-style: none;
  padding: 0;
}

.tentang ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.tentang ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tentang .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tentang .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.tentang .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.tentang .read-more:hover i {
  transform: translate(5px, 0);
}

.tentang .content {
  text-align: justify;
  padding: 20px;
}

.profile-img {
  width: 100%;
  max-width: 800px;
  border-radius: 30px;
  padding: 20px;
}

strong {
  color: black;
}

.nav-tabs .nav-item .nav-link {
  border-radius: 100px;
  /* Sesuaikan dengan keinginan */
}

/*--------------------------------------------------------------
# jurusan Section
--------------------------------------------------------------*/
.jurusan .nav-tabs {
  border: 0;
}

.jurusan .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.jurusan .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.jurusan .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.jurusan .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.jurusan .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.jurusan .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .jurusan .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .jurusan .nav-link {
    padding: 15px;
  }

  .jurusan .nav-link i {
    font-size: 24px;
  }
}

.jurusan .tab-content {
  margin-top: 30px;
}

.jurusan .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.jurusan .tab-pane ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jurusan .tab-pane ul li {
  padding-bottom: 10px;
}

.jurusan .tab-pane ul i {
  font-size: 20px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# galeri Section
--------------------------------------------------------------*/
.isotope-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  /* Biar rata tengah */
}

/* Mobile: 2 item per baris */
@media (max-width: 768px) {
  .galeri-item {
    width: calc(50% - 0px);
    /* 2 kolom, dikurangi jarak */
  }
}

@media (min-width: 769px) {
  .isotope-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    /* 3 kolom */
    gap: 20px;
    justify-content: center;
    /* Rata tengah */
    align-items: center;
    /* Pastikan vertikal juga rapi */
    max-width: 90%;
    /* Pastikan tidak terlalu lebar */
    margin: auto;
    /* Agar benar-benar di tengah */
  }
}

.galeri .galeri-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.galeri .galeri-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.galeri .galeri-filters li:hover,
.galeri .galeri-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.galeri .galeri-filters li:first-child {
  margin-left: 0;
}

.galeri .galeri-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .galeri .galeri-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.galeri .galeri-content {
  background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.galeri .galeri-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.galeri .galeri-content .galeri-info {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 25px 20px;
  position: relative;
  z-index: 2;
}

.galeri .galeri-content .galeri-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.galeri .galeri-content .galeri-info h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.galeri .galeri-content .galeri-info h4 a:hover {
  color: var(--accent-color);
}

.galeri .galeri-content .galeri-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.galeri .galeri-content:hover img {
  transform: scale(0.9);
  border: 3px solid green;
}

/*--------------------------------------------------------------
# galeri Details Section
--------------------------------------------------------------*/
.galeri-details .galeri-details-slider img {
  width: 100%;
}

.galeri-details .galeri-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.galeri-details .galeri-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.galeri-details .galeri-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.galeri-details .galeri-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.galeri-details .galeri-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.galeri-details .galeri-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.galeri-details .galeri-info ul li+li {
  margin-top: 10px;
}

.galeri-details .galeri-description {
  padding-top: 30px;
}

.galeri-details .galeri-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.galeri-details .galeri-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.isotope-container .galeri-item img {
  width: 100%;
  /* Gambar memenuhi lebar kolom */
  height: 300px;
  /* Atur tinggi yang konsisten */
  border: solid 2px;
  border-radius: 10px;
  display: block;
  /* Hilangkan margin default pada gambar */
}

@media (max-width: 768px) {
  .isotope-container .galeri-item {
    width: 50%;
    /* Setiap item memiliki lebar 50% untuk menampilkan 2 item per baris */
    box-sizing: border-box;
    /* Pastikan padding tidak merusak tata letak */
  }

  .isotope-container .galeri-item img {
    width: 100%;
    /* Gambar memenuhi lebar kolom */
    height: 150px;
    /* Atur tinggi yang konsisten */
    border: solid 2px;
    border-radius: 10px;
    display: block;
    /* Hilangkan margin default pada gambar */
  }
}

/*--------------------------------------------------------------
# staf Section
--------------------------------------------------------------*/

.staf .staf-staf {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.staf .staf-staf .staf-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top-right-radius: 5%;
  border-top-left-radius: 5%;
}

.staf .staf-staf .staf-info {
  padding: 15px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.staf .staf-staf .social {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.staf .staf-staf .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.staf .staf-staf .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.staf .staf-staf .social i {
  font-size: 18px;
  line-height: 0;
}

.staf .staf-staf .staf-info h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 14px;
}

.staf .staf-staf .staf-info span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.staf .staf-staf:hover .social {
  opacity: 1;
  bottom: 30px;
}

@media (max-width: 768px) {
  .staf .staf-staf .staf-img {
    height: auto;
  }

  .staf .staf-staf .staf-info {
    padding: 0px 10px;
    height: 100px;
  }

  .staf .staf-staf .social {
    bottom: 15px;
  }

  .staf .staf-staf .staf-info h4 {
    font-size: 14px;
  }

  .staf .staf-staf .staf-info span {
    font-size: 12px;
  }
}

@media (min-width: 769px) {
  .staf .staf-staf .staf-img {
    height: 490px;
  }

  .staf .staf-staf .staf-info {
    padding: 0px 0px 15px 20px;
  }

  .staf .staf-staf .social {
    bottom: 30px;
  }

  .staf .staf-staf .staf-info h4 {
    font-size: 18px;
  }

  .staf .staf-staf .staf-info span {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# swiper Section
--------------------------------------------------------------*/

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-slide h3 {
  text-align: center;
}

.swiper-slide article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
}

.swiper-slide .post-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--default-color);
}

/* Membuat seluruh area post bisa diklik */
.swiper-slide a {
  text-decoration: none;
  /* Menghapus garis bawah pada link */
  color: inherit;
  /* Menggunakan warna bawaan */
  display: block;
  /* Membuat elemen <a> mencakup seluruh area */
}

.swiper-slide a:hover article {
  transform: scale(1.02);
  /* Efek zoom ringan saat hover */
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .swiper-slide article {
    max-width: 100%;
    /* Agar pas di layar kecil */
  }
}

@media (min-width: 768px) {
  .swiper-slide article {
    max-width: 90%;
    /* Agar 2 slide dalam satu baris */
  }
}

/* Fallback jika offline */
.offline .swiper-slide {
  display: inline-block;
  /* Membuat gambar sejajar */
  width: calc(30% - 20px);
  /* Lebar proporsional dengan jarak antar elemen */
  margin: 10px;
  /* Memberikan jarak antar gambar */
}

.offline .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  /* Gambar otomatis terbungkus ke baris baru */
  justify-content: center;
  /* Membuat gambar sejajar di tengah */
  gap: 20px;
  /* Jarak antar gambar */
}

.offline .swiper-slide article {
  max-width: none;
  /* Menghilangkan batas lebar */
}

.offline .swiper-pagination,
.offline .arrow-button {
  display: none;
  /* Sembunyikan navigasi saat offline */
}

/*--------------------------------------------------------------
# Nav Section
--------------------------------------------------------------*/

/* Container untuk tombol navigasi */
.navigation-buttons {
  display: flex;
  gap: 10px;
}

.navigation-buttons button {
  background-color: var(--default-color);
  /* Warna tombol (bisa diganti) */
  border: none;
  border-radius: 50%;
  /* Membuat tombol berbentuk bulat */
  width: 32px;
  /* Lebar tombol */
  height: 32px;
  /* Tinggi tombol */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.navigation-buttons button:hover {
  background-color: var(--accent-color);
  /* Warna saat tombol di-hover */
  transform: scale(1.1);
  /* Efek zoom saat hover */
}

.navigation-buttons button::before {
  content: "";
  /* Menggunakan panah bawaan */
  display: block;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px;
}

.swiper-button-prev::before {
  transform: rotate(135deg);
  border-color: white;
  margin-left: 2px;
}

.swiper-button-next::before {
  transform: rotate(-45deg);
  border-color: white;
  margin-right: 2px;
}

/* Untuk menyesuaikan dengan layar kecil */
@media screen and (max-width: 768px) {
  .navigation-buttons {
    position: relative;
    margin-top: 10px;
    justify-content: flex-end;
  }
}

/* Container untuk tombol navigasi */
.navigation-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

/*--------------------------------------------------------------
# arrow Section
--------------------------------------------------------------*/

/* Tombol navigasi bulat */
.arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--default-color);
  /* Warna tombol */
  color: white;
  /* Warna ikon */
  border-radius: 50%;
  /* Membuat tombol bulat */
  text-decoration: none;
  /* Menghapus garis bawah pada link */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.arrow-button:hover {
  background-color: var(--accent-color);
  /* Warna tombol saat hover */
  transform: scale(1.1);
  /* Efek zoom saat hover */
}

/* Ikon panah */
.arrow-button i {
  font-size: 18px;
  /* Ukuran ikon */
}

/* Responsif untuk layar kecil */
@media screen and (max-width: 768px) {
  .navigation-buttons {
    margin-top: 10px;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  width: 100%;
  height: 250px;
  /* Atur tinggi agar semua gambar sama */
  overflow: hidden;
}

.recent-posts .post-img img {
  width: 300px;
  height: 100%;

  /* Memastikan gambar tidak terdistorsi dan tetap memenuhi area */
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.logo-image {
  height: 100%;
  margin: 0px 0px;
  width: 200px;
}






/* Styling Section */
.team {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.member {
  width: 100%;
  max-width: 1250px;
  height: 230px;
  text-align: center;
  background: white;
  padding: 20px 10px;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

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

.member img {
  width: 120px;
  height: 110px;
  border-radius: 50%;
  border: 3px inset black;
}

.member-info {
  width: 100%;
  min-height: 60px;
  /* Pastikan semua info memiliki tinggi yang sama */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.member-info h4 {
  font-size: 12px;
  font-weight: bold;
  margin: 5px 0;
  word-wrap: break-word;
  /* Mencegah kartu melebar jika nama panjang */
  max-width: 90%;
  /* Batasi lebar teks */
  text-align: center
}

.member-info span {
  font-size: 11px;
  color: #777;
  word-wrap: break-word;
  max-width: 90%;
}

/* Styling Dropdown Filter */
.filter-container {
  position: relative;
  margin-bottom: 30px;
}


/* Filter Dropdown */
.filter-dropdown {
  position: absolute;
  top: 120%;
  left: 33%;
  transform: translateX(-50%);
  background-color: white;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 250px;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease-out, max-height 0.3s ease-out;
  display: none;
  /* Menyembunyikan dropdown saat tidak aktif */
  pointer-events: none;
  /* Mencegah klik saat tidak aktif */
}

/* Saat filter dropdown aktif */
.filter-dropdown.active {
  opacity: 1;
  display: block;
  pointer-events: auto;
  /* Mengaktifkan klik saat dropdown terlihat */
}

/* Styling untuk desktop - Pastikan dropdown muncul dengan benar */
@media (min-width: 992px) {
  .filter-dropdown {
    left: 50%;
    width: 250px;
    /* Lebar dropdown lebih besar di desktop */
    z-index: 99;
  }

  .filter-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.filter-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-dropdown li {
  padding: 5px 0;
}

.filter-dropdown a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.filter-dropdown a:hover {
  background-color: #f0f0f0;
}

/* Pagination Container */
#pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 13px;
}

/* Styling untuk setiap tombol halaman */
.page-btn,
.page-number {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #333;
  padding: 8px 15px;
  margin: 0 5px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 100px;
  transition: background-color 0.3s, color 0.3s;
  display: inline-block;
  /* Pastikan tombol tetap sejajar secara horizontal */
}

/* Tombol halaman yang aktif */
.page-number.active {
  background-color: var(--accent-color);
  color: white;
}

/* Tombol hover */
.page-btn:hover,
.page-number:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Tombol disabled (untuk tombol sebelumnya atau selanjutnya) */
.page-btn:disabled {
  background-color: #f1f1f1;
  color: #ccc;
  cursor: not-allowed;
}

/* Layout responsif untuk tampilan mobile */
@media (max-width: 768px) {
  #pagination-container {
    flex-wrap: wrap;
    /* Pastikan tombol tetap berada dalam satu baris meskipun pada layar kecil */
  }

  .page-btn,
  .page-number {
    margin: 5px 0;
  }
}

.section-ekskul {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.section-ekskul h1 {
  font-size: 28px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards;
  text-align: center;
  font-weight: 1000;
}

.section-ekskul .image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s forwards 0.5s;
}

@media (min-width: 992px) {
  .section-ekskul img {
    height: 450px;
  }
}

.section-ekskul img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.section-ekskul p {
  font-size: 16px;
  margin: 15px 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
  text-align: justify;
}

.section-ekskul .visible {
  opacity: 1;
  transform: translateX(0);
}

.section-ekskul .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 0px auto;
  font-size: 16px;
  background: #017a2a;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
}

.section-ekskul .btn:hover {
  color: white;
  background: #017a2a;
  transform: scale(1.05);
}

.section-fasilitas {
  max-width: 800px;
  margin: auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.section-fasilitas h1 {
  font-size: 28px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards;
  text-align: center;
  font-weight: 1000;
}

.section-fasilitas .image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s forwards 0.5s;
}

@media (min-width: 992px) {
  .section-fasilitas img {
    height: 450px;
  }
}

.section-fasilitas img {
  width: 100%;
  display: block;
  border-radius: 10px;
  height: 300px;
}

.section-fasilitas p {
  font-size: 16px;
  margin: 15px 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
  text-align: justify;
}

.section-fasilitas .visible {
  opacity: 1;
  transform: translateX(0);
}

.section-fasilitas .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 0px auto;
  font-size: 16px;
  background: #017a2a;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
}

.section-fasilitas .btn:hover {
  color: white;
  background: #017a2a;
  transform: scale(1.05);
}

/* Animasi */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}