/* Custom styles and animations */

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

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

::-webkit-scrollbar-track {
    background: #0A192F;
}

::-webkit-scrollbar-thumb {
    background: #64FFDA;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #48C9B0;
}

/* Geometric patterns for backgrounds */
.geometric-pattern {
    background-image: 
        linear-gradient(45deg, rgba(100, 255, 218, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(100, 255, 218, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(100, 255, 218, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(100, 255, 218, 0.03) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* Pulse animation for CTA buttons */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(100, 255, 218, 0.3); }
    50% { box-shadow: 0 0 40px rgba(100, 255, 218, 0.6); }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #64FFDA 0%, #48C9B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.15);
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
    .font-display {
        font-size: 2.5rem;
    }
}

/* Loading state for form */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #64FFDA;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    nav, button, form {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
