/* 🔹 Tablets (≤ 992px) */



@media (max-width: 992px) {

    /* NAVBAR */
    .nav-bar {
        flex-wrap: wrap;
        height: auto;
        padding: 15px;
    }

    .nav-center ul {
        gap: 20px;
        margin-top: 10px;
    }

    .nav-center a {
        font-size: 16px;
    }

    /* PRODUCT CARDS */
    .card-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cards {
        width: 45%;
    }

    /* BRAND SECTION */
    .brands-container {
        height: auto;
        padding-bottom: 30px;
    }

    .brand-text p {
        padding-right: 0;
    }

    .brand-img-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* SERVICES */
    .services-section {
        height: auto;
        padding-right: 0;
    }

    .service-icon {
        justify-content: center;
        margin: 20px 0;
    }

    /* FAQ */
    .faq-container {
        flex-direction: column;
        height: auto;
        margin-left: 0;
        width: 100%;
    }

    .faq-left,
    .faq-right {
        width: 100%;
        border-radius: 25px;
    }

    .faq-right input,
    .faq-right textarea {
        width: 100%;
    }
}

/* 🔹 Mobile (≤ 768px) */

@media (max-width: 768px) {

    /* HEADER */
    .header {
        height: auto;
    }

    /* TOPBAR */
    .topbar {
        flex-direction: row;
        height: auto;
        gap: 5px;
        padding: 10px;
        text-align: center;

    }

    .topbar ul {
        flex-direction: row;
        gap: 5px;

    }

    .topbar ul li {
        font-size: 9px;
    }

    /* NAVBAR */
    .nav-bar {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-center ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* STRIP */
    .strip ul {
        flex-direction: row;
        gap: 8px;
        margin-left: 0;
        text-align: center;
    }

    /* PRODUCT */
    .product-container h2 {
        font-size: 1.8em;
    }

    .product-container p {
        font-size: 1em;
        padding: 0 10px;
    }

    .cards {
        width: 100%;
    }

    /* SERVICES */
    .service-image img {
        height: auto;
    }

    .service-text h4 {
        font-size: 1.8em;
        padding-left: 0;
        text-align: center;
    }

    .service-icon {
        flex-wrap: wrap;
        gap: 20px;
    }

    .action-btn {
        display: inline-flex;
        overflow: hidden;
        border-radius: 4px;
        width: 100%;
        height: 42px;
        justify-content: center;
    }

    /* FAQ */
    .faq-section {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .faq-image {
        display: none;
    }

    .faq-left {
        padding: 20px;
    }

    .faq-box {
        width: 100%;
        padding: 20px;
    }

    /* ABOUT */
    .about-text {
        padding: 20px;
    }

    /* FOOTER */
    .footer-section {
        padding: 20px;
    }

    .all-links {
        flex-direction: column;
        gap: 0px;
    }

    .quick-links,
    .categories-links,
    .visiter-counter {
        padding: 20px 0;
    }

    .site-footer p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* 🔹 Small Mobile (≤ 480px) */

@media (max-width: 480px) {

    .btn-appointment,
    .btn-viewmore {
        width: 100%;
        text-align: center;
    }

    .faq-right h3 {
        font-size: 1.2em;
        text-align: center;
    }

    .faq-right input,
    .faq-right textarea {
        font-size: 14px;
    }

    .footer-heading {
        font-size: 1.5em;
    }
}