html {
    scroll-behavior: auto;
}

#messageModal > div {
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#privacyModal::-webkit-scrollbar {
    width: 8px;
}

#privacyModal::-webkit-scrollbar-track {
    background: #1f2937;
}

#privacyModal::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

#privacyModal::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

.nav-link:hover {
    color: #96ea54 !important;
}

@media (max-width: 1023px) {
    #navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1f2937;
        border-top: 1px solid #374151;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
        z-index: 50;
        width: 100%;
        display: none;
        animation: slideDown 0.3s ease-in-out;
    }
    
    #navbar.show {
        display: block !important;
    }
    
    #navbar ul {
        padding: 1rem;
        flex-direction: column;
    }
    
    #navbar li {
        width: 100%;
    }
    
    #navbar li a {
        padding: 0.75rem 1rem;
        display: block;
        border-radius: 0.5rem;
    }
    
    #navbar li a:hover {
        background-color: #374151;
    }
    
    #navbar .flex.flex-col {
        padding: 1rem;
        padding-top: 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-gradient {
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #1f2937 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(150, 234, 84, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.1); }
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(150, 234, 84, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150, 234, 84, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(20px, 10px); }
}

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #96ea54;
    color: #111827;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(150, 234, 84, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
}

#scrollToTop.show {
    display: flex;
    opacity: 1;
    animation: fadeInUp 0.3s ease-in-out;
}

#scrollToTop:hover {
    background-color: #85d943;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(150, 234, 84, 0.6);
}

#scrollToTop:active {
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    #scrollToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}

.slide{
    background: rgb(255, 255, 255);
}

.bg-indigo-500 {
    background-color: #96ea54 !important;
}

.bg-indigo-600 {
    background-color: #96ea54 !important;
}

.bg-indigo-700 {
    background-color: #96ea54 !important;
}

.text-indigo-600 {
    color: #96ea54 !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '' !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 24px !important;
    height: 24px !important;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative !important;
}

.swiper-slide.swiper-slide-active {
    --tw-border-opacity: 1 !important;
    border-color: rgb(79 70 229 / var(--tw-border-opacity)) !important;
}

.swiper-slide.swiper-slide-active>.swiper-slide-active\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}

.swiper-slide.swiper-slide-active>.flex .grid .swiper-slide-active\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}
