/* =================================
   NAVIGATION MENU HOVER EFFECTS
   ================================= */

/* Navigation Links Hover Effects */
.framer-12sqxst a {
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Animated underline effect */
.framer-12sqxst a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #09f, #00ffff);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.framer-12sqxst a:hover {
    color: #09f !important;
    transform: translateY(-2px);
}

.framer-12sqxst a:hover::after {
    width: 100%;
}

/* Smooth color transition for text */
.framer-12sqxst a .framer-text {
    transition: color 0.3s ease;
}
