*{
    margin: 0px;
    padding: 0%;
}



.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
}

.whatsapp-float i {
    font-size: 28px;
}

.wa-text {
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.07);
}


/* button styling */
.book-now-btn {
    background: linear-gradient(to bottom, black, #0a1a33); 
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.4); 
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.book-now-btn:hover {
    background: linear-gradient(to bottom, #4a4a4a, #8b5e34);
    box-shadow: 0 6px 8px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 5px rgba(0,0,0,0.4);
}


#top-navbar {
    width: 100%;
    height: 10vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 10%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    z-index: 999;
}

#top-navbar.scrolled {
    background-color: white; 
    box-shadow: 0 2px 5px rgb(162, 161, 161);
}
.container-fluid{
    margin-bottom: 5%;
}


.logo {
    margin-left: 100px;
    height:30px;
}

.nav-link-custom {
    color: navy !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link-custom:hover {
    color: brown !important;
}


.dropdown-custom {
    background-color: navy;
}

.dropdown-custom .dropdown-item {
    color: black;
}

.dropdown-custom .dropdown-item:hover {
    background-color: rgb(215, 215, 215);
    color: black;
}


.login-btn {
    background-color: transparent;
    color: rgb(11, 11, 11);
    border: 2px solid rgb(12, 12, 12);
    border-radius: 25px;
    padding: 8px 18px;
    transition: 0.3s;
    text-decoration: none;
}

.login-btn:hover {
    background-color: white;
    color: navy;
}
.nav-btn {
    background-color: white;
    border-radius: 5px;
}




 /* contact-section */
.contact-section {
            background: #fff;
            border-radius: 20px;
            max-width: 900px;
            margin: 100px auto;
            box-shadow: 0 5px 25px rgba(0, 0, 0, .15);
            border-top: 6px solid #8b5e34;
            padding: 24px;
        }

        .contact-title {
            font-weight: 700;
            color: #0a1a33;
        }

        .contact-subtitle {
            color: #555;
            margin-bottom: 18px;
        }

        .form-control,
        .form-select {
            background: #eef4ff;
            border: 1px solid #ccd8ff;
            padding: 10px;
            font-size: 15px;
        }

        .form-control:focus,
        .form-select:focus {
            box-shadow: 0 0 0 2px #a7c1ff;
        }

        .input-group-text {
            background: #0a1a33;
            color: #fff;
        }

        .captcha-text {
            background: #0a1a33;
            color: #fff;
            padding: 8px 15px;
            font-size: 18px;
            border-radius: 6px;
            font-weight: 700;
            letter-spacing: 4px;
        }

        #captcha-result {
            font-weight: 700;
            font-size: 14px;
            margin-left: 6px;
        }

        .submit-btn {
            background: #8b5e34;
            color: #fff;
            font-weight: 600;
            padding: 12px;
            border-radius: 10px;
            transition: .25s;
            border: 1px solid rgba(0, 0, 0, .1);
        }

        .submit-btn:hover {
            background: #6b4525;
        }

        .error-msg {
            color: #d03838;
            font-size: 13px;
            display: block;
            margin-top: 6px;
            min-height: 16px;
        }



/* ---footer-section----- */

