body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent animation shake from causing scrollbars */
}

.hero-mesh {
    background-color: #ffffff;
    background-image: radial-gradient(at 0% 0%, hsla(225,100%,96%,1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(210,100%,95%,1) 0, transparent 50%);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    }

.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .feature-card:hover {
        border-color: #3b82f6;
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    }

/* Floating Animation for Hero Image */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

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

/* Pulse for the Pricing Trial Badge */
@keyframes custom-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-custom-pulse {
    animation: custom-pulse 2s infinite;
}

/* Smooth reveal for Navbar */
.nav-load {
    animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll to Top Visibility Toggle */
#scrollToTop.visible {
    transform: translateY(0);
    opacity: 1;
}

/* Ensure smooth scrolling globally */
html {
    scroll-behavior: smooth;
}
