.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #fff;
    color: #fff;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f5545a;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    min-width: 260px;
    padding: 10px 0;
    border-radius: 5px;
    z-index: 4;
}

.dropdown-menu li {
    padding: 5px 10px;
    list-style-type: none;
}

.dropdown-menu li a {
    font-size: 14px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Button */
.btn {
    background: #f5545a;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: #000000;
}


/* logo */
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: auto;
    width: 80px;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {

    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        display: none;
        z-index: 10;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background: #f3e3e4;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .btn {
        display: none;
    }
}

/*extra */

#submitBtn {
    position: relative;
    padding: 12px 20px;
    background: #0b6b6b;
    color: #fff;
    border: none;
    cursor: pointer;
}

.loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}