/* Global */
body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  /* modern & clean */
  background: #fdfdfd;
  /* soft white for clarity */
  color: #2c3e50;
  /* dark navy text for readability */
  line-height: 1.7;
  font-size: 1rem;
}

/* Headings */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  /* stylish travel vibe */
  font-weight: 700;
  color: #ffffff;
  /* deep green for nature/travel feel */
  letter-spacing: 0.5px;
}

/* Accent Colors */
:root {
  --primary: #28a745;
  /* green - nature/adventure */
  --secondary: #3498db;
  /* blue - sky/water */
  --accent: #f1c40f;
  /* yellow - sunshine/vibrancy */
  --dark: #2c3e50;
  /* dark navy */
}

/* Headings size */
h1 {
  font-size: 2.8rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

h5 {
  font-family: 'Playfair Display', serif;
  /* stylish travel vibe */
  font-weight: 700;
  color: #001f61;
  /* deep green for nature/travel feel */
  letter-spacing: 0.5px;
}


p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #000000;
  /* softer dark for paragraphs */
}

.tour-tagline {
  color: #f1c40f;
  /* warm golden color */
  font-style: italic;
  font-weight: 500;
}


/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
}


/* Navbar */
.custom-navbar {
  background: rgba(0, 0, 0, 0.7);
  /* semi-transparent background */
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: #000;
  /* solid background when scrolling */
}

.navbar-brand {
  color: #f1c40f !important;
  font-weight: 700;
}

.nav-link {
  color: #000000 !important;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f1c40f !important;
}

/* ================= Hero Slider ================= */
.hero {
  position: relative;
}

.hero-slide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay with gradient for better text readability */
.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.3) 80%);
  z-index: 1;
}

/* Text Content */
.hero-slide .container {
  position: relative;
  z-index: 2;
  color: #fff;
  animation: fadeIn 1.5s ease;
}

.hero-slide h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-slide h1 span {
  color: #f1c40f;
  /* highlight color */
}

.hero-slide p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Custom Button */
.custom-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s ease;
}

.custom-btn:hover {
  background: #f1c40f;
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Carousel Controls (Gradient Style) */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2ecc71, #f1c40f);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0.9;
}

/* Hide controls on mobile */
@media (max-width: 768px) {

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 25px 25px;
  filter: brightness(0) invert(1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* Carousel Indicators (Dots) */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.carousel-indicators .active {
  background: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
  bottom: 25px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-slide h1 {
    font-size: 2.5rem;
  }

  .hero-slide p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-slide h1 {
    font-size: 1.8rem;
  }

  .hero-slide p {
    font-size: 0.95rem;
  }

  .custom-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}








/* Section Background */
.feature-bg {
  background: linear-gradient(135deg, #eafaf1, #d6f0ff);
  /* soft travel gradient */
}

/* Feature Box */
.feature-box {
  background: #ffffff;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Circle */
.icon-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 28px;
  transition: 0.3s ease;
}

.feature-box:hover .icon-circle {
  transform: scale(1.1) rotate(10deg);
}

/* Unique Background Colors (Optional Per Box) */
.feature-green {
  background: #ffffff;
}

.feature-blue {
  background: #ffffff;
}

.feature-yellow {
  background: #ffffff;
}

.feature-red {
  background: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-box {
    margin-bottom: 20px;
  }
}




/* About Section */
.about-section {
  background: linear-gradient(135deg, #f9fdfb, #f3faff);
  /* soft travel gradient */
  border-top: 3px solid #e1f0e8;
  border-bottom: 3px solid #e1f0e8;
}

/* About Image */
.about-image {
  position: relative;
}

.about-image img {
  border-radius: 15px;
}

.about-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
}

/* About Text */
.about-section h2 {
  font-size: 2rem;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-section ul li {
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.6rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}


.modal-content {
  border-radius: 15px;
}

.modal-body p {
  font-size: 1rem;
  line-height: 1.7;
}

.modal-body ul {
  padding-left: 18px;
}

.modal-body ul li {
  margin-bottom: 8px;
}





/* Section Backgrounds */
.section-bg {
  background: #f9fbfd;
}

.booking-section {
  background: linear-gradient(135deg, #2ecc71, #3498db);
  color: #fff;
}

/* Cards (Tours, Highlights, Gallery) */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card img {
  height: 220px;
  object-fit: cover;
}





/* Background */
.why-bg {
  background: linear-gradient(135deg, #f9fdfb, #f0f8ff);
}

/* Why Box */
.why-box {
  background: rgb(0, 82, 150);
  border-radius: 15px;
  transition: all 0.3s ease;


}


/* Paragraphs stay white */
.why-box p {
  color: #ffffff !important;
}



.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 28px;
  transition: 0.3s ease;
}

.why-box:hover .icon-circle {
  transform: scale(1.1) rotate(8deg);
}




/* Footer */
.footer-gradient {
  background: linear-gradient(90deg, #2c3e50, #34495e);
  color: #fff;
  font-size: 0.9rem;
}

.footer-gradient p {
  margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}




/* ---------- Stepper (Itinerary) ---------- */
.itinerary-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.itinerary-stepper .step {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  flex: 1 1 240px;
  /* responsive width */
  min-width: 240px;
  text-align: center;
}

.itinerary-stepper .step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: .75rem;
}

.itinerary-stepper .step h6 {
  font-weight: 700;
  margin-bottom: .25rem;
}

.itinerary-stepper .step p {
  margin: 0;
  font-size: .95rem;
  color: #516173;
}

/* Arrows between steps (desktop/tablet ≥768px): right arrow → */
@media (min-width: 768px) {
  .itinerary-stepper .step:not(:last-child)::after {
    content: "➜";
    position: absolute;
    top: 50%;
    right: -0.25rem;
    transform: translate(100%, -50%);
    font-size: 28px;
    color: #28a745;
  }
}

/* Arrows on mobile (<768px): down arrow ↓ */
@media (max-width: 767.98px) {
  .itinerary-stepper .step {
    padding-bottom: 2.25rem;
    /* space for arrow */
  }

  .itinerary-stepper .step:not(:last-child)::after {
    content: "⬇";
    position: absolute;
    left: 50%;
    bottom: -0.25rem;
    transform: translate(-50%, 100%);
    font-size: 22px;
    color: #28a745;
  }
}





/* Masonry-style responsive gallery */
.gallery-masonry {
  column-count: 2;
  /* 2 columns mobile */
  column-gap: 10px;
}

.gallery-masonry img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  display: block;
}

@media (min-width: 768px) {
  .gallery-masonry {
    column-count: 3;
    /* 3 columns tablet */
  }
}

@media (min-width: 1200px) {
  .gallery-masonry {
    column-count: 4;
    /* 4 columns desktop */
  }
}



.textpadding {
  padding-top: 20px;
}





#booking {
  background: linear-gradient(135deg, #eafaf1, #f0f8ff);
}

#booking form {
  transition: 0.3s ease;
}

#booking form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#booking .btn-success {
  background: linear-gradient(45deg, #25d366, #128c7e);
  border: none;
}

#booking .btn-success:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}



/* slider colur */

.slider-tagline {
  color: #00ff4c;
  /* warm golden color */
  font-style: italic;
  font-weight: 500;
}


.why-tagline {
  color: #ffc400;
  /* warm golden color */
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}





/* Text Animations - Cinematic Sequence */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide h1 {
  opacity: 0;
  animation: fadeInDown 1.2s ease forwards;
  animation-delay: 0.3s;
}

.hero-slide p {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.8s;
}

.hero-slide .custom-btn {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 1.3s;
}










/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #2ecc71, #3498db);
  position: relative;
  overflow: hidden;
}

.stats-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stat-box h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #f8f9fa;
}

.stat-box i {
  transition: transform 0.3s ease;
}

.stat-box:hover i {
  transform: scale(1.2);
}






/* Package Include Section */
section.bg-light {
  background: #f9f9f9;
}

h4.text-success,
h4.text-danger {
  font-weight: 700;
}

ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.bg-white {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}









.contact-hero {
  position: relative;
  background: url('images/ella1.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.contact-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
}

/* Contact Info */
.contact-info {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
}

.contact-info i {
  font-size: 28px;
  color: #198754;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #198754;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  margin: 5px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #f1c40f;
  color: #000;
  transform: scale(1.1);
}

/* Map */
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
}





.thing-card img {
  height: 230px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.thing-card {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-success {
  border-radius: 25px;
  transition: 0.3s ease;
}

.btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
  transform: scale(1.05);
}




.footertext {
  
  color: #ffffff;

}       