
          /* Custom styles for OKK website */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Canvas animation container */
#heroCanvas {
    opacity: 0.3;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
}

/* Ensure all sections are visible */
section {
    min-height: auto;
    visibility: visible;
    opacity: 1;
}

/* Mobile menu toggle */
.mobile-menu-open {
    display: block !important;
}

/* Hover effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-member:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Typing animation */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.animate-typing {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    animation: typing 3.5s steps(30, end), blink-caret .5s step-end infinite;
}

/* Blur focus animation */
@keyframes blur-focus {
    0%, 100% { 
        filter: blur(20px); 
        opacity: 0; 
    }
    50% { 
        filter: blur(0); 
        opacity: 1; 
    }
}

.animate-blur-focus {
    animation: blur-focus 4s ease-in-out infinite;
}

/* Float animation */
@keyframes float {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-20px) }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Shine animation */
@keyframes shine {
    0% { background-position: -200%; }
    100% { background-position: 200%; }
}

.animate-shine {
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.8) 50%, transparent 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
}

/* Retro text effect */
.retro-text {
    text-shadow: 4px 4px 0px #bdbdbd, 7px 7px 0px #999, 10px 10px 0px #777;
}
        