/* Custom CSS for Falcon Transport Inc. */

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

/* Custom styles for the hero section text */
.hero-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Custom button hover effect */
.btn-hover-effect {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section padding for consistency */
.section-padding {
    padding: 5rem 0;
}

/* Custom underline for section headings */
.section-heading {
    position: relative;
    display: inline-block;
}

.section-heading:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #C41E3A;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

/* Animation for service cards */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Custom form input focus */
.form-input:focus {
    border-color: #C41E3A;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);
}