/* ================= HEADER ================= */

#main-header {
    font-family: inherit;
}

/* TOP BAR */
#main-header .header-top {
    background: #07294d;
    color: #fff;
    padding: 8px 0;
}

#main-header .top-contact {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

#main-header .top-social a {
    color: #fff;
    margin-left: 10px;
}

/* NAVBAR */
#main-header .nav-bar {
    background: #fff;
    padding: 15px 0;
}

#main-header .nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

#main-header .nav-menu li {
    list-style: none;
}

#main-header .nav-menu li a {
    color: #07294d;
    font-weight: 600;
    text-decoration: none;
}

#main-header .nav-menu li a:hover {
    color: #ffc600;
}

/* CTA BUTTON */
#main-header .cta-btn a {
    background: #ffc600;
    padding: 10px 20px;
    border-radius: 8px;
    color: #000 !important;
}


/* ================= HERO ================= */

/* HERO FIX */
#hero {
    background: url('/images/hero.jpg') center/cover no-repeat;
    padding: 120px 0;
    position: relative;
}

/* DARK OVERLAY */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7,41,77,0.75);
}

/* CONTENT ABOVE OVERLAY */
#hero .container {
    position: relative;
    z-index: 2;
}

/* 🔥 TEXT COLOR FIX */
#hero,
#hero h1,
#hero p,
#hero span {
    color: #fff !important;
}