

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
  }
  
  html,body {
    
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background: rgb(255, 254, 254);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    overflow-x: hidden;
}


  header {
    top: 0;
    left: 0;
    position: relative;
    background-color: #f3f3f3;
    padding: 4px; /* Reduced padding for a smaller header */
    height: 80px;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    width: 210px;
    line-height: 50%;
    display: block;
    margin-left: auto;   /* Pushes it to the right */
    margin-right: 0;
  }
  
  @media (max-width: 767px) {
    .logo {
      width: 160px;
      margin: 50px auto 20px auto; /* top auto bottom auto */
    }
  }
  

  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-left:2px;
    margin-right: 10px;
  }
  
  .navbar ul {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 50%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center; /* Align items vertically */
  }
  
  .navbar a {
    font-style: normal;
    color: rgb(255, 255, 255);
    padding: 10px;
    text-align: center;
    color: #0d200e;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.9;  
}

.navbar ul li a:hover {
    background-color: #6B8E23;
    color: #fff;
}
.video-container {
  position: relative;
  width: 100%;
  height: 630px; /* Default height for desktop */
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile styles */

.overlay-image {
  position: absolute;
  bottom: -50px; /* Move the image to the bottom */
  left: 15px; /* Move the image to the left */
  width: 100%; /* Optional: make the image span the width for desktop */
  max-width: 250px; /* Optional: limit width */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure proper fit */
  z-index: 1; /* Ensure the image is on top of the video */
}

@media (max-width: 768px) {
  .video-container {
    height: 300px; /* Adjust height for mobile screens */
  }

  .overlay-image {
    position: absolute; /* Position the image on top of the video */
    bottom: -50px; /* Adjust margin from the bottom */
    left: 10px; /* Adjust margin from the left */
    width: 50%; /* Adjust image size for mobile */
    max-width: 200px; /* Optional: limit the image width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure proper fit */
    z-index: 1; /* Ensure the image is on top of the video */
  }
}

/* Hero Text Section */

#hero-text {
    background-color: #ececec;
    padding: 90px 50px;
    text-align: center;
   
}

#hero-text h1 {
    
    font-size: 2.5em;
    color: #2F4F4F;
    margin-bottom: 20px;
    font-weight: bold;
}
#hero-text h1::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #6B8E23);
  margin: 15px auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  #hero-text h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center;
  }
}

.hero-par {
    text-align: justify;
    font-size: 1em;
    line-height: 1.8;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin: 0 auto;
    max-width: 1100px;
}

.hero-par p {
    margin-bottom: 20px;
}

.hero-par p span {
    font-weight: bold;
    color: #2a5d84;
    text-decoration:none;
    
}
.hero-par p a {
  text-decoration: none;
}
#extra-content h1 {
 text-align: center;

}

.hidden {
  display: none;
}

.see-moremore, #learn-less-container {
  display: flex;
  justify-content: center; /* Centering */
  margin-top: 20px;
}

.see-more, .learn-less {
  background-color: #6B8E23;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  display: inline-block;
}

.see-more:hover, .learn-less:hover {
  background-color: #4A7C59;
  transform: scale(1.05);
}

.see-more:active, .learn-less:active {
  background-color: #153a52;
  transform: scale(0.98);
}



/*places to see*/
.places-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-size: 2.5rem;
  color: #2F4F4F;
}
.section-title h2 {
  color: #000;
}
.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #6B8E23);
  margin: 15px auto;
  border-radius: 2px;
}

.places-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 30px;
}

.place-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.place-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.place-card:hover .place-image {
  transform: scale(1.05);
}

.place-info {
  padding: 20px;
  position: relative;
}

.place-number {
  position: absolute;
  top: -30px;
  left: 20px;
  background: linear-gradient(135deg, #276b38, #5af500);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.place-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
  padding-top: 10px;
}

.place-description {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 15px;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: rgb(44, 42, 42);
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  position: relative;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.modal-info {
  padding: 30px;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.modal-text {
  line-height: 1.8;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  border: none;
}

@media (max-width: 768px) {
  .places-container {
      grid-template-columns: 1fr;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .modal-content {
      width: 95%;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.place-card {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.place-card:nth-child(1) { animation-delay: 0.1s; }
.place-card:nth-child(2) { animation-delay: 0.2s; }
.place-card:nth-child(3) { animation-delay: 0.3s; }
.place-card:nth-child(4) { animation-delay: 0.4s; }
.place-card:nth-child(5) { animation-delay: 0.5s; }
.place-card:nth-child(6) { animation-delay: 0.6s; }
.place-card:nth-child(7) { animation-delay: 0.7s; }
.place-card:nth-child(8) { animation-delay: 0.8s; }
.place-card:nth-child(9) { animation-delay: 0.9s; }


/*ABotu US*/
#about-us {
  background-color: #e0e0e0;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  height: 690px;
}

.about-us-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-us-text {
  flex: 1;
  min-width: 300px;
}

.about-us-text h2 {
  font-family: Arial, sans-serif;
  color: #2F4F4F;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  
}

.about-us-text p {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}
.about-us-text h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #6B8E23;
  display: block;
  margin: 10px 50px 0;
  border-radius: 2px;
}
.about-us-images {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex: 1;
  justify-content: center;
  min-width: 700px;
}

.about-us-image {
  width: 600px;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  transform: rotate(2deg);
  margin-top: 50px;
}

.image-one {
  background-image: url('images/new/founder.jpg');
  background-position: top left;
}

.image-two {
  background-image: url('images/new/niyalag.jpg');
  background-position: center center;
}

.image-three {
  background-image: url('images/new/Ethiopian\ Wolf\ Yawning.jpg');
  background-position: right bottom;
}

/* Mobile About Us (0-767px) - Desktop Style Scaled Down */
@media (max-width: 767px) {
  #about-us {
    background-color: #e0e0e0;
    padding: 30px 15px;
    height: auto;
    overflow: hidden;
  }

  .about-us-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .about-us-text {
    flex: 1;
    min-width: 0; /* Allows proper shrinking */
  }

  .about-us-text h2 {
    color: #335b1f;
    font-size: 22px; /* Scaled down from 28px */
    margin-bottom: 15px;
    letter-spacing: 1px; /* Reduced from 2px */
    text-align: left; /* Maintain desktop alignment */
    margin-left: 10px;
  }

  .about-us-text p {
    font-family: Arial, Helvetica, sans-serif;
   font-size: 17px;
  margin-bottom: 30px;
  color: #4a4a4a;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  }

  .about-us-images {
    margin-left: -160px;
    display: flex;
    flex-direction: row;
    gap: 10px; /* Reduced from 15px */
    overflow-x: auto; /* Allows horizontal scrolling */
    padding-bottom: 10px; /* Space for scroll */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .about-us-image {
    width: 100px; /* Scaled down from 600px */
    height: 265px; /* Scaled down proportionally (450/600*220) */
    flex-shrink: 0; /* Prevents images from shrinking */
    background-size: cover;
    background-position: center;
  
    border-radius: 8px;
    transform: rotate(2deg); /* Maintains desktop effect */
    margin-top: 0; /* Adjusted for mobile */
  }

  /* Hide scrollbar while keeping functionality */
  .about-us-images::-webkit-scrollbar {
    display: none;
  }
}


 #services {
     background-image: url('images/new/Manyate\ Coffee\ Village.jpg');
     background-repeat: no-repeat;
     background-size: cover;
     opacity: 0.9;
      padding: 40px 20px;
      width: 100%;
      margin: auto;
    }

    #services .services-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;

    }
    #services .services-header h2 {
      font-size: 30px;
      margin-bottom: 30px;
      color: #2F4F4F;
      position: relative;
      margin-left: auto;
      margin-right: auto;
      width: fit-content;
      left: 110px; /* Adjust this value as needed */
    }
    
    
    #services .services-header h2::after {
      content: '';
      width: 60px;
      height: 3px;
      background: #6B8E23;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }
    #services .btn-view-all {
      background-color: #6B8E23;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 20px;
      font-size: 14px;
      cursor: pointer;
    }
   #services .btn-view-all:hover {
      background-color: #4A7C59;
   }
   #services .services-grid {
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto; /* Center the grid horizontally */
  }
  
    #services .service-card {
      background-color: #ccc4b8;
      border-radius: 15px;
      padding: 20px;
      position: relative;
      padding-top: 70px;
      min-height: 200px;
    }

    #services .service-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
      font-weight: bold;
      color: #111;
    }

    #services .service-card p {
      font-size: 14px;
      color: #333;
      margin-bottom: 12px;
    }

    #services .service-card a {
      font-weight: bold;
      color: #2d5c1d;
      text-decoration: none;
    }

    /* Icons Placeholder (Can Replace with Real Icons) */
    #guiding-service::before,
    #entrance-fee::before,
    #field-gear::before,
    #accommodation::before,
    #transportation::before,
    #cooking-service::before,
    #horses::before,
    #horse-assistant::before,
    #all-meals::before {
      content: "";
      position: absolute;
      top: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      background-color: white;
      border: 2px solid #2d5c1d;
      border-radius: 50%;
    }

    #more-services {
      display: none;
    }

    #more-services.show {
      display: contents; /* allows children to fit into grid */
    }
    .service-card .icon-circle {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      background-color: white;
      border: 2px solid #2d5c1d;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
     
    }
    
    .service-card .icon-circle i {
      font-size: 18px;
      color: #2d5c1d;
    }
    

    @media (max-width: 768px) {
      #services .services-grid {
        grid-template-columns: repeat(1, 1fr);
      }
     
      #services h3 {
       
        margin-top: 50px;
      }
      .services-header h2 {
        margin-left: 50px;
      }
    }

    .service-card i {
      font-size: 24px;
      color: #2c3e50;
      margin-bottom: 8px;
      display: block;
    }
    
  .services-section {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
}

.services-container {
  margin:auto;
  max-width: 1000px;
  padding: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Keeps them from stacking */
}

.service-item {
    width: 30%; /* Adjust this value as needed */
    background-color: #ccc4b8;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-5px);
}
.services-section h2 {
  
      color: #ca2f00;
      font-size: 28px;
      margin-left:160px;
      margin-top:15px ;
}
.service-item h3 {
    margin: 0;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #111;
}

.service-item p {
      font-size: 14px;
      color: #333;
}


/* Mobile styles */
@media (max-width: 768px) {
  .services-container {
      width: 90%;  /* Increase width for mobile */
      flex-direction: column; /* Stack the items vertically */
      align-items: center; /* Center items */
  }

  .service-item {
      width: 80%; /* Make each item take up more space on mobile */
      margin: 10px 0; /* Adjust margin for stacking */
  }

  .services-section h2 {
     margin-left: -10px;
  }
}

/* Additional smaller screen styles */
@media (max-width: 480px) {
  .service-item {
      width: 90%; /* Make each item even bigger on very small screens */
  }

  .services-section h2 {
      font-size: 24px; /* Make heading slightly smaller on very small screens */
  }
}

.simple-services-section {
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 50px auto;
  border-radius: 16px;
  margin-top: -25px;
 
}

.simple-services-section h2 {
  margin-left: 40px;
  font-size: 28px;
  color: #e23838;
  margin-bottom: 30px;
  position: relative;

}

.simple-services-section h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #db2323;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Horizontal UL List */
.simple-services-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  
}

.simple-services-section ul li {
  font-size: 16px;
  color: #000000;
  padding: 10px 15px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ddd;
  transition: background 0.3s;
  background-color: #fdfcf981;
}

.simple-services-section ul li:hover {
  background: #7b867e;
}


.exclude-icon {
  color: #e63946;
  font-size: 18px;
  margin-right: 10px;
}



 /* Contact Section */
 .contact-section {
  max-width: 1450px;
  padding: 50px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  border-radius: 20px;
  margin: 40px 20px;
  margin-left: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #2F4F4F;
  position: relative;
}

.contact-section h2::after {
  content: '';
  width: 80px;
  height: 5px;
  background: #6B8E23;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.contact-section p {
  font-size: 17px;
  margin-bottom: 30px;
  color: #4a4a4a;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.contact-section ul li {
  font-size: 16px;
  background: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-section ul li:hover {
  background: #4A7C59;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



@media (max-width: 768px) {
  /* SERVICES section (already good) */
  #services {
    padding: 30px 10px;
  }

  #services .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #services .services-header h2 {
    margin-left: 15px;
    text-align:left;
    font-size: 24px;
 
  }

  #services .btn-view-all {
    align-self: flex-end;
  }

  #services .services-grid {
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  #services .service-card {
    padding: 20px 15px 15px 15px;
  }
.simple-services-section h2 {
  font-size: 24px;
    margin-left: -39.54px;
}
  #guiding-service::before,
  #entrance-fee::before,
  #field-gear::before,
  #accommodation::before,
  #transportation::before,
  #cooking-service::before,
  #horses::before,
  #horse-assistant::before,
  #all-meals::before {
    top: 15px;
    left: 15px;
  }

  .contact-section {
    padding: 30px 15px;
    margin: 20px 10px;
}

.contact-section h2 {
    font-size: 24px;
    
}

.contact-section p {
    font-size: 15px;
}

.contact-section ul li {
    font-size: 14px;
    padding: 10px 20px;
}

}


/* History Section */
.history-section {
  background-color: #eeeeee;
  padding: 40px 0;
  position:relative;
  left: 0;
  width: 100vw;
  height: auto; /* Optional: Covers full page height */
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 20px;
  width: 80%;  /* Takes 80% of parent container */
  max-width: 1200px; /* Prevents it from being too large */
  min-height: 500px; /* Ensures a minimum height */
}


.image-container img {
    max-width: 500px;
    height: 650px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-left: 70px;
}

.text-container {
    margin-left: 120px;
    flex: 1;
    max-width: 500px;
}

.text-container h1 {
    font-size: 2em;
    color: #2a5d84;
    margin-top: 50px;
    margin-bottom: 20px;
   
}

.text-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
   
}

.text-container ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.text-container ul li {
    margin-bottom: 10px;
}
.text-container li a{
    text-decoration: none;
    color: inherit;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  text-align: center;
  position: relative;
  border-radius: 8px;
}

.modal-content img {
  max-width: 100%;
  height: auto;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.imgBx img {
  transition: opacity 0.3s ease-in-out;
}

.titleText {
  transition: color 0.3s ease-in-out;
}
/* Adjust list item (li) for consistent alignment */
.contentBx ul li {
  color: #cfcccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.2s ease;
  border-bottom: 1px solid #ddd; /* Optional divider */
  background-color: #333333; /* Neutral background for better visibility */
  border-radius: 5px; /* Add subtle rounding for a modern look */
  margin: 10px;
}

/* Hover effects for better interactivity */
.contentBx ul li:hover {
  background-color: #e0f7fa; /* Light blue for clear feedback */
  color: #00796b; /* Complementary text color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

/* Add a hover pointer indicator for links within list items */
.contentBx ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contentBx ul li a:hover {
  color: #004d40; /* Darker shade for hover feedback */
  text-decoration: underline; /* Add underline for emphasis */
}

/* Optional: Add subtle focus effect for keyboard navigation */
.contentBx ul li:focus {
  outline: 2px solid #00796b; /* Highlight the focused item */
  outline-offset: 2px;
}

/* Container for image and description */
.imgBx {
  width: 100%; /* Ensures it takes up full width of parent container */
  max-width: 800px; /* Consistent width for images */
  height: 400px; /* Fixed height for uniformity */
  overflow: hidden; /* Prevents overflow of large images */
  display: flex;
  flex-direction: column; /* Stack image and description vertically */
  justify-content: flex-start; /* Align items from the top */
  align-items: center;
  margin: 0 auto; /* Center align the image box */
  text-align: center; /* Center all child elements */
}

/* Image styling for consistent sizing */
.imgBx img {
  width: 100%; /* Ensures image takes up the full width of the container */
  height: 100%; /* Ensures the image takes up the full height of the container */
  object-fit: cover; /* Ensures images fill the box proportionally */
  transition: opacity 0.3s ease-in-out; /* Optional smooth transition effect */
}

/* Description styling */
.image-description {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin-top: 10px; /* Adjusted margin to avoid overlap with image */
  margin-bottom: 10px;
  text-align: center; /* Center the description text */
}



/* Title alignment and size */
.titleText {
  font-size: 2rem; /* Consistent title size */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #2a5d84;
  transition: color 0.3s ease-in-out; /* Smooth hover effect */
}
/* Must-see Places in Ethiopia*/

/* Must-see Places in Ethiopia */

#Places {
 margin-top: 710px;
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  position: relative;
  overflow: hidden;
}

#Places .container {
  position: relative;
  width: 1000px;
  height: 600px;
  margin: 0 auto; /* Center the container */
  overflow: hidden; /* Ensure content doesn't overflow */
}

#Places .container .slide .item {
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: 0.5s;
  margin-top: 110px;
}

#Places .slide .item:nth-child(1),
#Places .slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

#Places .slide .item:nth-child(3) {
  left: 50%;
}
#Places .slide .item:nth-child(4) {
  left: calc(50% + 220px);
}
#Places .slide .item:nth-child(5) {
  left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
#Places .slide .item:nth-child(n + 6) {
  left: calc(50% + 660px);
  opacity: 0;
}

#Places .item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}

#Places .slide .item:nth-child(2) .content {
  display: block;
}

#Places .content .name {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

#Places .content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

#Places .content button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

#Places .button {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

#Places .button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s;
}

#Places .button button:hover {
  background: #ababab;
  color: #fff;
}
/* Styling for the Title */
.places-title {
  font-size: 2.5em; /* Adjust the size for visibility */
  font-weight: bold;
  color: #2a5d84; /* Theme color */
  text-align: center;
  /* Remove any default margin */
  padding-top: 20px; /* Adds space from the top */
  width: 100%;
  position: absolute; /* Position it at the top */
  top: 20px; /* Adjust this value for how high you want the title */
  left: 50%; /* Horizontally centers the title */
  transform: translateX(-50%); /* Fine-tunes centering */
  z-index: 1000; /* Makes sure it's on top of the other content */
}

  /*Bale Mountains National Park */
  /* General Styling */
 /* Section Styling */
.destination-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title Styling */
.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

/* Image Wrapper Styling */
.image-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.destination-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    max-height: 400px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-caption {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* Content Block Styling */
.content-block {
    display: flex;
    align-items: center;
    margin: 40px 0;
    gap: 30px;
}

.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    text-align: left;
}

.content-title {
    font-size: 1.8rem;
    color: #2F4F4F;
    margin-bottom: 15px;
}

.content-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-content {
    flex: 1;
}

.content-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Full Width Section Styling */
.full-width-section {
    padding: 60px 20px;
    margin: 40px 0;
    text-align: center;
}

.full-width-section.dark-bg {
    background-color: #2c3e50;
    color: #fff;
}

.full-width-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.full-width-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/*Camping section*/
#bale-mountains-camping {
  padding: 40px 20px;
  text-align: center;
  background: #f1f1f1;
}

#bale-mountains-camping h1 {
  font-size: 2.5em;
    color: #2a5d84;
    margin-bottom: 20px;
    font-weight: bold;
}
#bale-mountains-camping .text-content {
  text-align: justify;
    font-size: 1em;
    line-height: 1.8;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin: 0 auto;
    max-width: 1100px;
}

#bale-mountains-camping .text-content p {
  margin-bottom: 20px;
}
#bale-mountains-camping .text-content p span {
  font-weight: bold;
  color: #2a5d84;
}
#bale-mountains-camping img {
  width: 800px;
}

#bale-mountains-camping .image-wrapper {
  position: relative;
  margin-bottom: 40px;
}

#bale-mountains-camping .destination-image {
  width: 900px;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Section Styling */
#campsites {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
 
}

.section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #2a5d84;
  margin-bottom: 40px;
  margin-top: 20px;
  
}

/* Campsite Layout */
.camp-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}

/* Camp Box */
/* Campsite Container - Grid Layout */
.camp-container {
  display: grid; /* Using grid layout */
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* Adds space between items */
  margin-top: 20px;
}

/* Camp Box */
.camp-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.camp-box:hover {
  transform: scale(1.02);
}

/* Image Styling */
.camp-image {
  width: 200px; /* Adjust image width for better layout */
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

/* Camp Content */
.camp-content {
  width: 55%;
  padding-left: 15px;
  text-align: left;
}

.camp-content h3 {
  font-size: 1.5em;
  color: #2a5d84;
  margin-bottom: 10px;
}

.camp-content p {
  font-size: 0.9em;
  line-height: 1.5;
  color: #444;
}

/* Hide the full text initially */
.full-text {
  display: none;
}

/* See More Button */
.see-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #6B8E23;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.see-more-btn:hover {
  background-color: #4A7C59;
}

/* Responsive Design - Stacks on Small Screens */
@media (max-width: 1024px) {
  .camp-container {
    grid-template-columns: 1fr; /* Stacks items on small screens */
  }

  .camp-box {
    flex-direction: column;
    text-align: center;
  }

  .camp-image {
      width: 98%; /* Adjust image width for better layout */
      height: 200px;
    
  }

  .camp-content {
    width: 100%;
    padding: 15px 0;
  }
}

.expandable-img {
    width: 100%;
    max-width: 300px; /* Default size */
    transition: all 0.3s ease; /* Smooth transition */
}

.expandable-img.expanded {
    max-width: 500px; /* Expanded size */
}


/* General Styles */
main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.options button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.options button:hover {
  background-color: #2980b9;
}

.itinerary {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.itinerary h2 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 28px;
  font-weight: bold;
}

.itinerary p {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
}

.itinerary strong {
  color: #2c3e50;
  font-weight: bold;
}


/*COntact */
/* Main Contact Container */

.contact-container {
  margin: 50px auto; /* Center the container horizontally */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  width: 80%;
  max-width: 900px;
  background: rgb(255, 255, 255);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* Left Side - Contact Form */
.contact-form {
  padding: 50px;
  background: white;
  display: grid;
  grid-template-rows: auto auto auto auto auto; /* Form fields stacked */
  gap: 15px;
}

.contact-form h2 {
  font-size: 20px;
  font-weight: bold;
  color: #2F4F4F ;
}

/* Ensure Each Field is on Its Own Row */
.contact-form label {
  font-size: 14px;
  font-weight: bold;
  width: 280px; /* Adjust this value as needed */
  display: inline-block; /* Ensures the width is applied properly */
  
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

/* Send Button */
.contact-form button {
  padding: 12px;
  background: #6B8E23;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.contact-form button:hover {
  background: #4A7C59;
}

/* Right Side - Contact Info */
.contact-info {
  padding: 40px;
  background: #f3f1f1;
  display: grid;
  gap: 15px;
  align-content: start;
}

.contact-info h2 {
  font-size: 20px;
  font-weight: bold;
  color: #2F4F4F ;
}

.contact-info p {
  font-size: 14px;
  color: #333;
}

.contact-info p strong {
  font-weight: bold;
  display: block;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: 0.3s;
}

.social-links img:hover {
  opacity: 1;
}
.social-icons a {
  text-decoration: none;
}
#form-message {
  display: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  background: #dff0d8;
  color: #3c763d;
}

#form-message.error {
  background: #f2dede;
  color: #a94442;
}
/* Responsive Design */
/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr; /* Stack form and info on small screens */
    width: 90%; /* Reduce width on small screens */
  }

  .contact-form,
  .contact-info {
    padding: 20px; /* Less padding on mobile */
  }

  .contact-form label {
    
    max-width: 260px; /* Prevent text overflow */
  }
}

footer {
  background-image: url(images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;  /* Covers entire footer while maintaining aspect ratio */
  background-position: center center; /* Centers the image */
  background-attachment: fixed; /* Optional: Makes the image stay fixed when scrolling */
  color: #000000;
  padding: 5px 0 30px;
  font-size: 15px;
  line-height: 25px;
  margin-top: 50px;
  width: 100%;
  clear: both;
  position: relative;
  bottom: 0;
  min-height: 300px; /* Ensures the footer has enough height */
}

    
  footer p {
   color: #fff;
}
  .container {
    width: 85%;
    margin: 0 auto;
    margin-top: 50px;
  }
  
  .row {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  
  }
  
  .col {
    flex-basis:12%;
    padding:8px;
  }
  .col:nth-child(2), .col:nth-child(3){
    flex-basis:20%;
  }
  .logo1 {
    width: 200px;
    margin-bottom: 30px;
  }
  
  .col h3 {
    font-family:Poppins ;
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
  
  }
  .email-id {
    width: fit-content;
    border-bottom: 1px solid #ffffff;
    margin: 20px 0;
    margin-right: 10px;
  }
  .col ul li{
    list-style: none;
    margin-bottom:12px;
  }
  
  .col ul a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .col a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
  
  }
  form .fa-regular {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff;
  }
  form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
  
  }
  form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
  }
  form button .fa-solid{
    font-size: 15px;
    color: #ccc;
  }
  .social-icons {
    margin-top: 15px;
    text-align: center;
  }
  .social-icons .fa-brands {
    width: 30px;
    height: 30px;
    border-radius:40%;
    line-height:30px;
    font-size: 15px;
    color: #2c2c2c;
    background: #acacac;
    margin-right: 25px;
    cursor: pointer;
  }
  
  hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
  
  }
  .copyright {
    font-family: Poppins;
    font-weight: 300;
    text-align: center;
  }
 .col img {
  margin-top: -10px;
  margin-left: -15px;
 }
.col form input {
  color: #000;
}

.social-icons {
  margin-top: 10px;
  text-align: center;
  display: flex; /* Added to enforce horizontal layout */
  justify-content: center; /* Centers the icons horizontally */
  align-items: center; /* Aligns icons vertically in the middle */
  flex-wrap: nowrap; /* Prevents wrapping to new line */
  gap: 15px; /* Replaces margin-right for consistent spacing */
}

.social-icons .fa-brands {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 25px;
  font-size: 13px;
  color: #2c2c2c;
  background: #acacac;
  cursor: pointer;
  display: flex; /* Added to center the icon within its container */
  justify-content: center; /* Centers icon horizontally */
  align-items: center; /* Centers icon vertically */
}
/*NAvigation bar moblie */
  /* Mobile Menu Styles */
  .fa-bars, .fa-xmark {
    font-size: 24px;
    cursor: pointer;
    display: none;
    color: #333;
}

/* Mobile view */
@media screen and (max-width: 768px) {
    /* Hide both icons by default */
    .fa-bars, .fa-xmark {
      display: none;
      z-index: 1001;
      font-size: 28px;
      cursor: pointer;
      margin-top: 15px;
  }
  
  /* Show only the bars icon when menu is closed */
  .menu-closed .fa-bars {
      display: block;
  }
  
  /* Show only the xmark icon when menu is open */
  .menu-open .fa-xmark {
      display: block;
  }
  
  #sidemenu {
      position: fixed;
      top: 80px;
      left: -325px; /* Adjusted to match new width (350px + 20px padding) */
      width: 325px; /* Increased from 300px to 350px for longer text */
      height: calc(100vh - 70px);
      background-color: #ffffffec;
      flex-direction: column;
      padding: 20px;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
      transition: left 0.5s ease;
      z-index: 1000;
      border-radius: 0 8px 8px 0;
      gap: 15px;
      display: flex;
      overflow-y: auto;
      
  }
  
  #sidemenu.active {
      left: 0;
  }
  
  #sidemenu li {
      list-style: none;
      width: 100%; /* Full width for li */
      box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Full-width shadow */
      border-radius: 4px;
      margin-bottom: 8px;
      padding: 0; /* Ensure shadow spans full width */
  }
  
  #sidemenu li a {
      padding: 12px 20px; /* Increased left padding for clear left alignment */
      display: block;
      color: #333;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid #dfdfdf;
      text-align: left; /* Explicitly left-align text */
      transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  #sidemenu li a:hover {
      background-color: #aaaaa8;
      color: #1a1a1a;
      border-radius: 4px;
  }
  
  #sidemenu li:last-child {
      margin-bottom: 0; /* Remove gap for last item */
  }
  
  #sidemenu li:last-child a {
      border-bottom: none;
  }
  
  /* Keep navbar and logo unchanged */
  .navbar {
      padding: 10px 15px;
      position: relative;
      z-index: 1002;
  }
  
  .logo {
      margin-top: 55px;
      margin-left: 130px;
  }
  
  /* Keep backdrop unchanged */
  .menu-backdrop {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.3);
      z-index: 999;
      display: none;
  }
  
  .menu-backdrop.active {
      display: block;
  }


    /*Tours width*/
    .tour-wrapper {
      margin-left: 57px;

    }

    /*tours numbers h1*/
    .tour-wrapper a {
      margin-left: -45px;
     
    }
    
    /*DEstionation bale mounations*/
    .destination-section {
      padding: 40px 15px;
  }

  .section-title {
      font-size: 2rem;
      margin-bottom: 30px;
  }

  .content-block {
      flex-direction: column;
      gap: 20px;
  }

  .reverse {
      flex-direction: column;
  }

  .content-title {
      font-size: 1.5rem;
  }

  .content-description {
      font-size: 1rem;
  }

  .destination-image,
  .content-image {
      max-width: 100%;
  }

  .full-width-text {
      text-align: center;
  }

  #bale-mountains-camping h1 {
      font-size: 2rem;
  }

  #bale-mountains-camping .text-content {
      font-size: 0.95em;
      max-width: 100%;
      text-align: justify;
  }

  #bale-mountains-camping img,
  #bale-mountains-camping .destination-image {
      width: 100%;
      max-width: 100%;
  }

  /*Footer for mobile*/
 /* Mobile Footer Styles */
 footer {
  background-image: url(images/footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #000000;
  padding: 20px 0;
  font-size: 14px;
  line-height: 20px;
  margin-top: 30px;
  width: 100%;
  clear: both;
  position: relative;
  bottom: 0;
  min-height: 200px;
}

footer p {
  
  color: #fff;
}

.container {
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
}

.row {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.col {
  flex-basis: 100%;
  padding: 5px;
  margin-bottom: 15px;
}

.col:nth-child(2), .col:nth-child(3) {
  flex-basis: 100%;
}

.logo1 {
  width: 150px;
  margin-bottom: 15px;
}

.col h3 {
  font-family: Poppins;
  width: fit-content;
  margin-bottom: 20px;
  position: relative;
}

.email-id {
  width: fit-content;
  border-bottom: 1px solid #ffffff;
  margin: 10px 0;
}

.col ul li {
  list-style: none;
  margin-bottom: 8px;
}

.col ul a {
  color: #ffffff;
  text-decoration: none;
}

.col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

form {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

form .fa-regular {
  font-size: 18px; /* Icon preserved and sized for mobile */
  margin-right: 8px;
  color: #ffffff;
}

form input {
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}

form button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

form button .fa-solid {
  font-size: 14px; /* Icon preserved and sized for mobile */
  color: #ccc;
}

.social-icons {
  margin-top: 10px;
  text-align: center;
  display: flex; /* Added to enforce horizontal layout */
  justify-content: center; /* Centers the icons horizontally */
  align-items: center; /* Aligns icons vertically in the middle */
  flex-wrap: nowrap; /* Prevents wrapping to new line */
  gap: 15px; /* Replaces margin-right for consistent spacing */
}

.social-icons .fa-brands {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  line-height: 25px;
  font-size: 13px;
  color: #2c2c2c;
  background: #acacac;
  cursor: pointer;
  display: flex; /* Added to center the icon within its container */
  justify-content: center; /* Centers icon horizontally */
  align-items: center; /* Centers icon vertically */
}
hr {
  width: 95%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 15px auto;
}

.copyright {
  font-family: Poppins;
  font-weight: 300;
  text-align: center;
  font-size: 12px;
}

.col img {
  margin-top: -5px;
  margin-left: -10px;
}

.col form input {
  color: #000;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
  footer {
    background-attachment: scroll;
  }
  
  .container {
    width: 90%;
  }
  
  .row {
    flex-direction: column;
  }
}}
/* Tablet Devices (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer {
    background-attachment: fixed;
    padding: 25px 0;
    min-height: 250px;
  }

  .container {
    width: 85%;
  }

  .row {
    flex-direction: row;
    justify-content: space-between;
  }

  .col {
    width: 30%;
    margin-bottom: 20px;
  }

  .logo1 {
    width: 180px;
  }

  form .fa-regular {
    font-size: 20px;
  }

  form button .fa-solid {
    font-size: 16px;
  }

  .social-icons {
    margin-left: 50px;
    display: flex; /* Explicitly horizontal */
    flex-direction: row; /* Force horizontal layout */
    justify-content: center; /* Center icons */
    align-items: center; /* Vertical alignment */
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 20px; /* Consistent spacing */
    width: 100%; /* Ensure full width available */
  }

  .social-icons .fa-brands {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
  }

  .copyright {
    font-size: 14px;
  }
  .col input {
    width: 150px;
  }

  
}

/*after hero section h1 for the places section color is not chnagig */
.section-title {
  color: #2F4F4F;
}

/*---------------------------------*/
/*Image for the about/
/*---------------------------------*/

#tracking-section {
  background-color: #e4e4e4;
  padding: 20px 0;
  
}

#tracking-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 50px;
}

#tracking-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

#tracking-section .section-title h2 {
  font-size: 30px;
  color: #2F4F4F;
  position: relative;
}


/* Content Layout */
#tracking-section .tracking-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

#tracking-section .tracking-image, .tracking-description {
  flex: 1;
}

/* Image Styles */
#tracking-section .tracking-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#tracking-section .tracking-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

#tracking-section .tracking-img:hover {
  transform: scale(1.02);
}

/* Text Content Styles */
#tracking-section .tracking-description h3 {
  font-size: 30px;
  color: #2F4F4F;
  position: relative;
 
}

#tracking-section .tracking-description p {
  font-size: 17px;
  color: #4a4a4a;
  max-width: 800px;
  margin-bottom: 25px;
}

/* Feature List Styles */
#tracking-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#tracking-section .feature-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #444;
  display: flex;
  align-items: center;
}

#tracking-section .feature-list i {
  margin-right: 12px;
  color: #6B8E23;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  #tracking-section .tracking-content {
      flex-direction: column;
      gap: 30px;
  }
  
  #tracking-section .section-title h2 {
      font-size: 2rem;
  }
  
  #tracking-section .tracking-description h3 {
      font-size: 1.5rem;
  }
}

/*-----------------*/
/*-----Map-----------*/
/*-----------------*/
/* Map Section Styling */
.map-section {
  padding: 40px 0; /* Reduced padding */
  background-color: #f5f7fa;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.google-map {
  position: relative;
  padding-bottom: 30%; /* Reduced from 56.25% to make it shorter */
  height: 0;
  overflow: hidden;
  border-radius: 8px; /* Slightly smaller radius */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* More subtle shadow */
  border: 1px solid #e0e0e0;
}

.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .map-section {
      padding: 30px 0; /* Reduced padding for mobile */
  }
  
  .google-map {
      padding-bottom: 60%; /* Slightly taller on mobile */
      border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .google-map {
      padding-bottom: 80%; /* Taller aspect for very small devices */
  }
}

/* Promotion section */
  .bale-promo-clean {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/air/bornil-amin-4BelYJtuVzs-unsplash.jpg') center/cover no-repeat;
    padding: 40px 20px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    margin: 20px 0;
    margin-bottom: -50px;
  }
  
  .bale-promo-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .bale-promo-left {
    flex: 1;
  }
  
  .bale-promo-right {
    flex-shrink: 0;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
  }
  
  .contact-box {
    margin: 10px 0;
  }
  
  .contact-method {
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
  }
  
  .contact-method:last-child {
    margin-bottom: 0;
  }
  
  .contact-icon {
    font-size: 1rem;
  }
  
  .contact-box a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  
  .contact-box a:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
  
  .button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .tour-btn, .flight-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
  
  .tour-btn {
    background: #e67e22;
    color: white;
  }
  
  .tour-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
  }
  
  .flight-btn {
    background: #006f42;
    color: white;
  }
  
  .flight-btn:hover {
    background: #005a36;
    transform: translateY(-2px);
  }
  
  .qr-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .qr-box img {
    width: 140px;
    height: 140px;
  }
  
  .qr-box p {
    color: #333;
    margin-top: 10px;
    font-weight: 500;
  }
  
  @media (max-width: 800px) {
    .bale-promo-content {
      flex-direction: column;
    }
    
    .bale-promo-right {
      margin-top: 30px;
    }
    
    .button-group {
      justify-content: center;
    }
  }
  
  @media (max-width: 500px) {
    .button-group {
      flex-direction: column;
    }
    
    .tour-btn, .flight-btn {
      text-align: center;
    }
    
    h2 {
      font-size: 1.7rem;
    }
    
    .subtitle {
      font-size: 1.1rem;
    }
  }

  .email-id {
  color: white;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-id a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.email-id a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.fa-solid.fa-envelope {
  font-size: 1rem;
}