/* style.css */

/* Hero section arka plan deseni için basit bir örnek */
.bg-pattern {
    background-image: radial-gradient(circle at 25% 50%, rgba(59,130,246,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 50%, rgba(139,92,246,0.1) 0%, transparent 50%);
    background-size: 800px 800px;
    background-position: center center;
}

/* Basit nabız animasyonu */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

.animate-pulse {
    animation: pulse 4s infinite ease-in-out;
}
html {
    scroll-behavior: smooth;
}
