/* Custom Soft Shapes & Shadows */
.soft-shadow {
    box-shadow: 0 10px 40px -10px rgba(30, 64, 175, 0.1);
}

.hover-soft {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-soft:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -15px rgba(30, 64, 175, 0.15);
}

/* Custom Swiper Dots */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: #FBBF24 !important; /* Accent Yellow */
    opacity: 1;
}

/* Glassmorphism for Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Selection Color */
::selection {
    background: #1E40AF;
    color: white;
}

/* Marquee Animation */
@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.animate-marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 40s linear infinite;
}

.animate-marquee-right {
    display: flex;
    width: max-content;
    animation: marquee-right 40s linear infinite;
}

.animate-marquee-left:hover,
.animate-marquee-right:hover {
    animation-play-state: paused;
}
