/* ============================================================
   TrustShare Logistics – Theme CSS (Blue Palette)
   Primary: #1B3C87  Secondary: #2563EB  Accent: #0EA5E9
   Dark bg: #0F1E45  Light bg: #F0F4FD
   ============================================================ */

/* ---------- Preloader ---------- */
#preloader { position: fixed; inset: 0; z-index: 9999; background: #0F1E45; display: flex; align-items: center; justify-content: center; }
.ctn-preloader .animation-preloader .spinner {
    width: 70px; height: 70px;
    border: 4px solid rgba(255,255,255,.15);
    border-top-color: #2563EB;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader .bg { background: #0F1E45; }

/* ---------- Top Bar ---------- */
.topbar {
    background: #0F1E45;
    padding: 8px 0;
    font-size: 13px;
    color: #cbd5e1;
}
.topbar a { color: #cbd5e1; text-decoration: none; transition: color .2s; }
.topbar a:hover { color: #0EA5E9; }
.topbar-contact { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.topbar-contact li { display: inline-flex; align-items: center; gap: 6px; margin-right: 20px; }
.topbar-contact li i { color: #0EA5E9; font-size: 12px; }
.topbar-social { display: flex; align-items: center; }
.topbar-social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); color: #cbd5e1; font-size: 12px; margin-left: 6px; transition: all .2s; }
.topbar-social a:hover { background: #2563EB; border-color: #2563EB; color: #fff; }
.topbar-follow { color: rgba(255,255,255,.5); font-size: 12px; margin-right: 6px; }

/* ---------- Main Header ---------- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(27,60,135,.10);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s;
}
.site-header .header-inner { padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo img { max-height: 55px; width: auto; display: block; }

/* Nav */
.site-nav .navbar-nav .nav-link {
    color: #1B3C87 !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px !important;
    transition: color .2s;
    position: relative;
}
.site-nav .navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px;
    background: #2563EB; border-radius: 2px; transform: scaleX(0); transition: transform .2s;
    display: block;
}
.site-nav .navbar-nav .nav-link:hover,
.site-nav .navbar-nav .nav-link.active-link { color: #2563EB !important; }
.site-nav .navbar-nav .nav-link:hover::after,
.site-nav .navbar-nav .nav-link.active-link::after { transform: scaleX(1); }
.site-nav .navbar-nav .dropdown-toggle::after { border-color: #1B3C87 transparent transparent; }

/* Dropdown */
.site-nav .dropdown-menu {
    border: none;
    border-top: 3px solid #2563EB;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 32px rgba(27,60,135,.12);
    padding: 8px 0;
    min-width: 210px;
}
.site-nav .dropdown-item { color: #374151; font-size: 14px; font-weight: 500; padding: 9px 20px; transition: all .2s; }
.site-nav .dropdown-item:hover { background: #F0F4FD; color: #2563EB; padding-left: 26px; }

/* CTA button in header */
.btn-header-cta {
    background: linear-gradient(135deg, #1B3C87 0%, #2563EB 100%);
    color: #fff !important;
    border-radius: 6px;
    padding: 10px 22px !important;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: opacity .2s, transform .2s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-header-cta:hover { opacity: .88; transform: translateY(-1px); }

/* Hamburger */
.navbar-toggler { border: 1.5px solid #2563EB; border-radius: 6px; padding: 6px 10px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232563EB' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* Quote modal */
.get-a-quote-modal .modal-content { border: none; border-radius: 10px; overflow: hidden; }
.get-a-quote-modal .nav-tabs { background: linear-gradient(135deg, #1B3C87 0%, #2563EB 100%); border: none; padding: 16px 20px 0; }
.get-a-quote-modal .nav-tabs .nav-link { color: #fff; font-weight: 700; font-size: 16px; border: none; background: none; }
.get-a-quote-modal .btn-send { background: linear-gradient(135deg, #1B3C87 0%, #2563EB 100%); color: #fff; border: none; border-radius: 6px; padding: 10px 28px; font-weight: 600; }
.get-a-quote-modal .btn-send:hover { opacity: .88; }

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0F1E45 0%, #1B3C87 60%, #2563EB 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('../img/slider/slider_bg.jpg') center/cover no-repeat;
    opacity: .08;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,30,69,.92) 0%, rgba(37,99,235,.50) 100%); }
.hero-section .container { position: relative; z-index: 2; }
.min-vh-hero { min-height: 80vh; }

.hero-label {
    display: inline-block;
    background: rgba(14,165,233,.18);
    color: #0EA5E9;
    border: 1px solid rgba(14,165,233,.4);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-title span { color: #0EA5E9; }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,.80); margin-bottom: 36px; max-width: 560px; line-height: 1.7; }

.hero-tracking-box {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 36px;
}
.tracking-prompt { color: rgba(255,255,255,.75); font-size: 13px; font-weight: 600; margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase; }
.tracking-prompt i { margin-right: 6px; color: #0EA5E9; }
.hero-tracking-form { display: flex; gap: 12px; }

.hero-tracking-input {
    flex: 1;
    background: rgba(255,255,255,.95);
    border: none;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    color: #1B3C87;
    outline: none;
    transition: box-shadow .2s;
    min-width: 0;
}
.hero-tracking-input::placeholder { color: #94a3b8; }
.hero-tracking-input:focus { box-shadow: 0 0 0 3px rgba(37,99,235,.3); }

.hero-tracking-btn {
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s, transform .2s;
    flex-shrink: 0;
}
.hero-tracking-btn:hover { opacity: .88; transform: translateY(-1px); }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat span { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }
.hero-image { width: 100%; max-width: 520px; filter: drop-shadow(0 20px 60px rgba(0,0,0,.4)); animation: floatImg 4s ease-in-out infinite; }
@keyframes floatImg { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Quick Services Bar ---------- */
.quick-services {
    background: #0F1E45;
    padding: 24px 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.quick-services::-webkit-scrollbar { display: none; }
.qs-track { display: flex; gap: 14px; flex-wrap: nowrap; padding-bottom: 4px; }
.qs-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    padding: 11px 22px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .25s;
    white-space: nowrap;
}
.qs-card i { color: #0EA5E9; font-size: 17px; }
.qs-card:hover { background: #2563EB; border-color: #2563EB; color: #fff; text-decoration: none; transform: translateY(-2px); }

/* ---------- About Section ---------- */
.about-new-section { padding: 100px 0; background: #fff; }
.about-new-section .section-tag { color: #2563EB; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 12px; }
.about-new-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #0F1E45; margin-bottom: 16px; line-height: 1.25; }
.about-new-section .about-lead { font-size: 16px; color: #475569; line-height: 1.75; margin-bottom: 28px; }
.about-bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.about-bullets li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: #374151; }
.about-bullets li i { color: #2563EB; margin-top: 3px; flex-shrink: 0; }
.about-img-wrap { position: relative; padding-bottom: 24px; padding-right: 24px; }
.about-img-wrap img { width: 100%; border-radius: 14px; box-shadow: 0 20px 60px rgba(27,60,135,.15); }
.about-img-badge {
    position: absolute; bottom: 0; right: 0;
    background: linear-gradient(135deg, #1B3C87, #2563EB);
    color: #fff; border-radius: 12px; padding: 18px 22px; text-align: center;
    box-shadow: 0 10px 30px rgba(37,99,235,.35);
}
.about-img-badge strong { display: block; font-size: 30px; font-weight: 800; line-height: 1; }
.about-img-badge span { font-size: 12px; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }

.btn-blue {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #1B3C87 0%, #2563EB 100%);
    color: #fff; border-radius: 8px; padding: 13px 30px; font-weight: 700; font-size: 15px;
    text-decoration: none; transition: opacity .2s, transform .2s;
}
.btn-blue:hover { opacity: .88; transform: translateY(-2px); color: #fff; text-decoration: none; }

/* ---------- Services Section ---------- */
.services-new-section { padding: 100px 0; background: #F0F4FD; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .sh-tag { color: #2563EB; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; display: block; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #0F1E45; margin-bottom: 14px; }
.section-header p { color: #64748b; font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    border: 2px solid transparent;
    transition: all .3s;
    height: 100%;
    box-shadow: 0 4px 20px rgba(27,60,135,.06);
    margin-bottom: 28px;
}
.service-card:hover { border-color: #2563EB; transform: translateY(-6px); box-shadow: 0 16px 48px rgba(37,99,235,.15); }
.service-card .sc-icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #2563EB; margin: 0 auto 20px;
    transition: all .3s;
}
.service-card:hover .sc-icon { background: linear-gradient(135deg, #1B3C87, #2563EB); color: #fff; }
.service-card h4 { font-size: 17px; font-weight: 700; color: #0F1E45; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #64748b; line-height: 1.7; margin: 0; }

/* ---------- Why Choose Us ---------- */
.why-section { background: #0F1E45; padding: 100px 0; }
.why-stat { text-align: center; padding: 20px; }
.why-stat .stat-num { font-size: 44px; font-weight: 800; color: #0EA5E9; line-height: 1; }
.why-stat .stat-label { color: rgba(255,255,255,.7); font-size: 13px; margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }
.why-divider { border-color: rgba(255,255,255,.1); margin: 44px 0; }
.why-feature {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px; padding: 28px 24px; height: 100%;
    transition: all .3s; margin-bottom: 24px;
}
.why-feature:hover { background: rgba(37,99,235,.2); border-color: rgba(37,99,235,.4); transform: translateY(-4px); }
.why-feature .wf-icon { font-size: 36px; color: #0EA5E9; margin-bottom: 16px; }
.why-feature h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-feature p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 0; }
.why-section .section-header h2 { color: #fff; }
.why-section .section-header .sh-tag { color: #0EA5E9; }
.why-section .section-header p { color: rgba(255,255,255,.65); }

/* ---------- How It Works ---------- */
.how-section { padding: 100px 0; background: #F0F4FD; }
.how-step { text-align: center; }
.how-step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #1B3C87 0%, #2563EB 100%);
    color: #fff; font-size: 28px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.how-step h4 { font-size: 18px; font-weight: 700; color: #0F1E45; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: #64748b; line-height: 1.7; max-width: 220px; margin: 0 auto; }
.how-connector { display: flex; align-items: center; justify-content: center; padding-top: 36px; }
.how-connector i { font-size: 28px; color: #2563EB; opacity: .45; }

/* ---------- Testimonials ---------- */
.testimonials-section { padding: 100px 0; background: #fff; }
.testi-card {
    background: #F0F4FD;
    border-radius: 16px;
    padding: 32px 28px;
    border-left: 4px solid #2563EB;
    height: 100%;
    transition: all .3s;
    margin-bottom: 24px;
}
.testi-card:hover { background: #fff; box-shadow: 0 12px 40px rgba(37,99,235,.12); transform: translateY(-4px); }
.testi-stars { color: #F59E0B; font-size: 14px; margin-bottom: 16px; }
.testi-quote { font-size: 15px; color: #374151; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-avatar { display: flex; align-items: center; gap: 14px; }
.testi-avatar-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #1B3C87, #2563EB); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; flex-shrink: 0; }
.testi-name { font-weight: 700; color: #0F1E45; font-size: 15px; }
.testi-role { font-size: 13px; color: #64748b; }

/* ---------- CTA Banner ---------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B3C87 0%, #2563EB 60%, #0EA5E9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #1B3C87; border-radius: 8px;
    padding: 14px 34px; font-weight: 800; font-size: 16px;
    text-decoration: none; transition: all .2s;
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.btn-cta-white:hover { background: #F0F4FD; color: #1B3C87; text-decoration: none; transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq-section { padding: 100px 0; background: #fff; }
.faq-section .card { border: 1.5px solid #e2e8f0 !important; border-radius: 10px !important; margin-bottom: 12px; overflow: hidden; }
.faq-section .card-header { background: #F0F4FD !important; border: none !important; padding: 0 !important; }
.faq-section .card-header .btn-link {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 18px 24px; font-size: 15px; font-weight: 600;
    color: #0F1E45; text-decoration: none; background: none; border: none; text-align: left;
}
.faq-section .card-header .btn-link:not(.collapsed) { color: #2563EB; background: #EFF6FF; }
.faq-section .card-header .btn-link i { color: #2563EB; transition: transform .2s; flex-shrink: 0; font-size: 13px; }
.faq-section .card-header .btn-link.collapsed i { color: #94a3b8; }
.faq-section .card-body { font-size: 14px; color: #475569; line-height: 1.75; padding: 16px 24px 20px; }

/* ---------- Contact Section ---------- */
.contact-section { padding: 100px 0; background: #F0F4FD; }
.contact-info-card { background: #0F1E45; border-radius: 14px; padding: 40px 36px; color: #fff; }
.contact-info-card h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.contact-info-card .ci-tagline { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.ci-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: rgba(37,99,235,.25); display: flex; align-items: center; justify-content: center; color: #0EA5E9; font-size: 18px; flex-shrink: 0; }
.ci-text strong { display: block; color: rgba(255,255,255,.65); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; font-weight: 600; }
.ci-text span, .ci-text a { color: #fff; font-size: 14px; text-decoration: none; }
.ci-text a:hover { color: #0EA5E9; }
.contact-hours-box { background: rgba(37,99,235,.15); border-radius: 10px; padding: 16px 20px; margin-top: 8px; }
.contact-hours-box p { color: rgba(255,255,255,.8); font-size: 14px; margin: 0; line-height: 1.6; }
.contact-form-card { background: #fff; border-radius: 14px; padding: 40px 36px; box-shadow: 0 8px 32px rgba(27,60,135,.08); }
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: #0F1E45; margin-bottom: 28px; }
.contact-form-card .form-control { border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 12px 16px; font-size: 14px; color: #374151; transition: border-color .2s, box-shadow .2s; }
.contact-form-card .form-control:focus { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,.12); outline: none; }
.btn-contact-submit { width: 100%; background: linear-gradient(135deg, #1B3C87 0%, #2563EB 100%); color: #fff; border: none; border-radius: 8px; padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity .2s; }
.btn-contact-submit:hover { opacity: .88; }

/* ---------- Footer ---------- */
.site-footer { background: #0F1E45; padding: 80px 0 0; color: rgba(255,255,255,.75); }
.footer-logo img { max-height: 52px; margin-bottom: 16px; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.60); line-height: 1.7; margin-bottom: 20px; }
.footer-social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.65); font-size: 14px; margin-right: 8px;
    transition: all .2s; text-decoration: none;
}
.footer-social-icons a:hover { background: #2563EB; border-color: #2563EB; color: #fff; }
.footer-heading { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(37,99,235,.4); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a i { color: #2563EB; font-size: 11px; flex-shrink: 0; }
.footer-links a:hover { color: #0EA5E9; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: #0EA5E9; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }
.copyright-bar { background: rgba(0,0,0,.2); border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; margin-top: 60px; }
.copyright-bar p { margin: 0; font-size: 13px; color: rgba(255,255,255,.50); }
.copyright-bar a { color: rgba(255,255,255,.65); text-decoration: none; }
.copyright-bar a:hover { color: #0EA5E9; }

/* ---------- General btn blue override ---------- */
.btn-blue-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid #2563EB; color: #2563EB; border-radius: 8px;
    padding: 11px 28px; font-weight: 700; font-size: 15px;
    text-decoration: none; transition: all .2s; background: transparent;
}
.btn-blue-outline:hover { background: #2563EB; color: #fff; text-decoration: none; }

/* ---------- Scroll-to-top override ---------- */
#scroll-top { background: linear-gradient(135deg, #1B3C87, #2563EB) !important; border-radius: 8px !important; border-color: transparent !important; }

/* ---------- Mobile ---------- */
@media (max-width: 991px) {
    .site-nav .dropdown-menu { position: static !important; border: none; border-top: none; box-shadow: none; background: #F0F4FD; border-radius: 0 !important; }
    .site-header .header-inner { flex-wrap: wrap; }
}
@media (max-width: 767px) {
    .hero-section { min-height: auto; padding: 60px 0 50px; }
    .hero-tracking-form { flex-direction: column; }
    .hero-tracking-btn { width: 100%; }
    .hero-stats { gap: 20px; }
    .about-img-wrap { padding-bottom: 0; padding-right: 0; }
    .about-img-badge { display: none; }
    .how-connector { display: none; }
    .contact-info-card { margin-bottom: 24px; }
    .contact-form-card { padding: 28px 20px; }
}

/* ============================================================
   ORANGE → BLUE OVERRIDES (replaces all #ff4612/#FF4800 instances)
   ============================================================ */

/* Core accent / link colors */
a, a:hover { color: inherit; }
.btn-theme, .main-btn,
.slider-btn .btn-theme,
[class*="btn-theme"] {
    background: linear-gradient(135deg, #1B3C87, #2563EB) !important;
    border-color: #2563EB !important;
    color: #fff !important;
}
[class*="btn-theme"]:hover {
    background: linear-gradient(135deg, #2563EB, #0EA5E9) !important;
    color: #fff !important;
}

/* scrollUp button */
#scrollUp {
    background: linear-gradient(135deg, #1B3C87, #2563EB) !important;
    border-radius: 8px !important;
    border-color: transparent !important;
    box-shadow: 0 4px 14px rgba(37,99,235,.35) !important;
}
#scrollUp:hover { background: linear-gradient(135deg, #2563EB, #0EA5E9) !important; }

/* Breadcrumb banners */
.breadcrumb-bg, .breadcumb-content,
.page-title-area, .breadcumb-area {
    background: linear-gradient(135deg, #0F1E45 0%, #1B3C87 60%, #2563EB 100%) !important;
}
.breadcumb-title, .breadcrumb-title,
.breadcumb-content h2 { color: #fff !important; }
.breadcrumb-link a,
.breadcumb-content .breadcrumb-link a { color: rgba(255,255,255,.75) !important; }
.breadcrumb-link a:hover,
.breadcumb-content .breadcrumb-link a:hover { color: #0EA5E9 !important; }
.breadcrumb-link .active,
.breadcrumb-link span { color: #0EA5E9 !important; }
.breadcumb-content .breadcrumb li.active { color: #0EA5E9 !important; }
.breadcumb-content .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5) !important; }

/* Service/feature icon colors */
.icon-bg, .services-icon, .faq-icon,
[class*="icon-box"] i, [class*="service"] i,
.choose-icon i, .feature-icon i {
    color: #2563EB !important;
}
.purple-bg, .bg-purple { background: #1B3C87 !important; }

/* Active nav / menu highlights */
.main-menu ul li a:hover,
.main-menu ul li.active > a,
.main-menu ul li.current-menu-item > a { color: #2563EB !important; }
.main-menu ul li.active > a::before,
.main-menu ul li a::before { background: #2563EB !important; }

/* Section highlights */
.section-title h2 span,
.section-subtitle span,
.highlight { color: #2563EB !important; }

/* CTA / banner sections */
.cta-bg, .cta-area, [class*="cta-"] { background: linear-gradient(135deg,#0F1E45,#1B3C87) !important; }

/* Cards border-left accent */
.service-card, .choose-card, .feature-card {
    border-left-color: #2563EB !important;
}

/* Footer links color */
.footer-widget ul li a:hover { color: #0EA5E9 !important; }

/* Input focus */
input:focus, textarea:focus, select:focus {
    border-color: #2563EB !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12) !important;
}

/* Pagination */
.pagination .page-item.active .page-link {
    background: #2563EB !important;
    border-color: #2563EB !important;
}
.pagination .page-link:hover { color: #2563EB !important; }

/* Progress bars */
.progress-bar { background: linear-gradient(90deg,#1B3C87,#2563EB) !important; }

/* Blockquote border */
blockquote { border-left-color: #2563EB !important; }

/* Red/orange button override */
.red-btn, .btn.red-btn {
    background: linear-gradient(135deg, #1B3C87, #2563EB) !important;
    border-color: #2563EB !important;
    color: #fff !important;
}
.red-btn:hover, .btn.red-btn:hover {
    background: linear-gradient(135deg, #2563EB, #0EA5E9) !important;
    color: #fff !important;
}

/* ============================================================
   MOBILE OVERFLOW FIX — prevents horizontal scrollbar
   ============================================================ */
/* overflow-x only on body — NOT on html, which would clip fixed-position widgets */
body { overflow-x: hidden; max-width: 100%; }

/* Constrain any element that could cause overflow */
.container, .container-fluid { max-width: 100%; }

/* Sliders and slick carousels */
.slider-active, .slick-list, .slick-track { overflow: hidden; }
.single-slider { max-width: 100vw; overflow: hidden; }

/* Tables */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Images */
img { max-width: 100%; height: auto; }

/* Breadcrumb on mobile */
@media (max-width: 575px) {
    .breadcumb-content { padding: 60px 0 50px; }
    .breadcumb-title h2 { font-size: 1.6rem; }
    .breadcrumb { flex-wrap: wrap; }
}

/* Fix any section that's wider than viewport */
section, .section, header, footer,
.services-section, .about-section,
.faq-section, .testimonials-section,
.contact-section, .cta-section {
    max-width: 100%;
    overflow-x: hidden;
}

/* Forms on mobile */
@media (max-width: 767px) {
    form .form-group { margin-bottom: 16px; }
    .hero-tracking-form { gap: 8px; }
    .hero-tracking-input, .hero-tracking-btn { width: 100% !important; }
    .btn-header-cta { padding: 8px 14px; font-size: .8rem; }

    /* Service pages cards */
    .choose-area .row { flex-direction: column; }
    .services-area .service-item { margin-bottom: 20px; }

    /* FAQ accordion */
    .faq-area .card-header button { font-size: .9rem; padding: 14px 16px; }

    /* Contact form */
    .contact-form .row { margin: 0; }
    .contact-form .col-md-6 { padding: 0; }
}

/* Prevent meanmenu overflow on mobile */
.mean-container .mean-bar { overflow: hidden; }
.mean-nav ul { overflow: hidden; }

/* Fix grid gutters on very small screens */
@media (max-width: 400px) {
    .row { margin-left: -10px; margin-right: -10px; }
    .col, [class*="col-"] { padding-left: 10px; padding-right: 10px; }
    .container { padding-left: 15px; padding-right: 15px; }
}

/* ============================================================
   BREADCRUMB / BANNER HERO RESPONSIVE FIX
   ============================================================ */

/* Reduce excessively large min-height on banner sections */
.breadcrumb-bg,
.slider-area .single-slider {
    min-height: 320px !important;
}

/* Tame the huge h2 in banner/slider sections */
.slider-content h2 {
    font-size: clamp(1.6rem, 6vw, 3rem) !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
    hyphens: auto !important;
}
.slider-content p {
    width: 100% !important;
    max-width: 640px !important;
    font-size: clamp(.88rem, 2.5vw, 1.05rem) !important;
}

/* Breadcumb template class variant */
.breadcumb-content h2,
.breadcrumb-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.8rem) !important;
    word-break: break-word !important;
}

/* Legal / policy pages — tighten content box on mobile */
@media (max-width: 640px) {
    .policy-content-box,
    section .container > div[style] {
        padding: 24px 18px !important;
    }
}

/* Section titles globally on mobile */
@media (max-width: 576px) {
    .s-section-title h2,
    .section-title h2 {
        font-size: 1.5rem !important;
    }
    .s-section-title h2 span,
    .section-title h2 span {
        font-size: inherit !important;
    }
    .slider-area {
        min-height: 280px;
    }
    .slider-bg {
        min-height: 280px !important;
        padding: 60px 0 !important;
    }
    .breadcrumb-bg {
        min-height: 240px !important;
    }
    .breadcrumb-content {
        padding-top: 60px !important;
    }
}

/* ============================================================
   REMAINING ORANGE / ACCENT COLOR CATCHES
   ============================================================ */

/* Any element with direct orange color remaining */
[style*="#ff4612"], [style*="#FF4612"],
[style*="#FF4800"], [style*="#ff4800"],
[style*="#ff4514"], [style*="#FF4514"] {
    color: #2563EB !important;
}
[style*="background:#ff"], [style*="background: #ff"] {
    background: linear-gradient(135deg, #1B3C87, #2563EB) !important;
}
