.menu-scroll {
  overflow: auto; /* or scroll */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.menu-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
/* mobile menu CSS */
#mobile-menu {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform-origin: top center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#mobile-menu.max-h-0 {
    opacity: 0;
    transform: scaleY(0);
    padding: 0;
}

#mobile-menu.max-h-96 {
    opacity: 1;
    transform: scaleY(1);
    padding: 1rem;
}

#mobile-menu a {
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

#mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

#mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #FF0050 0%, #00F2EA 100%);
    transition: width 0.3s ease;
}

#mobile-menu a:hover::before {
    width: 100%;
}

#mobile-menu a.active {
    background: rgba(236, 72, 153, 0.2);
}

#mobile-menu a.active::before {
    width: 100%;
}

.privacy-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-icon {
    transition: all 0.3s ease;
}

.privacy-card:hover .privacy-icon {
    transform: scale(1.1);
}

/* Custom logo animation */
        .logo-icon {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
            100% {
                transform: translateY(0);
            }
        }


/* Footer styles */
        footer {
            margin-top: auto;
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-link {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-link:hover {
            color: #FF0050;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(90deg, #FF0050 0%, #00F2EA 100%);
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .footer-column .footer-heading{
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .footer-column .footer-heading::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(90deg, #FF0050 0%, #00F2EA 100%);
        }