* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: white;
    color: black;
    line-height: 1.7;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ================= NAVBAR ================= */

.custom-navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.custom-navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navbar-brand {
    position: absolute;
    left: 0;
}

.main-logo {
    width: 170px;
    height: 68px;

}

.navbar-nav {
    margin: 0 auto;
    gap: 25px;
    text-align: center;
}

.nav-link {
    color: #222 !important;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background: #0d6efd;
    color: #fff;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: none;
}

/* ================= FOOTER ================= */

.footer-section {
    background: #0B1F3A;
    /* dark navy (professional logistics feel) */
    color: #ffffff;
    padding: 70px 0 0;
}

/* ================= COLUMN ================= */
.footer-col h5 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

/* underline accent */
.footer-col h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #1ABC9C;
    /* accent color */
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* ================= LINKS ================= */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cfd8e3;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #1ABC9C;
    padding-left: 6px;
}

/* ================= TEXT ================= */
.footer-col p {
    color: #cfd8e3;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
    background: #08182E;
    text-align: center;
    padding: 18px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #cfd8e3;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .custom-navbar .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .navbar-brand {
        position: static;
        margin-bottom: 10px;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        text-align: center;
    }

    .main-logo {
        width: 140px;
        height: auto;
    }
}

@media (max-width: 768px) {

    /* NAVBAR */
    .custom-navbar {
        padding: 10px 0;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 0;
    }

    /* FOOTER */
    .footer-section {
        text-align: center;
        padding: 50px 15px 0;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .footer-col h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {

    .main-logo {
        width: 120px;
    }

    .footer-col h5 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}