/* Custom CSS for Mysterious-Dev Website */
body { 
    font-family: 'Inter', sans-serif; 
}

.gradient-text { 
    background: linear-gradient(135deg, #5eead4, #06b6d4, #10b981); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    background-clip: text; 
}

.btn-gradient { 
    background: linear-gradient(135deg, #14b8a6, #06b6d4); 
    transition: all 0.3s ease; 
}

.btn-gradient:hover { 
    background: linear-gradient(135deg, #0f766e, #0891b2); 
    transform: scale(1.05); 
}

.service-card { 
    background: rgba(31, 41, 55, 0.5); 
    backdrop-filter: blur(10px); 
    border: 1px solid #374151; 
    transition: all 0.3s ease; 
}

.service-card:hover { 
    border-color: #14b8a6; 
    transform: scale(1.05); 
}

.service-card.active { 
    border-color: #14b8a6; 
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3); 
}

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

/* Loading animation */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Form styles */
.form-input {
    background: rgba(55, 65, 81, 1);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive design helpers */
@media (max-width: 768px) {
    .text-7xl {
        font-size: 3rem;
    }
    
    .text-6xl {
        font-size: 2.5rem;
    }
    
    .text-5xl {
        font-size: 2rem;
    }
}

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

::-webkit-scrollbar-track {
    background: #1f2937;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}