body {
  font-family: 'Poppins', sans-serif;
  padding-top: 0px;
}

/* Topbar */
.topbar {
  background-color: #000;
  color: #fff;
  height: 40px;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

/* Navbar */
.custom-navbar {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  top: 40px;
}

.custom-navbar .navbar-brand span {
  font-weight: 600;
  color: #000;
}

.custom-navbar .nav-link {
  color: #000;
  font-weight: 500;
  position: relative;
}

.custom-navbar .nav-link:hover {
  color: #FF0000;
}

.custom-navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #FF0000;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.custom-navbar .nav-link:hover::after {
  width: 100%;
}

/* Logo */
.logo {
  height: 40px;
}

/* Toggler */
.custom-toggler {
  border: none;
  outline: none;
}

/* Modal Menu */
.mobile-menu {
  background-color: #fff;
  padding: 20px;
}

.mobile-menu .modal-title {
  color: #FF0000;
  font-weight: 600;
}

.mobile-menu ul li a {
  color: #000;
  display: block;
  padding: 10px 0;
  font-size: 18px;
  text-align: left;
}

.mobile-menu ul li a:hover {
  color: #FF0000;
}




/* Hero Slider */
#hero-slider {
  position: relative;
  margin-top: 110px; /* below fixed topbar+navbar */
}

#hero-slider .carousel-item {
  height: 650px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  #hero-slider .carousel-item {
    height: 400px;
  }
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 15px;
}

.welcome-text {
  color: #FF0000;
  font-weight: 600;
  letter-spacing: 2px;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
}

.main-title span {
  color: #FF0000;
}

.btn-custom {
  background: #FF0000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-custom:hover {
  background: #000;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #FF0000;
  color: #FF0000;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background: #FF0000;
  color: #fff;
}



/* About Section */
.about-section {
  background-color: #fff;
  color: #000;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: #FF0000;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background-color: #FF0000;
}

.about-content p {
  line-height: 1.8;
  font-size: 16px;
}

.about-phone {
  color: #FF0000;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.about-phone:hover {
  color: #000;
}

.about-img img {
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}



/* Our Services */
.services-section {
  background-color: #abb8c3;
  color: #000;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.btn-service {
  background-color: #FF0000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .service-card img {
    height: 180px;
  }
}



/* Book Now Button */
.btn-book {
  display: inline-block;
  background-color: #FF0000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}




/* ===== Our Fleet Section ===== */
.fleet-section {
  background: #f8f8f8;
  position: relative;
}

.section-title {
  font-weight: 700;
  color: #000;
}

.section-title span {
  color: #FF0000;
}

.section-subtitle {
  color: #444;
  font-size: 15px;
}

.fleet-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: #FF0000;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.25);
}

.fleet-title {
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.fleet-card ul li {
  color: #444;
  margin: 5px 0;
  font-size: 14px;
}

.fleet-card i {
  color: #FF0000;
  margin-right: 8px;
}

.btn-book {
  background-color: #FF0000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

.fleet-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}








/* ===== Common Banner Section ===== */
.banner-all {
  position: relative;
  background: url('../images/slider/sl3.png') center center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.banner-all .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.banner-all .container {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.breadcrumb-nav .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #FF0000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .banner-all {
    height: 40vh;
  }
  .banner-title {
    font-size: 32px;
  }
}




/* ===== Packages Section ===== */
.packages-section {
  background-color: #fff;
}

.section-title {
  font-weight: 700;
  color: #000;
}

.section-title span {
  color: #FF0000;
}

.section-subtitle {
  color: #444;
  font-size: 15px;
}

.package-card {
  background: #f7f7f7;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 3px solid #FF0000;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.25);
}

.package-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.package-card ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.package-card i {
  color: #FF0000;
  margin-right: 8px;
}

.btn-package {
  background-color: #FF0000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-package:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .package-title {
    font-size: 18px;
  }
  .package-card {
    padding: 25px;
  }
}


/* ===== FAQ Section ===== */
.faq-section {
  background-color: #f8f8f8;
  position: relative;
}

.section-title {
  font-weight: 700;
  color: #000;
}

.section-title span {
  color: #FF0000;
}

.section-subtitle {
  color: #444;
  font-size: 15px;
}

.faq-accordion .faq-item {
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.2);
}

.faq-header {
  background: #fff;
  color: #000;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background-color: rgba(255, 0, 0, 0.05);
}

.faq-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.faq-header i {
  color: #FF0000;
  margin-right: 10px;
}

.toggle-icon {
  transition: transform 0.3s ease;
  color: #000;
}

.collapse.show + .toggle-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 15px 20px 20px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  background: #fff;
}

.faq-link {
  color: #FF0000;
  text-decoration: none;
  font-weight: 600;
}

.faq-link:hover {
  color: #000;
}

/* Decorative SVG Background */
.faq-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: rgba(255, 0, 0, 0.05);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-header h5 {
    font-size: 15px;
  }
  .faq-body {
    font-size: 14px;
  }
}


/* ===== Footer Section ===== */
.footer-section {
  background-color: #FF0000;
  color: #fff;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer-brand-img {
  width: 120px;
  height: auto;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

.footer-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #fff;
  margin-top: 5px;
  border-radius: 5px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #000;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact i {
  margin-right: 8px;
  color: #fff;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #000;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #000;
  transform: scale(1.1);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 30px 0;
}

.footer-bottom {
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #000;
}

/* Background animation (subtle wave pattern) */
.footer-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0% 100%);
  animation: wave 5s ease-in-out infinite alternate;
}

@keyframes wave {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-title {
    font-size: 16px;
  }
  .footer-text {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .footer-brand-img {
    width: 100px;
  }
}



/* ===== Services Page Section ===== */
.service-page {
  background-color: #f7f7f7;
}

.section-title {
  font-weight: 700;
  color: #000;
}

.section-title span {
  color: #FF0000;
}

.section-subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 3px solid #FF0000;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.25);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.service-card p {
  color: #444;
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-service {
  background-color: #FF0000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    padding: 25px;
  }
  .service-title {
    font-size: 16px;
  }
  .service-card p {
    font-size: 13px;
  }
}

/* ===== Packages Page Section ===== */
.package-page {
  background-color: #fff;
}

.section-title {
  font-weight: 700;
  color: #000;
}

.section-title span {
  color: #FF0000;
}

.section-subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}

.package-card {
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 3px solid #FF0000;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.25);
}

.package-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.package-card ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.package-card i {
  color: #FF0000;
  margin-right: 8px;
}

.btn-package {
  background-color: #FF0000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-package:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .package-title {
    font-size: 16px;
  }
  .package-card {
    padding: 25px;
  }
}



/* ===== Contact Us Section ===== */
.contact-us {
  background: #fff;
}

.section-title {
  font-weight: 700;
  color: #000;
}

.section-title span {
  color: #FF0000;
}

.section-subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Contact Cards */
.contact-card {
  background-color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(255,0,0,0.25);
}

.contact-icon {
  font-size: 35px;
  color: #FF0000;
}

.contact-link {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.contact-link:hover {
  color: #FF0000;
}

/* Enquiry Form */
.enquiry-form {
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.enquiry-form h4 {
  color: #FF0000;
  font-weight: 600;
}

.enquiry-form .form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
}

.btn-enquiry {
  background-color: #FF0000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-enquiry:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.03);
}

/* Map Container */
.map-container iframe {
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    margin-bottom: 20px;
  }
  .map-container iframe {
    height: 300px;
  }
}



/* ===== Gallery Section ===== */
.gallery-section {
  background-color: #ffffff;
}

.section-title {
  font-weight: 700;
  color: #000;
}

.section-title span {
  color: #FF0000;
}

.section-subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Gallery Grid */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay Effect */
.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  color: #FF0000;
  font-size: 30px;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-item {
    margin-bottom: 15px;
  }
}


/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: floatPulse 2s infinite ease-in-out;
}

/* WhatsApp Button */
.whatsapp {
  background-color: #25D366;
}

/* Call Button */
.call {
  background-color: #FF0000;
}

/* Hover Effects */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Animation Keyframes */
@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}
