/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px; 
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}


















/*  button_1 design */
.custom-button {
    display: inline-block; /* Essential for padding on <a> tags */
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-button1 {
    background-color: #a0260d;
    color: #000000;
    border: 2px solid #ffffff;
}

.custom-button1:hover {
    background-color: #ffffff;
    border-color: #000000;
    color: #a0260d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.custom-button2 {
    background-color: #000000;
    border: 2px solid #eb9e02;
    color: #ffffff;
}

.custom-button2:hover {
    background: #eb9e02;
    color: #000000;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
}



















/* safaris page */
/* Upcoming Events Slider Styles */
.ecotours_upcoming_events_section {
    padding: 80px 5%;
    background-color: #f5f5f5;
    overflow: hidden;
    text-align: center;
}

.ecotours_upcoming_events_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ecotours_upcoming_events_slider_window {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; 
    position: relative;
}

.ecotours_upcoming_events_track {
    display: flex;
    width: 100%; 
}

.ecotours_upcoming_events_item {
    flex: 0 0 33.3333%; 
    display: flex;
    flex-direction: column; 
    gap: 15px;   
    justify-content: center;
    align-items: center;
    padding: 5px;
    box-sizing: border-box; 
}

.ecotours_price{
    padding-top: 10px;
}

.ecotours_upcoming_events_logo {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.no-results {
    width: 100%;                
    text-align: center;        
    font-size: 28px;        
    font-weight: 650;   
    padding-top: 20px;     
    color: #eb9e02;            
    box-sizing: border-box;   
    display: block;            
}

/* Mobile: Single Item View */
@media (max-width: 768px) {
    .ecotours_upcoming_events_item {
        flex: 0 0 100%; 
    }
}




















/* safaris page */
/* more safari info */
    .ecotours_safari_events_section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Header Styling */
.ecotours_safari_events_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.ecotours_safari_events_title {
    flex: 1;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
}

.ecotours_safari_events_description {
    padding-top: 10px;
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

/* Hero Image Styling */
.ecotours_safari_events_hero {
    width: 100%;
    margin-bottom: 60px;
}

.ecotours_safari_events_img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Grid Styling */
.ecotours_safari_events_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.ecotours_safari_events_card {
    padding: 20px;
}

.ecotours_safari_events_icon {
    width: 70px;
    height: 70px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #eb9e02; /* Nature green */
}

.ecotours_safari_events_card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ecotours_safari_events_card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ecotours_safari_events_header {
        flex-direction: column;
    }
    .ecotours_safari_events_grid {
        grid-template-columns: 1fr;
    }
}


























/* safaris page */
/* safari examples */
.ecotours_safari_examples_section {
    padding: 50px 5%;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.ecotours_safari_examples_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Image Side */
.ecotours_safari_examples_visual {
    flex: 1;
    position: relative;
}

.ecotours_safari_examples_main_img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: block;
}

.ecotours_safari_examples_badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #eb9e02; /* Nature green */
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    max-width: 220px;
    line-height: 1.3;
}

/* Grid Side */
.ecotours_safari_examples_grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

.ecotours_safari_examples_item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ecotours_safari_examples_icon {
    width: 45px;
    height: 45px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0260d;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ecotours_safari_examples_text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.ecotours_safari_examples_text p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .ecotours_safari_examples_container {
        flex-direction: column;
    }
    .ecotours_safari_examples_badge {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}
































/* camping page */
/* more on camping */
.ecotours_safaris_awards_section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

.ecotours_safaris_awards_main_title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.ecotours_safaris_awards_container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Side */
.ecotours_safaris_awards_image_wrapper {
    flex: 1;
}

.ecotours_safaris_awards_featured_img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* List Side */
.ecotours_safaris_awards_list {
    flex: 1.2;
}

.ecotours_safaris_awards_item {
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ecotours_safaris_awards_item:last-child {
    border-bottom: none;
}

.ecotours_safaris_awards_row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.ecotours_safaris_awards_row h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.ecotours_safaris_awards_item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .ecotours_safaris_awards_container {
        flex-direction: column;
        gap: 40px;
    }
    
    .ecotours_safaris_awards_main_title {
        font-size: 2rem;
    }
}












/* air ticketing page */
/* menu overlay */
.ecotours_heros_section {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust height as needed */
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.8)), 
                url('img/10.jpg') no-repeat center center/cover;
                
    border-radius: 0px 0px 150px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Navbar Styling */
.ecotours_navs {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
}


/* Hero Text Content */
.ecotours_heros_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 20px 20px;
}

.ecotours_hero_badge{
    margin-top: 20px;
    margin-bottom: 10px;
}


.ecotours_heros_title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ecotours_heros_subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #efefef;
    padding-bottom: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .ecotours_navs_links { display: none; }
    .ecotours_heros_title { font-size: 2.5rem; }
}























/* air ticketing page */
/* air ticketing */
.ecotours_airticketing_section {
    padding: 80px 5%;
    background-color: #f5F5F5;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.ecotours_airticketing_header {
    margin-bottom: 50px;
}

.ecotours_airticketing_subtitle {
    color: #eb9e02; /* Orange accent */
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: capitalize;
}

.ecotours_airticketing_title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-top: 10px;
    letter-spacing: 1px;
}

.ecotours_airticketing_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecotours_airticketing_card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ecotours_airticketing_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ecotours_airticketing_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}


.ecotours_airticketing_icon i {
    font-size: 2.5rem; 
    color: #a0260d;    
    transition: transform 0.3s ease; 
}


.ecotours_airticketing_card:hover .ecotours_airticketing_icon i {
    transform: scale(1.1); 
    color: #eb9e02;        
}




.ecotours_airticketing_card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222; /* Deep blue from reference */
    margin-bottom: 15px;
}

.ecotours_airticketing_card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ecotours_airticketing_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ecotours_airticketing_grid {
        grid-template-columns: 1fr;
    }
}




















/* air ticketing page */
/* air ticketing form */
.eco_airticketing_form_section {
    padding: 80px 5%;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.eco_airticketing_form_container {
    max-width: 1000px;
    margin: 0 auto;
}

.eco_airticketing_form_title {
    font-size: 2.8rem;
    color: #002b45; /* Professional deep navy */
    margin-bottom: 45px;
    font-weight: 700;
}

.eco_airticketing_form_element {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.eco_airticketing_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.eco_airticketing_form_group {
    display: flex;
    flex-direction: column;
}

.eco_airticketing_form_group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.eco_airticketing_form_group label span {
    color: #ff4d4d;
}

.eco_airticketing_form_group input,
.eco_airticketing_form_group select,
.eco_airticketing_form_group textarea {
    padding: 14px 18px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: all 0.25s ease;
}

.eco_airticketing_form_group textarea {
    min-height: 140px;
    resize: vertical;
}

.eco_airticketing_form_group input:focus,
.eco_airticketing_form_group select:focus {
    outline: none;
    border-color: #007ba7;
    box-shadow: 0 0 0 3px rgba(0, 123, 167, 0.1);
}

/* Phone Input Customization */
.eco_airticketing_form_phone_wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    padding-left: 15px;
}

.eco_airticketing_form_phone_wrap input {
    border: none;
    width: 100%;
}

.eco_airticketing_form_phone_wrap input:focus {
    box-shadow: none;
}

/* Button Styling */
.eco_airticketing_form_action {
    text-align: center;
    margin-top: 20px;
}



/* Responsive Logic */
@media (max-width: 800px) {
    .eco_airticketing_form_row {
        grid-template-columns: 1fr;
    }
    
    .eco_airticketing_form_title {
        font-size: 2.2rem;
    }
}


















/* TEAM BUILDING page */
/* indoor and outdoor teambuilding */
.eco_team_building_section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

.eco_team_building_block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.eco_team_building_block.reverse {
    flex-direction: row-reverse;
}

.eco_team_building_image_container {
    flex: 1;
}

.eco_team_building_img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.eco_team_building_content {
    flex: 1;
}

.eco_team_building_headline {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.eco_team_building_description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.eco_team_building_description strong {
    color: #a0260d; /* Brand Teal */
}

/* Divider Styling */
.eco_team_building_divider {
    text-align: center;
    padding: 60px 0;
    margin: 40px 0;
}

.eco_team_building_quote {
    font-size: 1.8rem;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    font-style: italic;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .eco_team_building_block, 
    .eco_team_building_block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .eco_team_building_img {
        height: 350px;
    }

    .eco_team_building_headline {
        font-size: 1.8rem;
    }
}





















/* car rental and hire page */
/* menu overlay */
.ecotours_her_section {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust height as needed */
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.8)), 
                url('img/13.jpg') no-repeat center center/cover;
                
    border-radius: 0px 0px 150px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Navbar Styling */
.ecotours_na {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
}


/* Hero Text Content */
.ecotours_her_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 20px 20px;
}

.ecotours_her_badge{
    margin-top: 20px;
    margin-bottom: 10px;
}


.ecotours_her_title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ecotours_her_subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #efefef;
    padding-bottom: 50px;
}


/* Responsive */
@media (max-width: 768px) {
    .ecotours_na_links { display: none; }
    .ecotours_her_title { font-size: 2.5rem; }
}































/* hiking page */
/* menu overlay */
.eventss{
    margin-top: 40px;
    margin-left: 150px;
    margin-right: 150px;
    line-height: 1.5;
}


/* Upcoming Events Slider Styles */
.eco_destination_examples_section {
    padding: 10px 5%;
    background-color: #f5f5f5;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.eco_tagline{
    margin-bottom: 10px;
}
.eco_destination_examples_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.eco_destination_examples_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.eco_destination_examples_card {
    background: #fff;
    text-align: left;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.eco_destination_examples_card:hover {
    transform: translateY(-5px);
}

.eco_destination_examples_image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.eco_destination_examples_content {
    padding: 25px;
}

.eco_destination_examples_tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 13px;
    color: #555;
    margin-bottom: 30px;
}

.eco_destination_examples_content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eco_destination_examples_meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.eco_destination_examples_author{
    font-size: 17px;
    color: #555;
    line-height: 24px;
}

.eco_destination_examples_meta i {
    margin-right: 5px;
}

/* Mobile View */
@media (max-width: 992px) {
    .eco_destination_examples_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eco_destination_examples_grid {
        grid-template-columns: 1fr;
    }
}




















/* hotel bookinge */
/* why us */
.ecotours_heros_sectionss {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust height as needed */
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.8)), 
                url('img/18.jpg') no-repeat center center/cover;
                
    border-radius: 0px 0px 150px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Navbar Styling */
.ecotours_navss {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
}


/* Hero Text Content */
.ecotours_heros_contentss {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 20px 20px;
}

.ecotours_hero_badgess{
    margin-top: 20px;
    margin-bottom: 10px;
}


.ecotours_heros_titless {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ecotours_heros_subtitless {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #efefef;
    padding-bottom: 50px;
}


/* Responsive */
@media (max-width: 768px) {
    .ecotours_navs_links { display: none; }
    .ecotours_heros_title { font-size: 2.5rem; }
}























/* hotel bookinge */
/* hotel Portfolios */
.eco_hotel_booking_insights {
    padding: 80px 5%;
    background-color: #fFF;
    font-family: 'Inter', sans-serif;
}

.eco_hotel_booking_header {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/22.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 50px;
    margin-bottom: -60px; /* Pulls cards up into the header area */
    border-radius: 8px 8px 0 0;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.eco_hotel_booking_main_title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-align: center;
}

.eco_hotel_booking_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* Places grid over the header */
    z-index: 2;
}

.eco_hotel_booking_card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.eco_hotel_booking_card:hover {
    transform: translateY(-10px);
}

.eco_hotel_booking_image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.eco_hotel_booking_content {
    padding: 25px;
}

.eco_hotel_booking_content h3 {
    font-size: 1.4rem;
    color: #1a2b3c;
    margin-bottom: 10px;
    line-height: 1.3;
}

.eco_hotel_booking_content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .eco_hotel_booking_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eco_hotel_booking_main_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .eco_hotel_booking_grid {
        grid-template-columns: 1fr;
    }
    .eco_hotel_booking_header {
        padding: 60px 20px;
    }
}
