@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Kristi&family=Playfair+Display&display=swap');
/* font-family: 'Kristi', cursive; */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cabin', sans-serif;
}

*::selection{
    background-color: #FFCC05;
}

a{
    text-decoration: none;
    color:#FFCC05
}
li{
    list-style: none;
}
input{
    border: none;
}
input:focus{
    outline: none;
}
body{
}
.flex{
    display: flex;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.align-center{
    align-items: center;
}


/* Top header styling*/
.header-upper{
    background-color: #1C1C1C;
    padding: 8px 0px;
    z-index: -1;
}
.header-upper-container{
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    font-size: 14px;
    
}

.left{
    gap: 40px;
}

.left-left{
    gap: 20px;
}
.left-right{
    gap: 15px;
    cursor: pointer;
}

.left-right:hover{
    color: #FFAB17;
}
.left-left p{
    letter-spacing: 2px;
}

.right span{
    letter-spacing: 2px;
    cursor: pointer;
}
.right span:hover{
    color: #FFAB17;
}

.icons{
    display: flex;
    gap: 5px;
}
.icons i:hover{
    color: #FFAB17;
    cursor: pointer;
}


/* Login conteiner styling */

.login-container .login-body .logo p{
    font-family: 'Kristi', cursive;
    font-size: 60px;
    color: #FFCC05;

}

.login{
    position: fixed;
    /* top: 0;
    left: 0;
    bottom: 0;
    right: 0; */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* height: 100%; */
    /* width: 100%; */
    background-color: rgba(0,0,0,0.3);
    display: none;
}
.login-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1c1c1c;
    gap: 15px;
    /* display: none; */
}
.login-upper{
    display: flex;
    font-size: 20px;
    color: #fff;
}
.login-upper p{
    padding: 20px 60px;
    cursor: pointer;
}

/* .login-upper p:last-child{
    background-color: #333333;
} */

.login-body{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 20px 40px;
}

.input input{
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.input input[type='submit']{
    background-color: #FFCC05;
    letter-spacing: 3px;
    color: #fff;
    font-size: 17px;
    padding: 10px 0;
    border-radius: 5px;
    cursor: pointer;
}
.input input[type='submit']:hover{
    background-color: #333333;
    
}

/* .login-body .logo{
    margin: 0%;
} */

.login-back-color{
    background-color: #333333;
}

.upper-main-container{
    position: relative;
    z-index: 100;
}

.videos video{
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.down-container{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.header-main{
}
.header-min{
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    align-items: center;
}

.header-min .logo img{
    height: 90px;
}

.header-nav ul.ul-nav{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.header-nav{
    transform: translateY(8px);
    
}
/* a.drop-item{
    color: #9F9F9F;
    font-size: 10px;

} */
a.nav-tab{
    color: #fff;
    font-size: 17px;
    letter-spacing: 2px;
}

.header-nav ul li a:hover{
    color: #FFCC05;
}

.header-nav ul .home-tab{
    color: #FFCC05;
}

.hamburger{
    background-color: #FFCC05;
    padding: 8px;
    transform: translateY(-8px);
    border-radius: 3px;
}


.cart span{
    position: absolute;
    top: -5px;
    right: -8px;
    color: #fff;
    background-color: #FFCC05;
    font-size: 12px;
    /* padding: 2px; */
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Search bar styling */

.search-bar{
    background-color: #141414;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    display: none;
}

.search-bar input{
    /* width: 95%; */
    padding: 5px;
    font-size: 20px;
    background: transparent;
    border: none;
    color: #fff;
    width: 90%;
}

.search-bar i:first-child{
    color: #FFCC05;
    font-size: 23px;
    transform: rotate(90deg);
}
.search-bar i:last-child{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.search-bar i:last-child:hover{
    color: #FFCC05;
}

.right-slider{
    width: 40vw;
    height: 100vh;
    background-color: #1C1C1C;
    position: fixed;
    top: 0;
    right: -1000px;
    z-index: 100011;
    overflow-y: scroll;
    transition: right .5s ease-out;

}

.right-slider::-webkit-scrollbar{
    width: 15px;
}
.right-slider::-webkit-scrollbar-track {
    border-radius: 7px;
    
}

.right-slider::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 6px 6px 6px #000; 
   
}
.cursor{

    cursor: pointer;
}
.right-slider .wrapper img:first-child{
    height: 150px;
    margin-bottom: 20px;
}
.right-slider .wrapper{
    padding: 60px;
}
.right-slider .wrapper p.wrapper-text{
    color:#fff;
    line-height: 1.7;
    letter-spacing: 1px;
    color: #c3ff00;
    font-size: 17px;
    margin-bottom: 20px;
}

.right-slider .wrapper p.wrapper-latest{
    color: #fff;
    font-size: 23px;
    margin-bottom: 20px;
}

.wrapper{
    position: relative;
}

.posts{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.posts .post{
    display: flex;
    gap: 20px;
}

.posts .post .post-content{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.posts .post .post-content p:first-child{
    font-size: 19px;
    color: #fff;
}
.posts .post .post-content p:last-child{

    color: #fff;
}

.phone,.mail{
    display: flex;
    gap: 10px;
    color: #9F9F9F;
}

.right-slider-contact{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.right-slider-contact .icons{
    display: flex;
    gap: 15px;
    color: #9F9F9F;
}

.post-content p:first-child{
    cursor: pointer;
}
.post-content p:first-child:hover{
    color: #FFCC05;
}

.cross-icon{
    position: absolute;
    top: 50px;
    right: 80px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
#bar{
    cursor: pointer;
}

.page-drop{
  
    left: 60px;
  
}

.dest-drop{
   
    left: 130px;

}

.tours-drop{
   
    left: 270px;

}



.shop-drop{
    /* right: 10px; */
    left: 450px;

}
.dropdown{
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #141414;
    /* left: 20px; */
    /* padding: 30px; */
    width: 200px;
    top: 48px;
    gap: 20px;
    height: 0px;
    overflow: hidden;
    transition: height .5s ease;
}

.page-drop li,
.dest-drop li,
.tours-drop li,
.shop-drop li{
    padding-left: 30px;
}
.page-drop li a,
.dest-drop li a,
.tours-drop li a,
.shop-drop li a{
    color: #9F9F9F;
    font-size: 14px;
}
.page-drop li:first-child,
.dest-drop li:first-child,
.tours-drop li:first-child,
.shop-drop li:first-child{
    padding-top: 30px;
}
.page-drop li:last-child,
.dest-drop li:last-child,
.tours-drop li:last-child,
.shop-drop li:last-child{
    padding-bottom: 30px;
}

.page-drop li a:hover,
.dest-drop li a:hover{
    color: #FFCC05;
}
.page-link:hover .page-drop{
    height: 270px;
    /* padding: 30px; */
}

.dest-link:hover .dest-drop{
    height: 100px;
}


.ul-nav li{
    cursor: pointer;
}
.tours-link:hover .tours-drop,
.shop-link:hover .shop-drop{
    height: 150px;
}
.tour-sub-link1{
    text-overflow: ellipsis;
}


/* .tour-sub-link1:hover .tours-sub-drop1{
    height: 100px;
} */
.tour-sub-link1:hover .tours-drop{
    overflow: visible;
}
a.nav-tab.bars:hover{
    color: #fff;
}
a.drop-item.sub{
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
}

.tours-sub-drop1{
    position: absolute;
    display: flex;
    flex-direction: column;
    background-color: #141414;
    /* left: 20px; */
    /* padding: 30px; */
    width: 200px;
    top: 100px;
    gap: 20px;
    /* right: 10px; */
    left: 470px;
    /* height: 0px; */
    overflow: hidden;
    transition: height .5s ease;
    text-overflow: ellipsis;
}
.left-chevron,.right-chevron{
    cursor: pointer;
    z-index: 1000;
}
.right-chevron{
    position: absolute;
    right: 100px;
    top: 50%;
    font-size: 30px;
    color: #fff;
}
.left-chevron{
    position: absolute;
    left: 100px;
    top: 50%;
    font-size: 30px;
    color: #fff;
}


.upper-main-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.upper-main-text h1{
    color: #ffffff;
    font-size: 70px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    margin-top: 30px;
    text-shadow: solid black;
}
.upper-main-text p{
    color: #ffffff;
    text-align: center;
    font-size: 35px;
    letter-spacing: 1px;
    width: 75%;
    margin-top: 20px;
}
.upper-main-content{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* position: relative; */
  
    
}

p.top-text{
    font-family: 'Kristi', cursive;
    color: #FFCC05;
    font-size: 50px;
    /* position: absolute; */
    /* top: 110px;
    left: 430px; */
    /* transform: translateX(-130px); */
    margin-left: -220px;
}

.upper-form-input svg{
    fill: #FFCC05;
    width: 20px;
    height: 20px;
}
.upper-main-form{
    margin-top: 60px;
} 

.upper-main-form form{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffff;
    padding: 30px 50px;  
}

.upper-form-input{
    border: 1px solid #9F9F9F;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
}
select{
    border: none;
    outline: none;
    padding: 5px 15px;
}
option{
    width: 10px;
}

.upper-form-input input{

    padding: 6px 15px;
}

.upper-form-input.submit{
    background-color: #FFCC05;
    border: none;
    cursor: pointer;
}
.upper-form-input.submit button {
    background-color: #FFCC05;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: auto;
    color: #000;
}
.upper-form-input input[type='submit']{
    background: transparent;
    border: none;
    padding:6px 60px ;
    color: #fff;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}
.upper-form-input.submit:hover{
    background-color: #1c1c1c;
}


.fixed-top{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding-bottom: 15px;
    transition-duration:.5s;
    box-shadow: 0 0 8px 0 #cdc8c8;

}

/* .fixed-search{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
} */
.fixed-top .nav-tab{
    color: #000;
}



.top i, .bottom i{
    font-size: 20px;
}

.top i{
    color: #fff;
    font-weight: bolder;
}
.top{
    background-color: rgb(238, 38, 71);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    
}
.top,.bottom{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bottom i{
    color: rgb(238, 38, 71);
    
}

.bottom{
    background-color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0 0 8px 0 #cdc8c8;
}


.down{
    /* background-image: url('/images/h1-background-2.jpg'); */
    /* background-size: cover;
    background-position: center; */
}

.see-more{
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    gap: 50px;
}

.see-more-content{
    width: auto;
}


.see-more-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFCC05;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.see-more-icon i{
    color: #fff;
    font-size: 20px;
}


.see-more-content{
    padding: 20px;
}
.see-more-content h1{
    color: #1105f7;
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    /* width: 70%; */
    font-weight: 700;
    /* margin-top: 20px; */
    margin-bottom: 30px;
}
.see-more-content p{
    color: #040404;
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 60px;
}
.see-more-content a{
    background-color: #FFCC05;
    color: #fff;
    padding: 15px 50px;
    letter-spacing: 2px;
}
.see-more-content a:hover{
    background-color: #1c1c1c;
}

                                                                                /* Package */

section {
    text-align: center;
    margin-top: 40px; /* Adjust margin top as per your design */
}

section h1 {
    text-align: center;
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    color: #303030;
    font-weight: 900;
    margin-bottom: 10px;
}

section h4 {
    font-size: 22px; /* Example: Adjust font size */
    color: #666; /* Example: Adjust color */
    margin-top: 45px; /* Example: Adjust margin top */
    margin-bottom: 15px;
}

section {
    text-align: center;
    margin-top: -5px; /* Adjust margin top as per your design */
    /* margin-bottom: 30px; */
}
.cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 40px;
}

.places {
margin: 15px;
border: 1px solid #ddd;
border-radius: 5px;
overflow: hidden;
width: 200px;
text-align: center;
margin-top: 20px;
}

.places img {
width: 100%;
height: 150px;
object-fit: cover;
}

.places h3, .places p {
margin: 10px 0;
}

.plans{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.planCard{
width: 310px;
height: 400px;
box-shadow: 0px 6px 4px 6px rgb(219, 219, 219) ;
margin-inline: 22px;
border-radius: 5px;
margin-top: 22px;
margin-bottom: 25px;

}
.planCard img{
width: 100%;
height: 250px;
border-radius: 5px;
}
/* .whatsapp-button {
    position: absolute;
    top: 5px;
    right: 15px;
    background-color: #00c849;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    opacity: 0.9;
}

.whatsapp-button i {
    margin-right: 5px;
}

.whatsapp-button:hover {
    background-color: #36e07d;
} */
.info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #b00000;
}

.details {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}


.details i {
    margin-right: 5px;
    color: #3498db;
}

.features {
    display: flex;
    justify-content: space-evenly;
    margin-top: 10px;
    margin-bottom: 10px;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #000000;
}

.feature i {
    margin-right: 2px;
    color: #3498db;
}
.pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.original-price {
    font-size: 1rem;
    color: #777;
    text-decoration: line-through;
    margin-right: 10px;
}

.discounted-price {
    font-size: 1.2rem;
    color: #ff1900;
    font-weight: bold;
}

.planCard:hover {
    transform: translateY(-16px); /* Lift card on hover */
  }
  
.planCard:hover .card-content {
    opacity: 1; /* Show text on hover */
}




                                                /* dots */

.dots{
    display: flex;
    justify-content: center;
    gap: 7px;
}

.dots .dot{
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #9F9F9F;
}

.dot.first{
    background-color: #FFCC05;
}

                                                                /* Reviews */

.rev{
    text-align: center;
}

.reviews{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}


.review-content{
    width: 50%;
    height: 100%;
    background: transparent;
    background-size: cover;
    padding-top: 20px;
    padding-bottom: 20px;
   
}

.review-content h1{
    font-size: 40px;
    color: #000000;
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 20px;

}
.slide{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000000;
    gap: 35px;
    width: auto;
}

.slider{
    display: flex;
    justify-content: center;
    align-items: center;
    

}

.slide-top p.slide-name{
    font-size: 20px;
}
.slide-content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}
.slide-content p{
    text-align: center;
    line-height: 1.7;
    font-size: 18px;
    font-family: monospace;
    width: auto;
}

.slide-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


                                                        /* review bar */

body {
    font-family: Arial, sans-serif;
}

.review-section {
    display: flex;
    width: auto;
    margin-top: -15px;
    margin-bottom: 10px;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
}

.left-section {
    width: 110%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
.half-circle {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.stars .star {
    font-size: 30px;
    color: gold;
    margin: 0 2px;
}

.stars .star:nth-child(1) { font-size: 20px; }
.stars .star:nth-child(2) { font-size: 30px; }
.stars .star:nth-child(3) { font-size: 40px; }
.stars .star:nth-child(4) { font-size: 30px; }
.stars .star:nth-child(5) { font-size: 20px; }

.rating-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.user-count {
    font-size: 16px;
    color: #777;
    margin-top: 5px;
}

.right-section {
    width: 60%;
    background-color: #fff;
}

.rating-line {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.rating-line span {
    width: 70px;
    font-size: 16px;
    color: #555;
}

.line {
    flex-grow: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 0 10px;
    position: relative;
}

.line-fill {
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
}

.count {
    width: 50px;
    font-size: 16px;
    text-align: right;
    color: #555;
}


                                                                        /* More Places */

section.more-place{
    max-width: 1100px;
    margin: 40px auto;
}

.image-gallery{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 15px;
}

.image-gallery img{
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform .5s;
}

.image-gallery img:hover{

    transform: scale(1.1);
}

.image-gallery div{
    overflow: hidden;
}


.image-left-bottom{
    display: flex;
    gap: 10px;
}
.img-abs{
    position: relative;
}
.img-abs p{
    position: absolute;
    bottom: 5px;
    left: 20px;
    font-size: 20px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: bolder;
}
.image-left-top{
    margin-bottom: 12px;
}
.more-place-text p {
    text-align: center;
    color: #333333; /* Darker, more readable color */
    font-size: 22px; /* Slightly larger for better readability */
    width: 80%; /* Adjusted width for better proportion */
    line-height: 1.6; /* Increased line-height for improved readability */
    font-family: 'Arial', sans-serif; /* Modern sans-serif font */
    margin: 0 auto 30px auto; /* Center the paragraph and increase bottom margin */
    padding: 0 15px; /* Add some horizontal padding for better spacing */
    background-color:transparent; /* Light background color for contrast */
    border-radius: 8px; /* Rounded corners for a softer look */
    
}

.more-place-text{
    display: flex;
    justify-content: center;
    align-items: center;
}
.more-place h1{
    text-align: center;
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    color: #303030;
    font-weight: 900;
    margin-bottom: 15px;
}

.see-more-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}

.see-more-btn a{
    background-color: #FFCC05;
    color: #fff;
    padding: 15px 50px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.see-more-btn a:hover{
    background-color: #1c1c1c;
}






                                                            /* Join Newsletter section */

.join-upper{
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-image: url('./images/h1-img-7.jpg');
    padding: 30px;
    justify-content: center;
    align-items: center;
    transform: translateY(50px);
    z-index: 1;
    position: relative;
}

.join-upper-input{
    width: 75%;
    display: flex;
}
.join-upper-text{
    width: 25%;
}
.join-upper-text h2{
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #303030;
    margin-bottom: 7px;
}
.join-upper-text p{
    font-size: 18px;
    font-weight: 900;
    color: #303030;
}

.join-upper-input input[type='email']{
    width: 80%;
    padding: 15px;
    font-size: 18px;
}
.join-upper-input input[type='submit']{
    width: 50%;
    padding: 15px;
    font-size: 16px;
    background-color: #303030;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: bold;
}

.join{
    margin-bottom: 20px;
}

.join-lower{
    display: flex;
    background-color: #F7F7F7;
    height: 600px;
}

.join-lower-img{
    width: 50%;

    position: relative;
}
.join-lower-content{
    width: 50%;
}
.join-lower-img img{
    width: 100%;
    height: 100%;
}

.join-lower-text{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.join-lower-text p{
    font-size: 200px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    transform: translateX(60px);
}

.join-lower-text span{
    color: #FFCC05;
    font-family: 'Kristi', cursive; 
    font-size: 150px;
    transform: translate(-50px,-80px);
}

.join-lower-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}
.join-lower-content h1{
    color: #303030;
    font-size: 40px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}
.join-lower-content p {
    width: 100%;
    color: #1449bc; /* Primary text color */
    font-size: 19px; /* Font size */
    line-height: 1.8; /* Increased line height for better readability */
    margin-bottom: 30px; /* Bottom margin */
    font-family: 'Fredoka One', cursive; /* Fun and engaging font family */
    background: linear-gradient(135deg, #f0f8ff 0%, #d7e9ff 100%); /* Subtle gradient background */
    padding: 15px 20px; /* Padding for spacing */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.join-lower-content p:hover {
    transform: translateY(-5px); /* Slight upward movement on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}


.join-lower-content a{
    color: #FFCC05;
    padding: 5px;
    border-bottom: 2px solid #FFCC05;
    letter-spacing: 1px;
}


/* Footer styling */

.footer{
    background-color: #141414;
    color: #fff;
}

.footer-container{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    grid-gap: 40px;
    padding-top: 40px;
    padding-bottom: 20px;
}


p.footer-head{
    font-size: 20px;
    margin-bottom: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.footer-first img{
    margin-top: -15px;
    margin-bottom: 20px;
    height: 115px;
}
.footer-first p {
    color: #da9631; /* Light, readable color for better contrast */
    margin-bottom: 20px; /* Space below each paragraph */
    line-height: 1.6; /* Increased line height for better readability */
    font-size: 18px; /* Slightly larger font size for better readability */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; /* Modern, clean font */
    text-align: center; /* Center-align text for a balanced look */
    border-radius: 8px; /* Rounded corners for a softer look */
    transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transition effects */
}

.footer-first p:hover {
    color: #ffcc00; /* Highlight color on hover */
    background: #444; /* Slightly lighter background on hover */
    transform: translateY(-8px);
    
    
}

.footer-fourth img{
    width: 100%;
}

.footer-icons div{
    display: flex;
    gap: 15px;
}
.footer-icons div i{
    color: #FFCC05;
}
.footer-icons{
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #cdc8c8;
}

.footer-img{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}
.footer-first .icons {
    margin-top: 20px; /* Space above the icons */
    display: flex; /* Flexbox for layout */
    font-size: 30px;
    gap: 16px; /* Space between icons */
}

.footer-first .icons i {
    color: #ffcc00; /* Default color for icons (white) */
}

.footer-first .icons a:hover i {
    color: #ffffff; /* Color of the icons on hover (yellow) */
}

.footer-second div{
    display: grid;
    color: #FFCC05;
    line-height: 1.5;
    text-align: center;
    gap: 12px;
}

.footer-second div p{
    margin-bottom: 10px;
}
.footer-second a {
    color: #00f2ff; /* Dark gray color for links */
    font-weight: normal; /* Normal font weight for links */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.footer-second a:hover {
    color: #FFCC05; /* Color when hovered (blue) */
    text-decoration: underline; /* Underline on hover */
}

.footer-head {
    font-size: 24px; /* Size of the heading */
    color: #ffffff; /* Color of the heading */
    margin-bottom: 20px; /* Space below the heading */
    text-align: center; /* Center-align heading */
}

.footer-third div {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(2, 1fr); /* Create two equal-width columns */
    line-height: 1.5;
    text-align: center;
    row-gap: 12px;
}
.footer-third div p{
    color: #cdc8c8;
}

.footer-third a {
    color: #00f2ff; /* Link color */
    font-weight:normal /* Font size of the links */
    
}

.footer-third a:hover {
    color: #FFCC05; /* Darker color on hover */
    text-decoration: underline;
}


.footer-img img:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition-duration: .5s;

}
.footer-img div{
    overflow: hidden;
    transition-duration: 1s;
}

.footer-second div p:hover, .footer-second div span:hover{
    color: #FFCC05;
    cursor: pointer;
}

.footer-first div span:hover{
    cursor: pointer;
    color: #FFCC05;
}

.footer-fifth {
    max-width: 100%;
}
.footer-fifth p {
    font-size: 20px;
    justify-content: center;
    line-height: 1.6;
    text-decoration: underline;
}

.custom-drop{
    display: none;
}

.side-bars{
    position: fixed;
    top: 20px;
    right: 40px;
    font-size: 30px;
    z-index: 10000;
    cursor: pointer;
    display: none;
}
.profile{
    position: fixed;
    top: 25px;
    left: 40px;
    font-size: 20px;
    z-index: 10000;
    cursor: pointer;
    display: none;
}

.header-min .fa-chevron-right{
    display: none;
}

.container{
    margin-top: 10px;
    padding-left: 100px;
    padding-right: 100px;
}
/* .container img{
    width: 100%;
} */

.upper-main-form i{
    color: #FFCC05;
}

/* Media queries */



@media(max-width:1120px){
    .header-min .fa-chevron-right,.profile{
        display: block;
    }

    video{
        object-fit: cover;
    }
    .upper-main-content{
        margin-top: 120px;
    }

    .side-bars{
        display: block;
    }
    .header-upper{
        display: none;
        padding-left: 30px;
        padding-right: 30px;
        
    }
    .header-main{
        background-color: #fff;
        position: fixed;
        left: 0;
        right: 0;
        /* padding: 15px; */
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .logo{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-min{
        display: initial;
        
    }
    .ul-nav{
        flex-direction: column;
        position: absolute;
        background-color: #fff;
        /* top: -8px; */
        width: 100%;
        
    /* box-shadow: 0 0 5px 0 #cdc8c8; */
    box-shadow: 0 4px 6px -2px #cdc8c8;
    height: 0;
    padding: 0;
    overflow-y: scroll;
/*     
    overflow-x: scroll; */

    }
    .ul-nav::-webkit-scrollbar{
        width: 10px;
    }
    .ul-nav::-webkit-scrollbar-track {
        border-radius: 5px;
        
    }
    
    .ul-nav::-webkit-scrollbar-thumb {
        border-radius: 10px;
        box-shadow: inset 6px 6px 6px #818181; 
       
    }

    .ul-nav i{
        position: absolute;
        right: 80px;
        /* display: block; */
        /* top: 10px; */
        margin-top: -20px;
    }
    .ul-nav a{
        color: #000;
        /* display: block; */
    }
    .ul-nav li{
        padding-left: 40px;
    }
    .ul-nav li:hover a.nav-tab{
        color: #FFCC05;
    }
    .ul-nav li{
        /* display: flex; */
    }
    /* .ul-nav li:first-child{
        padding-top: 40px;
    }
    .ul-nav li:last-child{
        padding-bottom: 40px;
    } */

    .custom-drop{
        /* display: block; */
    }


    .page-link:hover .page-drop{
        height: 0px;
        /* padding: 30px; */
    }

    .dest-link:hover .dest-drop{
        height: 0px;
    }


    .tours-link:hover .tours-drop,
    .shop-link:hover .shop-drop{
        height: 0px;
    }
    
    



    .search-li{
        display: none;
    }
    #bar{
        display: none;
    }

    .page-drop-custom{
        
    }

    .custom-drop{
        display: block;
        display: flex;
        flex-direction: column;
        gap: 20px;
        /* padding: 0; */
        height: 0;
        overflow: hidden;
    }

    .dest-drop-custom{
        /* display: block; */
        color: #000;
    }


    .shop-link{
        padding-bottom: 20px;
    }
    .side-bars{
        display: block;
    }


    .upper-main-text h1{
  
        font-size: 50px;
    }
    .upper-main-text p{
      
        font-size: 18px;
        
    }
    .upper-main-text p{
        width: 50%;
    }

    .upper-main-form{
        width: 70%;
        
    box-shadow: 0 0 8px 0 #cdc8c8;

    }
    .upper-main-form form{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }

    .see-more{
        flex-direction: column;
    }
    .see-more-img,.see-more-content{
        width: 80%;
        margin: 0 auto;
        height: 50%;
    }

 
    .reviews{
        flex-direction: column;
        height: auto;
    }
    
    .review-content{
        width: 80%;
        height: 100%;
        background: transparent;
        background-size: cover;
        padding-top: 20px;
        padding-bottom: 20px;
       
    }

    .image-gallery{
        padding: 10px;
    }
    .adventure{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .adventure-left{
        width: 80%;
    }
    .adventure-right{
        width: 80%;
    }

    .offers-images{
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-left: 100px;
        padding-right: 100px;
    }
    .offers-middle .offer-card:first-child{
        height: 40%;
    }

    .offers-right{
        display: none;
    }


    .footer-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-left: 25px;
        padding-right: 30px;

    }


    .videos video{
        object-fit: cover;
        width: 100%;
        height: 120vh;
    }
    
}

@media(max-width:948px){
    .right-chevron,.left-chevron{
        display: none;
    }
    .upper-main-form form{
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    .upper-main-text p{
        /* display: none; */
        font-size: 15px;
        width: 80%;
    }
    .upper-main-text h1{
  
        font-size: 30px;
    }
    p.top-text{
        font-size: 40px;
        margin-top: 35px;
    }
    .upper-form-input input[type='submit']{
        font-size: 14px;
    }
    .upper-form-input input{
        font-size: 15px;
    }
    .upper-form-input label{
        font-size: 13px;
    }
    .upper-form-input i{
        font-size: 15px;
    }
    .slide-bottom{
        margin-top: 15px;
    }


    .review-content h1{
        font-size: 30px;
    }
    .stars{
        margin-bottom: 15px;
    }
    .slide-text{
        font-size: 16px;
    }
    .adventure-left-content{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        
    }

    .join-upper{
        flex-direction: column;
        gap: 20px;
    }
    .join-upper-input{
        width: 100%;
        display: flex;
    }
    .join-upper-text{
        width: 100%;
    }

    .join-upper-input input[type='email']{
        width: auto;
    }
    .join-upper-input input[type='submit']{
        width: auto;

    }
    .join-lower{
       flex-direction: column;
       justify-content: center;
       align-items: center;
       height: auto;

    }
    
    .join-lower-img{
        width: 80%;
    
        position: relative;
    }
    .join-lower-content{
        width: 80%;
    }
    .join-lower-text p{
        font-size: 110px;
    }
    .join-lower-text span{
        font-size: 110px;
        margin-top: 20px;
    }
}

@media(max-width:700px){
    .adventure-left-content span{
        font-size: 30px;
    }
    .adventure-left-content h1{
        font-size: 20px;

    }
    
    .adventure-left-content p{
        font-size: 14px;

    }
    
    .adventure-left-content a{
        font-size: 14px;

    }


    
    .offers-images{
        display: grid;
        grid-template-columns: 1fr;
    }

    .tour-icons{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

    .footer-container{
        grid-template-columns: 1fr;
    }

    .join-upper-input{
        flex-direction: column;
        gap: 10px;
    }
    .join-lower-text p{
        font-size: 90px;
        margin-top: 70px;
    }
    .join-lower-text span{
        font-size: 90px;
        margin-top: 50px;
    }
}


@media(max-width:611px){

    .join-lower-text p{
        font-size: 80px;
        margin-top: 100px;
    }
    .join-lower-text span{
        font-size: 80px;
        margin-top: 50px;
    }
}
.height{
    height: auto;
    padding-top: 10px;
    margin-top: 10px;
}

.rotate{
    transform: rotate(90deg);
}

.ham-height{
    height: 60vh;
}

