/* ================= TOP BAR ================= */
:root {
    --primary: #0066CC;
    --primary-dark: #003366;
    --secondary: #00C6FF;
    --light-bg: #f4f8fc;
    --white: #ffffff;
    --dark: #111111;
    --text: #444444;
}
a {
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar strong {
    color: white;
}

.contact-highlight {
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 600;
}

.contact-highlight:hover {
    background: var(--secondary);
    color: white;
}

/* ================= NAVBAR ================= */

.navbar {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 45px;
}

.nav-link {
    font-weight: 600;
    margin-left: 25px;
    color: var(--dark) !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}
/* ================= FOOTER ================= */

.main-footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 0;
}

.main-footer h5 {
    margin-bottom: 20px;
    font-weight: 700;
    color: #cceeff;
}

.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer ul li a {
    color: white;
    font-size: 14px;
}

.main-footer ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    background: #001933;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 14px;
}