/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #051609; 
}
::-webkit-scrollbar-thumb {
    background: #1a4d23; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2b8a3e; 
}

/* Glass Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* Mist Animation */
.mist-container {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.005" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.4"/></svg>');
    animation: mistMove 60s linear infinite;
    mix-blend-mode: screen;
}

@keyframes mistMove {
    0% { transform: translateX(0) translateY(0) scale(1); }
    50% { transform: translateX(-5%) translateY(2%) scale(1.1); }
    100% { transform: translateX(0) translateY(0) scale(1); }
}

/* Ripple Button Effect */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.ripple-btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Swiper Card Shadow */
.swiper-slide {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Smooth Background Transition */
#hero-bg {
    transition: background-image 0.8s ease-in-out;
}

/* Pulse CTA */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(43, 138, 62, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(43, 138, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(43, 138, 62, 0); }
}
.pulse-cta {
    animation: pulseGlow 2s infinite;
}
