/* Additional styles for WebDeployPro home page */

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

/* Loading animation for buttons */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Hover effects for social links */
.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #f59e0b !important;
}

/* Form focus states and text colors */
.form-control {
    color: #1f2937 !important;
    background-color: white !important;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    color: #1f2937 !important;
    background-color: white !important;
}

.form-label {
    color: #1f2937 !important;
    font-weight: 500;
}

.form-check-label {
    color: #1f2937 !important;
}

/* Ensure select dropdown text is visible */
select.form-control option {
    color: #1f2937 !important;
    background-color: white !important;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .portfolio-item {
        margin-bottom: 30px;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .contact-section,
    footer {
        display: none !important;
    }

    .hero-section {
        background: white !important;
        color: black !important;
    }
}