@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
    scroll-behavior: smooth;
}

/* Animation for the hero section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section:first-of-type {
    animation: fadeInUp 0.8s ease-out forwards;
}
/* Custom hover effect for service cards */
.bg-white:hover {
    transform: translateY(-5px);
}

/* List styling for AI services */
.list-disc li {
    transition: transform 0.2s, color 0.2s;
}

.list-disc li:hover {
    transform: translateX(5px);
    color: theme('colors.primary.600');
}
/* Gradient underline for headings */
.gradient-underline {
    position: relative;
    display: inline-block;
}

.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, theme('colors.primary.500'), theme('colors.secondary.500'));
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}