/* Consolidated CSS for the entire page */


/* --- Global Animations --- */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* --- Header Styles --- */


/* --- Other Component Styles --- */
.image-hover-zoom img {
    transition: transform 0.5s ease-in-out;
}

.image-hover-zoom:hover img {
    transform: scale(1.05);
}

.text-hover-effect-cyan:hover {
    color: #0891b2;
}

.text-hover-effect-teal:hover {
    color: #0d9488;
}

.text-hover-effect-light:hover {
    color: #e5e7eb;
}

.text-hover-subtle-teal:hover {
    color: #0f766e;
}

.hover-lift {
    transition: transform 0.3s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.icon-spin-hover:hover {
    transform: rotate(360deg);
}

.hover-glow-benefit:hover {
    box-shadow: 0 10px 15px rgba(6, 182, 212, 0.3), 0 4px 6px rgba(6, 182, 212, 0.2);
}

.icon-check-grow-img:hover {
    transform: scale(1.2);
}

.pricing-cards-container {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pricing-cards-container::-webkit-scrollbar {
    display: none;
}

.toggle-switch-container button {
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.bottom-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    color: #4b5563;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.bottom-arrow:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.bottom-arrow:disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}