  :root {
    --orange: #ff5e14;
    --orange-dark: #e94d08;
    --dark: #101828;
    --text: #344054;
    --light: #f8fafc;
}

/* TOP BAR */
.courier-topbar {
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}

.courier-topbar .container-fluid {
    padding: 0 6%;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #e4e7ec;
}

.topbar-item strong {
    color: #fff;
}

.topbar-right {
    display: flex;
    gap: 15px;
}

.topbar-right a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.topbar-right a:hover {
    color: var(--orange);
}


/* MAIN NAVBAR */
.premium-navbar {
    background: #fff;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #edf0f4;
}

.premium-navbar .container-fluid {
    padding: 0 6%;
}


/* LOGO */
.courier-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        135deg,
        var(--orange),
        #ff7a3d
    );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow:
        0 8px 20px rgba(255,94,20,.25);
    position: relative;
}

.logo-box::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    right: 5px;
    top: 5px;
}

.logo-content {
    line-height: 1.05;
}

.logo-main {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.4px;
}

.logo-main span {
    color: var(--orange);
}

.logo-tagline {
    display: block;
    font-size: 9px;
    color: #98a2b3;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-top: 5px;
    text-transform: uppercase;
}


/* NAVIGATION */
.premium-navbar .navbar-nav {
    gap: 3px;
}

.premium-navbar .nav-link {
    color: #344054;
    font-size: 14px;
    font-weight: 650;
    padding: 11px 15px !important;
    border-radius: 9px;
    transition: all .25s ease;
    position: relative;
}

.premium-navbar .nav-link:hover {
    color: var(--orange);
    background: #fff5f0;
}

.premium-navbar .nav-link.active {
    color: var(--orange);
    background: #fff5f0;
}


/* ACTIVE LINE */
.premium-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--orange);
    border-radius: 20px;
}


/* DROPDOWN */
.premium-navbar .dropdown-menu {
    border: 0;
    padding: 12px;
    min-width: 235px;
    border-radius: 15px;
    margin-top: 14px;
    background: #fff;

    box-shadow:
        0 20px 50px rgba(16,24,40,.13),
        0 5px 15px rgba(16,24,40,.05);
}

.premium-navbar .dropdown-item {
    padding: 11px 13px;
    border-radius: 9px;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
    transition: .25s;
}

.premium-navbar .dropdown-item:hover {
    background: #fff5f0;
    color: var(--orange);
    padding-left: 18px;
}

.dropdown-title {
    padding: 5px 13px 9px;
    color: #98a2b3;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}


/* RIGHT SIDE */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* TRACK BUTTON */
.track-parcel {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid #e4e7ec;
    background: #fff;
    padding: 11px 15px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.track-parcel:hover {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 5px 15px rgba(255,94,20,.08);
}


/* QUOTE BUTTON */
.quote-button {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-dark)
    );
    padding: 12px 19px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 750;
    box-shadow:
        0 8px 18px rgba(255,94,20,.25);
    transition: all .3s ease;
}

.quote-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(255,94,20,.32);
}

.quote-arrow {
    font-size: 16px;
    transition: .3s;
}

.quote-button:hover .quote-arrow {
    transform: translateX(4px);
}


/* MOBILE TOGGLE */
.premium-navbar .navbar-toggler {
    border: 0;
    padding: 8px;
    box-shadow: none !important;
}

.premium-navbar .navbar-toggler-icon {
    width: 27px;
    height: 27px;
}


/* MOBILE MENU */
@media (max-width: 1199px) {

    .premium-navbar .container-fluid {
        padding: 0 3%;
    }

    .premium-navbar .nav-link {
        padding: 10px 11px !important;
    }

    .nav-actions {
        margin-left: 8px;
    }

    .track-parcel,
    .quote-button {
        padding: 10px 12px;
    }
}


@media (max-width: 991px) {

    .courier-topbar {
        display: none;
    }

    .premium-navbar {
        padding: 10px 0;
        box-shadow: 0 5px 25px rgba(16,24,40,.08);
    }

    .premium-navbar .container-fluid {
        padding: 0 18px;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        background: #fff;
        border-radius: 16px;
        border: 1px solid #edf0f4;

        box-shadow:
            0 15px 40px rgba(16,24,40,.10);
    }

    .premium-navbar .navbar-nav {
        gap: 2px;
    }

    .premium-navbar .nav-link {
        padding: 12px 14px !important;
    }

    .premium-navbar .nav-link.active::after {
        display: none;
    }

    .premium-navbar .dropdown-menu {
        margin: 5px 0;
        box-shadow: none;
        background: #f8fafc;
        border: 1px solid #edf0f4;
    }

    .nav-actions {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #edf0f4;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .track-parcel,
    .quote-button {
        justify-content: center;
        width: 100%;
    }
}


@media (max-width: 480px) {

    .logo-box {
        width: 42px;
        height: 42px;
        font-size: 21px;
        border-radius: 12px;
    }

    .logo-main {
        font-size: 17px;
    }

    .logo-tagline {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .nav-actions {
        grid-template-columns: 1fr;
    }
} 



   .courier-hero {
        position: relative;
        overflow: hidden;
        background:
            radial-gradient(circle at 85% 20%, rgba(255, 94, 20, 0.14), transparent 28%),
            radial-gradient(circle at 10% 90%, rgba(255, 94, 20, 0.08), transparent 25%),
            #f8fafc;
        padding: 85px 0 45px;
        font-family: Arial, sans-serif;
    }

    .courier-hero .container {
        position: relative;
        z-index: 2;
    }

    /* BACKGROUND SHAPES */
    .hero-shape-one {
        position: absolute;
        width: 420px;
        height: 420px;
        border: 70px solid rgba(255, 94, 20, 0.035);
        border-radius: 50%;
        right: -160px;
        top: -130px;
    }

    .hero-shape-two {
        position: absolute;
        width: 180px;
        height: 180px;
        background: rgba(255, 94, 20, 0.05);
        border-radius: 35px;
        left: -90px;
        bottom: 70px;
        transform: rotate(25deg);
    }

    /* LEFT CONTENT */
    .hero-content {
        padding-right: 35px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #ffe0d2;
        color: #ff5e14;
        padding: 8px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .4px;
        margin-bottom: 20px;
        box-shadow: 0 5px 18px rgba(16, 24, 40, .05);
    }

    .badge-dot {
        width: 8px;
        height: 8px;
        background: #ff5e14;
        border-radius: 50%;
        box-shadow: 0 0 0 5px rgba(255, 94, 20, .10);
    }

    .hero-title {
        font-size: clamp(40px, 5vw, 65px);
        line-height: 1.08;
        color: #101828;
        font-weight: 850;
        letter-spacing: -2.5px;
        margin-bottom: 22px;
    }

    .hero-title span {
        color: #ff5e14;
    }

    .hero-description {
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
        max-width: 650px;
        margin-bottom: 25px;
    }

    /* CHECK POINTS */
    .hero-points {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
        margin: 25px 0 30px;
    }

    .hero-point {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #344054;
        font-size: 14px;
        font-weight: 650;
    }

    .check-icon {
        width: 23px;
        height: 23px;
        flex-shrink: 0;
        background: #fff1eb;
        color: #ff5e14;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: 900;
    }

    /* BUTTONS */
    .hero-buttons {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-bottom: 32px;
    }

    .hero-primary-btn {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #ff5e14;
        color: #fff;
        text-decoration: none;
        padding: 14px 22px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 800;
        box-shadow: 0 10px 25px rgba(255, 94, 20, .25);
        transition: .3s;
    }

    .hero-primary-btn:hover {
        background: #e94d08;
        color: #fff;
        transform: translateY(-2px);
    }

    .hero-secondary-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        color: #101828;
        text-decoration: none;
        padding: 13px 20px;
        border: 1px solid #e4e7ec;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 750;
        transition: .3s;
    }

    .hero-secondary-btn:hover {
        color: #ff5e14;
        border-color: #ff5e14;
    }

    /* TRUST */
    .hero-trust {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .trust-avatars {
        display: flex;
    }

    .trust-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border: 3px solid #fff;
        background: #ff5e14;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
        margin-left: -8px;
    }

    .trust-avatar:first-child {
        margin-left: 0;
    }

    .trust-text strong {
        display: block;
        color: #101828;
        font-size: 13px;
    }

    .trust-text small {
        color: #98a2b3;
        font-size: 11px;
    }

    /* FORM CARD */
    .hero-form-wrapper {
        position: relative;
        padding-left: 20px;
    }

    .hero-form-card {
        position: relative;
        background: #fff;
        border-radius: 22px;
        padding: 30px;
        box-shadow:
            0 25px 70px rgba(16, 24, 40, .13),
            0 5px 20px rgba(16, 24, 40, .04);
        border: 1px solid rgba(255,255,255,.8);
    }

    .form-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 22px;
    }

    .form-title {
        color: #101828;
        font-size: 22px;
        font-weight: 850;
        margin: 0;
    }

    .form-subtitle {
        color: #98a2b3;
        font-size: 12px;
        margin-top: 5px;
    }

    .form-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        background: #fff1eb;
        color: #ff5e14;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        display: block;
        color: #344054;
        font-size: 12px;
        font-weight: 750;
        margin-bottom: 7px;
    }

    .form-control-courier,
    .form-select-courier {
        width: 100%;
        height: 47px;
        border: 1px solid #e4e7ec;
        border-radius: 9px;
        padding: 0 13px;
        color: #344054;
        font-size: 13px;
        outline: none;
        background: #fff;
        transition: .3s;
    }

    .form-control-courier:focus,
    .form-select-courier:focus {
        border-color: #ff5e14;
        box-shadow: 0 0 0 3px rgba(255, 94, 20, .08);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .form-submit {
        width: 100%;
        height: 50px;
        border: 0;
        border-radius: 9px;
        background: linear-gradient(135deg, #ff5e14, #e94d08);
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(255, 94, 20, .22);
        transition: .3s;
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(255, 94, 20, .3);
    }

    .form-note {
        text-align: center;
        color: #98a2b3;
        font-size: 10px;
        margin: 12px 0 0;
    }

    /* FLOATING CARD */
    .floating-delivery {
        position: absolute;
        left: -5px;
        bottom: 25px;
        background: #101828;
        color: #fff;
        border-radius: 13px;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 12px 30px rgba(16,24,40,.2);
        z-index: 3;
    }

    .floating-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: #ff5e14;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-delivery strong {
        display: block;
        font-size: 11px;
    }

    .floating-delivery small {
        color: #98a2b3;
        font-size: 9px;
    }

    /* BOTTOM FEATURES */
    .hero-features {
        margin-top: 65px;
        background: #fff;
        border: 1px solid #eaecf0;
        border-radius: 16px;
        padding: 18px 10px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        box-shadow: 0 10px 30px rgba(16,24,40,.05);
    }

    .feature-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-right: 1px solid #eaecf0;
    }

    .feature-box:last-child {
        border-right: 0;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        background: #fff4ef;
        color: #ff5e14;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .feature-box strong {
        display: block;
        color: #101828;
        font-size: 13px;
    }

    .feature-box span {
        color: #98a2b3;
        font-size: 10px;
    }

    /* RESPONSIVE */
    @media(max-width: 991px) {

        .courier-hero {
            padding: 60px 0 35px;
        }

        .hero-content {
            padding-right: 0;
            text-align: center;
        }

        .hero-description {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-points {
            text-align: left;
        }

        .hero-buttons,
        .hero-trust {
            justify-content: center;
        }

        .hero-form-wrapper {
            padding-left: 0;
            margin-top: 45px;
        }

        .hero-features {
            margin-top: 45px;
        }
    }

    @media(max-width: 767px) {

        .hero-title {
            letter-spacing: -1.5px;
        }

        .hero-points {
            grid-template-columns: 1fr;
            max-width: 350px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .hero-primary-btn,
        .hero-secondary-btn {
            width: 100%;
            justify-content: center;
        }

        .hero-form-card {
            padding: 22px;
        }

        .hero-features {
            grid-template-columns: 1fr 1fr;
            gap: 18px 5px;
        }

        .feature-box {
            border-right: 0;
        }

        .floating-delivery {
            left: 10px;
            bottom: 10px;
        }
    }

    @media(max-width: 480px) {

        .courier-hero {
            padding: 45px 0 25px;
        }

        .hero-title {
            font-size: 38px;
        }

        .hero-description {
            font-size: 14px;
        }

        .hero-features {
            grid-template-columns: 1fr;
        }

        .feature-box {
            justify-content: flex-start;
            padding-left: 15px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
    }  .courier-about {
        padding: 95px 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .courier-about .container {
        position: relative;
        z-index: 2;
    }

    /* BACKGROUND */
    .about-bg-circle {
        position: absolute;
        width: 380px;
        height: 380px;
        border: 65px solid rgba(255, 94, 20, 0.035);
        border-radius: 50%;
        left: -210px;
        top: 80px;
    }

    /* LEFT VISUAL */
    .about-visual {
        position: relative;
        padding: 20px 45px 30px 15px;
    }

    .about-main-card {
        min-height: 475px;
        border-radius: 28px;
        background:
            linear-gradient(
                145deg,
                #101828 0%,
                #182536 65%,
                #202f42 100%
            );
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(16, 24, 40, .16);
    }

    .about-main-card::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border: 55px solid rgba(255, 94, 20, .12);
        border-radius: 50%;
        right: -140px;
        top: -110px;
    }

    .about-main-card::after {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        background: rgba(255, 94, 20, .08);
        border-radius: 50%;
        left: -100px;
        bottom: -100px;
    }

    .about-card-content {
        position: relative;
        z-index: 2;
        padding: 42px;
        height: 475px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about-truck-icon {
        width: 82px;
        height: 82px;
        background: #ff5e14;
        color: #fff;
        border-radius: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        box-shadow: 0 15px 30px rgba(255, 94, 20, .25);
        margin-bottom: 28px;
    }

    .about-visual-title {
        color: #fff;
        font-size: 30px;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 14px;
    }

    .about-visual-text {
        color: #aab4c3;
        font-size: 14px;
        line-height: 1.7;
        max-width: 350px;
    }

    .about-experience {
        position: absolute;
        right: 15px;
        bottom: 0;
        background: #ff5e14;
        color: #fff;
        padding: 20px 25px;
        border-radius: 17px;
        box-shadow: 0 15px 35px rgba(255, 94, 20, .25);
        z-index: 4;
    }

    .about-experience strong {
        display: block;
        font-size: 30px;
        line-height: 1;
        font-weight: 850;
    }

    .about-experience span {
        display: block;
        font-size: 11px;
        margin-top: 6px;
        opacity: .9;
        font-weight: 600;
    }

    /* FLOATING TRUST CARD */
    .about-trust-card {
        position: absolute;
        left: -5px;
        top: 55px;
        background: #fff;
        padding: 15px 18px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 15px 35px rgba(16, 24, 40, .12);
        z-index: 5;
    }

    .trust-check {
        width: 38px;
        height: 38px;
        background: #fff1eb;
        color: #ff5e14;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
    }

    .about-trust-card strong {
        display: block;
        color: #101828;
        font-size: 12px;
    }

    .about-trust-card span {
        color: #98a2b3;
        font-size: 10px;
    }

    /* RIGHT CONTENT */
    .about-content {
        padding-left: 30px;
    }

    .about-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #ff5e14;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .about-label::before {
        content: "";
        width: 28px;
        height: 3px;
        background: #ff5e14;
        border-radius: 20px;
    }

    .about-title {
        color: #101828;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.13;
        font-weight: 850;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .about-title span {
        color: #ff5e14;
    }

    .about-description {
        color: #667085;
        font-size: 15px;
        line-height: 1.85;
        margin-bottom: 15px;
    }

    /* FEATURES */
    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 27px;
        margin-bottom: 28px;
    }

    .about-feature {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .about-feature-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
        background: #fff4ef;
        color: #ff5e14;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
    }

    .about-feature h4 {
        color: #101828;
        font-size: 14px;
        font-weight: 800;
        margin: 2px 0 5px;
    }

    .about-feature p {
        color: #98a2b3;
        font-size: 11px;
        line-height: 1.5;
        margin: 0;
    }

    /* BUTTON */
    .about-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 20px;
        background: #ff5e14;
        color: #fff;
        text-decoration: none;
        border-radius: 9px;
        font-size: 13px;
        font-weight: 800;
        box-shadow: 0 9px 22px rgba(255, 94, 20, .22);
        transition: .3s;
    }

    .about-button:hover {
        color: #fff;
        background: #e94d08;
        transform: translateY(-2px);
    }

    /* RESPONSIVE */
    @media(max-width: 991px) {

        .courier-about {
            padding: 70px 0;
        }

        .about-content {
            padding-left: 0;
            margin-top: 25px;
        }

        .about-visual {
            max-width: 650px;
            margin: auto;
        }
    }

    @media(max-width: 767px) {

        .about-main-card {
            min-height: 420px;
        }

        .about-card-content {
            height: 420px;
            padding: 30px;
        }

        .about-visual-title {
            font-size: 25px;
        }

        .about-experience {
            right: 5px;
        }

        .about-trust-card {
            left: 0;
            top: 30px;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        .about-title {
            font-size: 35px;
        }
    }

    @media(max-width: 480px) {

        .about-visual {
            padding: 15px 15px 30px;
        }

        .about-main-card {
            min-height: 390px;
        }

        .about-card-content {
            height: 390px;
            padding: 25px;
        }

        .about-truck-icon {
            width: 65px;
            height: 65px;
            font-size: 30px;
        }

        .about-experience {
            padding: 15px 18px;
        }

        .about-experience strong {
            font-size: 24px;
        }
    } .why-courier {
        position: relative;
        overflow: hidden;
        padding: 95px 0;
        background: #101828;
        font-family: Arial, sans-serif;
    }

    .why-courier::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border: 80px solid rgba(255, 94, 20, 0.07);
        border-radius: 50%;
        left: -280px;
        top: -220px;
    }

    .why-courier::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        border: 60px solid rgba(255, 255, 255, 0.025);
        border-radius: 50%;
        right: -220px;
        bottom: -200px;
    }

    .why-courier .container {
        position: relative;
        z-index: 2;
    }

    /* HEADER */

    .why-header {
        max-width: 760px;
        margin: 0 auto 55px;
        text-align: center;
    }

    .why-label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #ff5e14;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .why-label span {
        width: 28px;
        height: 3px;
        background: #ff5e14;
        border-radius: 20px;
    }

    .why-title {
        color: #ffffff;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.15;
        font-weight: 850;
        letter-spacing: -1.5px;
        margin-bottom: 17px;
    }

    .why-title strong {
        color: #ff5e14;
    }

    .why-description {
        color: #98a2b3;
        font-size: 15px;
        line-height: 1.8;
        margin: 0;
    }


    /* MAIN GRID */

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1.15fr 1fr;
        gap: 20px;
        align-items: stretch;
    }


    /* SIDE CARDS */

    .why-side {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .why-card {
        flex: 1;
        padding: 25px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.045);
        border-radius: 18px;
        transition: all .3s ease;
        position: relative;
        overflow: hidden;
    }

    .why-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255,94,20,.35);
        background: rgba(255,255,255,.065);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

    .why-card::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255,94,20,.06);
        right: -50px;
        bottom: -50px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        background: rgba(255,94,20,.12);
        color: #ff5e14;
        border-radius: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .why-card h3 {
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 9px;
    }

    .why-card p {
        color: #98a2b3;
        font-size: 12px;
        line-height: 1.7;
        margin: 0;
    }


    /* CENTER */

    .why-center {
        position: relative;
        min-height: 475px;
        background:
            linear-gradient(
                145deg,
                #182536,
                #101828
            );
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 25px;
        padding: 35px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .why-center::before {
        content: "";
        position: absolute;
        width: 310px;
        height: 310px;
        border: 55px solid rgba(255,94,20,.08);
        border-radius: 50%;
    }

    .why-center::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        border: 1px solid rgba(255,94,20,.2);
        border-radius: 50%;
    }

    .center-truck {
        width: 100px;
        height: 100px;
        border-radius: 28px;
        background: #ff5e14;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        box-shadow: 0 20px 40px rgba(255,94,20,.25);
        position: relative;
        z-index: 2;
        margin-bottom: 25px;
    }

    .center-title {
        position: relative;
        z-index: 2;
        color: #fff;
        font-size: 23px;
        font-weight: 850;
        margin-bottom: 9px;
        text-align: center;
    }

    .center-text {
        position: relative;
        z-index: 2;
        color: #98a2b3;
        font-size: 12px;
        line-height: 1.7;
        text-align: center;
        max-width: 300px;
        margin-bottom: 25px;
    }


    /* DELIVERY STATUS */

    .delivery-status {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 330px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        padding: 18px;
        border-radius: 15px;
    }

    .status-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .status-top span:first-child {
        color: #fff;
        font-size: 11px;
        font-weight: 700;
    }

    .status-badge {
        background: rgba(255,94,20,.14);
        color: #ff8c5b;
        padding: 5px 9px;
        border-radius: 20px;
        font-size: 9px;
        font-weight: 800;
    }

    .status-line {
        height: 4px;
        background: #344054;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
    }

    .status-progress {
        width: 78%;
        height: 100%;
        background: #ff5e14;
        border-radius: 20px;
    }

    .status-points {
        display: flex;
        justify-content: space-between;
        margin-top: 9px;
    }

    .status-points span {
        color: #667085;
        font-size: 8px;
    }

    .status-points span.active {
        color: #ff5e14;
        font-weight: 700;
    }


    /* BOTTOM STATS */

    .why-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 45px;
        padding: 24px 10px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.035);
        border-radius: 17px;
    }

    .why-stat {
        text-align: center;
        border-right: 1px solid rgba(255,255,255,.08);
    }

    .why-stat:last-child {
        border-right: 0;
    }

    .why-stat strong {
        display: block;
        color: #fff;
        font-size: 25px;
        font-weight: 850;
        margin-bottom: 5px;
    }

    .why-stat strong span {
        color: #ff5e14;
    }

    .why-stat small {
        color: #98a2b3;
        font-size: 10px;
    }


    /* CTA */

    .why-cta {
        margin-top: 40px;
        text-align: center;
    }

    .why-cta a {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #ff5e14;
        color: #fff;
        text-decoration: none;
        padding: 14px 22px;
        border-radius: 9px;
        font-size: 13px;
        font-weight: 800;
        box-shadow: 0 10px 25px rgba(255,94,20,.22);
        transition: .3s;
    }

    .why-cta a:hover {
        color: #fff;
        background: #e94d08;
        transform: translateY(-2px);
    }


    /* RESPONSIVE */

    @media(max-width: 991px) {

        .why-courier {
            padding: 70px 0;
        }

        .why-grid {
            grid-template-columns: 1fr 1fr;
        }

        .why-center {
            grid-column: 1 / -1;
            grid-row: 1;
        }

        .why-side {
            grid-row: 2;
        }

        .why-stats {
            grid-template-columns: 1fr 1fr;
            gap: 20px 0;
        }

        .why-stat:nth-child(2) {
            border-right: 0;
        }
    }


    @media(max-width: 767px) {

        .why-courier {
            padding: 60px 0;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .why-center {
            grid-column: auto;
            grid-row: auto;
            min-height: 430px;
        }

        .why-side {
            grid-row: auto;
        }

        .why-card {
            min-height: 180px;
        }

        .why-stats {
            grid-template-columns: 1fr 1fr;
        }

        .why-stat {
            border-right: 0;
        }
    }


    @media(max-width: 480px) {

        .why-title {
            font-size: 34px;
        }

        .why-description {
            font-size: 13px;
        }

        .why-center {
            padding: 25px;
        }

        .why-stats {
            grid-template-columns: 1fr;
        }

        .why-stat {
            padding: 12px;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .why-stat:last-child {
            border-bottom: 0;
        }
    } .courier-services {
        padding: 95px 0;
        background: #f8fafc;
        position: relative;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    .courier-services::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border: 65px solid rgba(255, 94, 20, 0.035);
        border-radius: 50%;
        right: -240px;
        top: -180px;
    }

    .courier-services .container {
        position: relative;
        z-index: 2;
    }

    /* HEADER */

    .services-header {
        max-width: 760px;
        margin: 0 auto 55px;
        text-align: center;
    }

    .services-label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #ff5e14;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .services-label span {
        width: 28px;
        height: 3px;
        background: #ff5e14;
        border-radius: 20px;
    }

    .services-title {
        color: #101828;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.15;
        font-weight: 850;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .services-title strong {
        color: #ff5e14;
    }

    .services-description {
        color: #667085;
        font-size: 15px;
        line-height: 1.8;
        margin: 0 auto;
    }


    /* SERVICES GRID */

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }


    /* SERVICE CARD */

    .service-card {
        background: #fff;
        border: 1px solid #eaecf0;
        border-radius: 20px;
        padding: 28px;
        position: relative;
        overflow: hidden;
        transition: all .35s ease;
    }

    .service-card::before {
        content: "";
        position: absolute;
        width: 110px;
        height: 110px;
        background: #fff5f0;
        border-radius: 50%;
        right: -50px;
        top: -50px;
        transition: .35s;
    }

    .service-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 94, 20, .25);
        box-shadow:
            0 20px 45px rgba(16, 24, 40, .09);
    }

    .service-card:hover::before {
        transform: scale(1.5);
    }


    /* ICON */

    .service-icon {
        position: relative;
        z-index: 2;
        width: 58px;
        height: 58px;
        background: #fff1eb;
        color: #ff5e14;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        margin-bottom: 22px;
        transition: .35s;
    }

    .service-card:hover .service-icon {
        background: #ff5e14;
        color: #fff;
        transform: rotate(-5deg);
        box-shadow: 0 10px 22px rgba(255, 94, 20, .22);
    }


    /* NUMBER */

    .service-number {
        position: absolute;
        right: 24px;
        top: 22px;
        color: #eaecf0;
        font-size: 30px;
        font-weight: 900;
        line-height: 1;
        z-index: 2;
    }


    /* CONTENT */

    .service-card h3 {
        position: relative;
        z-index: 2;
        color: #101828;
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 11px;
    }

    .service-card p {
        position: relative;
        z-index: 2;
        color: #667085;
        font-size: 12px;
        line-height: 1.75;
        margin-bottom: 20px;
    }


    /* LINK */

    .service-link {
        position: relative;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #ff5e14;
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
        transition: .3s;
    }

    .service-link span {
        transition: .3s;
    }

    .service-link:hover {
        color: #e94d08;
    }

    .service-link:hover span {
        transform: translateX(5px);
    }


    /* FEATURED CARD */

    .service-card.featured {
        background: #101828;
        border-color: #101828;
    }

    .service-card.featured::before {
        background: rgba(255, 94, 20, .08);
    }

    .service-card.featured h3 {
        color: #fff;
    }

    .service-card.featured p {
        color: #98a2b3;
    }

    .service-card.featured .service-icon {
        background: #ff5e14;
        color: #fff;
    }

    .service-card.featured .service-number {
        color: rgba(255,255,255,.08);
    }


    /* BOTTOM CTA */

    .services-cta {
        margin-top: 45px;
        background: #101828;
        border-radius: 20px;
        padding: 27px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        overflow: hidden;
        position: relative;
    }

    .services-cta::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border: 30px solid rgba(255,94,20,.08);
        border-radius: 50%;
        right: -70px;
        top: -80px;
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-content h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .cta-content p {
        color: #98a2b3;
        font-size: 12px;
        margin: 0;
    }

    .cta-button {
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #ff5e14;
        color: #fff;
        text-decoration: none;
        padding: 13px 20px;
        border-radius: 9px;
        font-size: 13px;
        font-weight: 800;
        transition: .3s;
        box-shadow: 0 8px 20px rgba(255,94,20,.2);
    }

    .cta-button:hover {
        background: #e94d08;
        color: #fff;
        transform: translateY(-2px);
    }


    /* RESPONSIVE */

    @media(max-width: 991px) {

        .courier-services {
            padding: 70px 0;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }


    @media(max-width: 767px) {

        .services-grid {
            grid-template-columns: 1fr;
        }

        .services-cta {
            flex-direction: column;
            align-items: flex-start;
            padding: 25px;
        }

        .cta-button {
            width: 100%;
            justify-content: center;
        }
    }


    @media(max-width: 480px) {

        .services-title {
            font-size: 34px;
        }

        .services-description {
            font-size: 13px;
        }

        .service-card {
            padding: 24px;
        }
    } .courier-process {
        padding: 95px 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }

    .courier-process::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border: 65px solid rgba(255, 94, 20, 0.035);
        border-radius: 50%;
        left: -250px;
        bottom: -190px;
    }

    .courier-process .container {
        position: relative;
        z-index: 2;
    }


    /* HEADER */

    .process-header {
        max-width: 750px;
        margin: 0 auto 65px;
        text-align: center;
    }

    .process-label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #ff5e14;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .process-label span {
        width: 28px;
        height: 3px;
        background: #ff5e14;
        border-radius: 20px;
    }

    .process-title {
        color: #101828;
        font-size: clamp(34px, 4vw, 48px);
        line-height: 1.15;
        font-weight: 850;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .process-title strong {
        color: #ff5e14;
    }

    .process-description {
        color: #667085;
        font-size: 15px;
        line-height: 1.8;
        margin: 0;
    }


    /* PROCESS WRAPPER */

    .process-wrapper {
        position: relative;
    }


    /* CONNECTING LINE */

    .process-line {
        position: absolute;
        top: 67px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: #e4e7ec;
        z-index: 0;
    }

    .process-line-active {
        position: absolute;
        top: 67px;
        left: 12%;
        width: 76%;
        height: 2px;
        background: linear-gradient(
            90deg,
            #ff5e14 0%,
            #ff8a5b 50%,
            #ff5e14 100%
        );
        z-index: 1;
    }


    /* PROCESS GRID */

    .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
        position: relative;
        z-index: 2;
    }


    /* PROCESS ITEM */

    .process-item {
        text-align: center;
        position: relative;
    }


    /* NUMBER / ICON */

    .process-icon-wrap {
        width: 90px;
        height: 90px;
        margin: 0 auto 25px;
        border-radius: 50%;
        background: #ffffff;
        border: 2px solid #ff5e14;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow:
            0 10px 25px rgba(255,94,20,.12);
    }

    .process-icon {
        width: 62px;
        height: 62px;
        background: #fff1eb;
        color: #ff5e14;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .process-number {
        position: absolute;
        top: -7px;
        right: -5px;
        width: 25px;
        height: 25px;
        background: #101828;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 9px;
        font-weight: 800;
        border: 3px solid #fff;
    }


    /* CONTENT */

    .process-item h3 {
        color: #101828;
        font-size: 17px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .process-item p {
        color: #667085;
        font-size: 12px;
        line-height: 1.75;
        max-width: 230px;
        margin: 0 auto;
    }


    /* HIGHLIGHT */

    .process-item.highlight .process-icon-wrap {
        background: #101828;
        border-color: #101828;
        box-shadow:
            0 15px 35px rgba(16,24,40,.15);
    }

    .process-item.highlight .process-icon {
        background: #ff5e14;
        color: #fff;
    }

    .process-item.highlight h3 {
        color: #ff5e14;
    }


    /* BOTTOM BOX */

    .process-bottom {
        margin-top: 65px;
        background: #101828;
        border-radius: 20px;
        padding: 30px 35px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
        position: relative;
        overflow: hidden;
    }

    .process-bottom::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border: 30px solid rgba(255,94,20,.08);
        border-radius: 50%;
        right: -70px;
        top: -80px;
    }

    .process-bottom-content {
        position: relative;
        z-index: 2;
    }

    .process-bottom-content h3 {
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .process-bottom-content p {
        color: #98a2b3;
        font-size: 12px;
        margin: 0;
    }

    .process-bottom-btn {
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 13px 21px;
        background: #ff5e14;
        color: #fff;
        text-decoration: none;
        border-radius: 9px;
        font-size: 13px;
        font-weight: 800;
        transition: .3s;
    }

    .process-bottom-btn:hover {
        background: #e94d08;
        color: #fff;
        transform: translateY(-2px);
    }


    /* RESPONSIVE */

    @media(max-width: 991px) {

        .courier-process {
            padding: 70px 0;
        }

        .process-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 50px 25px;
        }

        .process-line,
        .process-line-active {
            display: none;
        }
    }


    @media(max-width: 767px) {

        .process-grid {
            grid-template-columns: 1fr;
            gap: 45px;
        }

        .process-item p {
            max-width: 330px;
        }

        .process-bottom {
            flex-direction: column;
            align-items: flex-start;
            padding: 25px;
        }

        .process-bottom-btn {
            width: 100%;
            justify-content: center;
        }
    }


    @media(max-width: 480px) {

        .process-title {
            font-size: 34px;
        }

        .process-description {
            font-size: 13px;
        }
    } .intl-clean {
        padding: 90px 0;
        background: #ffffff;
        font-family: Arial, sans-serif;
        position: relative;
        overflow: hidden;
    }

    .intl-clean .container {
        position: relative;
        z-index: 2;
    }

    /* Soft Background */

    .intl-clean::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: #fff7f3;
        border-radius: 50%;
        left: -230px;
        top: -180px;
    }

    .intl-clean::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        background: #fff9f6;
        border-radius: 50%;
        right: -140px;
        bottom: -130px;
    }


    /* MAIN GRID */

    .intl-grid {
        display: grid;
        grid-template-columns: 1fr 0.9fr;
        gap: 70px;
        align-items: center;
    }


    /* LEFT CONTENT */

    .intl-content {
        max-width: 650px;
    }

    .intl-tag {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: #ff5e14;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        margin-bottom: 17px;
    }

    .intl-tag i {
        display: block;
        width: 28px;
        height: 3px;
        background: #ff5e14;
        border-radius: 20px;
    }

    .intl-title {
        color: #111827;
        font-size: clamp(35px, 4vw, 52px);
        line-height: 1.1;
        font-weight: 850;
        letter-spacing: -1.7px;
        margin: 0 0 20px;
    }

    .intl-title span {
        color: #ff5e14;
    }

    .intl-text {
        color: #667085;
        font-size: 14px;
        line-height: 1.85;
        margin: 0 0 28px;
        max-width: 610px;
    }


    /* FEATURES */

    .intl-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .intl-feature {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 13px 14px;
        background: #ffffff;
        border: 1px solid #eaecf0;
        border-radius: 10px;
        transition: .3s;
    }

    .intl-feature:hover {
        transform: translateY(-3px);
        border-color: #ffd2c0;
        box-shadow: 0 10px 25px rgba(16, 24, 40, .06);
    }

    .intl-feature-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        background: #fff1eb;
        color: #ff5e14;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
    }

    .intl-feature strong {
        display: block;
        color: #101828;
        font-size: 11px;
        margin-bottom: 3px;
    }

    .intl-feature small {
        color: #98a2b3;
        font-size: 9px;
    }


    /* BUTTON */

    .intl-btn {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: #ff5e14;
        color: #fff;
        text-decoration: none;
        padding: 14px 22px;
        border-radius: 9px;
        font-size: 13px;
        font-weight: 800;
        box-shadow: 0 10px 25px rgba(255, 94, 20, .18);
        transition: .3s;
    }

    .intl-btn:hover {
        background: #e94d08;
        color: #fff;
        transform: translateY(-2px);
    }


    /* RIGHT VISUAL */

    .intl-visual {
        min-height: 470px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }


    /* MAIN CARD */

    .intl-main-card {
        width: 370px;
        min-height: 370px;
        background: #fff;
        border: 1px solid #eaecf0;
        border-radius: 28px;
        box-shadow: 0 25px 60px rgba(16, 24, 40, .08);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .intl-main-card::before {
        content: "";
        position: absolute;
        width: 310px;
        height: 310px;
        border: 1px dashed #ffd7c7;
        border-radius: 50%;
    }

    .intl-main-card::after {
        content: "";
        position: absolute;
        width: 230px;
        height: 230px;
        border: 1px solid #ffe8df;
        border-radius: 50%;
    }


    /* GLOBE */

    .intl-globe {
        width: 115px;
        height: 115px;
        background: #fff1eb;
        border: 8px solid #fff8f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 55px;
        position: relative;
        z-index: 3;
        box-shadow: 0 15px 35px rgba(255, 94, 20, .12);
    }

    .intl-main-title {
        position: relative;
        z-index: 3;
        color: #101828;
        font-size: 20px;
        font-weight: 850;
        margin: 22px 0 7px;
    }

    .intl-main-subtitle {
        position: relative;
        z-index: 3;
        color: #98a2b3;
        font-size: 11px;
        margin: 0;
    }


    /* FLOATING INFO */

    .intl-floating {
        position: absolute;
        background: #fff;
        border: 1px solid #eaecf0;
        border-radius: 12px;
        padding: 12px 14px;
        box-shadow: 0 12px 30px rgba(16, 24, 40, .09);
        display: flex;
        align-items: center;
        gap: 9px;
        z-index: 8;
    }

    .intl-floating.one {
        left: 0;
        top: 45px;
    }

    .intl-floating.two {
        right: -5px;
        top: 130px;
    }

    .intl-floating.three {
        left: 15px;
        bottom: 45px;
    }

    .floating-icon {
        width: 32px;
        height: 32px;
        background: #fff1eb;
        color: #ff5e14;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    .intl-floating strong {
        display: block;
        color: #101828;
        font-size: 10px;
    }

    .intl-floating small {
        display: block;
        color: #98a2b3;
        font-size: 8px;
        margin-top: 3px;
    }


    /* BOTTOM TRUST BAR */

    .intl-trust {
        margin-top: 65px;
        padding: 20px 10px;
        border-top: 1px solid #eaecf0;
        border-bottom: 1px solid #eaecf0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .intl-trust-item {
        text-align: center;
        border-right: 1px solid #eaecf0;
    }

    .intl-trust-item:last-child {
        border-right: 0;
    }

    .intl-trust-item strong {
        display: block;
        color: #101828;
        font-size: 15px;
        font-weight: 850;
        margin-bottom: 4px;
    }

    .intl-trust-item strong span {
        color: #ff5e14;
    }

    .intl-trust-item small {
        color: #98a2b3;
        font-size: 9px;
    }


    /* RESPONSIVE */

    @media(max-width: 991px) {

        .intl-clean {
            padding: 70px 0;
        }

        .intl-grid {
            grid-template-columns: 1fr;
            gap: 45px;
        }

        .intl-content {
            max-width: 100%;
            text-align: center;
            margin: auto;
        }

        .intl-text {
            margin-left: auto;
            margin-right: auto;
        }

        .intl-features {
            text-align: left;
        }

        .intl-visual {
            min-height: 450px;
        }
    }


    @media(max-width: 767px) {

        .intl-features {
            grid-template-columns: 1fr;
        }

        .intl-visual {
            min-height: 420px;
        }

        .intl-main-card {
            width: 320px;
            min-height: 340px;
        }

        .intl-floating.one {
            left: 0;
        }

        .intl-floating.two {
            right: 0;
        }

        .intl-trust {
            grid-template-columns: 1fr 1fr;
            gap: 18px 0;
        }

        .intl-trust-item:nth-child(2) {
            border-right: 0;
        }
    }


    @media(max-width: 480px) {

        .intl-title {
            font-size: 35px;
        }

        .intl-text {
            font-size: 13px;
        }

        .intl-btn {
            width: 100%;
            justify-content: center;
        }

        .intl-main-card {
            width: 270px;
            min-height: 300px;
        }

        .intl-main-card::before {
            width: 240px;
            height: 240px;
        }

        .intl-main-card::after {
            width: 180px;
            height: 180px;
        }

        .intl-globe {
            width: 90px;
            height: 90px;
            font-size: 42px;
        }

        .intl-floating {
            padding: 9px;
        }

        .intl-floating.one {
            left: -5px;
            top: 35px;
        }

        .intl-floating.two {
            right: -5px;
            top: 115px;
        }

        .intl-floating.three {
            left: -5px;
            bottom: 30px;
        }

        .intl-trust {
            grid-template-columns: 1fr;
        }

        .intl-trust-item {
            border-right: 0;
            border-bottom: 1px solid #eaecf0;
            padding: 10px;
        }

        .intl-trust-item:last-child {
            border-bottom: 0;
        }
    }/* =========================================
   ORANGE COURIER COLOR THEME
========================================= */

.reliable-courier-section {
    padding: 80px 20px;
    background: #f8fafc;
    font-family: Arial, Helvetica, sans-serif;
}

.courier-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 56% 44%;
    gap: 45px;
    align-items: center;
}


/* =========================================
   FORM CARD
========================================= */

.courier-form-card {
    background: #ffffff;
    padding: 28px 30px 30px;
    border-radius: 6px;
    box-shadow: 0 10px 35px rgba(23, 32, 51, 0.14);
    border: 1px solid #eceff3;
}

.courier-tabs {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 22px;
}

.courier-tab {
    border: 0;
    background: transparent;
    padding: 12px 18px;
    font-size: 15px;
    color: #172033;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.courier-tab.active {
    color: #f97316;
    border: 1px solid #e5e7eb;
    border-bottom: 2px solid #ffffff;
    margin-bottom: -1px;
    background: #ffffff;
    font-weight: 700;
}

.courier-tab:hover {
    color: #f97316;
}


/* =========================================
   FORM INTRO
========================================= */

.form-intro {
    margin-bottom: 38px;
}

.form-intro h4 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #ea580c;
    font-weight: 700;
}

.form-intro p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   FORM
========================================= */

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #172033;
    font-size: 13px;
    font-weight: 700;
}

.form-group select,
.form-group input {
    width: 100%;
    height: 43px;
    padding: 0 14px;
    border: 1px solid #d5d9de;
    border-radius: 4px;
    background: #ffffff;
    color: #555;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* =========================================
   MOBILE INPUT
========================================= */

.mobile-input {
    display: grid;
    grid-template-columns: 110px 1fr;
}

.mobile-input select {
    border-radius: 4px 0 0 4px;
}

.mobile-input input {
    border-radius: 0 4px 4px 0;
    border-left: 0;
}


/* =========================================
   ORANGE CTA BUTTON
========================================= */

.quote-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: linear-gradient(
        135deg,
        #f97316,
        #ea580c
    );
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 6px 15px rgba(234, 88, 12, 0.18);
}

.quote-btn span {
    position: absolute;
    right: 20px;
    font-size: 19px;
    transition: 0.3s ease;
}

.quote-btn:hover {
    background: linear-gradient(
        135deg,
        #ea580c,
        #c2410c
    );
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(234, 88, 12, 0.25);
}

.quote-btn:hover span {
    right: 15px;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.courier-content {
    padding: 10px 5px;
}

.content-label {
    display: inline-block;
    color: #ea580c;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.courier-content h2 {
    margin: 0;
    color: #172033;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.courier-content h2 span {
    display: block;
    color: #f97316;
}

.heading-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        #f97316,
        #fed7aa,
        transparent
    );
    margin: 22px 0;
}

.courier-content > p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.75;
    text-align: justify;
    margin: 0 0 15px;
}


/* =========================================
   FEATURES
========================================= */

.courier-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    gap: 13px;
    margin-bottom: 17px;
    align-items: flex-start;
}

.feature-icon {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #fed7aa;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.feature-item h4 {
    margin: 0 0 3px;
    color: #172033;
    font-size: 14px;
}

.feature-item p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================
   GOOGLE RATING
========================================= */

.courier-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.google-rating {
    min-width: 120px;
}

.google-rating strong {
    display: block;
    font-size: 25px;
    letter-spacing: -1px;
    color: #4285f4;
}

.stars {
    color: #f59e0b;
    font-size: 17px;
    letter-spacing: 1px;
}

.google-rating small {
    color: #777;
    font-size: 11px;
}

.rating-text {
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.rating-text p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .courier-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
    }

    .courier-content {
        padding: 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .reliable-courier-section {
        padding: 50px 15px;
    }

    .courier-form-card {
        padding: 20px 16px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .courier-content h2 {
        font-size: 24px;
    }

    .courier-content > p {
        text-align: left;
        font-size: 13px;
    }

    .courier-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .rating-text {
        border-left: 0;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 15px;
    }
}/* Font Awesome CDN Required */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-info-section{
    width: 100%;
    background: #f4f4f4;
    padding: 0 20px 50px;
}

.info-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.info-card{
    position: relative;
    background: #fff;
    text-align: center;
    padding: 70px 25px 30px;
    min-height: 235px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Orange Top Bar */
.info-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
    background: #ff8a00;
}

/* Icon Circle */
.info-icon{
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.info-icon i{
    font-size: 30px;
    color: #ff8a00;
}

.info-card h3{
    font-size: 19px;
    color: #c75a00;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: Georgia, serif;
}

.info-card p{
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Hover Effect */
.info-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,138,0,0.18);
}

.info-card:hover .info-icon{
    background: #ff8a00;
}

.info-card:hover .info-icon i{
    color: #fff;
}


/* Tablet */
@media(max-width: 992px){

    .info-container{
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */
@media(max-width: 576px){

    .contact-info-section{
        padding: 0 15px 35px;
    }

    .info-container{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card{
        min-height: 210px;
        padding: 65px 20px 25px;
    }

}/* Font Awesome CDN Required */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-info-section{
    width: 100%;
    background: #f4f4f4;
    padding: 0 20px 50px;
}

.info-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.info-card{
    position: relative;
    background: #fff;
    text-align: center;
    padding: 70px 25px 30px;
    min-height: 235px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Orange Top Bar */
.info-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
    background: #ff8a00;
}

/* Icon Circle */
.info-icon{
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.info-icon i{
    font-size: 30px;
    color: #ff8a00;
}

.info-card h3{
    font-size: 19px;
    color: #c75a00;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: Georgia, serif;
}

.info-card p{
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Hover Effect */
.info-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,138,0,0.18);
}

.info-card:hover .info-icon{
    background: #ff8a00;
}

.info-card:hover .info-icon i{
    color: #fff;
}


/* Tablet */
@media(max-width: 992px){

    .info-container{
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */
@media(max-width: 576px){

    .contact-info-section{
        padding: 0 15px 35px;
    }

    .info-container{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card{
        min-height: 210px;
        padding: 65px 20px 25px;
    }

}



/* =========================================================
   INTERNATIONAL COURIER PRICE SECTION
   COMPLETE CSS
========================================================= */

/* RESET FOR THIS SECTION */

.courier-price-sec,
.courier-price-sec * {
    box-sizing: border-box;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.courier-price-sec {
    width: 100%;
    padding: 80px 20px;
    background: #fff8f2;
    font-family: Arial, sans-serif;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.courier-price-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   TOP HEADING
========================================================= */

.courier-price-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.courier-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;

    color: #e86f12;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.courier-subtitle::before,
.courier-subtitle::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #e86f12;
}

.courier-price-heading h2 {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;

    color: #252525;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.courier-price-heading h2 span {
    color: #e86f12;
}

.courier-price-heading p {
    max-width: 750px;
    margin: 18px auto 0;

    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   COUNTRY GRID
========================================================= */

.courier-country-grid {
    width: 100%;
    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 25px;

    margin: 0;
    padding: 0;
}


/* =========================================================
   COUNTRY CARD
========================================================= */

.courier-country-card {
    position: relative;

    width: 100%;
    min-width: 0;

    padding: 32px 18px 28px;

    text-align: center;

    background: #ffffff;

    border-radius: 18px;

    overflow: hidden;

    isolation: isolate;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   INFINITE ANIMATED BORDER
========================================================= */

.border-animation {
    position: absolute;

    top: -50%;
    left: -50%;

    width: 200%;
    height: 200%;

    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 60deg,

        #e86f12 85deg,

        #ffb26b 115deg,

        #e86f12 145deg,

        transparent 175deg,

        transparent 360deg
    );

    animation: courierBorderRotate 3s linear infinite;

    z-index: -2;
}


/* WHITE INNER CARD */

.border-animation::before {
    content: "";

    position: absolute;

    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;

    background: #ffffff;

    border-radius: 15px;
}


/* =========================================================
   BORDER ROTATION
========================================================= */

@keyframes courierBorderRotate {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}


/* =========================================================
   CARD HOVER
========================================================= */

.courier-country-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(232, 111, 18, 0.18);
}


/* FAST BORDER ON HOVER */

.courier-country-card:hover .border-animation {

    animation-duration: 1.5s;
}


/* =========================================================
   FLAG CIRCLE
========================================================= */

.flag-circle {

    position: relative;

    width: 115px;
    height: 115px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff7f0;

    border: 4px solid #ffffff;

    box-shadow:
        0 8px 22px rgba(232, 111, 18, 0.13);

    font-size: 70px;

    line-height: 1;

    overflow: hidden;

    z-index: 1;
}


/* =========================================================
   COUNTRY NAME
========================================================= */

.courier-country-card h3 {

    position: relative;

    margin: 0 0 18px;

    color: #252525;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.4;

    min-height: 28px;

    z-index: 1;
}


/* =========================================================
   PRICE
========================================================= */

.courier-price {

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    white-space: nowrap;

    z-index: 1;
}


.courier-price strong {

    color: #e86f12;

    font-size: 25px;

    font-weight: 700;
}


.courier-price span {

    color: #666666;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================================
   DIVIDER LINE
========================================================= */

.card-line {

    position: relative;

    width: 75%;

    height: 1px;

    margin: 22px auto 15px;

    background: #e8e8e8;

    z-index: 1;
}


/* =========================================================
   BOTTOM TEXT
========================================================= */

.courier-country-card p {

    position: relative;

    margin: 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.6;

    z-index: 1;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media screen and (max-width: 1300px) {

    .courier-country-grid {

        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap: 18px;
    }


    .courier-country-card {

        padding:
            30px 14px 25px;
    }


    .flag-circle {

        width: 105px;
        height: 105px;

        font-size: 62px;
    }


    .courier-country-card h3 {

        font-size: 18px;
    }


    .courier-price strong {

        font-size: 22px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media screen and (max-width: 1100px) {

    .courier-country-grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 20px;
    }


    .courier-price-heading h2 {

        font-size: 36px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

    .courier-price-sec {

        padding:
            65px 20px;
    }


    .courier-country-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 18px;
    }


    .courier-price-heading {

        margin-bottom: 40px;
    }


    .courier-price-heading h2 {

        font-size: 32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 767px) {

    .courier-price-sec {

        padding:
            55px 15px;
    }


    .courier-price-heading {

        margin-bottom: 35px;
    }


    .courier-subtitle {

        font-size: 11px;

        letter-spacing: 2px;

        gap: 8px;
    }


    .courier-subtitle::before,
    .courier-subtitle::after {

        width: 25px;
    }


    .courier-price-heading h2 {

        font-size: 27px;

        line-height: 1.35;
    }


    .courier-price-heading p {

        margin-top: 14px;

        font-size: 14px;

        line-height: 1.7;
    }


    .courier-country-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }


    .courier-country-card {

        padding:
            25px 10px 20px;

        border-radius: 14px;
    }


    .flag-circle {

        width: 88px;
        height: 88px;

        margin-bottom: 16px;

        font-size: 52px;
    }


    .courier-country-card h3 {

        margin-bottom: 14px;

        font-size: 16px;

        min-height: auto;
    }


    .courier-price {

        flex-direction: column;

        gap: 2px;
    }


    .courier-price strong {

        font-size: 21px;
    }


    .courier-price span {

        font-size: 11px;
    }


    .card-line {

        width: 80%;

        margin:
            15px auto 12px;
    }


    .courier-country-card p {

        font-size: 11px;

        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .courier-price-heading h2 {

        font-size: 24px;
    }


    .courier-country-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .courier-country-card {

        padding:
            30px 20px 25px;
    }


    .flag-circle {

        width: 105px;
        height: 105px;

        font-size: 64px;
    }


    .courier-country-card h3 {

        font-size: 19px;
    }


    .courier-price {

        flex-direction: row;
    }


    .courier-price strong {

        font-size: 24px;
    }


    .courier-price span {

        font-size: 13px;
    }


    .courier-country-card p {

        font-size: 13px;
    }

}/* =========================================================
   COURIER FOOTER
========================================================= */

.courier-footer,
.courier-footer * {
    box-sizing: border-box;
}

.courier-footer {
    width: 100%;
    font-family: Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.courier-footer-top {
    position: relative;
    padding: 75px 20px 65px;
    background: #1f1f1f;
}

.courier-footer-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg,
        #e86f12,
        #ff9a3d,
        #e86f12
    );
}


/* =========================================================
   CONTAINER
========================================================= */

.courier-footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.courier-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e86f12;
    color: #ffffff;
    font-size: 24px;
}

.footer-logo strong {
    display: block;
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-logo small {
    display: block;
    margin-top: 4px;
    color: #e86f12;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.footer-about p {
    margin: 0;
    color: #b9b9b9;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   FOOTER TITLE
========================================================= */

.footer-widget h3 {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 5px;
    background: #e86f12;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b9b9b9;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a i {
    color: #e86f12;
    font-size: 12px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.footer-links a:hover i {
    color: #ff9a3d;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4a4a4a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e86f12;
    border-color: #e86f12;
    transform: translateY(-5px);
}


/* =========================================================
   CONTACT INFO
========================================================= */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(232, 111, 18, 0.12);
    color: #e86f12;
    font-size: 17px;
}

.footer-contact-item p {
    margin: 0;
    padding-top: 2px;
    color: #b9b9b9;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact-item a {
    color: #b9b9b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #e86f12;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.courier-footer-bottom {
    padding: 20px;
    background: #151515;
    border-top: 1px solid #303030;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-flex p {
    margin: 0;
    color: #9b9b9b;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-bottom-links a {
    color: #9b9b9b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e86f12;
}

.footer-bottom-links span {
    width: 1px;
    height: 16px;
    background: #555555;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1100px) {

    .courier-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .courier-footer-top {
        padding: 55px 15px 50px;
    }

    .courier-footer-bottom {
        padding: 20px 15px;
    }

    .courier-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-logo strong {
        font-size: 21px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

}



/* =========================================
   ABOUT US BREADCRUMB
========================================= */

.about-breadcrumb,
.about-breadcrumb * {
    box-sizing: border-box;
}

.about-breadcrumb {
    position: relative;
    width: 100%;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;

    background:
        linear-gradient(
            135deg,
            #1d1d1d,
            #2a211b,
            #1d1d1d
        );

    overflow: hidden;
}


/* Orange Glow */

.about-breadcrumb::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -250px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(232, 111, 18, 0.25),
            transparent 70%
        );
}


/* Bottom Decorative Circle */

.about-breadcrumb::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -250px;
    left: -80px;

    border: 2px solid rgba(232, 111, 18, 0.15);

    border-radius: 50%;
}


/* Overlay */

.about-breadcrumb-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15),
            transparent,
            rgba(232, 111, 18, 0.08)
        );
}


/* Container */

.about-breadcrumb-container {
    position: relative;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    text-align: center;

    z-index: 2;
}


/* Content */

.about-breadcrumb-content {
    position: relative;
}


/* Small Tag */

.breadcrumb-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 18px;

    margin-bottom: 18px;

    border-radius: 50px;

    color: #ffffff;

    background: rgba(232, 111, 18, 0.15);

    border: 1px solid rgba(232, 111, 18, 0.4);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.breadcrumb-tag i {
    color: #e86f12;
}


/* Main Heading */

.about-breadcrumb h1 {
    margin: 0;

    color: #ffffff;

    font-size: 52px;

    font-weight: 700;

    line-height: 1.2;
}

.about-breadcrumb h1 span {
    color: #e86f12;
}


/* Navigation Box */

.breadcrumb-nav {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 25px;

    padding: 12px 22px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50px;

    backdrop-filter: blur(5px);
}


/* Home Link */

.breadcrumb-nav a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ffffff;

    font-size: 14px;

    text-decoration: none;

    transition: 0.3s ease;
}

.breadcrumb-nav a i {
    color: #e86f12;
}

.breadcrumb-nav a:hover {
    color: #e86f12;
}


/* Arrow */

.breadcrumb-arrow {
    color: #e86f12;

    font-size: 13px;
}


/* Active Page */

.active-page {
    color: #c7c7c7;

    font-size: 14px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .about-breadcrumb {
        min-height: 260px;
        padding: 60px 15px;
    }

    .about-breadcrumb h1 {
        font-size: 38px;
    }

    .breadcrumb-tag {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 8px 14px;
    }

    .breadcrumb-nav {
        margin-top: 20px;
        padding: 10px 18px;
    }

}


@media (max-width: 480px) {

    .about-breadcrumb h1 {
        font-size: 32px;
    }

    .breadcrumb-nav {
        gap: 8px;
        padding: 9px 15px;
    }

    .breadcrumb-nav a,
    .active-page {
        font-size: 12px;
    }

}/* =========================================
   ABOUT US SECTION
========================================= */

.about-us-section,
.about-us-section * {
    box-sizing: border-box;
}

.about-us-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.about-us-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}


/* =========================================
   MAIN GRID
========================================= */

.about-us-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-small-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;

    color: #e86f12;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-small-title i {
    font-size: 16px;
}


.about-us-content h2 {
    max-width: 700px;
    margin: 0 0 22px;

    color: #222222;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
}

.about-us-content h2 span {
    display: block;
    color: #e86f12;
}


.about-us-content > p {
    margin: 0 0 16px;
    color: #666666;
    font-size: 16px;
    line-height: 1.9;
}


/* =========================================
   FEATURES
========================================= */

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 35px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #e86f12;
    background: #fff3e8;

    font-size: 20px;

    transition: 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
    color: #ffffff;
    background: #e86f12;
    transform: rotateY(180deg);
}

.about-feature-item h4 {
    margin: 2px 0 6px;
    color: #222222;
    font-size: 17px;
}

.about-feature-item p {
    margin: 0;
    color: #777777;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   BUTTON
========================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 40px;
    padding: 15px 28px;

    border-radius: 8px;

    background: #e86f12;
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(232, 111, 18, 0.25);

    transition: 0.3s ease;
}

.about-btn:hover {
    background: #222222;
    color: #ffffff;
    transform: translateY(-4px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.about-visual {
    position: relative;
    width: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Background Circle */

.about-visual::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: #fff3e8;

    z-index: 0;
}


/* =========================================
   MAIN CARD
========================================= */

.about-main-card {
    position: relative;
    z-index: 2;

    width: 330px;

    padding: 55px 35px;

    text-align: center;

    background: #222222;

    border-radius: 25px;

    color: #ffffff;

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);

    overflow: hidden;
}

.about-main-card::before {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background: rgba(232, 111, 18, 0.2);
}

.about-main-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    bottom: -60px;
    left: -60px;

    border-radius: 50%;

    background: #e86f12;
    opacity: 0.8;
}


.about-main-icon {
    position: relative;
    z-index: 2;

    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e86f12;

    font-size: 32px;

    box-shadow: 0 10px 25px rgba(232, 111, 18, 0.4);
}

.about-main-card span {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 12px;

    color: #e86f12;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.about-main-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 28px;

    line-height: 1.3;
}

.about-main-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #c4c4c4;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.about-experience-card {
    position: absolute;

    top: 45px;
    right: 0;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px 22px;

    border-radius: 15px;

    background: #ffffff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-experience-card strong {
    color: #e86f12;

    font-size: 32px;

    line-height: 1;
}

.about-experience-card span {
    color: #444444;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================
   GLOBAL NETWORK CARD
========================================= */

.about-country-card {
    position: absolute;

    bottom: 55px;
    left: 0;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 16px 22px;

    border-radius: 15px;

    background: #ffffff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-country-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    background: #e86f12;

    font-size: 20px;
}

.about-country-card strong {
    display: block;

    color: #222222;

    font-size: 15px;

    margin-bottom: 4px;
}

.about-country-card span {
    display: block;

    color: #777777;

    font-size: 12px;
}


/* =========================================
   DECORATIVE DOTS
========================================= */

.about-dots {
    position: absolute;

    width: 90px;
    height: 90px;

    opacity: 0.6;

    background-image:
        radial-gradient(
            #e86f12 2px,
            transparent 2px
        );

    background-size: 14px 14px;
}

.about-dots-one {
    top: 40px;
    left: 30px;
}

.about-dots-two {
    bottom: 20px;
    right: 20px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 1100px) {

    .about-us-grid {
        gap: 40px;
    }

    .about-us-content h2 {
        font-size: 38px;
    }

}


@media screen and (max-width: 900px) {

    .about-us-section {
        padding: 80px 20px;
    }

    .about-us-grid {
        grid-template-columns: 1fr;
    }

    .about-us-content {
        max-width: 750px;
        margin: 0 auto;
    }

    .about-visual {
        max-width: 650px;
        margin: 20px auto 0;
    }

}


@media screen and (max-width: 767px) {

    .about-us-section {
        padding: 60px 15px;
    }

    .about-us-content h2 {
        font-size: 30px;
    }

    .about-us-content > p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-visual {
        min-height: 480px;
    }

    .about-visual::before {
        width: 330px;
        height: 330px;
    }

    .about-main-card {
        width: 280px;
        padding: 45px 25px;
    }

    .about-main-card h3 {
        font-size: 24px;
    }

    .about-experience-card {
        top: 25px;
        right: 0;
        padding: 14px;
    }

    .about-experience-card strong {
        font-size: 26px;
    }

    .about-country-card {
        bottom: 20px;
        left: 0;
        padding: 13px 15px;
    }

}


@media screen and (max-width: 480px) {

    .about-us-content h2 {
        font-size: 27px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    .about-visual {
        min-height: 450px;
    }

    .about-main-card {
        width: 250px;
        padding: 40px 20px;
    }

    .about-main-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .about-main-card h3 {
        font-size: 21px;
    }

    .about-experience-card {
        right: -5px;
    }

    .about-country-card {
        left: -5px;
    }

    .about-experience-card span,
    .about-country-card span {
        font-size: 10px;
    }

}