
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

.pulse {
    animation: pulse 2s 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; }


@keyframes logoSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); } 
}

.logo-track {
    display: flex;
    animation: logoSlider 30s linear infinite;
    width: calc(250px * 16); 
}

.logo-track .logo-slide {
    width: 200px;
    padding: 0 25px;
    flex-shrink: 0;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.hero-content h1 {
    opacity: 0;
    animation: slideUp 1s ease forwards;
    animation-delay: 0.2s;
}

.hero-content p {
    opacity: 0;
    animation: slideUp 1s ease forwards;
    animation-delay: 0.4s;
}

.hero-content .btn {
    opacity: 0;
    animation: slideUp 1s ease forwards;
    animation-delay: 0.6s;
}

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

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


.solution-card {
    opacity: 0;
    transform: translateY(30px);
}

.solution-card.active {
    animation: slideUp 0.8s ease forwards;
}

.solution-card:nth-child(1).active { animation-delay: 0.1s; }
.solution-card:nth-child(2).active { animation-delay: 0.3s; }
.solution-card:nth-child(3).active { animation-delay: 0.5s; }
.solution-card:nth-child(4).active { animation-delay: 0.7s; }

.solution-card .icon-container {
    transition: all 0.3s ease;
}

.solution-card:hover .icon-container {
    background-color: var(--color-flat-blue);
    color: white;
    transform: scale(1.1);
}


.value-item {
    opacity: 0;
    transform: translateX(-30px);
}

.value-item.active {
    animation: slideRight 0.8s ease forwards;
}

@keyframes slideRight {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.value-item:nth-child(1).active { animation-delay: 0.1s; }
.value-item:nth-child(2).active { animation-delay: 0.3s; }
.value-item:nth-child(3).active { animation-delay: 0.5s; }
.value-item:nth-child(4).active { animation-delay: 0.7s; }

.value-icon .icon-circle {
    transition: all 0.3s ease;
}

.value-item:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade.in-view {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up.in-view {
    animation: slideUp 1s ease forwards;
}

.animate-slide-right.in-view {
    animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate-slide-left.in-view {
    animation: slideLeft 1s ease forwards;
}