a.btn-circle {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 300px;
    display: inline-block;
    padding: 25px 25px 25px 25px;
    margin: 10px 20px;
    text-align: center;
}

.circle-icon {
    width: 60px;
    height: 60px;
    background-color: white; /* Customize the background color */
    border-radius: 50%;
    margin: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 24px;
}


.circle-icon:hover{
    color: red;
}
.footer-padding{
    padding-top: 50px;
    padding-bottom: 0px;
}

/* ========== MOBILE MENU ANIMATION ========== */
.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;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  overflow-y: auto;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 3px 0 10px rgba(0,0,0,0.2);
}
.mobile-menu-panel.active {
  left: 0;
}

/* Mobile Menu Styling */
.mobile-menu-panel a {
  display: block;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
}
.mobile-menu-panel a:hover {
  color: #007bff;
}

/* Hamburger Button */
.hamburger {
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
}


/* animasi */
* 🌟 Animasi umum */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.header-sticky2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 10px 15px rgba(25,25,25,0.1);
}
