:where([class^="ri-"])::before {
  content: "\f3c2";
}

body {
  font-family: "Ubuntu", sans-serif;
  scroll-behavior: smooth;
  bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.abstrak {
  font-family: "Fredoka", sans-serif;
}

.hero-gradient {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.section {
  padding: 310px 0 0;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #4f46e5;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.back-to-top:hover{
   transform: translateY(5px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

  #mainHeader {
            background-color: transparent;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        #mainHeader.is-sticky {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .group>div {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .group:hover>div {
            opacity: 1;
            pointer-events: auto;
        }

        .submenu-item {
            opacity: 0;
            transform: translateX(12px);
            transition: all 0.3s ease;
        }

        .group:hover .submenu-item:nth-child(1) {
            transition-delay: 0.1s;
            opacity: 1;
            transform: translateX(0);
        }

        .group:hover .submenu-item:nth-child(2) {
            transition-delay: 0.2s;
            opacity: 1;
            transform: translateX(0);
        }

        .group:hover .submenu-item:nth-child(3) {
            transition-delay: 0.3s;
            opacity: 1;
            transform: translateX(0);
        }
