/* ===== 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;
}

/* ================= 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 */
}

/* ======================================
   RESPONSIVE SUPPORT (NO DESIGN CHANGE)
====================================== */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* Large Screens */
@media (min-width: 1400px) {
    .custom-container {
        max-width: 1300px;
    }
}

/* Laptop (1200px and below) */
@media (max-width: 1200px) {
    .custom-container {
        width: 95%;
    }

    .menu-list {
        gap: 18px;
    }
}

/* Tablet (991px and below) */
@media (max-width: 991px) {

    .navbar-wrapper {
        padding: 12px 0;
    }

    .menu-area {
        right: 0;
    }

    .dropdown-list {
        background: #1b263b;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {

    .brand-logo {
        font-size: 18px;
    }

    .menu-link {
        font-size: 14px;
    }

    .call-btn {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    .brand-logo {
        font-size: 16px;
    }

    .menu-toggle span {
        width: 22px;
    }

    .menu-list {
        gap: 12px;
    }
}

/* 320px Devices */
@media (max-width: 360px) {

    .brand-logo {
        font-size: 15px;
    }

    .menu-link {
        font-size: 13px;
    }

    .call-btn {
        font-size: 12px;
        padding: 7px 12px;
    }
}