/* Custom mobile styles to fix mobile display issues */

/* General mobile improvements */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve text readability */
    .hero-title {
        font-size: 36px !important;
        line-height: 1.3;
    }
    
    .sec-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    /* Improve spacing for better mobile flow */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix client logos display */
    .client-logo img {
        object-fit: contain !important;
        width: 100% !important;
        max-width: 161px;
        height: auto !important;
        padding: 10px;
    }
    
    /* Fix form and buttons in mobile */
    .appointment-form .form-group {
        margin-bottom: 15px;
    }
    
    .global-btn {
        display: block;
        margin-bottom: 10px;
        text-align: center;
    }
}

/* Extra small device adjustments */
@media (max-width: 575px) {
    .header-logo img {
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 28px !important;
    }
    
    .sec-title {
        font-size: 26px;
    }
    
    /* Improve testimonial display */
    .testimonial-thumb1 img {
        max-width: 100%;
    }
    
    .testi-card {
        padding: 20px;
    }
} 