/* Custom animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 86, 166, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 86, 166, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 86, 166, 0);
    }
}

/* Server image animation */
.server-image {
    animation: float 6s ease-in-out infinite;
}

/* Pricing card hover effect */
.pricing-card {
    transition: transform 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Button hover effects */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 166, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0056A6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004080;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
}

/* Additional utility classes */
.text-gradient {
    background: linear-gradient(45deg, #0056A6, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Custom focus styles */
.focus-ring {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 166, 0.3);
}

/* Loading animation */
.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0056A6;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 