/*
Theme Name:     Traveler Childtheme
Description:    Traveler Child Theme
Theme URI:      https://travelerwp.com/
Author:         the ShineTheme
Author URI:     http://shinetheme.com
Version:        1.0
Template:       traveler
*/
.compelling-info {
  background: #f9f9f9;
  border-left: 5px solid #d63031;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* Why Travel Section */
.why-travel ul {
  list-style: none;
  padding: 0;
}

.travel-reasons li {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.travel-reasons h3 {
  color: #d63031;
}

/* What We Do Section */
.what-we-do ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 0;
}

.what-we-do li {
  flex: 1 1 calc(33.333% - 20px);
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
}

.what-we-do h3 {
  color: #27ae60;
}

/* What We Have Section */
.what-we-have ul {
  list-style: none;
  padding: 0;
}

.have-list li {
  margin-bottom: 20px;
}

.have-list h3 {
  color: #3498db;
}

/* Meet Our Director Section */
.meet-director {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f4f4f4, #ffffff);
}

.director-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 30px;
  border: 2px solid #eaeaea;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
}

.director-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 15px 0 0 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.director-container:hover .director-image img {
  transform: scale(1.05);
}

.director-content {
  flex: 1;
  padding: 30px;
}

.director-content h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #e74c3c;
  display: inline-block;
}

.director-content .tagline {
  font-style: italic;
  color: #e74c3c;
  font-size: 18px;
  margin-bottom: 20px;
}

.director-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.director-content p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .director-container {
    flex-direction: column;
  }

  .director-image img {
    border-radius: 15px 15px 0 0;
  }
}

/* Tour Vehicles Section */
.tour-vehicles {
  padding: 60px 20px;
  background-color: #f7f7f7;
}

.vehicles-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.vehicles-content {
  text-align: center;
}

.vehicles-content h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #e74c3c;
  display: inline-block;
}

.vehicles-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.vehicles-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 auto;
  max-width: 700px;
}

.vehicles-content ul li {
  color: #555;
  margin-bottom: 10px;
  font-size: 16px;
}

.vehicles-content ul li strong {
  color: #e74c3c;
}

.vehicles-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.vehicle-item {
  text-align: center;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.vehicle-item p {
  font-size: 16px;
  font-weight: bold;
  color: #2c3e50;
}

.vehicle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .vehicles-content ul {
    text-align: center;
  }
}

.team-introduction {
  padding: 60px 20px;
  background-color: #f9f9f9;
}


.team-container h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #3498db;
  display: inline-block;
}

.team-container p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 16px;
}

/* Engaging Call to Action Section */
.cta-section {
  background-color: #2c3e50; /* Dark Blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button Specific Colors */
.contact-btn {
  background-color: #27ae60; /* Blue */
}

.phone-btn {
  background-color: #27ae60; /* Green */
}

.email-btn {
  background-color: #27ae60; /* Yellow */
}

.whatsapp-btn {
  background-color: #27ae60; /* WhatsApp Green */
}

/* Icon Styling */
.cta-btn i {
  font-size: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cta-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .cta-section h2 {
    font-size: 30px;
  }
}




















.destination-section {
    display: flex;
    flex-direction: column;
    /*align-items: center;
    /*padding: 20px;*/
    gap: 20px;
}

.destination-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.destination-card {
    position: relative;
    /*width: 300px;*/
    overflow: hidden;
    border-radius: 8px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
}

.destination-card img {
    width: 100%;
    height: auto;
    display: block;
}

.destination-text {
    position: absolute;
    top: 50%;          /* Move text 50% down */
    left: 50%;         /* Move text 50% right */
    transform: translate(-50%, -50%); /* Center text perfectly */
    color: #fff;       
    text-align: center; /* Center align text */
    text-transform: uppercase;
    width: 100%;       /* Ensure text doesn't overflow */
}


.destination-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.explore-link {
    color: #ffb703; /* Yellow color for 'Explore' */
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}


/* Responsive layout */
@media (max-width: 992px) {
    .destination-row {
        flex-wrap: wrap;
    }

    .destination-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .destination-card {
        width: 100%;
    }
}














.justify-content-between {
    justify-content: unset !important;
}
body > header > div.header__left > a.logo.d-none.d-sm-none.d-lg-block > img {
    width: 150px;
    height: 150px;
}






.car-hire-service {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.car-hire-service .content-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.car-hire-service .content-wrapper img {
    width: 300px;
    height: 200px;
    margin-right: 20px;
}

.car-hire-service h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.car-hire-service ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.car-hire-service ul li {
    margin-bottom: 5px;
}

.car-hire-service .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.car-hire-service .btn:hover {
    background-color: #0056b3;
}

/* Unique styling for each section */
.car-hire-description {}
.car-hire-jeep {}
.car-hire-minivan {}
/* Add additional unique class selectors for other sections */






/* Top Section Styling */
.lux-accom-header {
    text-align: center;
    margin-bottom: 30px;
}

.lux-accom-title {
    font-size: 28px;
    font-weight: bold;
    color: #f5a623;
}

.lux-accom-desc {
    font-size: 16px;
    color: #555;
}

/* Accommodation Boxes Styling */
.lux-accom-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.lux-accom-box {
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    transition: transform 0.3s ease;
    flex: 1;
}

.lux-accom-box:hover {
    transform: scale(1.05);
}

.lux-accom-box img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.lux-accom-location {
    font-size: 14px;
    color: #888;
}

.lux-accom-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
}

/* Button Styling */
.lux-accom-button-container {
    text-align: center;
    margin-top: 30px;
}

.lux-accom-button {
    display: inline-block;
    padding: 10px 20px;
    /*background-color: #f5a623;*/
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.lux-accom-button:hover {
    background-color: #e6951b;
}





/* Customer Reviews Section */
.customer-reviews-section {
    padding: 50px 15px;
    background-color: #f9f9f9;
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #f5a623;
}

.reviews-header p {
    font-size: 16px;
    color: #555;
    margin: 0 auto;
    max-width: 600px;
}

/* Review Boxes */
.reviews-main .review-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-box p {
    margin-bottom: 10px;
    color: #333;
}

.review-box i {
    color: #f5a623;
}

.review-box span {
    font-weight: bold;
    color: #444;
}

.review-stars {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.review-stars li {
    color: #f5a623;
}

/* View All Reviews Button */
.reviews-button {
    text-align: center;
    margin-top: 30px;
}

.reviews-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5a623;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.reviews-button a:hover {
    background-color: #e6951b;
}














body.st-mod-style .st-style-elementor a {
    color: #f4ad17; 
}


.safari-package {
  font-family: 'Arial', sans-serif;
  color: #333;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.safari-title {
  font-size: 2.5em;
  color: #a83333;
  margin-bottom: 10px;
  text-align: center;
}

.safari-subtitle {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.safari-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
  border-left: 4px solid #a83333;
  padding-left: 10px;
}

.itinerary-list,
.accommodation-list,
.inclusion-list,
.exclusion-list {
  list-style: none;
  padding: 0;
}

.itinerary-list li,
.accommodation-list li,
.inclusion-list li,
.exclusion-list li {
  margin-bottom: 15px;
  font-size: 1em;
  line-height: 1.5;
  color: #444;
}

.itinerary-list li strong {
  color: #a83333;
}

.call-to-action {
  text-align: center;
  font-size: 1.2em;
  color: #a83333;
  font-weight: bold;
  margin-top: 30px;
}




.special-offers {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.special-offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.offer-text {
    flex: 1;
}

.offer-text h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

.offer-text p {
    font-size: 1rem;
    margin: 10px 0;
}

.offer-text .more {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
}

.offer-image {
    width: 250px;
    height: auto;
}

.offer-image img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .special-offer-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-image {
        width: 100%;
        margin-bottom: 20px;
    }
}






  .custom-div {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }

  .custom-div .image-link img {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .custom-div .image-link img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .custom-div .content {
    margin-left: 20px;
  }

  .custom-div .content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #0073e6; /* Link color */
    text-transform: capitalize; /* Capitalizes the first letter of each word */
  }

  .custom-div .content h3 a {
    text-decoration: none;
    color: inherit; /* Inherits the color from h3 */
    transition: color 0.3s ease;
  }

  .custom-div .content h3 a:hover {
    color: #0056b3; /* Darker shade on hover */
  }

  .custom-div .content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }










.header__center #st-main-menu .main-menu>li>a{
	font-size: 20px;
}

#my-icons {
  display: grid;
  gap: 20px; /* Adjust space between icons */
}

@media (max-width: 1024px) {
  #my-icons {
    grid-template-columns: repeat(3, 1fr); /* 3 icons per row for tablets */
  }
}

@media (max-width: 768px) {
  #my-icons {
    grid-template-columns: repeat(2, 1fr); /* 2 icons per row for mobile */
  }
}

@media (max-width: 480px) {
  #my-icons {
    grid-template-columns: repeat(2, 1fr); /* 2 icons per row for smaller screens */
    gap: 15px; /* Reduce space between icons for smaller screens */
  }
}



.top-filter{
	display: none;
}

.st-form-book-wrapper.relative .form-booking-price {
    display: none; /* This will hide the existing element */
}

/* First element */
#st-content-wrapper > div:nth-child(2) > div.st-service-header2.d-flex.align-self-start.justify-content-between > div.left > div > div {
    display: none;
}

/* Second element (st-review-score inside the first element) */
#st-content-wrapper > div:nth-child(2) > div.st-service-header2.d-flex.align-self-start.justify-content-between > div.left > div > div > div.st-review-score {
    display: none;
}

/* Third element (span inside the first element) */
#st-content-wrapper > div:nth-child(2) > div.st-service-header2.d-flex.align-self-start.justify-content-between > div.left > div > div > span {
    display: none;
}


/* Target all instances of span.price-tour > span > span */
#st-content-wrapper > div > section.elementor-section.elementor-top-section.elementor-element.elementor-element-2b3008fc.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default > div > div > div > div.elementor-element.elementor-element-3d33433b.elementor-widget.elementor-widget-st_list_service > div > div > div > div > div > div > div > div.content-item > div.section-footer > div > span.price-tour > span > span {
    display: none;
}

#st-content-wrapper a.service-avatar {
    display: none !important;
}


/* Target all instances of div.reviews inside the section */
#st-content-wrapper > div > section.elementor-section.elementor-top-section.elementor-element.elementor-element-2b3008fc.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default > div > div > div > div.elementor-element.elementor-element-3d33433b.elementor-widget.elementor-widget-st_list_service > div > div > div > div > div > div > div > div.content-item > div.reviews {
    display: none;
}


 body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
        }

        /* Container 
        .container {
            width: 100%;
            margin: auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }*/

        /* Headings */
        h1, h2 {
            color: #0066cc;
            margin-bottom: 10px;
            font-weight: bold;
        }

        /* Paragraphs */
        p {
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Lists */
        ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        li {
            margin-bottom: 10px;
        }

        /* Sections */
        .section-title {
            font-size: 1.2em;
            font-weight: bold;
            margin-top: 20px;
            margin-bottom: 10px;
            border-bottom: 2px solid #0066cc;
            padding-bottom: 5px;
        }

        /* Highlights */
        .highlight {
            background-color: #e0f7fa;
            padding: 5px;
            border-radius: 4px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                width: 95%;
                padding: 10px;
            }
        }

        /* Additional Styling */
        a {
            color: #0066cc;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }


.child-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px; /* Space between items */
}

.child-page-item {
    border: 1px solid #ccc; /* Border around each item */
    border-radius: 5px; /* Rounded corners */
    padding: 15px; /* Padding inside each item */
    background: #fff; /* Background color */
    transition: transform 0.3s; /* Smooth transition for hover effect */
}

.child-page-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.child-page-thumbnail {
    width: 100%; /* Make thumbnail responsive */
    height: auto; /* Maintain aspect ratio */
}

.child-page-title {
    margin: 10px 0; /* Space above and below title */
    font-size: 1.5em; /* Title size */
    color: #333; /* Default title color */
    transition: color 0.3s; /* Smooth transition for color change */
}

.child-page-title:hover {
    color: #0000FF; /* Change to blue on hover */
}

.child-page-excerpt {
    color: #666; /* Set the color of the excerpt text */
    margin-bottom: 10px; /* Space below the excerpt */
}


.custom-downloads-page {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-downloads-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.custom-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.custom-download-item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
}

.custom-download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.custom-thumbnail-link {
    display: block;
}

.custom-thumbnail {
    width: 100%; /* Set the width of the thumbnail to fill the item */
    height: auto; /* Maintain aspect ratio */
}

.custom-download-info {
    flex-grow: 1;
    padding: 15px;
    text-align: left;
}

.custom-download-title {
    font-size: 1.8em;
    margin: 0 0 10px;
    color: #007bff;
}

.custom-download-description {
    margin: 0 0 15px;
    color: #555;
}

.custom-download-button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
}

.custom-download-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}
