/* Helvetica Neue font for all text */
* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

/* Paragraph styling */
p {
    text-align: left; /* Default to left on mobile */
    line-height: 1.3;
    letter-spacing: -0.025em; /* tracking-tight */
}


/* All-sided shadow for feature cards */
.shadow-2xl {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 0, 0, 0.1) !important;
}
