body {
    scroll-behavior: smooth;
}

.hero-glow {
    background:
        radial-gradient(circle at top left, rgba(79,70,229,0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(249,115,22,0.12), transparent 22%);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-heading {
    transition-delay: 0.1s;
}

.reveal-subheading {
    transition-delay: 0.2s;
}

.reveal-card {
    transition-delay: 0.08s;
}

.reveal-card:nth-child(2n) {
    transition-delay: 0.16s;
}

.reveal-card:nth-child(3n) {
    transition-delay: 0.24s;
}

.card-hover {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px -20px rgba(15, 23, 42, 0.35);
}

.image-zoom img {
    transition: transform 0.5s ease;
}

.image-zoom:hover img {
    transform: scale(1.05);
}

.section-title::after {
    content: '';
    display: block;
    margin-top: 12px;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f46e5, #f97316);
}


