/* CSS Document */
 body {
font-family: 'Poppins', sans-serif;
    }
    .top-bar {
      background-color: #2e3d28;
      color: #fff;
      font-size: 14px;
      padding: 8px 0;
    }
    .top-bar a {
      color: #fff;
      text-decoration: none;
    }
    .top-bar a:hover {
      color: #ffcc00;
    }
    .social-icons a {
      color: #fff;
      margin-left: 12px;
      font-size: 16px;
    }
    .social-icons a:hover {
      color: #ffcc00;
    }
	
	 .booking-section {
      background-color: #3e3e1b;
      color: #fff;
      padding: 40px 0;
    }
    .booking-section .form-control {
      border-radius: 0;
      border: none;
      height: 48px;
    }
    .booking-section button {
      height: 48px;
      background-color: #ffcc00;
      border: none;
      color: #000;
      font-weight: 600;
      border-radius: 0;
    }
    .booking-section button:hover {
      background-color: #d4b200;
    }
	
	#navbar{font-size:16px;}
	
	.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom:5px solid #3e3e1b;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-size: 1.1rem !important;
  margin-left: 15px;
}

.navbar-nav .nav-link:hover {
  color: #198754 !important; /* Bootstrap green hover */
}


.banner-img {
  object-fit: cover;
  height: 100%; /* Adjust height for desktop */
}

@media (max-width: 768px) {
  .banner-img {
    height: 100%; /* Adjust for mobile */
  }
}


.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.call-icon {
  background-color: #28a745; /* Green for call */
}

.whatsapp-icon {
  background-color: #25d366; /* WhatsApp Green */
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .floating-icons a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}