/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

/* ===== CONTAINER ===== */
.custom-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOPBAR ================= */
/* .topbar {
    background: #0a7af1;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.divider {
    margin: 0 10px;
    opacity: 0.6;
}

.social-link {
    color: #ffffff;
    transition: 0.3s;
}

.social-link:hover {
    color: #00b4d8;
} */

/* ================= NAVBAR ================= */

.main-navbar {
    background: #63c0e5;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: top 0.3s ease;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand-logo {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.menu-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.menu-link:hover {
    color: #5313de;
}

.call-btn {
    background: #00b4d8;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
}

/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: #63c0e5;
    list-style: none;
    min-width: 220px;
    display: none;
    padding: 10px 0;
}

.dropdown-list li {
    padding: 8px 15px;
}

.dropdown-list li a {
    color: #ffffff;
    text-decoration: none;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-list {
        display: block;
    }
}

/* ================= MOBILE ================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
}

@media (max-width: 991px) {

    .menu-toggle {
        display: flex;
    }

    .menu-area {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1b263b;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .menu-area.active {
        display: flex;
    }

    .menu-list {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .dropdown-list {
        position: static;
        width: 100%;
        display: none;
    }

    .dropdown.open .dropdown-list {
        display: block;
    }

    .call-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

/* ===== IMPORTANT: PAGE CONTENT SPACING ===== */
body::before {
    content: "";
    display: block;
    height: 110px; /* topbar + navbar height */
}