/* Sure Move Express Delivery — brand & homepage */

:root {
    --sme-primary: #b22821;
    --sme-primary-dark: #8f1f1a;
    --sme-primary-light: #d63b33;
    --sme-navy: #0f172a;
    --sme-slate: #1e293b;
    --sme-muted: #64748b;
    --sme-light: #f8fafc;
    --sme-radius: 12px;
    --sme-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    --sme-font-body: 'Manrope', sans-serif;
    --sme-font-heading: 'Sora', sans-serif;
    --sme-font-logo: 'Russo One', sans-serif;
}

/* Global typography refresh */
body,
.wrapper,
p,
li,
a,
input,
textarea,
select,
button {
    font-family: var(--sme-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.sub-title,
.widget-title {
    font-family: var(--sme-font-heading);
}

/* Text logo */
.logo-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-text:hover {
    opacity: 0.92;
    text-decoration: none;
}

.logo-sme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--sme-primary) 0%, var(--sme-primary-light) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(178, 40, 33, 0.35);
}

.logo-full {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-weight: 700;
    font-size: 1.35rem;
    font-family: var(--sme-font-logo);
    color: var(--sme-primary);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-weight: 600;
    font-size: 0.65rem;
    font-family: 'Poppins', sans-serif;
    color: var(--sme-slate);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.footer-logo-text .logo-name {
    color: #fff;
}

.footer-logo-text .logo-tagline {
    color: #94a3b8;
}

.logo-text--auth {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.logo-text--auth .logo-sme {
    width: 56px;
    height: 56px;
    font-size: 18px;
}

.logo-text--auth .logo-name {
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .logo-sme {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.2em;
    }
}

@media (max-width: 576px) {
    .logo-text {
        gap: 8px;
    }

    .logo-sme {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .logo-name {
        font-size: 0.85rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
    }
}

/* PWA install banner */
.sme-pwa-install {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: min(420px, calc(100vw - 2rem));
    background: var(--sme-navy);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--sme-radius);
    box-shadow: var(--sme-shadow);
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.sme-pwa-install.is-visible {
    display: flex;
    flex-wrap: wrap;
}

.sme-pwa-install button {
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
}

.sme-pwa-install .sme-pwa-install-btn {
    background: var(--sme-primary);
    color: #fff;
}

.sme-pwa-install .sme-pwa-dismiss-btn {
    background: transparent;
    color: #94a3b8;
}

/* Allow hero to span full viewport width */
.sme-home.wrapper,
.container-all {
    overflow-x: clip;
}

/* Homepage — full-bleed hero background */
.sme-home .sme-hero {
    --sme-hero-bg: none;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: clamp(520px, 88vh, 920px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: var(--sme-navy);
    background-image: var(--sme-hero-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sme-home .sme-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.82) 0%,
            rgba(15, 23, 42, 0.52) 42%,
            rgba(15, 23, 42, 0.18) 72%,
            rgba(15, 23, 42, 0.08) 100%
        ),
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.75) 0%,
            rgba(15, 23, 42, 0.2) 35%,
            transparent 58%
        );
}

.sme-home .sme-hero__content-wrap {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 7rem 0 2rem;
}

.sme-home .sme-hero__content {
    max-width: 620px;
}

.sme-home .sme-hero__track-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 0 2.5rem;
}

@media (max-width: 991px) {
    .sme-home .sme-hero {
        min-height: clamp(480px, 85vh, 780px);
        background-position: 65% center;
    }

    .sme-home .sme-hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(15, 23, 42, 0.78) 0%,
                rgba(15, 23, 42, 0.55) 45%,
                rgba(15, 23, 42, 0.35) 100%
            ),
            linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 50%);
    }

    .sme-home .sme-hero__content-wrap {
        padding: 6rem 0 1.5rem;
    }

    .sme-home .sme-hero__content {
        max-width: 100%;
    }
}

.sme-home .sme-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fecaca;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.sme-home .sme-hero h1 {
    color: #fff;
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2.1rem, 4.5vw, 3.5rem);
    line-height: 1.12;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.sme-home .sme-hero-lead {
    color: #e2e8f0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.sme-home .sme-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sme-home .sme-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sme-primary);
    color: #fff !important;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.sme-home .sme-btn-primary:hover {
    background: var(--sme-primary-light);
    transform: translateY(-2px);
    color: #fff;
}

.sme-home .sme-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.sme-home .sme-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Hero tracking bar — sits over background image */
.sme-home .sme-hero-track {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--sme-radius);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sme-home .sme-hero-track__label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sme-navy);
    white-space: nowrap;
}

.sme-home .sme-hero-track__label i {
    color: var(--sme-primary);
    font-size: 1.2rem;
}

.sme-home .sme-hero-track__form {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 0.75rem;
    min-width: min(100%, 280px);
}

.sme-home .sme-track-input {
    flex: 1;
    min-width: 180px;
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0 1rem;
    font-size: 0.95rem;
    background: #fff;
    color: var(--sme-navy);
}

.sme-home .sme-track-input:focus {
    outline: none;
    border-color: var(--sme-primary);
    box-shadow: 0 0 0 3px rgba(178, 40, 33, 0.12);
}

.sme-home .sme-track-submit {
    height: 50px;
    padding: 0 1.75rem;
    background: var(--sme-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.sme-home .sme-track-submit:hover {
    background: var(--sme-primary-dark);
    transform: translateY(-1px);
}

@media (min-width: 992px) {
    .sme-home .sme-hero-track {
        padding: 1.35rem 1.75rem;
    }

    .sme-home .sme-hero-track__form {
        flex-wrap: nowrap;
    }
}

@media (max-width: 575px) {
    .sme-home .sme-hero-track {
        flex-direction: column;
        align-items: stretch;
    }

    .sme-home .sme-hero-track__form {
        flex-direction: column;
    }

    .sme-home .sme-track-submit {
        width: 100%;
    }
}

.sme-home .sme-stats-bar {
    background: #fff;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.sme-home .sme-stat-item {
    text-align: center;
    padding: 1rem;
}

.sme-home .sme-stat-item strong {
    display: block;
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--sme-primary);
    line-height: 1.2;
}

.sme-home .sme-stat-item span {
    color: var(--sme-muted);
    font-size: 0.9rem;
}

.sme-home .sme-section {
    padding: 4.5rem 0;
}

.sme-home .sme-section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.sme-home .sme-section-title .sub {
    color: var(--sme-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sme-home .sme-section-title h2 {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    color: var(--sme-navy);
}

.sme-home .sme-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--sme-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

.sme-home .sme-feature-card:hover {
    box-shadow: var(--sme-shadow);
    transform: translateY(-4px);
}

.sme-home .sme-feature-card .icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(178, 40, 33, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sme-home .sme-feature-card .icon-wrap img {
    width: 36px;
    height: 36px;
}

.sme-home .sme-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--sme-navy);
}

.sme-home .sme-feature-card p {
    color: var(--sme-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sme-home .sme-why {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.sme-home .sme-why-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, #0f172a 0%, #151f38 50%, #1a2542 100%);
    z-index: 0;
}

.sme-home .sme-why-bg::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.1) 0%, transparent 72%);
}

.sme-home .sme-why .sub {
    color: #ea580c;
}

.sme-home .sme-why .sme-section-title h2 {
    color: #ffffff;
}

.sme-home .sme-why .sme-why-lead {
    color: #94a3b8;
}

.sme-home .sme-why-title {
    margin-bottom: 2.5rem;
}

.sme-home .sme-why-lead {
    max-width: 620px;
    margin: 1rem auto 0;
    color: var(--sme-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.sme-home .sme-feature-card--why {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2e8f0;
    border-radius: var(--sme-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.05),
        0 18px 30px rgba(15, 23, 42, 0.06);
}

.sme-home .sme-feature-card--why::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-radius: var(--sme-radius) var(--sme-radius) 0 0;
    background: linear-gradient(90deg, #ea580c, #f97316);
    opacity: 0.85;
}

.sme-home .sme-feature-card--why .icon-wrap {
    background: rgba(234, 88, 12, 0.09);
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.sme-home .sme-feature-meta {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ea580c;
    background: rgba(234, 88, 12, 0.1);
}

.sme-home .sme-why-highlight {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.sme-home .sme-why-highlight__item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    text-align: center;
}

.sme-home .sme-why-highlight__item strong {
    display: block;
    color: #ea580c;
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.sme-home .sme-why-highlight__item span {
    color: #94a3b8;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .sme-home .sme-why-highlight {
        grid-template-columns: 1fr;
    }
}

/* —— Our Services (blended palette) —— */
.sme-home .sme-section.sme-services {
    position: relative;
    padding: 5rem 0 0;
    overflow: hidden;
    background: transparent;
}

.sme-home .sme-services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 18%, #eef2f7 55%, #e4eaf2 100%);
}

.sme-home .sme-services-bg::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    height: 280px;
    background: radial-gradient(ellipse at center, rgba(178, 40, 33, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.sme-home .sme-services-bg::after {
    content: '';
    position: absolute;
    bottom: 80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.04) 0%, transparent 68%);
    pointer-events: none;
}

.sme-home .sme-services .container {
    z-index: 1;
}

.sme-home .sme-services-title {
    margin-bottom: 2.75rem;
}

.sme-home .sme-services-lead {
    margin: 1rem auto 0;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--sme-muted);
}

.sme-home .sme-services-grid {
    padding-bottom: 4.5rem;
}

.sme-home .sme-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--sme-radius);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.sme-home .sme-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(178, 40, 33, 0.22);
    box-shadow:
        0 4px 8px rgba(15, 23, 42, 0.05),
        0 20px 40px rgba(15, 23, 42, 0.1);
}

.sme-home .sme-service-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--sme-radius) var(--sme-radius) 0 0;
}

.sme-home .sme-service-card--air .sme-service-card__accent {
    background: linear-gradient(90deg, #1e40af, #3b82f6);
}

.sme-home .sme-service-card--ocean .sme-service-card__accent {
    background: linear-gradient(90deg, #0e7490, #06b6d4);
}

.sme-home .sme-service-card--road .sme-service-card__accent {
    background: linear-gradient(90deg, var(--sme-primary-dark), var(--sme-primary-light));
}

.sme-home .sme-service-card--warehouse .sme-service-card__accent {
    background: linear-gradient(90deg, #334155, #64748b);
}

.sme-home .sme-service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.sme-home .sme-service-card:hover .sme-service-card__icon {
    transform: scale(1.05);
}

.sme-home .sme-service-card--air .sme-service-card__icon {
    background: linear-gradient(145deg, rgba(30, 64, 175, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.sme-home .sme-service-card--ocean .sme-service-card__icon {
    background: linear-gradient(145deg, rgba(14, 116, 144, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.sme-home .sme-service-card--road .sme-service-card__icon {
    background: linear-gradient(145deg, rgba(178, 40, 33, 0.14) 0%, rgba(214, 59, 51, 0.08) 100%);
    border: 1px solid rgba(178, 40, 33, 0.2);
}

.sme-home .sme-service-card--warehouse .sme-service-card__icon {
    background: linear-gradient(145deg, rgba(51, 65, 85, 0.12) 0%, rgba(100, 116, 139, 0.08) 100%);
    border: 1px solid rgba(100, 116, 139, 0.18);
}

.sme-home .sme-service-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.sme-home .sme-service-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sme-navy);
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.sme-home .sme-service-card__text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--sme-muted);
    margin: 0;
    flex-grow: 1;
}

/* Soft glow behind each card tied to its accent */
.sme-home .sme-service-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sme-home .sme-service-card:hover::after {
    opacity: 0.75;
}

.sme-home .sme-service-card--air::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
}

.sme-home .sme-service-card--ocean::after {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 70%);
}

.sme-home .sme-service-card--road::after {
    background: radial-gradient(circle, rgba(178, 40, 33, 0.2) 0%, transparent 70%);
}

.sme-home .sme-service-card--warehouse::after {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.16) 0%, transparent 70%);
}

/* Fade into the dark About strip below */
.sme-home .sme-services-fade {
    position: relative;
    z-index: 1;
    height: 72px;
    margin-top: -1px;
    background: linear-gradient(
        180deg,
        rgba(228, 234, 242, 0) 0%,
        rgba(30, 58, 95, 0.35) 55%,
        #1e3a5f 100%
    );
}

@media (max-width: 767px) {
    .sme-home .sme-services {
        padding-top: 3.5rem;
    }

    .sme-home .sme-services-grid {
        padding-bottom: 3rem;
    }

    .sme-home .sme-services-fade {
        height: 48px;
    }
}

.sme-home .sme-about-strip {
    margin-top: 0;
    padding-top: 3.5rem;
    background: linear-gradient(90deg, var(--sme-navy), #1e3a5f);
    color: #fff;
}

.sme-home .sme-about-strip h2 {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.sme-home .sme-about-strip p {
    color: #cbd5e1;
    line-height: 1.7;
}

.sme-home .sme-cta {
    background: linear-gradient(135deg, var(--sme-primary) 0%, var(--sme-primary-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 1.5rem;
    border-radius: var(--sme-radius);
    margin: 0 0 4rem;
}

.sme-home .sme-cta h2 {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.sme-home .sme-cta p {
    opacity: 0.9;
    max-width: 520px;
    margin: 0 auto 1.5rem;
    color: #ffffff;
}

.sme-home .sme-cta .sme-btn-primary {
    background: #fff;
    color: var(--sme-primary) !important;
}

.sme-home .sme-cta .sme-btn-primary:hover {
    background: #f1f5f9;
}

/* Navbar sticky polish */
nav.navbar.validnavs.navbar-sticky.sticked {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.top-bar-area .item-flex li {
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .top-bar-area .col-xl-5 {
        display: none;
    }

    .sme-home .sme-section {
        padding: 3rem 0;
    }
}
