* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
}

/* CONTAINER */
.container {
    width: 90%;
    margin: auto;
}

/* HEADER */
.header {
    background: linear-gradient(90deg, #8b0000, #ffb300);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* FLEX */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO + NAME ===== */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO */
.logo-area img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* COMPANY TEXT */
.company-name h2 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.company-name span {
    font-size: 11px;
    color: #f1f1f1;
}

/* NAVBAR */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* hover underline */
.navbar ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #fff;
    transition: 0.3s;
}

.navbar ul li a:hover::after {
    width: 100%;
}

/* CONTACT BUTTON */
.btn-contact {
    background: #000;
    padding: 8px 18px;
    border-radius: 25px;
    color: #fff !important;
    transition: 0.3s;
}

.btn-contact:hover {
    background: #fff;
    color: #8b0000 !important;
}

/* MOBILE MENU ICON */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #8b0000;
        display: none;
        flex-direction: column;
        padding: 20px;
    }

    .navbar.active {
        display: flex;
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-area img {
        height: 38px;
    }

    .company-name h2 {
        font-size: 14px;
    }

    .company-name span {
        font-size: 10px;
    }
}

.logo-area img {
    height: 45px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
}