body {
  font-family: 'Poppins', sans-serif;
}

/* Topbar */
#topbar {
  background: #003366;
  font-size: 14px;
  transition: top 0.4s ease;
}

/* Navbar */
.navbar-custom {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar-brand span {
  font-weight: 600;
  color: #003366;
}

.nav-link {
  color: #333 !important;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #003366;
  transition: width .3s;
  margin-top: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu modal */
.modal-content {
  background: #f8f9fa;
  border-radius: 12px;
}

.modal-link {
  display: block;
  font-size: 1.2rem;
  color: #003366;
  margin: 15px 0;
  transition: color 0.3s ease;
}

.modal-link:hover {
  color: #0056b3;
  text-decoration: none;
}


.navbar-brand span {
  font-size: 1.5rem; /* default for desktop */
  font-weight: 600;
  color: #003366;
}

/* --- Responsive Adjustment for Mobile --- */
@media (max-width: 767.98px) {
  .navbar-brand span {
    font-size: 1.1rem; /* smaller text on mobile */
  }
}

.slide-h2 {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
  font-size: 2rem; /* Default desktop size */
  font-weight: 700;
  line-height: 1.3;
}

/* --- Tablet View --- */
@media (max-width: 991.98px) {
  .slide-h2 {
    font-size: 1.5rem;
  }
}

/* --- Mobile View --- */
@media (max-width: 767.98px) {
  .slide-h2 {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  }
}






/* booking and slider  */

/* --- Slider Styles --- */
#hero {
  position: relative;
}

#hero .carousel-item img {
  height: 78vh;
  object-fit: cover;
}

#hero .carousel-caption {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.557);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Booking Form Styles --- */
.booking-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  max-width: 1100px;
  width: 95%;
}

.booking-form label {
  font-weight: 600;
  color: #003366;
  font-size: 0.9rem;
}

.booking-form .form-control {
  border-radius: 6px;
  font-size: 0.95rem;
}

/* --- Responsive behavior --- */
@media (min-width: 992px) {
  /* Desktop: keep form centered over slider */
  .booking-form {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  /* Mobile: stack form fields vertically */
  #hero .carousel-caption {
    background: rgba(0, 0, 0, 0.45);
    padding-top: 80px;
  }
  .booking-form {
    position: relative;
    margin-top: 20px;
    width: 90%;
  }
  .booking-form .form-group {
    margin-bottom: 10px;
  }
}






/* --- Services Section --- */
#services {
  background-color: #f9f9f9;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-book-now {
  background-color: #003366;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 20px;
  transition: background 0.3s ease;
}

.btn-book-now:hover {
  background-color: #074889;
  color: white;
  text-decoration: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 767.98px) {
  #services h2 {
    font-size: 1.6rem;
  }
  .service-card img {
    width: 120px;
  }
  .service-card p {
    font-size: 0.9rem;
  }
}




/* --- Packages Section --- */
#packages {
  position: relative;
  background: url("../images/slider/sl3.png") center center/cover no-repeat;
  color: #fff;
}

#packages .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #003366d9; /* Blue opacity overlay */
  z-index: 0;
}

#packages .container {
  position: relative;
  z-index: 1;
}

/* --- Card Styling --- */
.package-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-book {
  background-color: #003366d9;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 22px;
  transition: background 0.3s ease;
}

.btn-book:hover {
  background-color: #075cb1d9;
  color: white;
  text-decoration: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 767.98px) {
  #packages h2 {
    font-size: 1.6rem;
  }
  .package-card img {
    height: 220px;
  }
}



/* --- Why Choose Us Section --- */
#why-choose-us {
  background-color: #ffffff;
}

.choose-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #c9d4ff;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.choose-card .icon i {
  color: #007bff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.choose-card:hover .icon i {
  color: #003366;
  transform: scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
  #why-choose-us h2 {
    font-size: 1.6rem;
  }
  .choose-card {
    padding: 25px 20px;
  }
}




/* --- Our Cabs Section --- */
#our-cabs {
  background-color: #c9d4ff;
}

.cab-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cab-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* --- Cab Image Styling --- */
.cab-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.cab-card:hover .cab-img {
  transform: scale(1.05);
}

/* --- Button Styling --- */
.btn-book {
  background-color: #003366;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 22px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: #0563c1;
  color: white;
  text-decoration: none;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .cab-img {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .cab-img {
    height: 200px;
  }
  #our-cabs h2 {
    font-size: 1.6rem;
  }
}


/* --- FAQ Section --- */
#faq {
  background-color: #f8f9ff;
}

.faq-accordion {
  max-width: 800px;
}

.faq-header {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.faq-header:hover {
  background-color: #e6ebff;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: #003366;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-toggle:hover,
.faq-toggle:focus {
  text-decoration: none;
  color: #001f4d;
}

.faq-toggle.collapsed i {
  transform: rotate(0);
}

.faq-toggle i {
  transition: transform 0.3s ease;
}

.faq-toggle:not(.collapsed) i {
  transform: rotate(90deg);
}

.card-body {
  background-color: #fff;
  border-top: 1px solid #dee2e6;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Add soft shadow when active */
.collapse.show + .faq-header,
.card.show {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  #faq h2 {
    font-size: 1.6rem;
  }
  .faq-toggle {
    font-size: 1rem;
  }
}




/* --- Gallery Section --- */
/* --- Gallery Section --- */
#gallery {
  position: relative;
  background: url("img/gallery-bg.jpg") center/cover no-repeat;
}

#gallery .gallery-overlay {
  background: rgba(255, 255, 255, 0.9); /* white opacity layer */
  padding: 60px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 991.98px) {
  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  #gallery h2 {
    font-size: 1.6rem;
  }
  .gallery-item img {
    height: 180px;
  }
}




/* --- Footer Section --- */
#footer {
  background-color: #003366;
}

#footer h5 {
  color: #fff;
  letter-spacing: 0.5px;
}

#footer p,
#footer li a {
  color: #dcdcdc;
  transition: color 0.3s ease;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background: #ffffff;
  color: #003366;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #00bfa5;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 767.98px) {
  #footer {
    text-align: center;
  }
  .social-links a {
    margin-right: 5px;
  }
}



/* --- Inner Page Banner --- */
#inner-banner {
  position: relative;
  background: url("../images/slider/sl3.png") center/cover no-repeat;
  height: 300px;
  overflow: hidden;
}

#inner-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.7); /* brand color opacity layer */
}

#inner-banner .container {
  position: relative;
  z-index: 2;
}

#inner-banner h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Breadcrumbs --- */
.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #c9d4ff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 767.98px) {
  #inner-banner {
    height: 220px;
  }
  #inner-banner h1 {
    font-size: 1.8rem;
  }
}



/* --- About Us Section --- */
#about-us {
  background-color: #f9fbff;
}

#about-us h6 {
  letter-spacing: 1px;
}

#about-us p {
  line-height: 1.8;
  font-size: 0.95rem;
}

#about-us ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
}

#about-us ul li i {
  color: #007bff;
  font-size: 1.1rem;
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
  #about-us {
    text-align: center;
  }

  #about-us img {
    max-width: 80%;
    margin-bottom: 20px;
  }

  #about-us ul {
    padding-left: 0;
  }

  #about-us ul li {
    justify-content: center;
  }
}


/* --- Our Services Page Section --- */
.services-page {
  background-color: #c9d4ff;
}

.services-page .service-card {
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.services-page .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-page .service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.services-page ul li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}

.services-page ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* --- Custom Button --- */
.services-page .custom-btn {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-page .custom-btn:hover {
  background-color: #0e64ba;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .services-page .service-img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .services-page .service-card {
    padding: 20px;
  }
  .services-page .service-img {
    height: 180px;
  }
}



/* --- Packages Page Section --- */
.package-page2 {
  background-color: #c9d4ff;
}

.package-page2 .package-card {
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-page2 .package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.package-page2 .package-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.package-page2 ul li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
}

.package-page2 ul li i {
  color: #007bff;
  margin-right: 8px;
}

/* --- Custom Button --- */
.package-page2 .custom-btn {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.package-page2 .custom-btn:hover {
  background-color: #0b71d6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .package-page2 .package-img {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .package-page2 h2 {
    font-size: 1.6rem;
  }
  .package-page2 .package-card {
    padding: 20px;
  }
  .package-page2 .package-img {
    height: 160px;
  }
}


/* --- Contact Page --- */
.contact-page {
  background-color: #f9fbff;
}

.contact-page .contact-box {
  background-color: #ffffff;
  border: 1px solid #e6ecff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Custom Button */
.contact-page .custom-btn {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.contact-page .custom-btn:hover {
  background-color: #2274c6;
  color: #fff;
  transform: translateY(-2px);
}

/* Map */
.contact-page .map-container iframe {
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 767.98px) {
  .contact-page .contact-box {
    margin-bottom: 20px;
  }
  .contact-page .contact-form {
    padding: 20px;
  }
}



/* --- Floating Buttons --- */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* Ensures it doesn't block scrolling */
}

/* Individual Buttons */
.float-btn {
  pointer-events: auto;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

/* WhatsApp Button (Left) */
.float-btn.whatsapp {
  background-color: #003366;
  border: solid white 2px;
}

/* Call Button (Right) */
.float-btn.call {
  background-color: #003366;
  border: solid white 2px;
}

/* Hover Effects */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(0, 191, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 191, 165, 0); }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}
