body {
    font-family: 'Chakra Petch', sans-serif;
}
h1 
{
    font-family: 'Chakra Petch', sans-serif;
}
.nav-link {
    position: relative;
    display: inline-block;
    font-weight: 600;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: #00A6FF;
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #0a0a0a;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    min-width: 160px;
    z-index: 50;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.dropdown-menu a:hover {
    background-color: #111;
    color: #00A6FF;
}

.group:hover .icon {
    color: white;
}

.scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animation.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.bg-1
{
    background: #e5e5e5 !important;
}

/* Custom CSS for the mobile menu transition */
.mobile-menu {
    transition: transform 0.3s ease-out;
    transform: translateY(-100%);
}
.mobile-menu.open {
    transform: translateY(0);
}
