/* ================= Scroll Animation ================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-in-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Carousel & Hero ================= */
#hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.carousel-inner .carousel-item {
  height: 100vh;
  min-height: 100vh;
}

.slider-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 0 15px;
}

/* ================= Buttons ================= */
.custom-btn-blue {
  background-color: #007bff; /* Your blue */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.custom-btn-blue:hover {
  background-color: #1aa260; /* Your green */
  color: #fff;
}

.custom-btn-outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.custom-btn-outline:hover {
  background-color: #007bff;
  color: #fff;
}

/* ================= Colors & Text ================= */
.text-green {
  color: #1aa260;
}

.text-orange {
  color: #e05a00;
}

/* ================= Services ================= */
.service-card {
  transition: transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
}
.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* ================= Why Us Section ================= */
#why-us {
  background-image: url('../images/whybg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #222;
}

.feature-box {
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* ================= Stats Box (Inside Why Us) ================= */
.stat-box h3 {
  font-size: 2rem;
  color: #e05a00;
}
.stat-box p {
  margin-top: 5px;
  font-size: 1rem;
}
.stat-box i {
  margin-bottom: 10px;
}

/* ================= Footer ================= */
.footer-link {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #1aa260;
}

.social-icon {
  font-size: 1.8rem;
  color: #fff;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.social-icon:hover {
  color: #007bff;
}

.about-banner {
  height: 60vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.text-green {
  color: #1aa260;
}

blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.card blockquote::before,
.card blockquote::after {
  content: '"';
  color: #1aa260;
  font-size: 2rem;
  vertical-align: top;
}
.text-green {
  color: #1aa260;
}

.card p.text-justify {
  text-align: justify;
}
.services-banner {
  height: 50vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.service-card {
  transition: transform 0.3s ease;
  background-color: #fff;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.text-green {
  color: #1aa260;
}
.text-justify {
  text-align: justify;
}
.quotation-btn {
  background-color: #1aa260; /* your green */
  color: #fff;
  border: none;
  transition: 0.3s ease;
  border-radius: 8px;
}
.quotation-btn:hover {
  background-color: #007bff; /* your blue */
  color: #fff;
}
.text-green {
  color: #1aa260;
}
.accordion-button {
  font-weight: 600;
}
.accordion-button i {
  font-size: 1.2rem;
}
.accordion-body ul {
  padding-left: 1.2rem;
}
.get-quote-btn {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background-color: #1aa260; /* green */
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  transition: 0.3s ease;
}

.get-quote-btn:hover {
  background-color: #007bff; /* blue */
  color: white;
}

.get-quote-btn i {
  font-size: 1rem;
}
#quoteModal .modal-content {
  border-radius: 12px;
  border: 2px solid var(--bs-success);
}
#quoteModal label {
  font-weight: 500;
}
/* CSS for Logo Marquee */
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #f8f8f8;
  padding: 20px 0;
}

.logo-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 50px;
  margin: 0 30px;
  vertical-align: middle;
}

/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Marquee Styling */
.logo-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.logo-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  height: 40px;
  margin: 0 25px;
  vertical-align: middle;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Milestone Timeline Section */
.milestone-timeline {
  width: 100%;
  background: #f8f9fa;
  padding: 80px 0;
}

.milestone-block {
  position: relative;
  padding: 100px 0;
}

.milestone-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: bold;
  color: #198754; /* Your green */
  opacity: 0.08;
  z-index: 0;
}

.milestone-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.milestone-content.left .milestone-image {
  order: 1;
}
.milestone-content.left .milestone-text {
  order: 2;
}
.milestone-content.right .milestone-image {
  order: 2;
}
.milestone-content.right .milestone-text {
  order: 1;
}

.milestone-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.milestone-text {
  max-width: 500px;
  background: #fff;
  padding: 25px;
  margin: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Animations */
.animate-slow {
  opacity: 0;
  transform: translateY(100px);
  animation: floatUpSlow 1.6s ease forwards;
}
.animate-fast {
  opacity: 0;
  transform: translateY(100px);
  animation: floatUpFast 0.9s ease forwards;
  animation-delay: 0.3s;
}

@keyframes floatUpSlow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatUpFast {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .milestone-content {
    flex-direction: column;
    text-align: center;
  }
  .milestone-year {
    font-size: 3rem;
  }
}

.price-intro h2 {
  font-size: 2rem;
}

.price-intro p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.price-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  background: #fff;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tour Organizer full card */
.tour-card {
  background: #fefae0;
  border-radius: 12px;
}
.tour-card img {
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
}


/* Price Card */
/* Main card */
.price-card {
  border-radius: 10px;
  transition: transform 0.3s ease;
  min-height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
}

/* Feature list */
.feature-list {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
  font-size: 0.95rem;
}

/* Theme color */
.border-theme {
  border: 2px solid #e53935; /* your chosen red */
}

.text-theme {
  color: #e53935;
}

.btn-theme {
  background-color: #e53935;
  color: white;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-theme:hover {
  background-color: #43a047; /* green on hover */
  color: white;
}

/* Scroll animation */
.animate-fade-in {
  animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* Responsive tweaks if needed */
.card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Scope only inside the disclaimer section */
.disclaimer-section .reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.disclaimer-section .reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.disclaimer-section h5 {
  border-left: 4px solid #198754;
  padding-left: 10px;
}

.disclaimer-section ul,
.disclaimer-section ol {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

.disclaimer-section ul li::marker {
  content: '• ';
  color: #198754;
}

/* ---------- Privacy Policy Section Styling ---------- */

.privacy-section {
  background: #f9f9f9;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: 'Segoe UI', sans-serif;
}

.privacy-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.privacy-section h5 {
  font-weight: 600;
  color: #198754; /* Bootstrap's green */
  margin-top: 2rem;
}

.privacy-section p,
.privacy-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.privacy-section ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.privacy-section ul li {
  margin-bottom: 0.5rem;
}

/* Scroll Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal animation on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section styling */
.section {
  padding: 60px 20px;
  background-color: #f5f8fa;
  border-bottom: 1px solid #e0e0e0;
}

.section h2 {
  font-size: 28px;
  color: #1d4f91;
  margin-bottom: 20px;
  font-weight: 600;
}

.section h3 {
  font-size: 22px;
  color: #157347;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 500;
}

.section p,
.section ul {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.section ul {
  padding-left: 20px;
}

.section ul li::marker {
  color: #1d4f91;
  font-size: 18px;
}

/* Contact box */
.contact-box {
  background-color: #fff;
  border: 2px dashed #d2e3fc;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  color: #0a3d62;
  font-weight: 500;
}

/* Icon sizes */
.bi {
  font-size: 1.2rem;
  margin-right: 5px;
}

/* Last note section */
.final-note {
  background-color: #e6f4ea;
  padding: 25px;
  border-left: 5px solid #198754;
  margin-top: 30px;
  border-radius: 4px;
  font-weight: 500;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .section {
    padding: 80px 60px;
  }

  .section h2 {
    font-size: 32px;
  }

  .section h3 {
    font-size: 24px;
  }
}

