/*
====================================
Mobile & Tablet Responsive Styles
====================================
*/

/* 
  Tablet & Smaller Devices (max-width: 991.98px) 
*/
@media (max-width: 991.98px) {
    /* Footer */
    .footer-heading {
        /* text-align: center; */
    }
    .footer-heading::after {
        left: 7%;
        transform: translateX(-50%);
    }
    .footer-links, .social-icons {
        /* text-align: center; */
    }
    .footer-contact ul { 
        padding-left: 0; 
    }
    .footer-contact li {
        /* justify-content: center; */
    }
    .social-icons a { 
        margin: 0 0.5rem; 
    }
    .newsletter-form { 
        max-width: 400px; 
        margin-left: auto; 
        margin-right: auto; 
    }

    /* Page Headers */
    .page-header { 
        padding: 120px 0 80px; 
    }
    .page-header .page-title { 
        font-size: 2.8rem; 
    }

    /* Services Page */
    .service-detail-img { 
        min-height: 300px; 
    }
    .service-detail-body { 
        padding: 30px; 
    }

    /* Why Us Page */
    .process-timeline::before {
        display: none; /* Hide connecting line on tablets */
    }
}

/* 
  Mobile Devices (max-width: 767.98px) 
*/
@media (max-width: 767.98px) {
    /* Global */
    .section-padding { 
        padding: 60px 0; 
    }
    .section-title { 
        font-size: 2rem; 
    }
    .section-subtitle { 
        font-size: 1rem; 
    }
    .btn-accent { 
        padding: 10px 20px; 
        font-size: 0.9rem; 
    }

    /* Hero Slider */
    #hero-slider .carousel-item {
        height: 76vh;
        min-height: 390px;
    }
    #hero-slider .carousel-caption { 
        padding: 0 1rem; 
        padding-bottom: 80px; 
    }
    #hero-slider .carousel-caption h1 {
        font-size: 1.8rem !important;
    }
    #hero-slider .carousel-caption p {
        font-size: 1rem !important;
    }

    /* About Section */
    .usp-icon { 
        width: 50px; 
        height: 50px; 
        font-size: 1.5rem; 
        margin-right: 15px; 
    }

    /* Testimonials */
    .testimonial-card img { 
        width: 70px; 
        height: 70px; 
        margin-top: -4.5rem; 
    }
    .testimonial-card p { 
        font-size: 1rem; 
    }

    /* Get in Touch / Contact */
    .contact-info-block { 
        margin-top: 2rem; 
    }
    .contact-info-block p { 
        font-size: 1rem; 
    }

    /* Industries */
    .industry-card { 
        height: 90px; 
    }
    .industry-card h5 {
        font-size: 13px;
    }

    /* Page Headers */
    .page-header .page-title { 
        font-size: 2.2rem; 
    }
    .page-header .page-subtitle { 
        font-size: 1.1rem; 
    }

    /* Team Cards */
    .team-card { 
        margin-bottom: 1.5rem; 
    }

    /* Differentiators */
    .differentiator-item {
        flex-direction: column;
        text-align: center;
    }
    .differentiator-icon {
        margin: 0 auto 1.5rem auto;
    }
    
    /* Navbar brand font size */
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* 
  Small Mobile Devices (max-width: 575.98px) 
*/
@media (max-width: 575.98px) {
    .industry-card {
        justify-content: flex-start;
        padding-left: 1rem;
    }
}