
.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;
}


:root {
  --navy: #0a1a33;
  --brown: #8b5e34;
  --white: #ffffff;
  --black: #000000;
}

.terms-section {
  background: var(--white);
  color: var(--black);
  margin-top: 3%;
}

.terms-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
}

.terms-text {
  font-size: 17px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 10px;
}


.terms-subheading {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}

.terms-text {
  font-size: 17px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 18px;
}

















