
    

/* Contact Us Styling */
section#contact-us {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

section#contact-us h2 {
    color: #4CAF50;
    margin-bottom: 20px;
}

section#contact-us p {
    font-size: 16px;
    margin-bottom: 10px;
}

form#contact-form {
    display: block;
    margin-top: 20px;
}

form#contact-form label {
    display: block;
    margin-bottom: 5px;
}

form#contact-form input,
form#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form#contact-form .submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form#contact-form .submit-button:hover {
    background-color: #45a049;
}

    /* Global Styles */
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
        color: #333;
    }

    header {
        background-color: #4CAF50;
        color: white;
        padding: 10px 0;
        text-align: center;
    }

    nav ul {
        list-style: none;
        padding: 0;
    }

    nav ul li {
        display: inline;
        margin: 0 15px;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
    }
    .reviews-section {
background-color: #f9f9f9; /* Light background for contrast */
padding: 50px 20px; /* Padding around the section */
text-align: center; /* Center the text */
}

.reviews-section h2 {
color: #4CAF50; /* Main heading color */
margin-bottom: 30px; /* Spacing below the heading */
}

.review-card {
border: 1px solid #ddd; /* Light border around each review */
border-radius: 5px; /* Rounded corners */
padding: 20px; /* Padding inside the review card */
margin: 15px 0; /* Spacing between reviews */
background-color: white; /* White background for the card */
box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

.review-rating {
font-size: 20px; /* Larger font for the rating */
color: #ff9800; /* Gold color for the stars */
margin-bottom: 10px; /* Space below the rating */
}

.review-text {
font-size: 16px; /* Regular font size for review text */
color: #555; /* Dark grey for text */
margin-bottom: 10px; /* Space below the review text */
}

.review-author {
font-style: italic; /* Italic style for author name */
color: #777; /* Light grey for author name */
}/* HERO Section */
/* HERO /* HERO Section */
#hero {
    position: relative;
    color: white;
    text-align: center; /* Center text horizontally */
    padding: 100px 20px; /* Adjust padding for top/bottom and add side padding */
    overflow: hidden;
    border: 5px solid #ffffff; /* White border */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Optional shadow for depth */
    margin: 20px auto; /* Center section horizontally */
    max-width: 1200px; /* Limit the max width for better alignment */
}

/* Slider Styling */
.slider {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    overflow: hidden;
}

/* Container Styling */
.slider .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeEffect 40s infinite;
}

/* Set delays for each slide */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4s; }
.slide:nth-child(3) { animation-delay: 8s; }
.slide:nth-child(4) { animation-delay: 12s; }
.slide:nth-child(5) { animation-delay: 16s; }
.slide:nth-child(6) { animation-delay: 20s; }
.slide:nth-child(7) { animation-delay: 24s; }
.slide:nth-child(8) { animation-delay: 28s; }
.slide:nth-child(9) { animation-delay: 32s; }
.slide:nth-child(10) { animation-delay: 36s; }

@keyframes fadeEffect {
    0%, 10%, 100% {
        opacity: 0;
    }
    15%, 35% {
        opacity: 1;
    }
}

/* Text Overlay */
#hero .text-overlay {
    position: absolute; /* Position absolutely within the hero section */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust to truly center */
    font-size: 2em; /* Adjust font size as needed */
    font-weight: bold; /* Make it bold */
    z-index: 1; /* Ensure it's on top of the slides */
    color: white; /* Set text color to white */

    padding: 10px; /* Optional padding around text */
    border-radius: 5px; /* Optional rounded corners for background */
}.hero-text {
    text-align: center; /* Center text */
    color: white; /* Set text color */
    padding: 20px 0; /* Add space above and below the text */
    position: relative; /* Ensure it's positioned correctly below the images */
    z-index: 1; /* Ensure text is above other elements */
}

.hero-text h2 {
    font-size: 2.5em; /* Adjust font size as needed */
    margin-bottom: 10px; /* Space below the heading */
}

.hero-text p {
    font-size: 1.2em; /* Adjust font size as needed */
    max-width: 600px; /* Optional: limit width for readability */
    margin: 0 auto; /* Center paragraph */
}

#destinations {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4; /* Light background for contrast */
}

.destination-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.destination-card {
    position: relative;
    width: 250px; /* Adjust size as needed */
    border: 2px solid #ccc; /* Border for the card */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.destination-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.destination-card img {
    width: 100%;
    height: 150px; /* Adjust height as needed */
    object-fit: cover; /* Cover the area without distortion */
}

.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black background with transparency */
}

.popup-content {
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px; /* Max width for larger screens */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Border around the entire destinations section */
#destinations {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
    border: 5px solid #ddd; /* Border around the whole section */
    border-radius: 15px; /* Rounded corners for the section */
    margin: 20px auto;
    width: 90%; /* Adjust width to center the section nicely */
    max-width: 1200px; /* Max width for larger screens */
}

/* Grid layout for destination cards */
.destination-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Border for individual destination cards */
.destination-card {
    position: relative;
    width: 250px;
    border: 3px solid #ccc; /* Border for each card */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

/* Hover effect for individual destination cards */
.destination-card:hover {
    transform: scale(1.05);
    border-color: #555; /* Darker border color on hover */
}

/* Image styling inside each destination card */
.destination-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Popup styling remains the same */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px; /* Optional: rounded corners for popup */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Content on top of slider */


.content h1{
    margin:0;

    color:#fff;
    font-size:25px;
    font-weight:600;
    line-height:1.4;
}
.content{
    margin:0;
    padding:0 15px;
}
.cta-button {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #e64a19;
}



    .cta-button {
        background-color: #ff5722;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
    }

    .cta-button:hover {
        background-color: #e64a19;
    }


   
    .top-bar {
        background: white;
        color: white;
        text-align: center;
        padding: 5px 0;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
    .top-bar a {
        color: rgb(32, 21, 21);
        text-decoration: none;
    }
    .top-bar i {
        margin-right: 5px;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: linear-gradient(to bottom, #1A3B10, #0D0D2D);
        width: 100%;
        z-index: 1000;
        padding: 10px 20px;
        border-bottom: 4px solid;
        border-image-source: linear-gradient(to right, #1A3B10, #0D0D2D);
        border-image-slice: 1;
    }
   
    body {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      margin: 0;
      padding: 20px;
    }

    .tour-section {
      display: flex;
      flex-wrap: wrap;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .tour-image {
      flex: 1 1 300px;
      max-width: 400px;
      height: 100%;
    }

    .tour-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-right: 1px solid #ddd;
    }

    .tour-content {
      flex: 2 1 400px;
      padding: 20px;
    }

    .tour-content h2 {
      margin-top: 0;
      color: #2c3e50;
    }

    .tour-content p {
      line-height: 1.6;
      color: #444;
    }

    .tour-content a {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 15px;
      background-color: #2c7a7b;
      color: white;
      text-decoration: none;
      border-radius: 4px;
    }

    .tour-content a:hover {
      background-color: #206d6f;
    }

    @media screen and (max-width: 768px) {
      .tour-section {
        flex-direction: column;
      }

      .tour-image {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
      }
      
    }
 

    /* Center the content of sections */
    section {
        text-align: left; /* Change to left to start text from the same margin */
        margin: 0 auto;
        padding: 50px 20px; /* Add padding to control top/bottom spacing */
        max-width: 900px; /* This constrains the width of the content */
    }
    section#about-us {
        background-color: white;
    }
    .about-us {
        margin: 20px 0;
    }

    section#highlights {
        background-color: white;
    }

    .highlight {
        margin: 20px 0;
    }

    footer {
        background-color: #118b44;
        color: white;
        text-align: center;
        padding: 20px 0;
    }

footer {
 background-color: #118b44;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section p,
.footer-section a,
.footer-section li {
  color: #ddd;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #26a69a;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}


    section#tours-list {
        background-color: #f9f9f9;
    }

    .tour {
        border: 2px solid #4CAF50; /* Border for each tour */
        border-radius: 5px;
        padding: 15px;
        margin-bottom: 30px;
        background-color: white; /* White background for the tour card */
        position: relative; /* For positioning the button */
    }

    h3 {
        color: #4CAF50; /* Color for section headings */
    }

    img {
        width: 100%; /* Make images responsive */
        border-radius: 5px; /* Rounded corners for images */
        max-height: 250px; /* Set max height for images */
        object-fit: cover; /* Cover the area while maintaining aspect ratio */
    }

   

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html, body {
        font-family: Arial, sans-serif;
    }
   .banner{
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

/* MOBILE FIX */
@media(max-width:768px){

    .banner{
        height: 35vh; /* reduces huge mobile gap */
    }

}

.overlay{
    position:absolute;
    top:45%;
    left:50%;

    transform:translate(-50%, -45%);

    width:90%;
    text-align:center;
}
.banner img{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;
    transition:opacity 1s ease-in-out;
}

/* ACTIVE IMAGE */
.banner img.active{
    opacity:1;
}
   .banner img{
    position:absolute;
}
    /* Wrapper to center everything on larger screens */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;

  padding: 20px;
  margin-top: 0;
  padding-top: 0;
}

/* General layout */
.tour-section {
  background: linear-gradient(to right, #f8f9fa, #e0f7fa);
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;           /* responsive width */
  margin: 20px auto;     /* spacing between stacked sections */
  position: relative;
}

.tour-content h2 {
  color: #004d40;
  font-size: 32px;
  margin-bottom: 10px;
  text-align: center;
}

.tour-content h3 {
  color: #00796b;
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.tour-content ul {
  padding-left: 20px;
  line-height: 1.6;
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .tour-section {
    padding: 25px 15px;
    margin: 15px auto;
  }

  .tour-content h2 {
    font-size: 24px;
  }

  .tour-content h3 {
    font-size: 18px;
  }

  .tour-content ul {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .tour-section {
    padding: 20px 12px;
    margin: 12px auto;
  }
}
  .tour-content h2 {
    font-size: 20px;
  }

  .tour-content ul {
    font-size: 14px;
    padding-left: 15px;
  }



/* Form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #004d40;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  background-color: #fff;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

input:focus,
select:focus {
  border-color: #00796b;
  box-shadow: 0 0 5px rgba(0, 150, 136, 0.2);
  outline: none;
}

.submit-button {
  background-color: #00796b;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #004d40;
}


    .tour-section {
border: 1px solid #ddd;
margin: 20px 0;
padding: 20px;
background-color: #fff;
}

.tour {
margin-bottom: 15px;
text-align: center;
}

.tour img {
width: 100%;
height: auto;
border-radius: 8px;
}


/* Example styling */
.booking-form {
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    max-width: 400px;
    margin: 20px auto;
    border-radius: 8px;
}

.submit-button, .cancel-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
}

.cancel-button {
    background-color: #f44336;
    color: white;
}

.logo-container {
text-align: center; /* Center the logo */
margin-bottom: 20px; /* Space below the logo */
}

.logo {
max-width: 150px; /* Adjust the maximum width of the logo */
height: auto; /* Maintain aspect ratio */
}
header {
position: sticky; /* Makes the header sticky */
top: 0; /* Keeps it at the top of the viewport */
background-color: #fff; /* Background color to stand out */
z-index: 1000; /* Ensures it appears above other content */
padding: 10px 20px; /* Padding for spacing */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

.logo-container {
display: inline-block; /* Ensures logo is in line with nav */
}

nav {
display: inline-block; /* Allows navigation to be inline with logo */
margin-left: 20px; /* Spacing between logo and nav */
}

nav ul {
list-style: none;
padding: 0;
margin: 0;
}

nav ul li {
display: inline; /* Horizontal list */
margin: 0 15px; /* Spacing between items */
}

nav ul li a {
text-decoration: none; /* No underline */
color: #333; /* Link color */
}

nav ul li a:hover {
color: #4CAF50; /* Change color on hover */
}

@media (max-width: 600px) {
header {
    display: flex;
    flex-direction: column; /* Stack logo and nav */
    align-items: center; /* Center align */
}

nav {
    margin-left: 0; /* Remove margin for smaller screens */
}

nav ul {
    display: flex; /* Flex for horizontal layout */
    flex-direction: row; /* Row direction */
}

nav ul li {
    margin: 0 10px; /* Adjust margin */
}
}


   
    .top-bar {
        background: white;
        color: white;
        text-align: center;
        padding: 5px 0;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }
    .top-bar a {
        color: rgb(32, 21, 21);
        text-decoration: none;
    }
    .top-bar i {
        margin-right: 5px;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        background: linear-gradient(to bottom, #1A3B10, #0D0D2D);
        width: 100%;
        z-index: 1000;
        padding: 10px 20px;
        border-bottom: 4px solid;
        border-image-source: linear-gradient(to right, #1A3B10, #0D0D2D);
        border-image-slice: 1;
    }
   
    body {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      margin: 0;
      padding: 20px;
    }

    .tour-section {
      display: flex;
      flex-wrap: wrap;
      background-color: #fff;
      border: 1px solid #ddd;
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .tour-image {
      flex: 1 1 300px;
      max-width: 400px;
      height: 100%;
    }

    .tour-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-right: 1px solid #ddd;
    }

    .tour-content {
      flex: 2 1 400px;
      padding: 20px;
    }

    .tour-content h2 {
      margin-top: 0;
      color: #2c3e50;
    }

    .tour-content p {
      line-height: 1.6;
      color: #444;
    }

    .tour-content a {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 15px;
      background-color: #2c7a7b;
      color: white;
      text-decoration: none;
      border-radius: 4px;
    }

    .tour-content a:hover {
      background-color: #206d6f;
    }

    @media screen and (max-width: 768px) {
      .tour-section {
        flex-direction: column;
      }

      .tour-image {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
      }
      
    }

 
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html, body {
        font-family: Arial, sans-serif;
    }
   
    
   
/* Grid Layout */
.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Safari Package Card */
.package-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 2px solid #e0e0e0;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: #2a6f2b; /* Safari green border */
}

/* Image */
.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Content */
.package-content {
  padding: 15px;
}

.package-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1d5a1e; /* Safari Green */
}

.stars {
  color: #f4b400; /* Gold */
  font-size: 14px;
}

/* Buttons */
.details-btn,
.book-btn {
  display: inline-block;
  background: #1d5a1e; /* Safari Green */
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-right: 8px;
  margin-top: 10px;
  transition: 0.3s;
}

.details-btn:hover,
.book-btn:hover {
  background: #145015; /* darker green */
}

/* Make Book Now in Gold */
.book-btn {
  background: #c9971c; /* Gold */
  color: #fff;
}

.book-btn:hover {
  background: #a57e15;
}
.tour-image {
    text-align: center;
    margin: 30px 0;
}

.tour-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

