
          
body {
    scroll-behavior: smooth;
}

.nav-link {
    transition: all 0.3s ease;
}

.service-card {
    transition: all 0.3s ease;
}

.product-card {
    transition: all 0.3s ease;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #10b981, #059669);
    margin: 10px auto 0;
}

.logo-text {
    background: linear-gradient(45deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nav-link.active {
    color: #10b981;
    border-bottom: 2px solid #10b981;
}

.achievement-card {
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .mobile-menu-open {
        display: block !important;
    }
}

        