/* Custom Styles & Animations */

html {
    scroll-behavior: smooth;
}

/* Blob Animation for Hero */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Geometric Accents */
.geometric-bg {
    background-image: linear-gradient(135deg, #065f46 25%, transparent 25%) -50px 0, 
                      linear-gradient(225deg, #065f46 25%, transparent 25%) -50px 0, 
                      linear-gradient(315deg, #065f46 25%, transparent 25%), 
                      linear-gradient(45deg, #065f46 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: #047857;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: #065f46;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* Utility for focus states */
button:focus, input:focus, textarea:focus {
    outline: none;
}
