/* ============================================================
   Globe Express Logistics – Custom Overrides
   Version 2 – image rounding, consistent UI, mobile fixes
   ============================================================ */

/* ── 1. LOGO – contain, never stretch ── */
.gel-logo,
.main-menu__logo img,
.stricky-header .main-menu__logo img,
.footer-widget__logo img,
.logo-box img,
.sidebar-info-contents .logo img {
    width: auto !important;
    height: auto !important;
    max-width: 150px;
    max-height: 52px;
    object-fit: contain;
    display: block;
}

/* ── 2. GLOBAL image safety ── */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── 3. PRELOADER – use favicon.png ── */
.preloader__image {
    background-image: url(../../favicon.png) !important;
    background-size: 80px 80px !important;
}

/* ── 3. HERO SLIDER ── */
.main-slider__bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* ── 4. SERVICES CARDS – equal height, consistent ── */
.services-one__single {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
}
.services-one__single p {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #666;
}

/* ── 5. ABOUT SECTION images – rounded, cover ── */
.about-one__img-1 img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 18px;
}
.about-one__img-2 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

/* ── 6. WHY CHOOSE US image – rounded, cover ── */
.why-choose-one__img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 18px;
}
.why-choose-one__left ul li {
    font-size: 15px;
    line-height: 1.8;
}

/* ── 7. COUNTER section image – rounded ── */
.counter-one__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;
}

/* ── 8. WHY ARE WE images – rounded ── */
.why-are-we__img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
}
.why-are-we__img-2 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
}

/* ── 9. TESTIMONIAL client avatars – circle ── */
.testimonial-one__client-img img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
/* Testimonial side image */
.testimonial-one__img-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* ── 10. CONTACT section image – rounded ── */
.contact-two__img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 18px;
}

/* ── 11. FOOTER social icons ── */
.footer-social-bx {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    align-items: center;
}
.footer-social-bx a {
    font-size: 26px;
    color: inherit;
    transition: color 0.25s;
    line-height: 1;
}
.footer-social-bx a:hover {
    color: var(--thm-primary, #e8a400);
}

/* ── 12. JUSTDIAL button ── */
.justdial-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 9px 20px;
    border: 2px solid currentColor;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.justdial-btn:hover {
    background: var(--thm-primary, #e8a400);
    color: #fff !important;
    border-color: var(--thm-primary, #e8a400);
}

/* ── 13. Prevent horizontal overflow globally ── */
html, body, .page-wrapper {
    overflow-x: hidden;
}

/* ============================================================
   TABLET  (768px – 991px)
   ============================================================ */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .main-slider__title {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    .main-slider__btn-and-call-box {
        flex-wrap: wrap;
        gap: 16px;
    }

    .about-one__img-1 img { height: 260px; }
    .about-one__img-2 img { height: 180px; }
    .why-choose-one__img img { height: 320px; }
    .counter-one__img img { height: 280px; margin-bottom: 30px; }
    .why-are-we__img img { height: 260px; }

    .counter-one__count-list { flex-wrap: wrap; gap: 20px; }
    .contact-one__contact-list { flex-wrap: wrap; gap: 20px; }
    .footer-widget__column { margin-bottom: 36px; }
    .section-title__title { font-size: 34px !important; }
}

/* ============================================================
   MOBILE  (≤ 767px)
   ============================================================ */
@media only screen and (max-width: 767px) {

    /* Logo */
    .gel-logo,
    .main-menu__logo img { max-width: 120px; max-height: 42px; }

    /* Hero */
    .main-slider__title {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }
    .main-slider__text {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .main-slider__sub-title { font-size: 13px; }
    .main-slider__btn-and-call-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .main-slider__call { margin-left: 0 !important; }

    /* Services */
    .services-one .row > [class*="col-"] { margin-bottom: 24px; }
    .services-one__single { padding: 28px 20px 22px; }

    /* Why choose us */
    .why-choose-one .col-xl-6:last-child { margin-top: 30px; }
    .why-choose-one__img img { height: 260px; }
    .why-choose-one__delivery-box { bottom: 10px; right: 10px; padding: 10px 14px; }

    /* About */
    .about-one__img-1 img { height: 220px; }
    .about-one__img-2 img { height: 160px; margin-top: 12px; }
    .about-one__trusted-box {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 16px;
        display: inline-flex;
    }
    .about-one__list li { margin-bottom: 14px; }

    /* Counter */
    .counter-one__img img { height: 240px; margin-bottom: 30px; }
    .counter-one__count-list { flex-direction: column; gap: 20px; }
    .counter-one__count-list li { width: 100%; }

    /* Why are we */
    .why-are-we__img img { height: 220px; margin-bottom: 24px; }
    .why-are-we__img-2 img { height: 200px; }
    .why-are-we__year {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin-top: 12px;
        padding: 16px;
    }

    /* FAQ */
    .faq-one__right { margin-top: 40px; }

    /* Testimonials */
    .testimonial-one__inner { padding: 60px 0 80px; }
    .testimonial-one__img-one { display: none; }

    /* Contact */
    .contact-one__contact-list { flex-direction: column; gap: 20px; }
    .contact-two__right { margin-top: 30px; }
    .contact-two__img img { min-height: 220px; }

    /* CTA */
    .cta-one__inner { padding: 40px 20px; flex-direction: column; text-align: center; }
    .cta-one__content-box { flex-direction: column; align-items: center; gap: 16px; }

    /* Footer */
    .footer-widget__column { margin-bottom: 36px; }
    .site-footer__bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
    .site-footer__bottom-menu { justify-content: center; flex-wrap: wrap; gap: 8px; }

    /* Section titles */
    .section-title__title { font-size: 26px !important; line-height: 1.3 !important; }

    /* Section spacing */
    section { padding-top: 60px !important; padding-bottom: 60px !important; }
}

/* ============================================================
   SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media only screen and (max-width: 480px) {

    .main-slider__title { font-size: 20px !important; line-height: 1.2 !important; }
    .main-slider__text { font-size: 13px !important; }
    .thm-btn { padding: 12px 22px !important; font-size: 13px !important; }
    .section-title__title { font-size: 22px !important; }

    .about-one__img-1 img { height: 180px; }
    .about-one__img-2 img { height: 140px; }
    .why-choose-one__img img { height: 220px; }
    .counter-one__img img { height: 200px; }
    .why-are-we__img img { height: 180px; }
    .why-are-we__img-2 img { height: 160px; }
}
