.hero-gradient {
    background: linear-gradient(130deg, #0f172a 0%, #1e3a8a 100%);
}

.glass-effect {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Grid Patterns */
.tech-grid {
    background-size: 30px 30px;
    background-image:
        linear-gradient(to right, rgba(96, 165, 250, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
}

.tech-grid-large {
    background-size: 100px 100px;
    background-image:
        linear-gradient(to right, rgba(96, 165, 250, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(96, 165, 250, 0.1) 1px, transparent 1px);
}
/* Form animations */
@keyframes formSuccess {
    0% { transform: translateY(-10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.form-success-message {
    animation: formSuccess 0.5s ease-out forwards;
}

/* Form input focus effects */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

/* Loader animation for submit button */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin-loader {
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animation Classes */
.floating {
    animation: float 6s ease-in-out infinite;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

.waving {
    animation: wave 3s ease-in-out infinite;
}

.rotating {
    animation: rotate 10s linear infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(96, 165, 250, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(96, 165, 250, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(96, 165, 250, 0.5);
}

/* Data Display Elements */
.data-text {
    font-family: 'Courier New', monospace;
    color: rgba(96, 165, 250, 0.8);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

/* System Components */
.system-component {
    transition: all 0.3s ease;
}

.system-component:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tech-grid {
        background-size: 20px 20px;
    }

    .tech-grid-large {
        background-size: 60px 60px;
    }

    .glass-effect {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}