
html {
    scroll-behavior: smooth;
}


@keyframes neonPulse {
    0% { text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #5EEAD4, 0 0 82px #5EEAD4; }
    50% { text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #86EFAC, 0 0 82px #86EFAC; }
    100% { text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #5EEAD4, 0 0 82px #5EEAD4; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #059669, #10B981);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}


.header-gradient {
    background: linear-gradient(to right, rgba(167, 243, 208, 0.1), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(167, 243, 208, 0.2);
}


.gradient-bg {
    background: linear-gradient(-45deg, #f0fdf4, #ecfdf5, #f0fdf4, #f8fafc);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

.glow-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 243, 208, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.glow-box:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.subtitle-box {
    background: linear-gradient(135deg, rgba(167, 243, 208, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 243, 208, 0.2);
    transition: all 0.3s ease;
}

.subtitle-box:hover {
    border-color: rgba(167, 243, 208, 0.4);
}


.neon-text {
    animation: neonPulse 2s infinite;
    font-weight: bold;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.float {
    animation: float 6s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }


.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.gradient-border {
    position: relative;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #5EEAD4, #86EFAC) border-box;
    border: 2px solid transparent;
    border-radius: 16px;
}


.dark-footer {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
}


.hero-image {
    width: 600px;
    height: 400px;
    object-fit: cover;
}

.carousel-image {
    width: 600px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto;
}

.feature-image {
    width: 96px;
    height: 96px;
    object-fit: contain;
}


.carousel {
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
}


section {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px; 
}