@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

:root {
    --Primary-color: rgb(251, 91, 50);
    --secondary-color: #000;
    --white-color: #fff;
    --pg-color: #6e6e6e;
    --light-bgColor: #00000046;
}

.section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 100px 10%;
    gap: 100px;
}

.btn1 {
    background-color: transparent;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    color: var(--secondary-color);
    cursor: pointer;
}

.btn2 {
    background-color: var(--Primary-color);
    border-radius: 30px;
    height: 40px;
    width: 170px;
    color: var(--white-color);
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

.navbar {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, 0.5);
}

#open_menu {
    display: none;
}

.logo {
    height: 80px;
    width: 180px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
}

.menu {
    display: flex;
    gap: 50px;
}

.menu li a {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.6s;
    color: var(--white-color);
}

.menu li a:hover {
    color: var(--Primary-color);
}

.social_icon {
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.icon_wrapper {
    position: relative;
    cursor: pointer;
}

.social_icon i {
    font-size: 1.5rem;
    padding: 5px;
    color: var(--white-color); 
    border-radius: 50%;
    transition: 0.3s ease;
}

.social_icon i:hover {
    background: #ff6600;
    color: white;
}

/* Dropdown Styling */
.dropdown {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 180px;
    display: none;
    flex-direction: column;
    padding: 10px;
    text-align: left;
    z-index: 10;
}

/* Dropdown links */
.dropdown a {
    padding: 8px 15px;
    display: block;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.dropdown a:hover {
    background: var(--Primary-color);
    color: white;
}

.dropdown input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.icon_wrapper:hover .dropdown {
    display: flex;
}

.sidebar_menu {
    background-color: var(--white-color);
    position: fixed;
    width: 300px;
    height: 100vh;
    top: 0;
    left: -100%;
    padding: 40px;
    z-index: 99;
    opacity: 0;
    display: none;
    transition: all 0.6s;
}
.sidebar_menu .logo{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#close_sidebar_menu {
    font-size: 22px;
    padding: 8px;
    color: var(--secondary-color);
    cursor: pointer;
}
.sidebar_menu ul li {
    padding: 20px 0px;
}

.sidebar_menu ul li a {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
}

.sidebar_menu.show {
    opacity: 1;
    left: 0;
}

/* Hero Section */
.hero_Splide {
    width: 100%;
    position: relative;
}

.hero_title {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero_title h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 4rem;
}

.hero_title p {
    font-size: 22px;
    color: var(--white-color);
    font-weight: 500;
}

.hero_Splide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.main {
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
}

/* Travel Style Sections */
.Travels_main {
    width: 100%;
    padding: 40px 0;
    padding-left: 10%;
}

.Travels_Splide {
    width: 100%;
}

.Travels {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Travels_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10% 40px 0;
}

.Travels_header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.travel_wrapper {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.travel_box {
    width: 100%;
    height: 100%;
    color: var(--white-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.6s;
    opacity: 0;
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.travel_wrapper:hover .travel_box {
    opacity: 1;
    top: 0;
}

.travel_box button {
    border-radius: 50pc;
    margin-block: 20px;
}

.travel_box1 { background-color: rgba(33, 201, 243, 0.6); }
.travel_box2 { background-color: rgba(253, 128, 255, 0.6); }
.travel_box3 { background-color: rgba(15, 197, 173, 0.6); }
.travel_box4 { background-color: rgba(252, 89, 89, 0.6); }
.travel_box5 { background-color: rgba(89, 176, 58, 0.6); }
.travel_box6 { background-color: rgba(255, 141, 71, 0.6); }

.travel_box p {
    line-height: 25px;
    letter-spacing: 0.5px;
    text-align: center;
    color: var(--white-color);
}

.travel_wrapper h3 {
    position: absolute;
    top: 20px;
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 1;
    font-size: 24px;
    font-weight: 600;
}

.travel_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    z-index: -1;
}

/* Features Section */
.feature{
    width: 100%;
    background-color: #ffeee3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 95%;
    margin: auto;
    padding: 30px;
}
.feature_title{
    width: 30%;
    height: 500px;
    justify-self: flex-start;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}
.Feature_Splide{
  height: 100%;
  width: 70%;
  padding: 50px;
}
.Card{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    flex-direction: column;
    position: relative;
    background-color: var(--white-color);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}
.Tours {
    position: relative;
    overflow: hidden;
}

.Tours img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.Card .Tours img {
    transition: transform 0.3s ease-in-out;
}

.Card:hover .Tours img {
    transform: scale(1.1);
}

.Tours_social_icon {
    position: absolute;
    top: 20px;
    right: -100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}

.Card:hover .Tours_social_icon {
    right: 20px;
}

.icon {
    background: var(--white-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.icon:hover {
    background: var(--Primary-color);
    color: var(--white-color);
}

.Card_box {
    padding: 1.5rem;
}

.item_rate {
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.Tour_content span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.Tour_content h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.info_price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info_price div {
    color: #666;
    font-size: 0.9rem;
}

.info_price h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}
/*Popular tour Section*/
.Popular_tour {
    padding: 4rem ;
    background-color: #f8f9fa;
}

.Popular_tour_title {
    text-align: center;
    margin-bottom: 2rem;
}

.Popular_tour_title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.Popular_tour_title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: var(--Primary-color);
}

.Tour_Event_Wrap{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.Tour_Event_Left{
    width: 25%;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    place-content: center;
    place-items: center;
    gap: 30px;
}
.Event_Box{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;  
}
.Event_Box::before {
    content: '';
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, #112437 100%);
    border-radius: 10px;
    transition: 0.6s;
}

.Event_Box:hover::before {
    height: 60%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, #112437 100%);
}

.Event_Box a{
    width: 100%;
    overflow: hidden;
}
.Event_Box a img{
    width: 100%;
    height: 100%;
}
.Event_Box .Rating{
    position: absolute;
    background-color: #ffffff;
    padding: 8px 12px;
    border-radius: 30px;
    top: 20px;
    left: 20px; 
}
.Rating{
    font-size: 0.8rem;
     color: var(--secondary-color);
}
.Rating i{
    color: #ffd700;
}
.Project_Content{
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: var(--white-color);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}
.Project_Content h4{
     font-size: 1.6rem;
     font-weight: 600;
     border-bottom: 1px solid rgba(255, 255, 255, .4);
     padding-bottom: 13px;
}
.Top_Event_Middel{
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Top_Event_Right{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
.Event_Main{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.Event_Main .Event_Box:nth-child(1){
    width: 39%;
}
.Event_Main .Event_Box:nth-child(2){
    width: 61%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.btn2 {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    background: var(--Primary-color);
    color: var(--white-color);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn2:hover {
    background: var(--white-color);
    color: var(--Primary-color);
    border: 2px solid var(--Primary-color);
}

.btn2 .arrow {
    color: var(--white-color);
    transition: var(--transition);
}

.btn2:hover .arrow {
    transform: translateX(5px);
}

.promo-card {
    grid-column: span 2;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1000&q=80');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
}

.Travel_activities_title {
    color: var(--white-color);
}

.Travel_activities_title span {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.Travel_activities_title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.2s forwards;
}

.Travel_activities_title p {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.4s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .Popular_tour_wrap {
        grid-template-columns: repeat(3, 1fr);
    }
    .promo-card {
        grid-column: span 3;
    }
}

@media (max-width: 900px) {
    .Popular_tour_wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-card {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .Popular_tour_wrap {
        grid-template-columns: 1fr;
    }
    .promo-card {
        grid-column: span 1;
    }
    .Travel_activities_title h3 {
        font-size: 2rem;
    }
}

/* Best Deals*/
.Best_Deals{
    background-color: #eceaff;
    width: 100%;
    gap: 30px;
    width: 90%;
    margin: auto;
    border-radius: 30px;
    flex-direction: row;
    padding: 0;
    overflow: hidden;
}
.Best_Deals_title{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
    padding-left: 30px;
}
.Best_Deals_title h3{
    color: var(--Primary-color);
    font-size: 1.5rem;
}
.Best_Deals_title p{
    color: var(--pg-color);
}
.Best_Deals_title p span{
    color: var(--secondary-color);
    font-weight: 700;
}
.Best_Deals_Content{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.Deals_and_Trip i{
border-radius: 10px;
color: var(--white-color);
background-color: var(--Primary-color);
padding: 2px;
margin-right:5px ;
}
.DailyUser_and_Download h3{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    columns: var(--secondary-color);
    font-weight:600 ;
    margin-inline: 10px;
}
.DailyUser_and_Download span{
    color: var(--pg-color);
    margin-inline: 10px;
}
.googleplay_and_appstore img{
border-radius: 30px;
}
.Best_Deal_Page{
    width: 60%;
    position: relative;
    z-index: 999;
    padding: 50px 0px;
}
.Deals{
    margin-right: 5px;
}
.Best_Deals_Splide{
    width: 100%;
    position: absolute !important;
    top: 68%;
    right: -58%;
    transform: translate(-50%, -50%);
}
.Best_Deals_Bg{
    height: 100%;
    width: 100%;
    position: absolute;
    right: -14%;
    left: 0%;
    z-index: -1;
    -webkit-mask-image :url(img/h3_mask.svg);  /*transparency effects*/
    background-size: contain;
    background-position: center center;
    -webkit-mask-image: no-repeat;
}
.thumbnail{
    height: 200px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.thumbnail .thumbnail_info{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-radius: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0, 655899439776), 17% rgba(255, 255, 255, 0) 41%);
}
.thumbnail_info span{
    background-color: #4d40ca;
    padding: 2px 8px;
    font-size: 10px;
    color: var(--white-color);
    border-radius: 30px;
}

.thumbnail_info h5{
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}
.thumbnail img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    border-radius: 10px;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
}
/*BEST TOUR SECTION */
.Best_Tours {
    padding: 2rem;
}
.Best_Tour_Wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.Best_Tours_Container {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.Best_Tours_Container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(87, 80, 80, 0.17);
}

.Best_Tours_box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(87, 80, 80, 0.17);
}

.Best_Tours_box:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.Best_Tours_Page {
    width: 30%;
    aspect-ratio: 1;
}

.Best_Tours_Page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.Best_Tours_Details {
    flex: 1;
}

.Best_Tours_Details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.Best_Tours_Details span {
    color: var(--Primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.price {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.price .current-price {
    color: var(--Primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.price .original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .Best_Tour_Wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
     .Tour_Event_Wrap{
        flex-direction: column;
     }
     .Tour_Event_Left{
        width: 100%;
     }
     .Tour_Event_Middel{
        width: 100%;
     }
     .Tour_Event_Right{
        width: 100%;
     }
    .Travel_activities_title {
        padding-top: 30px;
        padding-left: 30px;
    }
    .Travel_activities_title h3 {
        font-size: 2rem;
    }
    .Travel_activities_title span, .Travel_activities_title p {
        font-size: 16px;
    }
    .Best_Tour_Wrap {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .Travel_activities_title {
        padding-top: 20px;
        padding-left: 20px;
        width: 90%;
    }
    .Travel_activities_title h3 {
        font-size: 1.8rem;
    }
    .Travel_activities_title span, .Travel_activities_title p {
        font-size: 14px;
    }
}



/* Newsletter Section*/
.newsletter {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.newsletter-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--white-color);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-text {
    max-width: 600px;
}

.label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

p {
    color: var(--pg-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

button {
    padding: 1rem 2rem;
    background: var(--Primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: var(--white-color);
    border: 2px solid var(--Primary-color);
    color: var(--Primary-color);
    transform: translateY(-2px);
}

.trusted-by {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0.6;
}

.company-logo {
    height: 24px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.newsletter-image {
    position: relative;
    width: 100%;
    height: 500px;
}

.travel-suitcase {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;

}

.landmark {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.landmark:nth-child(1) { clip-path: polygon(0 0, 50% 0, 25% 100%, 0 100%); }
.landmark:nth-child(2) { clip-path: polygon(25% 0, 75% 0, 50% 100%, 25% 100%); }
.landmark:nth-child(3) { clip-path: polygon(50% 0, 100% 0, 75% 100%, 50% 100%); }
.landmark:nth-child(4) { clip-path: polygon(75% 0, 100% 0, 100% 100%, 75% 100%); }

@media (max-width: 1200px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        max-width: 800px;
        text-align: center;
    }

    .newsletter-text {
        margin: 0 auto;
    }

    h2 {
        font-size: 2.5rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .trusted-by {
        justify-content: center;
    }

    .newsletter-image {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .newsletter {
        padding: 1rem;
    }

    .newsletter-content {
        padding: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .newsletter-image {
        height: 300px;
    }

    .trusted-by {
        flex-wrap: wrap;
    }
}
/* Responsive Design */
@media screen and (max-width: 1024px) {
    .con-img {
        width: 90%;
    }

    .con-img h2 {
        font-size: 2em;
    }

    .con-img p {
        font-size: 1.2em;
    }

    .brand-logo {
        max-width: 60px;
    }
}

@media screen and (max-width: 768px) {
    .con-img {
        bottom: 10px;
        width: 95%;
        padding: 15px;
    }

    .con-img h2 {
        font-size: 1.8em;
    }

    .con-img p {
        font-size: 1em;
    }

    .brand-logo {
        max-width: 50px;
    }

    .explore-link {
        font-size: 1em;
    }

    .con-img button {
        font-size: 14px;
        padding: 8px 15px;
    }
}

@media screen and (max-width: 480px) {
    .con-img {
        bottom: 5px;
        width: 95%;
        padding: 10px;
    }

    .con-img h2 {
        font-size: 1.5em;
    }

    .con-img p {
        font-size: 0.9em;
    }

    .brand-logo {
        max-width: 40px;
    }

    .explore-link {
        font-size: 0.9em;
    }

    .con-img button {
        font-size: 12px;
        padding: 6px 12px;
    }
    .Event_Main{
        flex-direction: column;
    }
    .Event_Main .Event_Box:nth-child(1){
           width: 100%;
    }
    .Event_Main .Event_Box:nth-child(2){
        width: 100%;
 }
}


@media (max-width: 1000px) {
    .menu {
        display: none;
    }
    #open_menu {
        display: block;
    }
    .hero_title h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .hero_title p {
        font-size: 18px;
    }
    .sidebar_menu{
        display: block;
    }
    .show{
        opacity: 1;
        left: 0%;
    }
}

@media (max-width: 768px) {
    .hero_title h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .hero_title p {
        font-size: 16px;
    }
    .Travels_header h2 {
        font-size: 2rem;
    }
}
/*Footer */
footer{
    width: 100%;
    background-color: var(--white-color);
    padding: 120px 12%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 0;
}
.Footer_Wrap{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-content: center;
    place-items: start;
    gap: 30px;
    padding-bottom: 30px;
}
.Footer_Col{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.Flogo h2{  
    font-size:2.5rem;
    padding-bottom: 20px;
}

.Footer_Col:nth-child(1) p{
    font-size: 1rem;
    line-height: 1.5rem;
    padding-bottom: 30px;
}
.Footer_Icon{
    width: 80%;
    padding: 20px;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgba(00, 0, 0, 0.2) ;
}
.Footer_Icon h6{
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 20px;
}
.Footer_Icon i{
    font-size: 1.2rem;
    border:1px solid var(--pg-color);
    border-radius: 50%;
    padding: 10px;
    margin: 0% 3px;
}
.Footer-Icon i:hover{
    color: var(--white-color);
    background-color: var(--Primary-color);
    border: 1px solid #000000;
}
.Footer_Col h3{
    font-size: 1.3rem;
    padding-bottom: 20px;
}
.Footer_Col ul li{
    padding: 10px 0;
}
.Footer-Col ul li strong{
    background-color: rgb(232, 232, 90);
    color: var(--pg-color);
    font-weight: 500;
    padding: 5px;
    font-size: 0.9rem;
    border-radius: 5px;
    text-transform: uppercase;
}

.Footer_Col ul li span{
    font-size: 1rem;
    color: var(--pg-color);
}

.Footer_Col .Post{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}
.Post img{
    width: 90px;
    height: 90px;
    border-radius: 12px;
object-fit: cover;
}
.Post_Info_Top{
   width: 100%;
   display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.Post_Info_Top li span{
    font-size: 0.8rem !important;
}
.Post_Info_Top li i {
    font-size: 0.8rem !important;
    color: var(--Primary-color);
}
.Post_Info h6{
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 500;
}
.Footer_Bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-top: 1px solid var(--pg-color);
}
.Footer_Bottom p{
    width: 50%;
    font-size: 1rem;
    color: var(--light-bgColor);
}
.Footer_Bottom p strong{
    color: var(--Primary-color);
    font-weight: 500;
}
.Footer_Bottom_Image{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.Footer_Bottom_Image img{
    width: 50%;

}
/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .Footer_Wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .Footer_Bottom p,
    .Footer_Bottom_Image {
        width: 100%;
    }

    .Footer_Bottom_Image {
        justify-content: center;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
    footer {
        padding: 50px 5%;
    }

    .Footer_Wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .Footer_Col {
        align-items: center;
    }

    .Footer_Icon {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .Footer_Icon .Icon {
        justify-content: center;
    }

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

    .Footer_Bottom p,
    .Footer_Bottom_Image {
        width: 100%;
    }

    .Footer_Bottom_Image {
        justify-content: center;
    }
}

/*Responsive feature section*/
@media (max-width: 1024px) {
    .feature_title {
        width: 100%;
        text-align: center;
        height: auto;
    }
    .Feature_Splide {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .feature {
        flex-direction: column;
        padding: 20px;
    }
    .feature_title {
        width: 100%;
        text-align: center;
        height: auto;
    }
    .Feature_Splide {
        width: 100%;
        padding: 20px;
    }
    .Card {
        margin-bottom: 20px;
    }
    .menu li {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .menu {
        gap: 20px;
    }
    .social_icon {
        gap: 10px;
    }
    .Card_box {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 15px;
    }
    .feature_title h2 {
        margin-block: 10px;
        font-size: 1.5rem;
        color: var(--secondary-color);
    }
    .feature_title p {
        display: none;
    }
    .Card_box h3 {
        font-size: 1rem;
    }
    .info_price h4 {
        font-size: 1.2rem;
    }
    .splide__list {
        display: block;
    }
    .splide__slide {
        margin-bottom: 20px;
    }
}

/* Tour Event*/
@media (max-width: 992px) {
    .Tour_Event_Left,
    .Top_Event_Middel,
    .Top_Event_Right {
        width: 100%;
    }
    .Tour_Event_Wrap {
        flex-direction: column;
        gap: 20px;
    }
    .Event_Main .Event_Box:nth-child(1),
    .Event_Main .Event_Box:nth-child(2) {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .Popular_tour_title h2 {
        font-size: 2rem;
    }
    .Event_Box .Rating {
        top: 15px;
        left: 15px;
    }
    .Project_Content h4 {
        font-size: 1.4rem;
    }
    .Tour_Event_Wrap {
        gap: 20px;
    }
    .Event_Main {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .Event_Box {
        flex-direction: column;
    }
    .Project_Content {
        text-align: center;
        justify-content: center;
    }
}
@media (max-width: 1200px) {
    .Best_Deals {
        flex-direction: column;
        width: 95%;
    }

    .Best_Deals_title {
        width: 100%;
        padding-left: 20px;
    }

    .Best_Deal_Page {
        width: 100%;
        padding: 40px 0;
    }

    .Best_Deals_Splide {
        top: 80%;
        right: -20%;
    }

    .thumbnail {
        height: 180px;
    }

    .Best_Deals_title h3 {
        font-size: 1.2rem;
    }

    .Best_Deals_title p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .Best_Deals {
        flex-direction: column;
        width: 100%;
    }

    .Best_Deals_title {
        width: 100%;
        padding-left: 15px;
    }

    .Best_Deal_Page {
        width: 100%;
        padding: 30px 0;
    }

    .Best_Deals_Splide {
        top: 85%;
        right: -30%;
    }

    .thumbnail {
        height: 150px;
    }

    .Best_Deals_title h3 {
        font-size: 1.1rem;
    }

    .Best_Deals_title p {
        font-size: 0.9rem;
    }

    .googleplay_and_appstore {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    .googleplay_and_appstore img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .Best_Deals {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .Best_Deals_title {
        width: 100%;
        padding-left: 10px;
    }

    .Best_Deal_Page {
        width: 100%;
        padding: 20px 0;
    }

    .Best_Deals_Splide {
        top: 90%;
        right: -40%;
    }

    .thumbnail {
        height: 120px;
    }

    .Best_Deals_title h3 {
        font-size: 1rem;
    }

    .Best_Deals_title p {
        font-size: 0.85rem;
    }

    .googleplay_and_appstore {
        display: block;
        margin-top: 15px;
        text-align: center;
    }

    .googleplay_and_appstore img {
        width: 70px;
        height: 70px;
        margin: 10px;
    }
}
