body{
  font-family:"Segoe UI",Arial,sans-serif;
  background:linear-gradient(180deg,#eef2ff,#f8fafc);
  scroll-behavior:smooth;
}

/* ============================= */
/* PREMIUM STICKY NAVBAR STYLE  */
/* ============================= */

.custom-navbar {
  background: linear-gradient(90deg, #000428, #004e92);
  padding: 14px 0;

  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* ============================= */
/* BRAND LOGO STYLE */
/* ============================= */

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: #ffc107;
}

/* ============================= */
/* NAV LINKS */
/* ============================= */

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* Underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #ffc107;
  transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #ffc107 !important;
}
/* Travel Info Nav Item */
.nav-item.travel-info {
  list-style: none;
}

.nav-item.travel-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-item.travel-info a i {
  font-size: 16px;
  color: #ffcc00; /* Highlight color for icon */
}

.nav-item.travel-info a:hover {
  color: #ffcc00;
}
/* ============================= */
/* CONTACT & LOCATION STYLE */
/* ============================= */

.contact-info a,
.location-info span {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #ffc107;
}

/* Icons styling */
.contact-info i,
.location-info i {
  margin-right: 6px;
  color: #ffc107;
  font-size: 14px;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {

  .contact-info,
  .location-info {
    margin-top: 10px;
  }

  .contact-info a,
  .location-info span {
    display: block;
    margin-left: 0;
  }

}
/* //// */
/* body */
/* //// */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* Background images layer */
.hero::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  animation: heroSlider 20s infinite;
  z-index:-1;
}

/* Background Image Animation */
@keyframes heroSlider{

0%{
background-image:url("https://c8.alamy.com/comp/2JKK8ME/a-photo-of-the-luxury-private-sprinter-mini-bus-service-2JKK8ME.jpg");
}

25%{
  background-image:url("https://png.pngtree.com/background/20220721/original/pngtree-white-car-appearance-outdoor-real-scene-picture-image_1695453.jpg");
}

50%{
  background-image:url("https://images.pexels.com/photos/8766145/pexels-photo-8766145.jpeg");
}

75%{
background-image:url("https://cdn.mos.cms.futurecdn.net/6qthjkVdbYkToB7upxRSkU.jpg");
}

100%{
background-image:url("https://images.pexels.com/photos/3422964/pexels-photo-3422964.jpeg");
}

}

/* Hero Text */
.hero h1{
  font-size:3.3rem;
  font-weight:900;
}

/* Booking Box */
.hero-box{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(8px);
  padding:30px;
  border-radius:18px;
  box-shadow:0 25px 60px rgba(0,0,0,.4);
}

/* Button */
.btn-main{
  background:#ff9800;
  color:#fff;
  border-radius:30px;
  padding:12px 28px;
  font-weight:700;
}

.btn-main:hover{
  background:#e68900;
  color:#fff;
}

/* Sections */
.section{
  padding:90px 0;
}

.title{
  font-weight:900;
}

/* ///////// */
/* srevices */
/* ///////// */
/* Card container */
.service-card-v2{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  height:360px;
  box-shadow:0 18px 45px rgba(0,0,0,.2);
  background:#000;
}
.card-images{
  display:flex;
  height:100%;
  width:100%;
  transition:transform 0.6s ease;
}

.card-images img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex-shrink:0;
}
/* Overlay text */
.service-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:25px;
}

/* Start sliding on hover */
.service-card-v2:hover .card-images{
  animation: slideCars 3s linear infinite;
}

/* Continuous loop animation */
@keyframes slideCars{

0%{
  transform:translateX(0);
}

100%{
  transform:translateX(-50%);
}

}
/* ===== GALLERY SECTION ===== */
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  height:280px;
  box-shadow:0 15px 40px rgba(0,0,0,.2);
  transition:.4s ease;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  /* background:linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.2)); */
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:20px;
  opacity:0;
  transition:.4s ease;
}

.gallery-overlay h5{
  font-weight:800;
}

.gallery-overlay p{
  font-size:.9rem;
  color:#e5e7eb;
}

.gallery-card:hover img{
  transform:scale(1.1);
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

.gallery-card:hover{
  transform:translateY(-8px);
}

/* ============================= */
/* TOUR PACKAGES SECTION */
/* ============================= */

/* Section Spacing */
.tour-packages {
  padding: 90px 0;
}

/* Package Card */
.package-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
  transition: .4s ease;
  background: #000;
  animation: fadeUp .8s ease both;
}

/* Package Image */
.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s ease;
}

/* Dark Gradient Overlay */
.package-content {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0,0,0,.85) 25%, rgba(0,0,0,.2) 75%); */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

/* Title */
.package-content h4 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
}

/* Description */
.package-content p {
  font-size: .9rem;
  margin-bottom: 8px;
  color: #e5e7eb;
}

/* Price */
.price {
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffc107;
}

/* Button Group */
.button-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Book Now Button */
.btn-package {
  padding: 7px 16px;
  background: #ffc107;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: .3s ease;
}

.btn-package:hover {
  background: #e0a800;
  color: #000;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: .3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* Hover Effects */
.package-card:hover {
  transform: translateY(-10px);
}

.package-card:hover img {
  transform: scale(1.1);
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ////////////// */
/* why cabigo */
/* ////////////// */

#why-cabigo {
  background: #f7f9fc;
  padding: 80px 0;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1b2a;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Cabigo Cards */
.cabigo-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.cabigo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  background: #ffecec;
}

.cabigo-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cabigo-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.cabigo-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .cabigo-card {
    padding: 25px 15px;
  }
}


/* ///////// */
/* request for calling */
/* ///////// */

.contact-banner {
    background-color: #f8f8f8; /* normal light gray background */
    color: #333; /* dark text for readability */
    text-align: center;
    padding: 50px 30px;
    border-radius: 10px;
    max-width: 1300px;
    margin: 50px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.contact-banner p {
    font-size: 1.2rem;
    margin: 8px 0;
}

.phone {
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 10px;
    color: #0077cc; /* blue for emphasis */
}

.call-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #0077cc; /* blue button */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    .contact-banner {
        padding: 40px 20px;
    }
    .contact-banner h2 {
        font-size: 1.6rem;
    }
    .contact-banner p {
        font-size: 1rem;
    }
    .phone {
        font-size: 1.2rem;
    }
    .call-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

  /* Sticky chat buttons */
  .chat-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
  }

  .chat-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }


.chat-phone {
  background-color: #0077cc;
}

.chat-whatsapp {
  background-color: #25d366;
}

.chat-buttons a:hover {
  transform: scale(1.1);
}


/* Wider and Centered FAQ Boxes */
/* FAQ Section CSS */
#faq {
  padding: 50px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

#faq .container {
  max-width: 900px; /* slightly wider for content */
  margin: 0 auto;
}

#faq .faq-title {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

#faq .faq-item {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

#faq .faq-item h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

#faq .faq-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Make FAQ scrollable */
#faq .container {
  max-width: 1300px;       /* keep it centered */
  margin: 0 auto;
  max-height: 500px;      /* adjust height as needed */
  overflow-y: auto;       /* vertical scroll */
  padding-right: 10px;    /* prevent content cutoff */
}

/* //////// */
/* reviwes */
/* //////// */
/* ================= REVIEWS SECTION ================= */

.reviews-section {
  padding: 90px 0;
  background: #f8f9fa;
  text-align: center;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 50px;
}

.review-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.review-slider {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollReviews 25s linear infinite;
}

.review-card {
  min-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-align: left;
}

.review-card h4,
.review-card h5 {
  margin-top: 15px;
  font-weight: 700;
}

/* Continuous scroll animation */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.review-slider:hover {
  animation-play-state: paused;
}

/* ===== MODERN SIDE-BY-SIDE FOOTER ===== */
footer {
    background:
      linear-gradient(rgba(15,23,42,.95), rgba(15,23,42,.95)),
      url("https://images.unsplash.com/photo-1503376780353-7e6692767b70");
    background-size: cover;
    background-position: center;
    position: sticky;
    color: #fff;
    padding: 60px 0 20px;
}

/* Wrapper */
.footer-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
}

/* Left & Right Equal Width */
.footer-left,
.footer-right {
    flex: 1;
}

/* Headings */
footer h4 {
    color: #ff9800;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Contact text */
.footer-left p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #d1d5db;
}

.footer-left i {
    color: #ff9800;
}

/* Social Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 10px;
    color: #fff;
    transition: .3s;
}

.footer-social a:hover {
    background: #ff9800;
    transform: translateY(-3px);
}

/* Form */
.footer-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-right input,
.footer-right textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
}

.footer-right input::placeholder,
.footer-right textarea::placeholder {
    color: #bbb;
}

.footer-right input:focus,
.footer-right textarea:focus {
    border-color: #ff9800;
    outline: none;
}

/* Button */
.footer-right button {
    background: linear-gradient(45deg,#ff9800,#ff5722);
    border: none;
    border-radius: 25px;
    padding: 10px;
    font-weight: 700;
    color: #fff;
    transition: .3s;
}

.footer-right button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,152,0,.5);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

/* Make phone link look like normal text */
.contact-text a {
  text-decoration: none;
  color: inherit;      /* Same color as normal text */
  font-weight: 500;
  cursor: pointer;
}

.contact-text a:hover {
  color: #ffc107;      /* Optional hover effect */
}

/* Phone input container */
.d-flex {
  display: flex;
  width: 100%;
  max-width: 475px;
}

/* Country code box */
.input-group-text {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-right: none;
  padding: 10px 14px;
  font-weight: 600;
  border-radius: 8px 0 0 8px;
  color: #333;
}

/* Phone input field */
.form-control {
  border: 1px solid #ced4da;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

/* Focus effect */
.form-control:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 5px rgba(255, 107, 0, 0.4);
}

/* Responsive */
@media (max-width: 576px) {
  .d-flex {
    max-width: 100%;
  }
}

/* //////// */
/* chat bot */
/* //////// */
/* Floating Buttons */
.chat-buttons{
  position:fixed;
  bottom:20px;
  right:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:900;   /* lower than chat box */
}

.chat-buttons a{
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:white;
  text-decoration:none;
  box-shadow:0 6px 15px rgba(0,0,0,.3);
}

.chat-phone{
  background:#0077cc;
}

.chat-whatsapp{
  background:#25D366;
}


/* Chat Box */
.whatsapp-chat{
  position:fixed;
  bottom:90px;
  right:20px;
  width:330px;
  height:342px;
  background:white;
  border-radius:12px;
  box-shadow:0 10px 40px rgba(0,0,0,.2);
  display:none;
  overflow:hidden;
  z-index:1000;   /* higher than call button */
}
/* Header */
.chat-header{
  background:#25D366;
  color:white;
  padding:14px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Chat Body */
.chat-body{
  height:240px;
  padding:15px;
  background:#f5f5f5;
  font-size:14px;
}

/* Footer */
.chat-footer{
  display:flex;
  border-top:1px solid #eee;
}

.chat-footer input{
  flex:1;
  border:none;
  padding:14px;
  font-size:14px;
  outline:none;
}

.chat-footer button{
  width:55px;
  background:#25D366;
  border:none;
  color:white;
  font-size:18px;
  cursor:pointer;
}

.chat-footer button:hover{
  background:#1ebe5d;
}

/* Hide default calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* Hide default time icon */
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* For Firefox */
input[type="date"],
input[type="time"]{
  appearance: none;
  -moz-appearance: none;
}

