/* ===== Google Fonts Setup ===== */
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #0d6efd;
  transition: all 0.6s ease;
}
/* Optional: slightly animated hover effect for titles */
h1:hover, h2:hover {
  letter-spacing: 1px;
  color: #ffc107;
}
.btn, .navbar, .footer {
  font-family: 'Poppins', sans-serif;
}

.card:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}
.btn-warning {
  color: #000;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.text-shadow {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* ===== Hero Slider Styling ===== */
.carousel-item {
  position: relative;
  height: 90vh;
  min-height: 600px;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.carousel-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Caption Box */
.carousel-caption {
  z-index: 2;
  left: 8%;
  right: 40%;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.caption-bg {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  max-width: 520px;
  backdrop-filter: blur(3px);
  border-left: 5px solid #ffc107;
}

.carousel-caption h1 {
  font-size: 2.8rem;
  line-height: 1.3;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: #f1f1f1;
}

/* ===== Carousel Dots (Indicators) ===== */
.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: #ffc107;
  transform: scale(1.2);
}

.carousel-indicators {
  bottom: 30px;
  z-index: 3;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 2.5rem;
  height: 2.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .carousel-caption {
    left: 5%;
    right: 5%;
    text-align: center;
  }
  .caption-bg {
    max-width: 100%;
  }
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}




/* ===== Topbar ===== */
.topbar {
  background: #0d6efd;
  font-size: 14px;
  position: relative;
  z-index: 1100;
}
.topbar a {
  color: #fff;
  text-decoration: none;
}
.topbar a:hover {
  color: #ffc107;
}

/* ===== Main Navbar ===== */
.custom-navbar {
  transition: background-color 0.5s ease, box-shadow 0.3s ease;
  background-color: rgba(0, 0, 0, 0);
  top: 35px; /* below topbar */
  z-index: 1099;
}

/* Scroll hone ke baad blue background */
.navbar-scrolled {
  background-color: #0d6efd !important; /* Blue background */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  top: 0 !important;
}

/* ===== Navbar Links ===== */
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffc107 !important;
}

/* ===== Dropdown Styling ===== */
.navbar .dropdown {
  position: relative;
  z-index: 1000;
}

/* Hide dropdown initially */
.navbar .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: #111;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
}

/* Show on hover (Desktop only) */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Dropdown items */
.dropdown-item {
  color: #fff;
  padding: 8px 16px;
  transition: background 0.3s;
  font-weight: 500;
}
.dropdown-item:hover {
  background-color: #ffc107;
  color: #000;
}

/* ===== Enquiry Button ===== */
.btn-warning {
  border-radius: 25px;
  transition: transform 0.3s;
}
.btn-warning:hover {
  transform: scale(1.05);
}

/* ===== Responsive Mobile Navbar ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(0,0,0,0.95);
    padding: 20px;
    border-radius: 8px;
  }
  .custom-navbar {
    top: 0 !important;
  }
  .navbar .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    position: static;
    background-color: transparent;
    padding-left: 15px;
  }
  .dropdown-item {
    color: #fff;
  }
  .dropdown-item:hover {
    background-color: #0d6efd;
    color: #fff;
  }
}

/* ===== Small Animation Effect ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ===== Tour Packages Section ===== */
.package-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.package-card img {
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.package-card:hover img {
  transform: scale(1.08);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#packages .form-control {
  border-radius: 25px;
}

#packages button {
  border-radius: 25px;
}



/* ===== Offer Popup Styling ===== */
#offerModal .modal-content {
  border-radius: 15px;
  overflow: hidden;
  animation: popupScale 0.4s ease;
}

@keyframes popupScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#offerModal img {
  height: 100%;
  object-fit: cover;
}

#offerModal h3 {
  color: #0d6efd;
}

#offerModal .btn-warning {
  border-radius: 25px;
  transition: transform 0.3s;
}
#offerModal .btn-warning:hover {
  transform: scale(1.05);
}


/* ===== Why Choose Us Section ===== */
#why-choose-us {
  background: linear-gradient(180deg, #f8f9ff, #ffffff);
}

.why-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-card .icon {
  width: 80px;
  height: 80px;
  background: #eaf2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.why-card:hover .icon {
  background: #acb2bd;
  color: #fff;
  transform: scale(1.1);
}

#why-choose-us h5 {
  color: #0d6efd;
}

#why-choose-us p {
  font-size: 15px;
}



/* ===== Footer Styling ===== */
.footer {
  background-color: #111;
  color: #ccc;
}

.footer h6, 
.footer h5 {
  color: #ffc107;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
  transform: translateX(5px);
}

.footer .social-icons a {
  transition: all 0.3s ease;
}
.footer .social-icons a:hover {
  color: #ffc107;
}

.footer img {
  filter: brightness(0.95);
  transition: transform 0.3s;
}
.footer img:hover {
  transform: scale(1.1);
}



/* ===== Testimonials Auto Slider ===== */
#testimonials {
  background: linear-gradient(180deg, #f8f9ff, #ffffff);
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* Auto-scroll animation */
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Testimonial card styling */
.testimonial-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* User image */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0d6efd;
  margin-bottom: 15px;
}

/* Text */
.testimonial-card blockquote p {
  font-style: italic;
  font-size: 1rem;
  color: #555;
}
.blockquote-footer {
  font-weight: 600;
  color: #0d6efd;
  font-size: 0.9rem;
}



/* ===== Instant Call Section ===== */
#instant-call {
  background: 
    linear-gradient(135deg, rgba(8,68,184,0.9), rgba(13,110,253,0.9)), 
    url('assets/images/patterns/pattern.jpg') center/cover no-repeat;
  position: relative;
  color: #fff;
  z-index: 1;
  overflow: hidden;
}

#instant-call .call-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* soft dark tint */
  z-index: 0;
}

/* Heading and text */
#instant-call h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

#instant-call p {
  font-size: 1.1rem;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* Call Button */
#instant-call .btn-warning {
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

#instant-call .btn-warning:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  #instant-call {
    padding: 3rem 1rem;
    background-attachment: scroll;
  }
  #instant-call h2 {
    font-size: 1.7rem;
  }
  #instant-call p {
    font-size: 1rem;
  }
}

  /* Background image and overlay */
  .header-pattern {
    background: url('../../assets/images/slider1.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    color: #fff;
  }

  .header-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.65), rgba(255, 107, 0, 0.65));
    z-index: 1;
  }

  /* Ensure text/content appears above gradient */
  .header-pattern > * {
    position: relative;
    z-index: 2;
  }

  /* Container spacing & alignment */
  .header-pattern .container {
    padding-top: 100px;
    padding-bottom: 0px;
    text-align: center;
  }

  .header-pattern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Optional animation for nice fade-in effect */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .header-pattern h2 {
    animation: fadeInUp 0.8s ease-out;
  }

.modal {
--bs-modal-zindex: 1100;
}
#offerModal .form-control,
#offerModal .form-select {
    border-radius: 8px;
    padding: 10px;
}

#offerModal textarea {
    resize: none;
}

#offerModal .btn-primary {
    border-radius: 8px;
    font-size: 16px;
}

/* Mobile spacing fix */
@media(max-width: 768px){
    #offerModal .modal-dialog {
        margin: 15px;
    }
}


/*card css*/
  .card {
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  }
  .card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .btn-success {
    background-color: #2e6b38;
    border: none;
  }
  .btn-success:hover {
    background-color: #24562e;
  }


  /*project history css*/
  .project-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
  }
  .project-gallery {
    display: flex;
    flex-wrap: wrap;
  }
  .project-gallery .project-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .project-gallery .project-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }
  .border-success {
    border-color: #2e6b38 !important;
  }
  h4 {
    color: #2e6b38;
  }
 
  @media (max-width: 767px) {
    .project-gallery .project-img {
      height: auto;
    }
  }


  /*Mission vision css*/
  .mission-card {
  transition: all 0.3s ease-in-out;
}
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.icon-box {
  flex-shrink: 0;
}