@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Pacifico&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');



* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --primary-color: #8c7858;
}

body {
  background-color: #fff4e3;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Red Hat Display", sans-serif;
  ;
}

p, li, span, a, strong {
  font-family: "Albert Sans", sans-serif;
}

.activeLink {
  background-color: var(--primary-color);
  padding: 6px 16px;
  color: white;
  border-radius: 50px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
}


/* Common base style for navbar links */
#navbar a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  padding: 6px 16px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

/* Active link */
#navbar .activeLink {
  background-color: var(--primary-color);
  color: #fff !important;
}

/* Hover effect */
#navbar a:hover {
  /* background-color: #ffbe4a; */
  color: #ffbe4a !important;
}


#navbar a:hover {
  transform: scale(1.03);
}


/* tour pack css  */


.tour-pack {
  padding: 50px 0px;
  background-color: #f1c69363;
}

.tour-pack .row {
  row-gap: 22px;
}

.tour-pack .tour-pack-content {
  position: relative;
  overflow: hidden;
}

.tour-pack .tour-pack-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  inset: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
  border-radius: 10px;
}

.tour-pack-content:hover::before {
  opacity: 1;
}

.tour-pack .tour-pack-content img {
  width: 100%;
  max-height: 270px;
  border-radius: 10px;
  object-fit: cover;
}

.tour-pack .tour-pack-content .tour-pack-text {
  position: absolute;
  bottom: 0px;
  padding: 8px;
  width: 100%;
}

.tour-pack .tour-pack-content .tour-pack-text ul {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-between;

}

.tour-pack .tour-pack-content .tour-pack-text h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3px;
}

.tour-pack .tour-pack-content .tour-pack-text p {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.tour-pack .tour-pack-content .tour-pack-text span {
  font-size: 12px;
  color: #fff;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 20PX;
  margin-top: 50PX;
  flex-wrap: wrap;
}

.footer-badge img {
  width: 52px;
  height: auto;
  border-radius: 4px;
}



@media(max-width:700px) {
  .footer-badge img {
    width: 75px;

  }

  .footer-badge img {
    width: 40px;
  }

  .tour-pack {
    padding: 25px 0px;
  }

  /* .tour-pack .tour-pack-content img {
    max-height: 160px;
   } */

}





/* ============ Base menu ============ */
.tour-menu-item {
  position: relative;
  list-style: none;
}

.tour-menu-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  color: #1e748f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.tour-menu-link:hover {
  color: #00a9de;
}

/* ============ Main dropdown ============ */
.tour-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  min-width: 230px;
  list-style: none;
  padding: 8px 0;
  margin: 10px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.tour-menu-item:hover>.tour-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============ Category items ============ */
.tour-submenu-item {
  position: relative;
}

.tour-submenu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  color: #1e748f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tour-submenu-link:hover {

  color: #00a9de;
}

/* ============ Sub-dropdown ============ */
.tour-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 6px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.tour-submenu-item:hover>.tour-sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Submenu link styling */
.tour-sub-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #1e748f;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tour-sub-dropdown a:hover {
  /* background: #e9f7ff; */
  color: #00a9de;
}



#content-itinerary h2 {
  background-color: #fff4e3;
  font-size: 28px;
  padding: 8px 8px;
  border-radius: 10px;
}

#content-itinerary p {
  padding: 8px 8px;
  font-size: 15px;
}


.custom-title-pack p {
  width: 70%;
  margin: 0px auto;
}


.custom-span-bt-text {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

/* .cust-iterney-ul ul{
  list-style: circle;
} */
/* .cust-iterney-ul ul li {
    margin-left: 32px;
} */

.cont-p p {
  font-size: 15px;
}

.iter-ul {
  align-items: center;
}


 /* .myLogoSwiper {
    width: 100%;
    overflow: hidden;
  }
  .swiper-slide img {
    max-width: 100px;
    transition: transform 0.3s ease;
  }
  .swiper-slide img:hover {
    transform: scale(1.05);
  } */

.partener-sec {
    margin-top: -100px;
}

/* language selector css  */
.language-selector {
  position: relative;
  display: inline-block;
  width: 180px;
  user-select: none;
}

/* Selected item */
.language-selector .selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8c7858;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
}

/* Arrow */
.language-selector .selected::after {
  content: "▼";
  font-size: 12px;
}

/* Dropdown menu */
.language-selector .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 10;
}

.language-selector .options div {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.language-selector .options div:hover {
  background-color: #f0e6d2;
}

/* ============ Responsive ============ */
@media (max-width: 1200px) {
 
}
@media (max-width: 768px) {

  .tour-menu-dropdown,
  .tour-sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: none;
    margin: 0;
  }

  .tour-submenu-link {
    padding-left: 25px;
  }

  .tour-sub-dropdown a {
    padding-left: 35px;
  }

  #content-itinerary h2 {
    font-size: 18px;
  }

  .custom-iterney {
    padding: 10px !important;
  }

  .iter-ul button {
    font-size: 14px;
  }

  footer {
    margin-bottom: 70px;
  }

}


/* 🖥️ Extra Large Devices (Desktops, 1200px and up) */
@media (min-width: 1200px) {
  .partener-sec {
    margin-top: -100px;
}
}

/* 💻 Large Devices (Laptops, 992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .partener-sec{
    margin-top: 18px;
  }
}

/* 💻 Medium Devices (Tablets Landscape, 768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .partener-sec {
    margin-top: 16px;
}
}

/* 📱 Small Devices (Tablets Portrait / Large Phones, 576px – 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .partener-sec{
    margin-top: 10px;
  }

}

/* 📱 Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575px) {
  .partener-sec {
    margin-top: 10px;
}
}

@media (max-width: 400px) {
  .partener-sec {
    margin-top: 10px;
}
}
