  /* === Carousel Styles === */
  .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0px;
    transition: transform 0.5s ease;
  }

  .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
  }

  .carousel-item:hover {
    transform: scale(1.05);
  }

  .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    animation: fadeInUpText 1s ease-in-out;
    padding: 0 2rem;
  }

  .carousel-caption h1,
  .carousel-caption p {
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .carousel-caption h1 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .carousel-caption p {
    font-size: 1.2rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
  }

  .carousel-indicators {
    bottom: 20px;
  }

  .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    margin: 0 4px;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
  }

  .carousel-indicators [data-bs-target].active,
  .carousel-indicators [data-bs-target]:hover {
    background-color: #C6A664;
  }

  /* === Call To Action Button === */
  /* === Typography === */
  h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C6A664;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0dccc;
    display: inline-block;
    padding-bottom: 8px;
  }

  /* === Package Cards === */
  .package-card {
    border: 2px solid #C6A664;
    border-radius: 50px;
    width: 100%;
    height: 370px;
    max-height: 400px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .package-card:hover img {
    transform: scale(1.1);
  }

  .package-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

.bg-light-custom {
  background-color: #f7f4ef;
}

.text-highlight {
  color: #C6A664;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 3px 10px rgba(198,166,100,0.5);
}

.subtitle-highlight {
  color: #b5964f;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.85;
  font-style: italic;
  letter-spacing: 0.5px;
}

.card-safari {
  border: 2px solid #C6A664;
  border-radius: 40px;
  width: 100%;
  height: 400px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #000; /* fallback if img fails */
}

.card-safari:hover {
  transform: translateY(-10px);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 0.5s ease;
}

.card-safari:hover .card-img {
  transform: scale(1.05);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: #C6A664;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* 🧡 This adds a soft black shadow */
}

.card-duration {
  font-size: 0.9rem;
  color: #e0dccc;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.btn-safari {
  border: 1px solid #C6A664;
  color: #C6A664;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.btn-safari:hover {
  background-color: #C6A664;
  color: #ffffff;
}

/* ✨ Luxury Section Styling */
  .luxury-section {
    background: linear-gradient(to bottom right, #f9f6f0, #f3eede);
    position: relative;
    overflow: hidden;
  }

  .luxury-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('{% static 'safariweb/images/background-luxury.jpg' %}') center/cover no-repeat;
    opacity: 0.05;
    animation: slowZoom 60s linear infinite alternate;
    z-index: 0;
  }

  @keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
  }

  .btn-cta {
  background: linear-gradient(135deg, #C6A664, #d4af37);
  color: white;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 14px rgba(198, 166, 100, 0.4);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #d4af37, #C6A664);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(198, 166, 100, 0.7);
}
  .tile-wrapper {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #e0dccc;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
  }

  .tile-hover {
    transition: transform 0.5s ease, filter 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) sepia(0.1) saturate(1.2);
  }

  .tile-hover:hover {
  transform: scale(1.05);
  filter: brightness(1) sepia(0.1) saturate(1.3);
}
  .tile-wrapper:hover .tile-hover {
    transform: scale(1.05);
    filter: brightness(1.08);
  }
  .tile-wrapper:hover {
    box-shadow: 0 8px 24px rgba(198, 166, 100, 0.4);
  }
/* Hover Zoom Effect */
  .rounded-4:hover img {
    transform: scale(1.05);
  }
  .btn-outline-light:hover {
    background-color: #C6A664;
    color: #ffffff !important;
    border-color: #C6A664;
  }
  .btn-outline-light {
    position: relative;
    overflow: hidden;
  }

  .btn-outline-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: skewX(-20deg);
    transition: left 0.5s ease;
  }

  .btn-outline-light:hover::before {
    left: 130%;
  }

/* 🌟 Section Styling */
  .btn-warning.active-btn {
    background-color: #C6A664;
    border: none;
    color: white;
  }
  .btn-warning.active-btn:hover {
    background-color: #b5964f;
  }
  /* Fade-up Animation */
  .zoom-container {
  max-width: 880px;
  height: 400px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.zoom-container img,
.zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 6s ease;
}

.zoom-container:hover img,
.zoom-container:hover .zoom-image {
  transform: scale(1.08); /* Chose 1.08 for smoothness */
}
  /* Particle background container */
  #particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
  }

  /* 🌟 Styling */
  /* Steps hover effect */
  .step-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(198, 166, 100, 0.2);
  }

  .btn-outline-warning {
  border: 2px solid #C6A664;
  color: #C6A664;
  transition: all 0.3s ease;
}

.btn-outline-warning:hover {
  background-color: #C6A664;
  color: white;
  border-color: #C6A664;
}
.divider-highlight {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C6A664, transparent);
  margin: 0 auto 1rem auto;
  border-radius: 2px;
}
/* safari for every journey */
/* Section Background */
.safari-journey-section {
  background-color: #fdf6e5;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Particle Background */
#particles-journey {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Content Container */
.safari-journey-container {
  position: relative;
  z-index: 2;
}

/* Heading */
.safari-journey-heading h2 {
  color: #C6A664;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Button Group */
#buttonGroup {
  max-width: 900px;
  justify-content: center;
}

/* Individual Buttons */
#buttonGroup button {
  transition-delay: 0.1s;
}

/* Title Text */
#dynamic-title {
  color: #C6A664;
}

/* Italic Span Inside Title */
#dynamic-title span {
  font-style: italic;
}

/* Button Active State */
.active-btn {
  background-color: #ffc107; /* Bootstrap Warning */
  color: #000 !important;
}

/* Image Container */
/* Animation Delay for Sections */
[data-animate="fade-up"][style*="transition-delay: 0.1s"],
[data-animate="fade-up"][style*="transition-delay: 0.2s"],
[data-animate="fade-up"][style*="transition-delay: 0.3s"] {
  transition-delay: inherit; /* Allow better control via data attributes */
}

/* Section Wrapper */
.safari-steps-section {
  background-color: #f7f4ef;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Container */
.safari-steps-container {
  position: relative;
  z-index: 2;
}

/* Heading Section */
.safari-steps-heading h2 {
  color: #C6A664;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.safari-steps-heading p {
  margin-top: 1rem;
  font-size: 1.25rem;
}

/* Step Cards */
.step-card {
  padding: 1.5rem;
  border: 1px solid #dee2e6;
  border-radius: 1rem; /* Rounded-4 */
  background-color: #ffffff;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
  height: 100%;
}

/* Icon inside Card */
.step-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffc107; /* Bootstrap text-warning */
}

/* Step Title */
.step-card h5 {
  color: #C6A664;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Step Text */
.step-card p {
  color: #6c757d; /* Bootstrap muted */
  font-size: 0.875rem;
}

/* Fade-up Animation Transition Delay */
[data-animate="fade-up"][style*="transition-delay: 0s"],
[data-animate="fade-up"][style*="transition-delay: 0.1s"],
[data-animate="fade-up"][style*="transition-delay: 0.2s"],
[data-animate="fade-up"][style*="transition-delay: 0.3s"] {
  transition-delay: inherit;
}

/* Section Wrapper */
#departuresSection {
  background-color: #f8f1df;
  transition: background-color 1s ease;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Container */
.departures-container {
  position: relative;
  z-index: 2;
}

/* Heading Section */
.departures-heading h2 {
  font-family: 'Playfair Display', serif;
  color: #C6A664;
  font-weight: 700;
}

.departures-heading p {
  margin-top: 1rem;
  font-size: 1.25rem;
}

/* Arrow Buttons */
.departure-arrow-btn {
  font-size: 1.5rem;
  padding: 1rem;
}

/* Departure Info Text */
.departure-info h3 {
  color: #C6A664;
  font-weight: 700;
  margin-bottom: 1rem;
}

.departure-info p {
  margin-bottom: 0.5rem;
  color: #6c757d; /* Bootstrap muted */
}

.departure-description {
  margin-top: 1rem;
  font-size: 1.25rem;
}

/* Departure Link Button */
.departure-link {
  min-width: 200px;
  margin-top: 1.5rem;
}

/* Departure Image */
.departure-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem; /* 24px */
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
  height: 400px;
}

/* Transition Delay for Fade Animations */
[data-animate="fade-up"][style*="transition-delay: 0.1s"],
[data-animate="fade-up"][style*="transition-delay: 0.2s"] {
  transition-delay: inherit;
}

/* Frosted Glass for Tile Wrapper */
.frosted-tile {
  background: rgba(255, 255, 255, 0.1); /* Light transparency */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem; /* Make sure it is rounded like image */
  overflow: hidden; /* Clip overflow if needed */
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Soft shadow */
  transition: all 0.4s ease;
}

/* Hover effect (Optional) */
.frosted-tile:hover {
  background: rgba(255, 255, 255, 0.2); /* More glow on hover */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/*Hover effect on the tiles after the slider*/
.luxury-overlay {
  position: relative;
  overflow: hidden;
}

.luxury-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(198, 166, 100, 0.25); /* Light gold color with transparency */
  mix-blend-mode: overlay; /* Blends the color with the image */
  pointer-events: none;
  z-index: 2; /* above the image */
  transition: opacity 0.5s ease;
  opacity: 0;
}

.luxury-overlay:hover::after {
  opacity: 0.4; /* Slightly stronger gold glow on hover */
  position: relative;
  overflow: hidden;
}

.luxury-overlay.visible::after {
  opacity: 1; /* Fade in the overlay */
}

/* slider  button style */
.luxury-btn {
  background: transparent;
  border: 2px solid #C6A664; /* Golden border */
  color: #ffffff; /* Text white immediately */
  font-weight: 600;
  transition: all 0.4s ease, box-shadow 0.4s ease;
}

.luxury-btn:hover {
  background: #C6A664; /* Gold fill on hover */
  color: #ffffff;
  box-shadow: 0 0 15px rgba(198, 166, 100, 0.6); /* Soft glowing pulse */
  transform: translateY(-2px);
}

/*the title of the slider*/
.text-highlighted {
  font-family: 'Playfair Display', serif; /* Luxury font */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Soft elegant shadow */
  letter-spacing: 1px;

  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none; /* No full caps */
}

.highlight-word {
  color: #C6A664; /* Gold color for highlighted words */
  font-style: italic;
  display: inline;
  text-shadow: none;
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-word {
}

/* 🌟 Section Titles Only */
.section-title-heading {
  font-family: 'Playfair Display', serif;
  color: #C6A664; /* Warm luxury gold */
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-transform: none;
}

.section-highlight-word {
  display: inline;
  color: #b5964f; /* Slightly deeper gold */
  font-style: italic;
  text-shadow: none;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #6c5c3f; /* Soft earthy tone */
  font-style: italic;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.fancy-title-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.fancy-title-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, #C6A664, transparent);
  border-radius: 2px;
  animation: growLine 1.2s ease forwards;
  animation-delay: 0.3s;
}

.fancy-title-text {
  text-align: center;
}

@keyframes growLine {
  from {
    height: 0;
  }
  to {
    height: 80px;
  }
}

.stagger-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpTitle 1s ease forwards;
}

.stagger-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpSubtitle 1s ease forwards;
  animation-delay: 0.3s; /* Delays the subtitle a bit */
}

@keyframes fadeUpTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpSubtitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fancy-title-heading {
  font-size: 2.8rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #3b3b3b;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: none;
}

.normal-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.5rem;
}

.highlighted-text {
  font-family: 'Playfair Display', serif;
  color: #C6A664;
  font-style: italic;
  font-weight: 600;
  font-size: 2.8rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15); /* Soft dropdown shadow */
}

.fancy-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #6c5c3f;
  font-style: italic;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.luxury-safari-section {
  background: url('/static/safariweb/images/bg-texture-light.png') center/cover no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #f9f6f0;
  padding: 4rem 1rem 2.5rem 1rem;;
}

.fade-delay-0 {
  transition-delay: 0s;
}
.fade-delay-1 {
  transition-delay: 0.1s;
}
.fade-delay-2 {
  transition-delay: 0.2s;
}
.fade-delay-3 {
  transition-delay: 0.3s;
}
.fade-delay-4 {
  transition-delay: 0.4s;
}
.fade-delay-5 {
  transition-delay: 0.5s;
}

/*DESTINATIONS SECTION CODE */

#signatureDestinationsSection {
  background: linear-gradient(to right, #2e2b27, #1c1b19);
  color: #f5f1e8;
  position: relative;
  overflow: hidden;
}

.lux-particles-overlay {
  background: url('/static/safariweb/images/particles-gold.gif') center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

#signatureDestinationsSection .fancy-title-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.fancy-title-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, #C6A664, transparent);
  border-radius: 2px;
}

#signatureDestinationsSection .fancy-title-heading {
  color: #c0c0c0;
  font-size: 2.8rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

#signatureDestinationsSection .fancy-subtitle {
  font-size: 1.2rem;
  color: #d4c8b0;
  font-style: italic;
  opacity: 0.85;
}

.lux-image-wrapper {
  position: relative;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  height: 450px;
  overflow: hidden;
}

.lux-image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  opacity: 0.95;
  transition: transform 0.6s ease;
}

.lux-image-wrapper:hover img {
  transform: scale(1.05);
}

.lux-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to left, rgba(28, 27, 25, 0) 0%, #1c1b19 100%);
  z-index: 2;
  pointer-events: none;
}

.btn-lux-alt {
  background: linear-gradient(135deg, #b18b46, #e4cc8b);
  color: #1c1c1c;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.4s ease;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(198, 166, 100, 0.25);
  border: none;
}

.btn-lux-alt:hover {
  background: linear-gradient(135deg, #e4cc8b, #b18b46);
  color: #000;
  transform: translateY(-2px);


}

/* Transition Fade Effects */
.fade-container {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0 !important;
}

.fade-in {
  opacity: 1 !important;
}

/* Full-width image visual without overlap */
@media (min-width: 992px) {
  #signatureDestinationsSection .col-md-7 {
    margin-left: -40px;
    margin-right: -20px;
  }
}

@media (min-width: 1200px) {
  #signatureDestinationsSection .col-md-7 {
    margin-left: -60px;
    margin-right: -30px;
  }
}
  /* Overlay progress bar on image */
.slide-progress-bar-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 3;
  overflow: hidden;
}

.slide-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #e4cc8b, #b18b46);
  animation: fillBar 7s linear infinite;
}

@keyframes fillBar {
  0%   { width: 0%; }
  100% { width: 100%; }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive Fixes === */
  @media (max-width: 768px) {
    .carousel-caption h1 {
      font-size: 2rem;
    }

    .carousel-caption p {
      font-size: 1rem;
    }

    .package-card {
      height: 330px;
    }
  }

  @media (max-width: 576px) {
    .carousel-caption {
      top: 60%;
      padding: 0 1rem;
    }

    .carousel-caption h1 {
      font-size: 1.6rem;
    }

    .carousel-caption p {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 992px) {
    .package-card {
      height: 420px;
    }
    .text-lg-start .divider-highlight {
    margin-left: 0;
  }

