/* Responsive CSS for Al-Wessam Website */

/* Mobile First Approach */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .service-card {
        height: auto;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .service-card {
        height: 350px;
    }
}