/*!
Theme Name: expert asian
Theme URI: https://www.expertasiantours.com/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: expert-asian
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

expert asian is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/* logo  */
body{
  overflow-x: hidden;
}
.custom-logo{
	max-width: 250px;
	padding: 10px 0;
}
 /* navbar  */
 
 .header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

 .site-header{
	display:flex;
	justify-content: center;
	align-items: center;

  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
 }
/* 
 header#masthead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease; 
}

body {
  padding-top: 100px; 
} */

 .main-navigation{
  display: flex;
  justify-content: center;  
  align-items: center;
  flex: 1;
  gap: 20px;
 }

 #primary-menu {
  display: flex;
  list-style: none;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  gap: 5px; 
  margin: 0;
  padding: 0;

}
.menu-toggle {
  display: none; 
}

#primary-menu li a {
  text-decoration: none;
  padding: 0px 10px;
  display: block;
  color: black;
  display: inline-flex;
  align-items: center;
  white-space: nowrap; 
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: sans-serif;
}
#primary-menu li a:hover{
	color: #4796B3;
}
#primary-menu li {
  position: relative;
}
#primary-menu .sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  z-index: 999; 
  width: 100%;

  /* animation setup */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease;
  margin-top: 40px !important;

}

#primary-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); 
  top: 100%;
}

#primary-menu .sub-menu li {
  margin: 0;
  padding: 0;
}

#primary-menu .sub-menu li a {
  padding: 10px 15px;   
  display: block;    
}

#primary-menu .sub-menu li a:hover {
  background: #4796B3;
  color: white;
}

.menu-item-has-children {
  position: relative;
} 
.menu-item-has-children > .sub-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
} 
.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s;
}
.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}


.primary-btn {
  background: #4796B3;
  white-space: nowrap;
  border-radius: 5px;
  text-transform: uppercase;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none; 
  display: inline-block; 
  transition: 0.3s;
}

.primary-btn:hover {
  background-color: rgb(243, 175, 4);
}

/* popular trips swiper arrow */
.popular-trips .swiper {
  position: relative;
  overflow: visible; 
}

/* Style the next & prev buttons */
.popular-trips .swiper-button-next,
.popular-trips .swiper-button-prev {
  color: #4796B3; 
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  cursor: pointer;
}

.popular-trips .swiper-button-next {
  right: -50px; 
}

.popular-trips .swiper-button-prev {
  left: -50px;
}

.popular-trips .swiper-button-next::after,
.popular-trips .swiper-button-prev::after {
  font-size: 25px;
  font-weight: bold;
}

/* main banner  */
.banner-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.banner-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #fff;
}
.banner-content h1{
  font-size: xx-large;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 90px;
}

.search-form button {
  width: 100%;
  height: 100%;
  background: #4796B3;;
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  padding: 15px;
}

.search-form button:hover {
  background-color: rgb(243, 175, 4);
  
}

.custom-select {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 15px;

  background: rgba(255,255,255,0.2);
}

.custom-select select {
  width: 100%;
  border: none;
  background: transparent;
  color: white;
  font-size: 16px;
  outline: none;
  appearance: none;
  cursor: pointer;

 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 

    padding: 15px 45px 15px 15px;

}
.custom-select select option {
  color: black;
}

/* Arrow icon */

.custom-select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;

  position: absolute;
  right: 15px;
  color: white;

  top: 50%;
  transform: translateY(-50%);
}

.search-form .grid {
  gap: 15px;
  align-items: center;
  width: max-content;       
}

.search-form {
  overflow-x: auto;
}


.search-wrapper{
  padding: 20px;
  border-radius: 20px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);

   display: grid;
  grid-template-columns: 2fr 2fr 1fr; 
  gap: 25px;
}





/* destination section  */
.title{
  color: black;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

p{
  color: black;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
}

.card {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 10px;
}

.card.animate {
  opacity: 1;
  transform: translateY(0);
}

.card img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
  object-fit: cover;
  height: 100%;
}

.card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 1; 
  transition: 0.4s ease;
}

.inner-border {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid #fff;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.4s ease;
}

.text-wrap {
  text-align: center;
  color: #fff;
  padding: 20px;
  z-index: 2;
  max-width: 80%;
  margin: 0 auto;
}

.sub-title {
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase !important;
  font-size: 26px !important;
  letter-spacing: 2px;
  font-weight: 400;
}

.text-wrap p {
  font-size: 16px;
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  color: white;
}

.card:hover .overlay {
  background: rgba(0,0,0,0.6);
}

.card:hover .inner-border {
  opacity: 1;
  transform: scale(1);
}

.card:hover .text-wrap p {
  opacity: 1;
  transform: translateY(0);
}

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


/* popular trips  */
.popular-trips{
  margin-top: 135px;
}
.popular-trips .title{
  display: flex;
  justify-content: center;
}


.small-box{
  padding: 5px;
  background-color: #E9E4D5;
  border-radius: 5px;
  border: 1.5px solid #4796B3;
  position: absolute;
  font-weight: 700;
  color: black;
  top: 30px;
  left: 20px;
  position: relative;
  opacity: .7;
  font-size: 14px;
}
.wrap{
  padding: 20px;
}
.days{
  color: #111; 
  font-weight: 700;
  opacity: .7;
  text-transform: capitalize;
  display: flex;
  align-items: center;     
  justify-content: center;  
  gap: 8px;                 
  font-size: 16px;
}

.days svg {
  width: 20px;
  height: 20px;
  display: block;         
}

.divider {
  border: none;
  height: 0.5px;
  background-color: #bfb9b9;
  margin: 15px 0;
}

.tour-card {
  background: #f4f4f4;
  max-width: 400px;
  height: 95vh;
  overflow: hidden;   
  border-radius: 10px;
  padding: 0;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-card.show-up {
  opacity: 1;
  transform: translateY(0);
}
.small-title {
  color: #4e8fa3;
  font-size: 22px;
  cursor: pointer;
    
}

.wrap p {
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  
}

.bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    padding: 20px;
    margin-top: -25px; 
} 
.explore{
  display: inline-flex;        
  align-items: center;         
  justify-content: center;    
  gap: 8px;
  text-transform: capitalize;                   
  padding: 10px;
  border: 1.3px solid #4796B3;
  text-decoration: none;
  color: #4796B3;
  border-radius: 20px;
  font-weight: 500;
}

.explore svg {
  display: block;            
}
.explore:hover{
  color: #fff;
  background-color: #4796B3;
}
 
.tour-card img{
  margin-top: -18px;
  width: 100%;
  display: block;   
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  height: 50vh;
}

.tour-card{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* .secondary-btn{
  background-color: #4796B3;
  color: #fff;
  padding: 8px;
  border-radius: 5px;
} */

/* Customized Travel Adventure */
.travel-adventure {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  height: 145vh;
}

.travel-adventure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(255, 255, 255, 0.833), rgb(255 255 255 / 80%));

}
.travel-adventure .flex-content {
  position: relative;
  z-index: 2;
  
}
.customized-adventure-image{
  display: none;
}

.flex-content{
  display: flex;
  gap: 20px;
  padding-top: 210px;
}

.flex-content img{
  width: 50%;
  height: 70vh;
  border-radius: 10px;
}
.top-text{
  font-size: 26px;
  color: black;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.2em;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 15px;
}
.content {
  max-width: 500px;        
  margin: 0 auto;   
  text-align: left;       
}
.title {
  margin-bottom: 20px;
  line-height: 1.3;
}
.content p {
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;

}

.btn{
  display: inline-block;
  background-color: #4796B3;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.3s !important;
  cursor: pointer;
  font-size: 14px;
  width: fit-content;
}
.btn:hover{
  background-color: rgb(243, 175, 4);;
}
.short-divider{
  border: none;
  height: 3px;
  background-color: rgb(243, 175, 4);;
  margin: 30px 0;
  width: 80px;
}

.travel-adventure .content .top-text,
.travel-adventure .content .title,
.travel-adventure .content .short-divider,
.travel-adventure .content p,
.travel-adventure .content .btn {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.travel-adventure .content.animate .top-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.travel-adventure .content.animate .title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.travel-adventure .content.animate .short-divider {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.travel-adventure .content.animate p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.travel-adventure .content.animate .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}


/* individual tours & trips */

.individual-tours {
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  background-attachment: fixed !important;
}

.individual-tours::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.in-border {
  position: absolute;
  top: 60px;
  left: 80px;
  right: 80px;
  bottom: 60px;
  border: 3px solid #4796B3;
  border-radius: 5px;
  z-index: 1;
}

.content-box {
  position: relative;
  z-index: 2;
  padding: 80px 60px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-box span{
  color: #fff;
}

.content-box h1{
  color: #fff;
}

.content-box .title{
  max-width: 65%;
  font-size: 54px;
}

.content-box .top-text,
.content-box .title,
.content-box .btn {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.content-box.animate .top-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s; 
}

.content-box.animate .title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.content-box.animate .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s; 
}

/* about us  */
.video-box {
  position: relative;
  width: 550px;
  height: 380px;
}
.about-video-box{
  display: none;
}

.video-box img {
    z-index: 1;
    width: 680px;
    height: 640px;
}

.play-btn {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 80px;
  height: 80px;         
  
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  color: white;
  background: rgba(0,0,0,0.5);

  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #fff;
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  display: none;
}

.about{
  display: flex;
  padding-top: 80px;
  justify-content: space-between;
 
}
.left-content{
  width: 35vw;
}
.about-us{
  background-color: #e2c05c14;
  height: 135vh;
}
.about-us .left-content .top-text,
.about-us .left-content .title,
.about-us .left-content .short-divider,
.about-us .left-content .content p,
.about-us .left-content .btn {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.about-us .left-content.animate .top-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about-us .left-content.animate .title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.about-us .left-content.animate .short-divider {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.about-us .left-content.animate .content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.about-us .left-content.animate .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

/* choose your travel style  */
 .travel-style {
  padding-top: 60px;

}

.travel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}

.travel img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
  height: 100%;
}

.travel h1 {
  position: absolute;
  top: 50%;              
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 2;
  text-align: center;
  font-size: 22px;
  text-transform: capitalize;
}
.inner-text{
  position: relative;
  justify-content: center;
  text-align: center;
}
.travel::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid #fff;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
  z-index: 1;
}

.travel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

.travel:hover img {
  transform: translateY(-10px) scale(1.05); 
}

.travel:hover::after {
  opacity: 1;
  transform: scale(1); 
}

.travel-style .travel {
  opacity: 0;
  transition: all 0.8s ease;
}

.travel-style .inner-text {
  opacity: 1 !important;
  transform: none !important;
}

.travel-style .travel.left {
  transform: translateX(-80px);
}

.travel-style .travel.right {
  transform: translateX(80px);
}

.travel-style .travel.up {
  transform: translateY(60px);
}

.travel-style .travel.animate {
  opacity: 1;
  transform: translate(0, 0);
}

.travel-style .travel {
  will-change: transform, opacity;
}

/* travel stories  */
.travel-stories{
  margin-top: 100px;
  padding-top: 100px;
  background-color: #4796B3;
  border-top-left-radius: 50% 100px;
  border-top-right-radius: 50% 100px;
  position: relative;
  height: 120vh;
}
.travel-stories .title{
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.color-yellow{
  color: rgb(243, 175, 4);
}
.color-white{
  color: #fff;
}
.blog-card img{
  object-fit: cover;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}

/* for travel style */
/* .story-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  height: 55vh;
}
.story-card .btn-style{
  padding: 12px 25px;
  border-radius: 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
  display: inline-block;
  width: fit-content; 
  margin-top: 10px;
}
.story-card .btn-style:hover {
  background-color: #4796B3;
  border: none;
}

.story-card img {
   position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}


.story-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  padding: 20px;
  z-index: 2;
  color: #fff;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index: 1;
}
.story-card .date-new{
  text-transform: capitalize;
} */

.border-card {
  border-radius: 10px;
  border: 1.5px solid #4796B3;
}
.border-card .text-content{
  padding: 20px;
}

.blog-card .btn {
  align-self: flex-end;
  background: #fff;
  color: #000;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  text-transform: capitalize;
}

.blog-card .text-content {
  color: #fff;
  background-color: #fff;
  height: 40%;
  padding:20px;
}
.blog-card .text-content h2 {
  margin-top: 13px;
}

.blog-card .date {
  font-size: 13px;
  opacity: 0.9;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color:rgb(0 0 0 / 61%);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: rgb(243, 175, 4);
}

.blog-card h2 {
  font-size: 18px;
  margin: 0;
  line-height: 1.3;
  color: black;
  /* color: rgb(243, 175, 4); */
  font-weight: 400;

} 

.blog-card h2:hover{
  color: rgb(243, 175, 4);
  cursor: pointer;
}

/* .story-card:hover img {
  transform: scale(1.1);
} */

.new-btn {
  white-space: nowrap;
  border-radius: 5px;
  text-transform: uppercase;
  color: white;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none; 
  display: inline-block; 
  transition: 0.3s;
  border: 2px solid #fff;
  top: 78%;
  left: 43%;
  position: absolute;
  
}

.new-btn:hover {
  background-color: rgb(243, 175, 4);
  border: none;
}

/* .travel-stories .title,
.travel-stories .story-card {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
} */


.travel-stories .title.animate {
  opacity: 1;
  transform: translateY(0);
}

/* .travel-stories .story-card.animate {
  opacity: 1;
  transform: translateY(0);
} */
.travel-stories .new-btn {
  /* opacity: 0; */
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.travel-stories .new-btn.animate {
  opacity: 1;
  transform: translateY(0);
}


/* new travel sytyle  */

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header p{
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}

.travelSwiper {
  width: 100%;
}

.story-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.story-card .date-new {
  position: absolute;
  top: -210px;
  right: 30px;
}

.story-card img {
  width: 100%;
  display: block;
  height: 50vh;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.btn-style {
  display: inline-block;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  font-weight: 700;
}
.btn-style:hover {
  background-color: #4796B3;
  border: none;
}

.date-new {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 600;
}

.swiper .travelSwiper .swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.travelSwiper .swiper-button-next::after,
.travelSwiper .swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
  color:#4796B3;
}

/* position tweak */
.swiper .travelSwiper .swiper-button-prev {
  left: 10px;
}

.swiper .travelSwiper .swiper-button-next {
  right: 10px;
}


/* footer  */
.footer{
  background-color: #E2C05C;
  padding: 15px;
}
.logo{
 width: 24vw;
 margin-top: -15px;

}
.logo img{
  width: 15vw;
}
.txt ul, li{
  list-style: none;
  color: black;
  line-height: 1.8;
  font-weight: 300;
  font-size: 14px;
  transition: 0.3s ease;
  cursor: pointer;
}
.txt u, li:hover{
  color: #2a687e;
}
.txt-2{
  list-style: none;
  color: black;
  line-height: 1.8;
  font-weight: 300;
  font-size: 12px;
}
.txt-1{
  color: #1a5165;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 400;
}
.txt .ul, .li , h2{
  text-transform: capitalize;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: black; 
  font-size: 14px;
}

.contact-list i {
  color: #4796B3;
  font-size: 16px;
}
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid #4796B3;
  color: #4796B3;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #4796B3;
  border-color: #f3af04;
  color: #fff;
  transform: translateY(-3px); 
}

.ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ul .li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-list i {
  color: #2d758f;
}


/* TABLET / SMALL LAPTOP (≤1024px) */
@media (max-width: 1024px) {

  .main-navigation {
        position: fixed; 
        top: -115px;
        right: -100%; 
        width: 45%;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 8px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1rem;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .main-navigation.active {
        right: 0; 
    }

    .main-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .main-navigation ul li {
        margin: 1rem 0;
    }

    .main-navigation a {
        text-decoration: none;
        font-size: 1.2rem;
        color: #333;
    }
     
    .main-navigation .primary-btn {
        margin-top: 2rem;
        display: inline-block;
        padding: 0.6rem 1.2rem;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        margin-left: 10px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
    }

    #primary-menu{
        display: flex;          
        flex-direction: column; 
        gap: 15px;              
        list-style: none;       
        padding: 0;
        margin: 0; 
    }
    .title{
      font-size: 18px !important;
      font-weight: 900 !important;
    }

    .card p{
      font-size: 14px;
      
    }

  .header-flex {
    gap: 20px;
  }

  .custom-logo {
    max-width: 200px;
  }

  #primary-menu li a {
    font-size: 13px;
    padding: 0 8px;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* banner */
  .banner-section {
    height: 80vh;
  }

  .banner-content h1 {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .search-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }

  /* global */
  .title {
    font-size: 30px;
  }

  /* destination/ card */
  .card {
    transform: translateY(40px);
  }

  .sub-title {
    font-size: 20px !important;
  }

  .text-wrap p {
    font-size: 14px;
  }

  /* popular trips */
  .tour-card {
    max-width: 100%;
  }

  .small-title {
    font-size: 20px;
  }

  .wrap p {
    font-size: 14px;
  }

  .days {
    font-size: 14px;
  }
  .tour-card a:hover{
    background-color: #4796B3;
  }

/* travel adventure  */
  .travel-adventure {
    height: 110vh;
  }

  .flex-content {
    padding-top: 150px;
    gap: 35px;
  }

  .flex-content img {
    width: 100%;
    height: 50vh;
  }

  .content {
    max-width: 100%;
  }

  .top-text {
    font-size: 20px;
  }
  .customized-adventure-image {
  display: none;
}

/* individual-tours */
  .content-box {
    padding: 60px 30px;
  }

  .content-box .title {
    font-size: 40px;
    max-width: 80%;
  }

  /* about us */
  .about {
    gap: 40px;
    height: 110vh;
  }
  .about-us{
  height: 80vh;
  }

  .left-content {
    width: 100%;
  }

  .video-box {
    width: 100%;
    height: 300px;
  }
  .about-video-box {
  display: none;
}
 
  /* travel style */
  .travel-style .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .travel h1 {
    font-size: 18px;
  }
  
  /* travel stories */
  .travel-stories {
    padding-top: 80px;
    height: 150vh;
  }

  /* .story-card {
    height: 50vh;
  } */

  /* .story-card h2 {
    font-size: 15px;
  } */

 
  /* footer */
  .logo img {
    width: 12vw;
  }
  .contact-list li {
    font-size: 13px;
  }

  /* buttons  */
  .btn {
    padding: 10px 14px;
    font-size: 13px;
  }

}

@media (max-width: 992px) {

  .header-flex {
    padding: 0 15px;
  }

  #primary-menu {
    gap: 10px;
  }

  #primary-menu li a {
    font-size: 13px;
    padding: 0 6px;
  }

  .primary-btn {
    padding: 10px 15px;
    font-size: 13px;
  }

/* banner  */
  .banner-content h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .search-wrapper {
    grid-template-columns: 1fr !important;
  }

  .search-form {
    overflow-x: hidden;
  }

  /* destination  */
  .card {
    transform: translateY(40px);
  }

   /* popular trips  */  
   .tour-card {
    max-width: 100%;
  }

  .wrap {
    padding: 15px;
  }

   /* travel adventure  */
  .flex-content {
    flex-direction: column;
    gap: 20px;
    padding-top: 100px;
  }

  .flex-content img {
    width: 100%;
    height: auto;
  }

  .content {
    max-width: 100%;
    /* text-align: center; */
  }

  .title {
    font-size: 30px;
  }

  .top-text {
    font-size: 18px;
  }

.travel-adventure .adventure-image {
    display: none;
  }

  .travel-adventure .customized-adventure-image {
    display: block;
    width: 100%;
    margin: 15px 0;
    border-radius: 10px;
  }
  .travel-adventure{
    height: 179vh;
  }

 /* indivisual tours  */
  .content-box {
    padding: 50px 30px;
  }

  .content-box .title {
    font-size: 32px;
    max-width: 90%;
  }

  .about {
    flex-direction: column;
    gap: 20px;
  }
  .about-us{
    height:160vh;
  }

  .left-content {
    width: 100%;
  }

   .about-us .video-box {
    display: none;
  }

  .about-us .about-video-box {
    display: block;
    width: 100%;
    margin: 20px 0;
  }

  .about-us .about-video-box img,
  .about-us .about-video-box iframe {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  
  .travel h1 {
    font-size: 18px;
  }


  .travel-stories {
    height: auto;
    padding-bottom: 100px;
  }

  /* .story-card {
    height: 40vh;
  } */

  .travel-stories .title {
    flex-direction: column;
    text-align: center;
  }

  .new-btn {
    margin: 40px auto 0;
    text-align: center;
  }

  /* footer  */
  .footer-end {
    flex-direction: column;
    gap: 30px;
  }

  .footer-text {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-text > div {
    width: 48%;
  }

  .logo {
    width: 100%;
  }

  .logo img {
    width: 180px;
  }

}

@media (max-width: 780px) {
  .travel-adventure{
    height: 200vh;
    
  }
  .about-us{
    height: 187vh;
  }
}

/* TABLET RESPONSIVE - MAX WIDTH 768px */
@media (max-width: 768px) {

  /* Header & Navbar */
  .site-header {
    flex-direction: column;
    padding: 15px 10px;
  }

  .header-flex {
    padding: 0 !important;
    gap: 15px;
  }

  .custom-logo {
    max-width: 180px;
    padding: 5px 0;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  .main-navigation.active {
    right: 0;
  }

  #primary-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  #primary-menu li a {
    font-size: 16px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  .primary-btn {
    padding: 12px 25px;
    font-size: 15px;
  }

  /* Banner Section */
  .banner-section {
    height: 75vh;
  }

  .banner-content h1 {
    font-size: 24px;
    margin-bottom: -10px !important;
  }

  .search-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
  }

  /* Travel Adventure Section */
  .travel-adventure {
    margin-top: -10px !important;
    height: 210vh !important;
  }

  .flex-content {
    padding-top: 70px;
    gap: 20px;
  }
  .travel-adventure .adventure-image {
    display: none;
  }

  .travel-adventure .customized-adventure-image {
    display: block;
    width: 100%;
    margin: 15px 0;
    border-radius: 10px;
    height: auto;
  }

  .flex-content{
    width: 100%;
    height: 45vh;
  }

  .content {
    max-width: 100%;
  }

  .content .title {
    font-size: 28px;
  }

  .travel-style .content p {
    font-size: 15px;
    margin-left: -30px;
  }
  .content .btn{
    margin-top: -10px;
  }

  /* Individual Tours Section */
  .individual-tours {
    padding: 70px 25px;
  }

  .content-box {
    padding: 50px 20px;
  }

  .content-box .title {
    font-size: 36px;
    max-width: 95%;
  }

  /* About Us Section */
  .about {
    gap: 45px;
  }
  .about-us {
    height: 185vh !important;
  }

  .left-content {
    width: 100%;
  }

  .about-us .video-box {
    display: none;
  }

  .about-us .about-video-box {
    display: block;
    width: 100%;
    margin: 20px 0;
    position: relative;
  }

  .about-us .about-video-box img,
  .about-us .about-video-box iframe {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Travel Styles Section */
  .travel-style .travel h1 {
    font-size: 20px;
  }

  /* Travel Stories Section */
  .travel-stories {
    height: 210vh !important;
    padding-top: 70px !important;
  }

  /* .story-card {
    height: 45vh;
    margin-bottom: 20px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  } */
/* 
  .story-card h2 {
    font-size: 16px;
  }

  .story-card .btn {
    padding: 7px 12px;
    font-size: 13px;
  } */

  .new-btn {
    font-size: 14px;
    padding: 10px 18px;
    top: 94%;
  }
  .hidden-mobile{
    display: none;
  }

  /* Popular Trips Section */
  .tour-card {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .tour-card .small-title {
    font-size: 18px;
  }

  .wrap p {
    font-size: 14px;
  }

  .days {
    font-size: 15px;
  }

  .explore {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* Footer */
  .footer-end {
    flex-direction: column;
    gap: 25px;
    padding: 25px 20px;
  }

  .footer-text {
    flex-direction: column;
    gap: 20px;
  }

  .logo img {
    width: 60% !important;
  }
  .logo{
    width:100%;
  }

  .contact-list li {
    font-size: 14px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }
  .txt-2{
    width:100%;
  }
}




/* MOBILE RESPONSIVE - MAX WIDTH 480px */
@media (max-width: 480px) {
  
  /* Header & Navbar */
  .site-header {
    flex-direction: column;
    padding: 10px;
  }
  
  .header-flex {
    padding:0 !important;
    gap: 10px;
  }
  
  .custom-logo {
    max-width: 150px;
    padding: 5px 0;
  }
  
  .main-navigation {
    position: fixed; 
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }

  .main-navigation.active {
    right: 0;
  }

  #primary-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
  }

  #primary-menu li a {
    font-size: 14px;
    padding: 10px 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Banner Section */
  .banner-section {
    height: 70vh;
  }
  
  .banner-content h1 {
    font-size: 24px !important;
    margin-bottom: -10px !important;
  }
  
  .search-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .search-form .grid {
    flex-direction: column;
    gap: 10px;
  }

  /* Travel Adventure Section */
  .travel-adventure {
    margin-top: 50px;
    height: 145vh;
  }

  .travel-adventure .flex-content {
    flex-direction: column;
    padding-top: 30px !important;
    height: 160vh;
  }

  .flex-content img {
    width: 100%;
    height: 50vh;
  }

  .content .title {
    font-size: 24px;
  }
   .travel-adventure .adventure-image {
    display: none;
  }
   .travel-adventure .customized-adventure-image {
    display: block;
    width: 100%;
    margin: 15px 0;
    border-radius: 10px;
  }

  /* Individual Tours Section */
  .individual-tours {
    padding: 60px 20px;
  }

  .content-box {
    padding: 40px 20px;
  }

  .content-box .title {
    font-size: 32px;
    max-width: 90%;
  }

  /* About Us Section */
  .about {
    flex-direction: column;
    padding: 40px 20px;
  }

  .about .left-content {
    width: 100%;
  }
  .about-us{
    height: 150vh;
  }
  .about .title{
  margin-top: 20px;
  }


  .about-video-box {
  position: relative;
}

   .about-us .video-box {
    display: none;
  }
   .about-us .about-video-box {
    display: block;
    width: 100%;
    margin: 20px 0;
  }
   .about-us .about-video-box img,
  .about-us .about-video-box iframe {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Travel Styles Section */
  .travel-style .travel {
    transform: translateY(40px);
    opacity: 0;
  }

  .travel-style .travel.animate {
    transform: translateY(0);
    opacity: 1;
  }

  .travel-style .travel h1 {
    font-size: 18px;
  }

  /* Travel Stories Section */
  .travel-stories {
    height: 380vh !important;
    
  }

  /* .story-card {
    height: 40vh;
    margin-bottom: 20px;
  }

  .story-card h2 {
    font-size: 14px;
  }

  .story-card .btn {
    padding: 5px 10px;
    font-size: 12px;
  } */

  .new-btn {
    position: relative;
    left: 35%;
  
  }

  /* Popular Trips Section */
  .tour-card {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .tour-card .small-title {
    font-size: 16px;
  }

  .wrap p {
    font-size: 13px;
  }

  .days {
    font-size: 14px;
  }

  .explore {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Travel Adventure Content Animations */

  /* Footer */
  .footer-end {
    flex-direction: column;
    gap: 20px;
  }

  .footer-text {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
  }
   .footer-text > div {
    width: 100%;
    max-width: 100%;
  }
    .txt {
    width: 100%;
  }

  .logo img {
    width: 85% !important;
    margin-left: -30px;
  }
  .logo{
    width: 100%;
  }

  .contact-list li {
    font-size: 12px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
  }
  .txt-2{
    width:100%;
  }
}




