/* 4K and Ultra-wide Screens */
@media (min-width: 1600px) {
    .heading-title h2 {
        font-size: 32px;
    }
}

/* Ultra Large Devices (Extra Large Desktop) */
@media (max-width: 1599px) {
}

/* Extra Large Devices (Small Desktop) */
@media (max-width: 1199px) {
    .flex-footer {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Devices (Tablets) */
@media (max-width: 991px) {
    .flex-footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .slider-btn,
    .partner-nav-btn {
        width: 24px;
        height: 24px;
    }

    .slider-btn i,
    .partner-nav-btn i {
        font-size: 14px;
    }

    .title-main {
        font-size: 24px;
    }

    .why-choice-us-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-choice-us-item {
        width: 100%;
    }

    .menu {
        display: none;
    }

    .mobile-header {
        display: flex;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 767px) {
    .flex-footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .heading-title h2 {
        font-size: 24px;
    }
}

/* Small Devices (Phones) */
@media (max-width: 575px) {
    .heading-title h2::before,
    .heading-title h2::after {
        display: none;
    }

    .heading-title h2 {
        font-size: 20px;
    }

    .flex-header-top {
        flex-direction: column;
        gap: 8px;
    }

    .flex-header-top-left {
        flex-direction: column;
        gap: 6px;
    }

    .flex-footer {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 374px) {
    .heading-title h2 {
        font-size: 18px;
    }
}
