
/* ================= GLOBAL ================= */
h1, h2, h3, h4, h5, h6 {
    font-family: Lora !important;
}
p, li {
    font-family: Roboto !important;
}

/* ================= TOP BAR ================= */
.gl-top-bar {
    background: #0d47a1;
    color: #fff;
    padding: 6px 60px;
    font-size: 14px;
}

.gl-top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.gl-top-bar .top-left a {
    border-right: 2px solid #fff;
    padding-right: 5px;
}

/* ❌ last link no border */
.gl-top-bar a:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.gl-top-bar .top-right a {
    margin-left: 12px;
}
/* remove bootstrap default caret */
.has-submenu > .nav-link::after {
    display: none !important;
}

/* arrow on right */
.menu-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #052d6b;
}

/* rotate arrow when open */
.dropdown.show .menu-arrow {
    transform: rotate(180deg);
}

/* dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
/* ================= HEADER ================= */
.gl-header {
    position: fixed; /* NOT STICKY */
    width: 100%;
    background: #fff;
    padding: 12px 60px;
    border-bottom: 1px solid #eee;
    z-index: 10;
	background-color:#015A66;
}

.header-logo img {
    width: 160px;
}

/* ================= NAV ================= */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-nav .nav-link {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    padding: 8px 18px;
}

.navbar-nav .nav-link:hover {
    color: #C9972A;
}

/* remove bootstrap caret */
.dropdown-toggle::after {
    display: none;
}

/* desktop hover dropdown */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    padding: 0px;
}
.dropdown-menu li {
        border-bottom: 1px solid #005a65;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #005a65;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #C9972A;
    color: #ffffff;
}
/* ================= TOGGLER ================= */
.navbar-toggler {
    border: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    display: block;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.toggler-icon::before { top: -7px; }
.toggler-icon::after { top: 7px; }

/* close icon */
.navbar-toggler:not(.collapsed) .toggler-icon {
    background: transparent;
}

.navbar-toggler:not(.collapsed) .toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler:not(.collapsed) .toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ================= MOBILE OVERLAY ================= */
@media (max-width: 991px) {

        .navbar-collapse {
			position: absolute;
			top: 100%;
			width: 220px;
			height: auto;
			background: #005a65;
			padding: 0px 0px;
			overflow-y: auto;
			z-index: 999;
			right: 0;
		}
		li.nav-item {
    width: 100%;
}

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

        .navbar-nav .nav-link {
        width: 100%;
        padding: 8px 10px;
        font-size: 16px;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }
	.dropdown-menu a {
    display: block;
    padding: 10px 10px;
    color: #005a65;
    text-decoration: none;
    font-size: 14px;
}
	ul.dropdown-menu.show {
    margin: 0;
    padding: 0;
}
	.header-logo img {
    width: 100px;
}
.gl-top-bar .top-left a {
    padding-right: 4px;
    font-size: 12px;
}
.gl-top-bar {
    padding: 6px 0px;
}
.gl-header {
    padding: 12px 0px;
}
}
@media (min-width: 768px) {
.container, .container-md, .container-sm {
    max-width: 100% !important;
}
}

@media (max-width: 575px) {
.gl-top-bar .top-left a.location-call {
    display: none;
}
.gl-top-bar .top-left a {
    border-right: none;
}
.gl-top-bar .top-right a {
    margin-left: 7px;
}
}
