:root {
    --navy: #0b1f3a;
    --navy2: #07172b;
    --blue: #1266f1;
    --blue2: #0752d5;
    --sky: #eaf3ff;
    --text: #172033;
    --muted: #667085;
    --light: #f7f9fc;
    --border: #e5eaf1;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: var(--navy);
    color: #dce8f8;
    font-size: 13px;
}

.topbar a {
    color: #fff;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    background: #fff;
    box-shadow: 0 5px 25px rgba(11, 31, 58, 0.08);
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    color: var(--navy);
    line-height: 0.9;
    letter-spacing: -0.6px;
}

/*--------------------------------------*/
.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.brand-mark {
    width: 150px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Override old circular logo styling */
    border: 0 !important;
    border-radius: 0 !important;

    margin-right: 10px;

    background: transparent;

    overflow: hidden;
}

.brand-mark img {
    width: 120px !important;
    height: auto !important;

    max-width: 100%;
    max-height: 58px;

    object-fit: contain;
    object-position: center;

    display: block;
}
/*--------------------------------------*/


.navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 700;
    color: #24344d;
    padding: 26px 12px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--blue);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-main {
    background: var(--blue);
    border: 0;
    color: #fff;

    font-weight: 700;

    border-radius: 7px;
    padding: 12px 20px;
}

.btn-main:hover {
    background: var(--blue2);
    color: #fff;
}

.btn-outline-main {
    border: 1px solid var(--navy);
    color: var(--navy);

    font-weight: 700;

    border-radius: 7px;
    padding: 11px 20px;
}

.btn-outline-main:hover {
    background: var(--navy);
    color: #fff;
}


/* =========================================================
   HOME HERO
========================================================= */

.hero {
    min-height: 570px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 255, 255, 0.86) 42%,
            rgba(255, 255, 255, 0.12)
        ),
        url("images/homepage_banner.avif")
        center / cover;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;

    line-height: 1.04;
    letter-spacing: -2.5px;

    color: var(--navy);
}

.hero h1 span,
.section-title span {
    color: var(--blue);
}

.hero p {
    font-size: 17px;
    line-height: 1.75;

    color: #526176;

    max-width: 620px;
}

.eyebrow,
.section-label {
    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    font-weight: 800;

    color: var(--blue);

    margin-bottom: 10px;
}

.hero-actions {
    display: flex;
    gap: 12px;

    flex-wrap: wrap;

    margin-top: 25px;
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    padding: 105px 0 90px;

    background:
        linear-gradient(
            100deg,
            rgba(7, 23, 43, 0.95),
            rgba(7, 23, 43, 0.72)
        ),
        url("images/page_banners.avif")
        center / cover;

    color: #fff;
}

.page-hero h1 {
    font-size: clamp(40px, 5vw, 58px);

    font-weight: 800;

    letter-spacing: -2px;
}

.page-hero p {
    color: #d5dfed;

    max-width: 720px;

    line-height: 1.8;
}


/* =========================================================
   SECTIONS
========================================================= */

section {
    padding: 90px 0;
}

.section-title {
    font-size: clamp(30px, 3vw, 43px);

    font-weight: 800;

    letter-spacing: -1.4px;

    color: var(--navy);
}

.section-text {
    color: var(--muted);
    line-height: 1.8;
}


/* =========================================================
   IMAGES
========================================================= */

.about-img {
    width: 100%;
    height: 390px;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: 0 20px 45px rgba(11, 31, 58, 0.14);
}


/* =========================================================
   MODERN CARDS
========================================================= */

.card-modern {
    height: 100%;

    border: 1px solid var(--border);
    border-radius: 15px;

    padding: 28px;

    background: #fff;

    transition: 0.25s;
}

.card-modern:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(18, 102, 241, 0.1);

    border-color: #c9dcff;
}


/* =========================================================
   ICON BOX
========================================================= */

.icon-box {
    width: 56px;
    height: 56px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--sky);

    color: var(--blue);

    font-size: 24px;

    margin-bottom: 17px;
}

.card-modern h4,
.card-modern h5 {
    font-weight: 800;
    color: var(--navy);
}

.card-modern p {
    font-size: 14px;

    line-height: 1.7;

    color: var(--muted);
}


/* =========================================================
   CHECK LIST
========================================================= */

.list-check {
    list-style: none;

    padding: 0;
}

.list-check li {
    display: flex;

    gap: 10px;

    margin: 11px 0;

    color: #536075;

    line-height: 1.55;
}

.list-check i {
    color: var(--blue);
}


/* =========================================================
   SERVICE INTRO
========================================================= */

.service-intro {
    background: var(--light);
}

.service-number {
    font-size: 12px;

    font-weight: 800;

    color: var(--blue);

    letter-spacing: 1px;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.service-list {
    list-style: none;

    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 10px 0;

    border-bottom: 1px solid var(--border);

    color: #536075;
}

.service-list li::before {
    content: "✓";

    color: var(--blue);

    font-weight: 800;

    margin-right: 10px;
}


/* =========================================================
   VALUES
========================================================= */

.value-card {
    text-align: center;
}

.value-card .icon-box {
    margin: 0 auto 18px;
}

.value-card h5 {
    font-size: 15px;
}

.value-card p {
    font-size: 12px;
}


/* =========================================================
   CLIENTS
========================================================= */

.client-group {
    height: 100%;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 28px;
}

.client-group h4 {
    font-size: 17px;

    font-weight: 800;

    color: var(--navy);

    margin-bottom: 18px;
}

.client-name {
    padding: 10px 0;

    border-bottom: 1px solid #edf0f5;

    color: #526176;

    font-weight: 600;

    font-size: 14px;
}

.client-name:last-child {
    border-bottom: 0;
}


/* =========================================================
   ACHIEVEMENTS
========================================================= */

.achievement {
    display: flex;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);
}

.achievement:last-child {
    border-bottom: 0;
}

.achievement-no {
    min-width: 52px;
    height: 52px;

    border-radius: 50%;

    background: var(--blue);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.achievement h4 {
    font-size: 17px;

    font-weight: 800;

    color: var(--navy);

    margin-bottom: 7px;
}

.achievement p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-card {
    height: 100%;

    border: 1px solid var(--border);

    border-radius: 15px;

    padding: 25px;

    background: #fff;
}

.contact-icon {
    width: 46px;
    height: 46px;

    border-radius: 10px;

    background: var(--sky);

    color: var(--blue);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;

    margin-bottom: 13px;
}

.contact-card h5 {
    font-weight: 800;

    color: var(--navy);

    font-size: 16px;
}

.contact-card p,
.contact-card a {
    font-size: 14px;

    color: var(--muted);

    line-height: 1.7;
}


/* =========================================================
   MAP
========================================================= */

.map-box {
    min-height: 360px;

    border-radius: 18px;

    background:
        linear-gradient(
            rgba(11, 31, 58, 0.08),
            rgba(11, 31, 58, 0.08)
        ),
        url("images/contact.avif")
        center / cover;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   CALL TO ACTION
========================================================= */

.cta {
    background: var(--navy);

    color: #fff;

    padding: 60px 0;
}

.cta h2 {
    font-size: 38px;

    font-weight: 800;
}

.cta p {
    color: #c6d3e4;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #061a33;

    color: #aebed2;

    padding: 60px 0 18px;
}

footer h6 {
    color: #fff;

    font-weight: 800;

    margin-bottom: 18px;
}

footer p,
footer li,
footer a {
    font-size: 13px;

    line-height: 1.8;

    color: #aebed2;
}

footer a:hover {
    color: #fff;
}

footer ul {
    list-style: none;

    padding: 0;
}

.footer-brand {
    font-size: 21px;

    font-weight: 800;

    color: #fff;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.social {
    width: 35px;
    height: 35px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: #fff;

    margin-right: 4px;
}

.social:hover {
    background: var(--blue);

    border-color: var(--blue);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    margin-top: 38px;

    padding-top: 18px;

    font-size: 12px;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #20c76b;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;

    z-index: 1100;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp:hover {
    color: #fff;

    transform: scale(1.05);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .hero {
        min-height: 620px;
    }

    .page-hero {
        padding: 80px 0;
    }

    .navbar .btn-main {
        margin-top: 10px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .brand-mark {
        width: 125px;
        height: 52px;
        margin-right: 5px;
    }

    .brand-mark img {
        width: 105px !important;
        max-height: 50px;
    }



    section {
        padding: 65px 0;
    }

    .topbar .email-top {
        display: none;
    }

    .hero {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.96),
                rgba(255, 255, 255, 0.75)
            ),
            url("images/Logistics-1.avif")
            center / cover;
    }

    .hero h1 {
        letter-spacing: -1.7px;
    }

    .about-img {
        height: 300px;
    }

    .page-hero {
        padding: 70px 0;
    }

    .page-hero h1 {
        letter-spacing: -1px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .whatsapp {
        width: 50px;
        height: 50px;

        right: 15px;
        bottom: 15px;
    }
}