




/* =========================
   HEADER WRAPPER
========================= */
.header-wrapper {
    position: fixed; /* keep header on top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* higher than dropdowns */
}

/* =========================
   HEADER TOP BAR (CONTACT)
========================= */
.header-top {
    height: 40px;
    display: flex;
    align-items: center;
    background: #162849;
    color: #FFFFFF;
    font-size: 14px;
}

 
 /* =========================
    NAVIGATION ROW CUSTOM STYLES
========================= */
.navbar-custom {
    background-color: #008080;       /* Teal background */
    font-weight: bold;                /* Bold text */
    color: #162849;                   /* Dark text */
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link,
.navbar-custom .dropdown-item {
    color: #162849;                   /* Text color for brand, links, dropdown items */
    font-weight: bold;
}

.navbar-custom .dropdown-item {
    font-weight: normal;              /* Optional: normal weight for dropdown items if desired */
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .dropdown-item:hover {
    color: #004d4d;                   /* Slightly darker teal on hover */
}
 /* =========================
    HTML
========================= */

html {
    height: 100%;
}

/* Add spacing for body content to avoid being hidden behind fixed header */
body {
    padding-top: calc(40px + 56px); /* header-top height + navbar height */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Main public content wrapper */
.container {
    flex: 1;
}
/* =========================
   NAVBAR LINK STYLING
========================= */
.navbar .nav-link {
    font-weight: 500;
    color: #333;
}

.navbar .nav-link:hover {
    color: #008080;
}

/* =========================
   DESKTOP DROPDOWN HOVER
========================= */
@media(min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-toggle::after {
        transition: transform 0.2s ease;
    }

    .navbar .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* =========================
   MOBILE ADJUSTMENTS
========================= */
@media(max-width: 991.98px) {
    .hero-section {
        padding-top: 120px; /* adjusted for smaller screen */
    }

    .navbar .dropdown-toggle::after {
        transition: transform 0.2s ease;
    }

    .navbar .dropdown.show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}



/* =========================
   INDEX FOOTER
========================= */


/* Footer container */
.index-footer {
    width: 100%;
    background-color: #111;
    color: white;
    padding: 20px 0;
}

/* Inner container uses flex */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* Mobile: stack items vertically */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

