.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85%;
}

.logo img {
    height: 70px;
    width: 70px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-left: auto;
    width: 65%;
}

.nav-links li {
    margin-right: 2%;
}

.nav-links li a {
    text-decoration: none;
    color: #0d3b66;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 23px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ef8522;
    text-decoration: underline;
}

.book-now-btn {
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: #b7b4b4 2px 1px 3px 1px;
    text-align: center;
}

.book-now-btn:hover {
    background-color: #e67e22;
}

.book-now-btn a {
    text-decoration: none;
    color: #fff;
}

.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    width: 420px;
    position: relative;
    text-align: center;
    padding-right: 40px;
}

.form-container h2 {
    margin-bottom: 15px;
    color: #ff8c00;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: red;
}

.form-container label {
    display: block;
    text-align: left;
    margin-top: 12px;
    font-weight: bold;
    color: #0d3b66;
}

.form-container input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #e67e22;
}

#confirmationPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.confirmation-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    width: 350px;
    text-align: center;
}

.confirmation-container h2 {
    color: #28a745;
}

.confirmation-container p {
    font-size: 16px;
    margin-top: 10px;
}

#confirmationPopup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: red;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: white;
        width: 200px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 425px){
    .logo img{
        height: 78px;
        width: 95px;
    }
    .navbar .container a{
        margin-right: 30%;
    }
    .container{
        width: 90%;
    }
}