html, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}
* {
  font-family: "Cardo", serif;
  font-weight: 600;
  font-style: normal;
}
.nav {
  background: transparent;
  position: absolute;
  top: 0;
}

  /* Navbar container */
  nav {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }

  /* Menu links */
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: #ff9800;
  }

  /* Hamburger menu (hidden by default) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    border-radius: 5px;
    transition: 0.3s;
  }

  /* Hide the checkbox */
  #menu-checkbox {
    display: none;
  }

  /* Responsive behavior */
  @media (max-width: 768px) {
    /* Hide normal menu */
    .nav-links {
      position: absolute;
      top: 100px;
      right: 10px;
      width: 50%;
      list-style-type: none;
      border-radius: 10px;
      background-color: #333;
      flex-direction: column;
      align-items: center;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }

    /* When checkbox is checked, show menu */
    #menu-checkbox:checked ~ .nav-links {
      max-height: 300px;
      transition: max-height 0.3s ease-in;
    }

    /* Show hamburger */
    .menu-toggle {
      display: flex;
    }
  }
.navbar {
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

.navbar-brand span {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.navbar-brand:hover span {
  color: orange;
}

.navbar-brand {
  transition: transform 0.3s ease;
  text-decoration: none;
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-decoration: none;
}
.nav_logo {
  max-width: 80px;
  height: auto;
}
.background-intro-image {
  background-image: url('./images/nairobi.jpg');
  min-width: 40%;
  height: 400px;
  background-size: cover;
  margin-right: -40px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 12px;
}

  .slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
  }

  .slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }

  .slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 400px;
    object-fit: contain; /* Keep aspect ratio */
    transition: transform 0.3s ease;
  }

  .slider img:hover {
    transform: scale(1.02);
  }

  /* Arrow buttons */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 28px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
  }

  .arrow:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .left {
    left: 15px;
  }

  .right {
    right: 15px;
  }
.introduction {
  background-color: #f6d7a2;
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: row;
  justify-content:center;
  align-items: center;
}
.car-container > .box_shadow_effect {
  z-index: 3;
  width: 400px;
  height: 500px;
  background-color: whitesmoke;
  padding: 20px;
  letter-spacing: 2px;
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.introduction > p {
  z-index: 3;
  width: 400px;
  height: 400px;
  background-color: whitesmoke;
  padding: 20px;
  letter-spacing: 2px;
  font-size: 1.15rem;
  margin-bottom: 30px;
}
.background-pattern-image {
  background-image: url('./images/tribe_pattern.jpg');
  min-width: 300px;
  height: 300px;
  margin-left: -40px;
  background-size: cover;
}

.background-car-image {
  background-image: url('./images/nairobi.jpg');
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.background-offer-image {
  background-image: url('./images/offer_pattern.jpg');
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.image-row {
  display: flex;
  gap: 10px; /* space between images */
  margin-bottom: 50px;
}

.image-row img {
  flex: 1;           /* all images equal width */
  height: 250px;     /* equal height */
  object-fit: cover; /* keeps aspect ratio & crops if needed */
  border-radius: 5px;
}

.image-row img:hover {
  transform: scale(1.03);
  transition: 0.3s ease;
}


/* 📌 Under 768px: stack vertically */
@media (max-width: 997px) {
  .image-row {
    flex-direction: column;
  }

  .image-row img {
    width: 100%;
    height: 100px;   /* optional bigger height on mobile */
  }
}

.car-container > .box_shadow_effect {
  position: absolute;
  left: 5%;
  top: 30%;
}

.offer_container > h2 {
  position: absolute;
  z-index: 3;
  left: 40%;
  top: 10%;
  font-size: 36px;
  color: rgb(34, 33, 33);
  text-transform: uppercase;
  font-weight: 800;
}

.offer_container > .offer-row > .card-offer {
  width: 40%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(245, 245, 245, 0.503);
}

.offer_container > .offer-row > .card-offer > .card-left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer_container > .offer-row {
  position: absolute;
  z-index: 3;
  left: 5%;
  top: 20%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
}
.offer_container > .offer-row > .card-offer > .card-img {
  max-width: 30%;
}
.offer_container > .offer-row > .card-offer > img {
 width: 40%; /* Or a fixed width */
  height: auto;
  aspect-ratio: 4 / 5; /* Sets a 16:9 aspect ratio */
  object-fit: cover; /* Optional: how the image fits within its box */
}

.offer_container > .offer-row > .card-offer > .card-left-side > .card-title {
  margin-top: 20px;
}

.offer_container > .offer-row > .card-offer > .card-left-side > .card-btn,
.contact_container > .card-btn {
  text-decoration: none;
  padding: 10px 15px;
  border: 2px orange solid;
  background-color: orange;
  color: white;
}

.socials_container > .card-btn {
  padding: 20px 15px;
  border: 2px orange solid;
  border-radius: 15px;
  min-width: 30%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.socials_container > .card-btn {
  color: black;
}

.offer_container > .offer-row > .card-offer > .card-btn {
  text-decoration: none;
}

.offer_container > .offer-row > .card-offer > .card-left-side > .card-btn:hover,
.contact_container > .card-btn:hover,
.socials_container > .card-btn:hover {
  color: black;
  background-color: rgba(245, 245, 245, 0.582);
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out; 
}

.location_container {
  padding: auto 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #f1d8ba;
}

.location_container > div > p {
    letter-spacing: 2px;
  font-size: 1.15rem;
}

.location_container > div > h1,
.contact_container > h1 {
    letter-spacing: 2px;
  font-size: 3.75rem;
  padding-bottom: 30px;
}

.socials_container { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120vh;
  background-color: white;
}

.contact_container { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-image: url('./images/contact_pattern.jpg');
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  color: white;
}

.car-container,
.parallax-container,
.offer_container,
.location_container,
.contact_container {
  position: relative;
  height: 100vh; 
  overflow: hidden;
}

/* .background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/banner.jpg');
  background-position: center;
  background-size: cover;
  padding: 50px;
  background-attachment: fixed;
  z-index: -3;
  opacity: 0;
  animation: fadeZoom 4s ease-in-out forwards;
} */

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  z-index: -3;
}

.box_shadow_effect {
  box-shadow: 0px 1px 5px 4px rgba(0,0,0,0.33);
  -webkit-box-shadow: 0px 1px 5px 4px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 1px 5px 4px rgba(0,0,0,0.33);
}
.text-overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.413);
  padding: 50px;
  width: 50%;
  margin: auto auto;
  border-radius: 15px;
  font-size: 1.75rem;
}
.top_section img {
  width: 100px;
  max-height: 70px;
}

.footer_style {
  width: 100%;
  background-color: rgb(3, 3, 42);
  color: white;
  padding: 100px 50px;
}

.footer_style .copyright {
  width: 100%;
  background-color: rgb(3, 3, 42);
  color: white;
  padding-top: 100px;
}

.footer_col {
  display: flex;
  flex-direction: column;
}

.footer_col > a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.footer_col > a:hover {
  color: #ff9800;
}

.footer_col > span {
  color: orange;
  font-weight: 700;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8 columns */
  gap: 10px; /* space between images */
  max-width: 90%;
  padding: 10px;
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.image-grid img:hover {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

/* 🔹 Responsive Breakpoints */
@media (max-width: 1200px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
  }
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 8px;
  }
 
  .socials_container .card-btn {
    width: 80%;
  }

  .socials_container {
    padding: 80px 20px;
    min-width: 80%;
  }
  
  .contact_container {
    padding: 40px 20px;
    text-align: center;
  }
  
  .contact_container > img {
    width: 60% !important;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr; /* stack images */
    gap: 5px;
  }
  
  .socials_container {
    padding: 60px 15px;
  }
  
  .contact_container {
    padding: 30px 15px;
  }
  
  .contact_container > img {
    width: 80% !important;
  }
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1); /* slight zoom in */
  }
}

/* Packages Page Specific Styles */
.packages-main {
  width: 100%;
}

.packages-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.packages-hero .parallax-container {
  height: 100%;
}

.packages-hero .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.413);
  padding: 40px;
  width: 60%;
  border-radius: 15px;
  font-size: 1.5rem;
}

.packages-content {
  background-color: #f6d7a2;
  padding: 60px 0;
  min-height: 100vh;
}

.service-section {
  margin-bottom: 80px;
}

.service-img img {
  width: 100%;
  height: 550px;      /* desired height */
  object-fit:contain;
}

.service-details {
  border-radius: 10px;
  margin: 20px 0;
}

.service-details h2 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.service-details h4 {
  color: orange;
  font-weight: 700;
  margin: 20px 0 10px 0;
  font-size: 1.5rem;
}

.service-details p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-details ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-details li {
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.service-details strong {
  color: rgb(34, 33, 33);
  font-weight: 800;
}

/* Enhanced active navigation state styling */
.nav-link.active {
  color: orange !important;
  font-weight: 700;
  position: relative;
  background-color: rgba(255, 165, 0, 0.15);
  border-radius: 6px;
  text-shadow: 0 1px 3px rgba(255, 165, 0, 0.3);
  border: 1px solid rgba(255, 165, 0, 0.3);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 3px;
  background: linear-gradient(90deg, transparent, orange, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(255, 165, 0, 0.5);
  animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
  0% {
    box-shadow: 0 2px 6px rgba(255, 165, 0, 0.5);
    opacity: 0.8;
  }
  100% {
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.7);
    opacity: 1;
  }
}

/* Navigation hover effects */
.nav-link {
  color: white !important;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 10px 16px !important;
  text-decoration: none;
  border-radius: 6px;
  margin: 0 2px;
  display: inline-block;
}

.nav-link:hover {
  color: orange !important;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 165, 0, 0.08);
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, orange, transparent);
  opacity: 0.8;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure active state overrides hover */
.nav-link.active:hover {
  color: orange !important;
  transform: translateY(-1px);
  text-shadow: 0 2px 6px rgba(255, 165, 0, 0.6);
  background-color: rgba(255, 165, 0, 0.2);
}

.nav-link.active:hover::after {
  width: 90%;
  height: 3px;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(255, 165, 0, 0.6);
}

/* Focus states for accessibility */
.nav-link:focus {
  outline: 2px solid rgba(255, 165, 0, 0.5);
  outline-offset: 2px;
}

.nav-link.active:focus {
  outline: 2px solid orange;
  outline-offset: 2px;
}

/* Mobile navigation styling */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.4);
  outline: none;
  border-color: orange;
}

.navbar-toggler:hover {
  border-color: orange;
  background-color: rgba(255, 165, 0, 0.15);
  transform: scale(1.05);
}

.navbar-toggler[aria-expanded="true"] {
  border-color: orange;
  background-color: rgba(255, 165, 0, 0.2);
  box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 165, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile navigation menu background */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(34, 33, 33, 0.9));
    margin-top: 15px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 165, 0, 0.2);
  }
  
  .nav-link::after,
  .nav-link:hover::after,
  .nav-link.active::after {
    display: none;
  }
  
  .nav-link {
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 4px 0;
    transition: all 0.3s ease;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-link.active {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(255, 165, 0, 0.2));
    border: 2px solid rgba(255, 165, 0, 0.5);
    border-bottom: 2px solid rgba(255, 165, 0, 0.5) !important;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.25);
    position: relative;
    font-weight: 700;
  }
  
  .nav-link.active::before {
    content: '●';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: orange;
    font-size: 12px;
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }
    50% {
      opacity: 0.7;
      transform: translateY(-50%) scale(1.1);
    }
  }
  
  .nav-link:hover {
    background-color: rgba(255, 165, 0, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 165, 0, 0.3);
  }
  
  .nav-link.active:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.35), rgba(255, 165, 0, 0.25));
    transform: translateX(3px);
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.3);
  }
}

/* Responsive design for packages page */
@media (max-width: 768px) {
  .packages-hero .text-overlay {
    width: 90%;
    padding: 30px 20px;
    font-size: 1.2rem;
  }
  
  .service-details {
    margin: 15px 0;
    padding: 20px !important;
  }
  
  .service-details h2 {
    font-size: 2rem;
  }
  
  .service-details h4 {
    font-size: 1.3rem;
  }
  
  .service-section {
    margin-bottom: 60px;
  }
  
  .service-section .row {
    margin: 0;
  }
  
  .service-section .col-md-6 {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .packages-hero .text-overlay {
    width: 95%;
    padding: 20px 15px;
    font-size: 1rem;
  }
  
  .service-details h2 {
    font-size: 1.8rem;
  }
  
  .service-details h4 {
    font-size: 1.2rem;
  }
  
  .service-details p,
  .service-details li {
    font-size: 0.95rem;
  }
}/* Backg
round pattern for packages content */
.packages-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url('./images/tribe_pattern.jpg');
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.packages-content .container {
  position: relative;
  z-index: 1;
}

/* About Page Specific Styles */
.about-main {
  width: 100%;
}

.about-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.about-hero .parallax-container {
  height: 100%;
}

.about-hero .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.413);
  padding: 40px;
  width: 60%;
  border-radius: 15px;
  font-size: 1.5rem;
}

.about-content {
  background-color: #f6d7a2;
  padding: 60px 0;
  min-height: 100vh;
  position: relative;
}

/* Background pattern for about content */
.about-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url('./images/tribe_pattern.jpg');
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.about-content .container {
  position: relative;
  z-index: 1;
}

/* Company intro section */
.company-intro .box_shadow_effect {
  border-radius: 10px;
}

.company-intro h2 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.company-intro img {
  width: 90%;
  height: auto;
  background-size: contain;
  margin: 40px auto;
}

.company-intro .lead {
  color: orange;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.company-intro p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Mission section */
.mission-section .box_shadow_effect {
  border-radius: 10px;
  margin: 20px 0;
}

.mission-section h3 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2rem;
}

.mission-section h4 {
  color: orange;
  font-weight: 700;
  margin: 20px 0 10px 0;
  font-size: 1.4rem;
}

.mission-section p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mission-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.mission-section li {
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.mission-section strong {
  color: rgb(34, 33, 33);
  font-weight: 800;
}

/* Services and experience section */
.services-experience .box_shadow_effect {
  border-radius: 10px;
}

.services-experience h3 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

.services-experience h4 {
  color: orange;
  font-weight: 700;
  margin: 20px 0 15px 0;
  font-size: 1.4rem;
}

.services-experience p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.services-experience ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.services-experience li {
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.services-experience strong {
  color: rgb(34, 33, 33);
  font-weight: 800;
}

/* Location and contact section */
.location-contact .box_shadow_effect {
  border-radius: 10px;
  margin: 20px 0;
}

.location-contact h3 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2rem;
}

.location-contact h4 {
  color: orange;
  font-weight: 700;
  margin: 20px 0 10px 0;
  font-size: 1.4rem;
}

.location-contact p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.location-contact strong {
  color: rgb(34, 33, 33);
  font-weight: 800;
}

/* Contact info section */
.contact-info .box_shadow_effect {
  border-radius: 10px;
}

.contact-info h3 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.contact-info a {
  text-decoration: none;
}

.contact-info h5 {
  color: orange;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-info p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgb(34, 33, 33);
}

.contact-info .card-btn {
  text-decoration: none;
  padding: 12px 20px;
  border: 2px orange solid;
  background-color: transparent;
  color: rgb(34, 33, 33);
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-info .card-btn:hover {
  color: white;
  background-color: orange;
  transform: scale(1.05);
}

/* Page-specific utility classes */
.page-home .nav-link[href="index.html"],
.page-home .nav-link[href="#"] {
  color: orange !important;
  font-weight: 700;
}

.page-packages .nav-link[href="packages.html"] {
  color: orange !important;
  font-weight: 700;
}

.page-about .nav-link[href="about.html"] {
  color: orange !important;
  font-weight: 700;
}

/* Page-specific layout classes */
.page-packages {
  /* Packages page specific styles */
  background-color: #f6d7a2;
}

.page-about {
  /* About page specific styles */
  background-color: #f6d7a2;
}

/* General page layout classes */
.page-content {
  min-height: calc(100vh - 200px);
}

.page-header {
  position: relative;
  z-index: 10;
}

.page-main {
  flex: 1;
}

/* Page-specific main content classes */

.page-packages .packages-main {
  /* Packages page main content styling */
  width: 100%;
}

.page-about .about-main {
  /* About page main content styling */
  width: 100%;
}

/* Page-specific hero section classes */
.page-packages .packages-hero,
.page-about .about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.page-packages .packages-hero .parallax-container,
.page-about .about-hero .parallax-container {
  height: 100%;
}

/* Page-specific content area classes */
.page-packages .packages-content,
.page-about .about-content {
  background-color: #f6d7a2;
  padding: 60px 0;
  min-height: 100vh;
  position: relative;
}

/* Page-specific background pattern classes */
.page-packages .packages-background-pattern,
.page-about .about-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url('./images/tribe_pattern.jpg');
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-packages .packages-content .container,
.page-about .about-content .container {
  position: relative;
  z-index: 1;
}

/* Content section styling for all pages */
.content-section {
  padding: 40px 0;
}

.content-section h1,
.content-section h2 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 20px;
}

.content-section h3 {
  color: orange;
  font-weight: 700;
  margin: 20px 0 15px 0;
}

.content-section p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Universal content box styling for all pages */
.content-box {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  margin: 20px 0;
}

.content-box h2,
.content-box h3 {
  color: rgb(34, 33, 33);
  font-weight: 800;
  margin-bottom: 20px;
}

.content-box h4 {
  color: orange;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.content-box p {
  letter-spacing: 1px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.content-box ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content-box li {
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.content-box strong {
  color: rgb(34, 33, 33);
  font-weight: 800;
}

/* Page-specific service section classes */
.page-packages .service-section {
  margin-bottom: 80px;
}

.page-packages .service-details {
  border-radius: 10px;
  margin: 20px 0;
}

/* Page-specific about section classes */
.page-about .company-intro,
.page-about .mission-section,
.page-about .services-experience,
.page-about .location-contact,
.page-about .contact-info {
  margin-bottom: 40px;
}

/* Shared text overlay styling for hero sections */
.page-packages .text-overlay,
.page-about .text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.413);
  padding: 40px;
  width: 60%;
  border-radius: 15px;
  font-size: 1.5rem;
}

/* Universal page styling classes */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.page-footer {
  margin-top: auto;
}

.page-packages .background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/lion_cubs.jpeg');
  background-position: center;
  background-size: cover;
  padding: 50px;
  background-attachment: fixed;
  z-index: -3;
  opacity: 0;
  animation: fadeZoom 4s ease-in-out forwards;
}

/* Ensure existing parallax and animation effects work on all pages */
.page-about .background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/bluebird.jpeg');
  background-position: center;
  background-size: cover;
  padding: 50px;
  background-attachment: fixed;
  z-index: -3;
  opacity: 0;
  animation: fadeZoom 4s ease-in-out forwards;
}

/* Ensure box shadow effects work consistently across pages */
.page-packages .box_shadow_effect,
.page-about .box_shadow_effect,
.page-home .box_shadow_effect {
  box-shadow: 0px 1px 5px 4px rgba(0,0,0,0.33);
  -webkit-box-shadow: 0px 1px 5px 4px rgba(0,0,0,0.33);
  -moz-box-shadow: 0px 1px 5px 4px rgba(0,0,0,0.33);
}

/* Additional responsive fixes for home page */
@media (max-width: 991px) {
  .location_container .row {
    text-align: center;
  }
  
  .contact_container .row {
    text-align: center;
  }
  
  .offer_container .card-offer {
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 576px) {
  .location_container .col-lg-4,
  .location_container .col-lg-8,
  .contact_container .col-lg-4,
  .contact_container .col-lg-8 {
    margin-bottom: 20px;
  }
  
  .offer_container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .location_container h1 {
    font-size: 2rem;
  }
}

/* Responsive design for about page */
@media (max-width: 768px) {
  .about-hero .text-overlay {
    width: 90%;
    padding: 30px 20px;
    font-size: 1.2rem;
  }
  
  .company-intro .box_shadow_effect,
  .mission-section .box_shadow_effect,
  .services-experience .box_shadow_effect,
  .location-contact .box_shadow_effect,
  .contact-info .box_shadow_effect {
    margin: 15px 0;
    padding: 20px !important;
  }
  
  .company-intro h2,
  .services-experience h3,
  .contact-info h3 {
    font-size: 2rem;
  }
  
  .mission-section h3,
  .location-contact h3 {
    font-size: 1.8rem;
  }
  
  .mission-section h4,
  .services-experience h4,
  .location-contact h4 {
    font-size: 1.2rem;
  }
  
  .contact-info h5 {
    font-size: 1.1rem;
  }
  
  .about-content {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .about-hero .text-overlay {
    width: 95%;
    padding: 20px 15px;
    font-size: 1rem;
  }
  
  .company-intro h2,
  .services-experience h3,
  .contact-info h3 {
    font-size: 1.8rem;
  }
  
  .mission-section h3,
  .location-contact h3 {
    font-size: 1.6rem;
  }
  
  .mission-section h4,
  .services-experience h4,
  .location-contact h4 {
    font-size: 1.1rem;
  }
  
  .contact-info h5 {
    font-size: 1rem;
  }
  
  .company-intro p,
  .mission-section p,
  .services-experience p,
  .location-contact p,
  .contact-info p {
    font-size: 0.95rem;
  }
  
  .mission-section li,
  .services-experience li {
    font-size: 0.9rem;
  }
  
  .contact-info .card-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* Responsive design for home page offer cards */
@media (max-width: 1200px) {
  .offer_container > .container > .offer-row {
    flex-direction: column;
    align-items: center;
    height: auto;
    position: static;
    padding: 20px;
  }
  
  .offer_container .card-offer {
    width: 100% !important;
    margin-bottom: 20px;
    height: 300px;
  }
  
  .offer_container > h2 {
    position: static;
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {

  .parallax-container{
    position: relative;
    height: 40vh; 
    overflow: hidden;
  }
  .offer_container .card-offer {
    width: 100% !important;
    height: 250px;
  }
  
  .offer_container {
    padding: 40px 20px;
    height: 190vh;
    margin-top: 140px;
  }
  
  .location_container {
    padding: 40px 20px;
    text-align: center;
    height: 180vh;
  }
  
  .location_container .container .row {
    flex-direction: column;
  }
  
  .location_container img {
    width: 80% !important;
    margin-bottom: 20px;
  }
  
  .introduction .container .row .col-12 p {
    width: 95%;
    padding: 15px;
    font-size: 1rem;
  }
  
  .car-container .container .row .col-12 > div {
    width: 95%;
    padding: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .offer_container .card-offer {
    width: 100% !important;
    height: 200px;
  }
  
  .text-overlay {
    width: 95% !important;
    padding: 20px !important;
    font-size: 1.2rem !important;
  }
  
  .text-overlay h1 {
    font-size: 2rem;
  }
  
  .location_container h1,
  .contact_container h1 {
    font-size: 2.5rem;
  }
  
  .introduction .container p,
  .car-container .container .box_shadow_effect {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
  }
}

/* Universal responsive classes for all pages */
@media (max-width: 1200px) {
  .page-packages .text-overlay,
  .page-about .text-overlay {
    width: 70%;
    padding: 35px;
  }
  
  .content-box {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .page-packages .service-section,
  .page-about .company-intro,
  .page-about .mission-section,
  .page-about .services-experience,
  .page-about .location-contact,
  .page-about .contact-info {
    margin-bottom: 50px;
  }
  
  .content-box {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .page-packages .text-overlay,
  .page-about .text-overlay {
    width: 95%;
    padding: 20px 15px;
    font-size: 1rem;
  }
  
  .content-box {
    padding: 15px;
    margin: 15px 0;
  }
  
  .page-packages .service-section,
  .page-about .company-intro,
  .page-about .mission-section,
  .page-about .services-experience,
  .page-about .location-contact,
  .page-about .contact-info {
    margin-bottom: 30px;
  }
  
  /* Footer responsive improvements */
  .footer_style {
    padding: 50px 20px;
  }
  
  .footer_style > div:first-child {
    flex-direction: column !important;
    width: 100% !important;
    text-align: center;
  }
  
  .footer_col {
    margin-bottom: 30px;
    align-items: center;
  }
  
  .footer_style .copyright {
    padding-top: 30px;
  }
}