@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rakkas&display=swap");

@font-face {
  font-family: ClashDisplay-Medium;
  src: url("fonts/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Medium.otf");
}

@font-face {
  font-family: ClashDisplay-Regular;
  src: url("fonts/ClashDisplay_Complete/Fonts/OTF/ClashDisplay-Regular.otf")
    format("truetype");
}
:root {
  --col-primary: #66cefb;
  --col-skyblue: #c8e8f7;
  --col-secondary: #b4e4f0;
  --col-seagreen: #54b0c7;
  --col-yellowoccure: #fac443;
  --col-lightbrown: #bd8731;
  --col-white: #fff;
  --col-whitegrey: #e9e9e9;
  --COL-black: #121212;
  --col-darktone: #473981;
  --col-lightshade: #e7e7e7;
  --col-greyshade: #8f8484;
  --col-lightgrey: #d9d9d9;
  --col-darkgrey: #434a57;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  
}

.header {
  position: relative;
  background-color: var(--col-white);
  width: 100%;
  min-height: 118px;
  font-family: ClashDisplay-Regular;

}
.top-header {
  width: 100%;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--COL-black);
}
.top-links li a {
  color: var(--col-darkgrey);
  padding: 5px 10px;
  margin-left: 15px;
  border-radius: 30px;
  background-color: var(--col-lightgrey);
  transition: all 0.3s ease;
}
.top-links li a:hover {
  color: var(--col-white);
  background: var(--col-darkgrey);
  transform: scale(1.1);
}
.main-header {
  width: 100%;
  max-width: 1350px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.navbar .logo{
  margin-left: -40px;
  z-index: 999;
}
.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}
.top-header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
}
.top-links,
.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--col-darkgrey);
}
.main-header {
  margin-top: -33px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.logo a {
  display: block;
  max-width: 336px;
  z-index: 100;
}
.desktop-nav {
  margin-left: 100px;
}

.cmn-btn {
  padding: 8px 10px;
  border-radius: 30px;
  color: var(--col-primary);
  border-top: 1px solid var(--col-primary);
  border-right: 1px solid var(--col-primary);
  border-bottom: 2px solid var(--col-primary);
  border-left: 0px solid var(--col-primary);
  transition: all 0.3s ease;
}
.cmn-btn:hover {
  padding: 10px;
  border-radius: 30px;
  color: var(--COL-black) !important;
  background: var(--col-lightgrey);
  border-top: 1px solid var(--col-darktone);
  border-right: 1px solid var(--col-darktone);
  border-bottom: 2px solid var(--col-darktone);
  border-left: 0px solid var(--col-darktone);
  box-shadow: 1px 4px 4px 0px var(--col-greyshade);
}
.header-actions a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 60px;
  padding: 8px 10px;
  border-radius: 30px;
  color: var(--col-primary);
  border-top: 1px solid var(--col-primary);
  border-right: 1px solid var(--col-primary);
  border-bottom: 2px solid var(--col-primary);
  border-left: 0px solid var(--col-primary);
}
.book-now-btn {
  padding: 10px;
  border-radius: 30px;
  color: var(--col-primary);
  border-top: 1px solid var(--col-primary);
  border-right: 1px solid var(--col-primary);
  border-bottom: 2px solid var(--col-primary);
  border-left: 0px solid var(--col-primary);
}
.book-now-btn:hover {
  padding: 10px;
  border-radius: 30px;
  color: var(--COL-black) !important;
  background: var(--col-lightgrey);
  border-top: 1px solid var(--col-darktone);
  border-right: 1px solid var(--col-darktone);
  border-bottom: 2px solid var(--col-darktone);
  border-left: 0px solid var(--col-darktone);
  box-shadow: 1px 4px 4px 0px var(--col-greyshade);
}
.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 60px;
  padding: 15px 10px;
  box-shadow: 1px 4px 4px 0px var(--col-greyshade);
}
.nav-links li {
  color: var(--col-darkgrey);
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  /* padding: 10px; */
  
}
.nav-links li a{
  background-color: var(--col-whitegrey);
  border-radius: 30px;
  padding: 8px 10px;
  box-shadow: 1px 4px 4px 0px var(--col-greyshade);
  transition: all 0.3s ease;
}
.nav-links a:hover {
  box-shadow: 1px 4px 4px 0px var(--col-greyshade);
  color: var(--col-white) !important;
  transform: scale(1.1);
  background-color: var(--col-primary);
}
.nav-links a {
  color: var(--col-darkgrey);
}


/* Mobile Toggle Button */
 .mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top:50%;
  left: 95%;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  max-width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  margin-left: -20px;
  transition: 0.3s;
  border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: transparent;
  z-index: 999;
  transition: left 0.3s ease;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-content {
  background: white;
  width: 80%;
  max-width: 400px;
  height: 100%;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-links li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  color: #007bff;
}

.mobile-header-actions {
  margin-top: 30px;
}

.mobile-header-actions .cmn-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 90%;
  left: 3%;
  padding: 10px;
  border-radius: 30px;
  color: var(--col-primary);
  border-top: 1px solid var(--col-primary);
  border-right: 1px solid var(--col-primary);
  border-bottom: 2px solid var(--col-primary);
  border-left: 0px solid var(--col-primary);
}

.mobile-header-actions .cmn-btn:hover {
  background: #0056b3;
}
.banner {
  position: relative;
  width: 100%;
  background-image: url("image/Banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 900px;
  z-index: -100;
}
.about-banner {
  position: relative;
  width: 100%;
  background-image: url("image/about-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 900px;
  z-index: -100;
}
.about-banner .banner-content {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-85, -50);
}

.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}
.banner-content {
  border-radius: 53px;
  backdrop-filter: blur(8px);
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--col-white);
  padding: 25px 0;
}
h1 {
  font-size: 47px;
  font-family: ClashDisplay-Regular;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}
h2 {
  font-size: 40px;
}
.h2{
  font-size: 40px;
}
h3 {
  font-size: 35px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col20 {
  max-width: 20%;
  flex: 0 0 20%;
  padding: 0 15px;
}
.col25{
  max-width: 25%;
  flex: 0 0 25%;
  padding: 0 15px;
}
.selection-section .blogcard-33{
  width: 33.33%;
  flex: 0 0 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.selection-section{
  width: 100%;
  position: relative;
}

.destination {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.destination h4 {
  font-family: ClashDisplay-Regular;
  font-weight: 400;
  font-size: 22px;
}
.destination option {
  font-family: "Rakkas", serif;
}
.destination select {
  padding: 10px;
  background-color: transparent;
  border: transparent;
  font-family: "Rakkas", serif;
  font-weight: 500;
}

.selection-image img {
  height: auto;
  width: 100%;
}

/* swiper-section with enhanced hover effects */
.tour-categories {
  position: relative;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1350px;
  background-color: transparent;
}
.swiper-content {
  text-align: center;
  color: #000;
}
.swiper-content h3 {
  font-size: 45px;
  margin-bottom: 30px;
  font-family: ClashDisplay-Regular;
  font-weight: 600;
}
.swiper-slide h4 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: ClashDisplay-Regular;
  transition: all 0.3s ease;
}
.swiper {
  width: 100%;
  max-width: 1320px;
  height: auto;
  padding: 10px;
}

.tour-categories .swiper-slide {
  text-align: center;
  font-size: 1px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 20px !important;
  border-radius: 20px;
  /* overflow: hidden; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  /* padding:0 5px !important; */
}

/* Enhanced hover effects for swiper slides */
.tour-categories .swiper-slide:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.tour-categories .swiper-slide:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(102, 206, 251, 0.1),
    rgba(180, 228, 240, 0.1)
  );
  z-index: 1;
  border-radius: 20px;
}

.swiper-slide:hover h4 {
  color: var(--col-primary);
  /* transform: scale(1.05); */
}

/* .swiper-slide figcaption{
        margin-top: 5px ;
    } */
.tour-categories .swiper-slide img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  padding: 10px;
  transition: all 0.4s ease;
  border-radius: 15px;
  z-index: 2;
  position: relative;
}
.swiper-slide img:hover {
  display: block;
  width: 314px;
  height: 313px;
  object-fit: cover;
  padding: 10px;
  transform: scale(0.8);
  filter: brightness(1.1) contrast(1.1);
}
.swiper-slide a {
  text-decoration: none;
  padding: 15px;
  font-size: 16px;
  padding: 10px;
  border-radius: 30px;
  color: var(--col-primary);
  border-top: 1px solid var(--col-primary);
  border-right: 1px solid var(--col-primary);
  border-bottom: 2px solid var(--col-primary);
  border-left: 0px solid var(--col-primary);
  font-family: ClashDisplay-Regular;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.swiper-slide a:hover {
  background: var(--col-primary);
  color: var(--col-white);
  /* transform: translateY(-2px); */
  box-shadow: 0 5px 15px rgba(102, 206, 251, 0.3);
}

.tour-categories .swiper {
  max-width: 1350px;
  height: 440px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button-next {
  background-color: var(--col-primary);
  opacity: 0.5;
  backdrop-filter: 8px;
  -webkit-backdrop-filter: blur(8px);
  color: #000;
  padding: 30px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  font-size: 10px;
  transition: all 0.3s ease;
}



.swiper-button-next:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(102, 206, 251, 0.4);
}

.swiper-button-prev {
  background-color: var(--col-primary);
  opacity: 0.5;
  backdrop-filter: 8px;
  -webkit-backdrop-filter: blur(8px);
  color: #000;
  padding: 30px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  font-size: 10px;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(102, 206, 251, 0.4);
}

.swiper-pagination {
  color: var(--col-primary);
}
.append-buttons {
  text-align: center;
  margin-top: 20px;
}

.append-buttons button {
  display: inline-block;
  cursor: pointer;
  background-color: var(--col-primary);
  text-decoration: none;
  padding: 4px;
  border-radius: 40px;
  margin: 0 10px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.append-buttons button:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(102, 206, 251, 0.3);
}

/* css for trip plan section with enhanced card hover effects */
.trip-plan {
  position: relative;
  width: 100%;
  padding: 60px 0;
}
.col33 {
  max-width: 33.33%;
  flex: 0 0 33.33%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.blogcard33 {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  border-radius: 15px;
  /* overflow: hidden; */
}

/* Enhanced card hover effects */
.popular-tour .blogcard33:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blogcard33 img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.servicecard33 {
  padding: 0 10px;
}
.service-content h4 {
  font-size: 45px;
}
.service-content p {
  margin-top: 25px;
  margin-bottom: 50px;
  color: var(--col-greyshade);
}
.blogcard33 img {
  height: auto;
  width: 100%;
  transition: all 0.4s ease;
  border-radius: 10px;
}
.service-details {
  padding-top: 50px;
  padding-bottom: 50px;
}
.trip-details {
  display: flex;
  margin-bottom: 35px;
  transition: all 0.3s ease;
}
.trip-details:hover {
  transform: translateX(10px);
}

.trip-details a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  background-color: var(--col-secondary);
  border-radius: 100%;
  transition: all 0.3s ease;
}

.trip-details a:hover {
  background-color: var(--col-primary);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(102, 206, 251, 0.3);
}

.service-content h4,
h5 {
  font-family: ClashDisplay-Regular;
  font-weight: 600;
}
.exclusive-trip a{
  padding: 0 15px;
}
.exclusive-trip p {
  color: var(--col-greyshade);
}

.slider-container h2,
h3 {
  font-family: ClashDisplay-Regular;
  font-weight: 600;
}
/* css for popular tour section with enhanced card effects */

.popular-tour {
  width: 100%;
  position: relative;
  padding: 60px 0;

}
.popular-tour .container{
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}
.popular-tour .content {
  text-align: center !important;
  padding: 10px 0;
  margin-bottom: 30px;
}

.about-col33 {
  max-width: 33.33%;
  flex: 0 0 33.33%;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 25px;
}
.about-col33 .slot-booking-button {
  margin-top: 10px;
}

.pacifico {
  font-family: "Pacifico", cursive;
}
.ClashDisplay {
  font-family: ClashDisplay-Regular;
  font-weight: 600;
}
.popular-tour .blogcard33 {
  padding: 20px;
  border: 1px solid var(--col-darkgrey);
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  /* overflow: hidden; */
  background: var(--col-white);
}



.content {
  text-align: center;
}
.content p {
  font-size: 16px;
  color: var(--col-darkgrey);
  padding: 0 200px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.rating-tour {
  display: flex;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.rating-tour p {
  margin-left: 10px;
}
.booking-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.tour-days {
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
  height: auto;
  width: 100%;

}

.tour-gallary {
  position: relative;
  width: 100%;
  padding: 60px 0;
}
.tour-gallary h2 {
  margin-bottom: 20px;
}

/* Enhanced gallery card hover effects */
/* .card-gallary {
  transition: all 0.4s ease;
  border-radius: 15px;
} */

/* .card-gallary img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
} */
.card-gallary img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}
.card-gallary img {
  min-height: 357px;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.card-gallary:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.05);
}

.big-card-gallary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  transition: all 0.4s ease;
  border-radius: 15px;
  /* overflow: hidden; */
}

.big-card-gallary:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.big-card-gallary img {
  min-height: 1020px;
  transition: all 0.4s ease;
}

.big-card-gallary:hover img {
  filter: brightness(1.1) saturate(1.1);
}

/* css for analysis section */
.site-analysis {
  position: relative;
  width: 100%;
  padding: 80px 0;
}
.site-analysis .container{
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  overflow: hidden;
  padding: 50px 0;
}
.item {
  flex: 0 0 50%;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-left: 15px;
  transition: all 0.4s ease;
}

.item:hover {
  transform: scale(1.05);
}

/* Wrapper with rotation animation */
.rotating-wrapper {
  width: 240px;
  height: 240px;
  animation: rotate 10s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.item:hover .rotating-wrapper {
  animation-duration: 3s;
}

/* Outer circle border */
.outer-circle {
  width: 230px;
  height: 230px;
  border: 1px solid var(--col-primary);
  border-radius: 80%;
  position: relative;
  z-index: -100;
  transition: all 0.3s ease;
}

.item:hover .outer-circle {
  border-width: 2px;
  box-shadow: 0 0 20px rgba(102, 206, 251, 0.3);
}

/* Dot on top of outer circle */
.dot {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background-color: var(--col-secondary);
  border-radius: 50%;
  border: 1px solid var(--col-primary);
  transition: all 0.3s ease;
}

.item:hover .dot {
  background-color: var(--col-primary);
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 15px rgba(102, 206, 251, 0.5);
}

/* Inner circle remains separate and static */
.inner-circle {
  background-color: var(--col-secondary);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  margin-top: -215px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  color: var(--COL-black);
  position: relative;
  z-index: -100;
  border: 1px solid var(--col-primary);
  transition: all 0.3s ease;
}

.item:hover .inner-circle {
  background-color: var(--col-primary);
  color: var(--col-white);
  transform: scale(1.05);
}

/* Inner circle text styles */
.inner-circle h2 {
  margin: 0;
  font-size: 45px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.inner-circle p {
  margin: 0;
  font-size: 1rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

/* Rotation keyframes */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* center slider css */



/* Gradient overlays for better text readability */
.slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: transparent, var(--col-lightshade);
  z-index: 1;
  border-radius: 0 0 14px 14px;
}

.info {
  z-index: 2;
}
.testimonial{
  position: relative;
  width: 100%;
padding: 20px;
}
.testimonial .content {
  margin-bottom: 40px;
}
/* css for tour-guide */
.tour-guide-banner {
  position: relative;
  width: 100%;
  min-height: 809px;
  background: url("image/tour-guide-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
.tour-guide-profile {
  position: relative;
  width: 100%;

}
.tour-guide-profile {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}
.tour-guide-banner .content {
  color: var(--col-darktone);
  padding-top: 90px;
}
.tour-guide-profile  {
  /* position: absolute;
  top: -120px;
  left: 80px; */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* margin-top: -110px; */
}

.tour-guide-profile .guides {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}
.guide-profile {
  background-color: var(--col-secondary);
  padding: 20px 100px;
  font-size: 15px;
  border-radius: 30px;
  transition: all 0.4s ease;
}

.guide-profile:hover {
  transform: translateY(-10px);
  background-color: var(--col-primary);
  color: var(--col-white);
  box-shadow: 0 15px 30px rgba(102, 206, 251, 0.3);
}

.socials  {
  font-size: 28px;
  display: flex;
  flex-wrap: nowrap;
  margin-top: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}
.footer .socials a{
  padding: 0 15px ;

}
.socials i:hover {
  transform: scale(1.1);
}

.about-us {
  position: relative;
  width: 100%;
  padding: 70px 0;
}
.about-us .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  max-width: 1350px;
}

.articles {
  position: relative;
  width: 100%;
}
.articles .blogcard33 {
  padding: 0 60px;
  transition: all 0.4s ease;
}

.articles .blogcard33:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.articles .blogcard33 p {
  margin-top: 20px;
  padding: 5px 10px;
}
.article-btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
.testimonial {
  position: relative;
  width: 100%;
  padding: 100px 0;
}
.testimonial .blogcard33 {
  background-color: var(--col-secondary);
  padding: 20px 0;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  /* overflow: hidden; */
  z-index: -1;
}
.testimonial .blogcard33 p{
  font-size: 15px;
  color: var(--col-darkgrey);
}
.testimonial .blogcard33:hover {
  background-color: var(--col-primary);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(102, 206, 251, 0.3);
}

.testimonial .blogcard33:hover .person-review {
  color: var(--col-white);
}

.testimonial .blogcard33:hover .review-content {
  color: var(--col-white);
}

.person-review {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  transition: all 0.3s ease;
}
.person-review img {
  height: 75px;
  width: 75px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.person-review:hover img {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-content {
  text-align: center;
  padding: 20px;
  /* margin-bottom: 30px; */
  transition: all 0.3s ease;
}
.quote {
  background-color: var(--col-primary);
  padding: 20px 18px;
  border-radius: 100%;
  margin-top: -36px;
  margin-left: 40px;
  transition: all 0.3s ease;
}

.quote:hover {
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(102, 206, 251, 0.4);
}

.quote img {
  height: 40px;
  width: 55px;
}
/* .company{
  position: relative;
  width: 100%;

}
.company .container {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  padding: 20px 0;
  
} */
     .company {
      width: 100%;
      overflow: hidden;
      padding: 40px 0;
      background: #ffffff;
    }

    .company {
      width: 1350px;
      margin: 0 auto;
      overflow: hidden;
      position: relative;
    }
/* 
    .company .slider-track {
      display: flex;
      animation: scroll 20s linear infinite;
      width: fit-content;
    }

    .company .slider-track:hover {
      animation-play-state: paused;
    } */

    .company figure {
      flex-shrink: 0;
      width: 200px;
      height: 120px;
      margin: 0 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* background: #f9f9f9; */
      border-radius: 8px;
      padding: 20px;
    }

    .company figure img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      /* filter: grayscale(100%); */
      opacity: 0.9;
      transition: all 0.3s ease;
    }

    .company figure:hover img {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.2);
    }
.company {
  position: relative;
  width: 100%;
  min-height: 70px;
  background: var(--theme-sky);
  display: flex;
  align-items: center;
  font-family: calibri;
  font-size: 19px;
  line-height: 1;
}
.company .container {
  max-width: 100%;
}
.company .swiper-slide {
  text-align: center;
  text-transform: capitalize;
  border-bottom-width: 0px;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  transition: 0.5s ease all;
  position: relative;
}
.company .swiper-slide figure img{
    width: 100%;
    height: auto;
}
    /* @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    } */

/* css for footer */

.footer {
  width: 100%;
  position: relative;
  padding: 30px 0;
  /* margin-top: 50px; */
  background-color: var(--col-secondary);

}
.lower-footer {
  text-align: center;
}
.col30 {
  max-width: 30%;
  flex: 0 0 30%;
  padding: 0 15px;
}
.footer-col30 {
  display: grid;
  max-width: 30%;
  grid-template-columns: repeat(3, 110%);
  grid-gap: 12px;
}
.footer-col30 img {
  width: 80%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.footer-col30 img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.col40 {
  max-width: 40%;
  flex: 0 0 40%;
  padding: 0 15px;
}
.col60 {
  max-width: 60%;
  flex: 0 0 60%;
  padding: 0 15px;
}
.footer-col30 {
  max-width: 30%;
  flex: 0 0 30%;
  padding: 0 15px;
  flex-wrap: wrap;
  /* margin-top: 40px; */
}
.col60 .blogcard60 input {
  padding: 15px 50px;
  max-width: 500px;
  margin-right: 40px;
  color: var(--COL-black);
  border-radius: 30px;
  transition: all 0.3s ease;
  
}

.col60 .blogcard60{
  text-align: center;
}
.col60 .blogcard60 input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(102, 206, 251, 0.3);
  border: 2px solid var(--col-primary);
}

.blogcard60 .email {
  color: var(--COL-black);
}
.subscribe-btn {
  padding:15px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: var(--col-primary);
  color: var(--col-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 206, 251, 0.3);
}

.lower-footer  {
 padding-top: 70px;
  
}
.footer-heading {
  margin-bottom: 20px;
}
.footer-head{
    font-size: 24px;
  }
.blogcard20 li {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.blogcard20 li:hover {
  transform: translateX(5px);
}

.lower-footer .socials {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo {
  margin-left: -80px;
}
.footer-logo a{
  display: block;
}
.footer-links li a:hover {
  color: var(--COL-black);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* css for login page */

.login {
  font-family: "Arial", sans-serif;
  background: url("image/about-banner.png");
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* overflow-x: hidden; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.login-container {
  background: transparent;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  /* overflow: hidden; */
  width: 100%;
  max-width: 900px;

  display: flex;
  position: relative;
  margin: 20px;
}

.form-container {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.6s ease-in-out;
}

.brand {
  text-align: center;
  margin-bottom: 40px;
}

.brand h1 {
  color: #4facfe;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.brand span {
  color: #00f2fe;
}

.form-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

.form-subtitle {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus {
  outline: none;
  border-color: #4facfe;
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder {
  color: #aaa;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.toggle-text {
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

.toggle-link {
  color: #4facfe;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.toggle-link:hover {
  color: #00f2fe;
}

.visual-panel {
  flex: 1;
  background: transparent;
  border-left: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 40px;
  position: relative;
  /* overflow: hidden; */
}

.visual-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.visual-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Decorative elements */
/* .visual-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  animation: shimmer 4s infinite;
} */

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.1;
    transform: rotate(45deg) translateX(-100%);
  }
  50% {
    opacity: 0.3;
    transform: rotate(45deg) translateX(100%);
  }
}

.form-hidden {
  display: none;
}

.password-strength {
            margin-top: 5px;
            font-size: 0.8rem;
            color: #666;
        }

        .strength-bar {
            width: 100%;
            height: 3px;
            background: #e1e5e9;
            border-radius: 2px;
            margin-top: 5px;
            /* overflow: hidden; */
        }

        .strength-fill {
            height: 100%;
            width: 0%;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .strength-weak { background: #ff4757; width: 25%; }
        .strength-fair { background: #ffa502; width: 50%; }
        .strength-good { background: #26de81; width: 75%; }
        .strength-strong { background: #4facfe; width: 100%; }


        .tabgrp {
  position: relative;
  width: 100%;
  min-height: 70px;
  background: var(--theme-sky);
  display: flex;
  align-items: center;
  font-family: calibri;
  font-size: 19px;
  line-height: 1;
}
/* .tabgrp .container {
  max-width: 100%;
} */
.tabgrp .swiper-slide {
  text-align: center;
  text-transform: capitalize;
  border-bottom-width: 0px;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  transition: 0.5s ease all;
  position: relative;
}
/* RESPONSIVE BREAKPOINTS */

/* 1399px and below */
@media (max-width: 1399px) {
  /* .container {
    max-width: 1200px;
  } */
body{
  overflow: hidden;
}
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 30px;
  }

  .swiper-content h3 {
    font-size: 40px;
  }

  .service-content h4 {
    font-size: 40px;
  }

  .content p {
    padding: 0 150px;
  }

  .slider-container {
    padding: 0 60px;
  }
  .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .footer-head{
    font-size: 24px;
  }
}

/* 1199px and below */
@media (max-width: 1199px) {
  /* .container {
    max-width: 960px;
  } */
 .header .logo{
  max-width: 400px;
  margin-left: -40px;
 }
  .desktop-nav {
    margin-left: 30px;
    max-width: 900px;
  }
.nav-links li a {
    font-size: 10px;
    display: flex;
  }
  .header-actions .cmn-btn {
    left: 75%;
    top: 2%;
    display: flex;
    padding: 10px;
    font-size: 10px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }
  .swiper-slide img {
    width: 280px;
    height: 280px;
  } 
  .swiper-content h3 {
    font-size: 35px;
  }

  .service-content h4 {
    font-size: 35px;
  }
 .trip-details{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .content p {
    padding: 0 100px;
  }

  .guide-profile {
    padding: 40px 80px;
  }

  .col60 .blogcard60 input {
    max-width: 400px;
  }

  .slider-container {
    padding: 0 40px;
  }
   .company .container {
      /* max-width: 90%; */
      margin: 0 auto;
      overflow: hidden;
      position: relative;
    }
      .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .footer-head{
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  /* .container {
    max-width: 720px;
  } */
.header .logo img{
  display: block;
  max-width: 350px;
}
  /* .nav-links {
    gap: 20px;
  } */

  .nav-links li a {
    font-size: 10px;
    display: flex;
  }

  .header-actions .cmn-btn {
    padding: 10px 10px;
    font-size: 8px;
  }

  h1 {
    font-size: 32px;
  }

  .swiper-content h3 {
    font-size: 28px;
  }
  .swiper-slide img {
    width: 90%;
    min-height: 220px;
  }
  .trip-details{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .service-content h4 {
    font-size: 28px;
  }

  .content p {
    padding: 0 50px;
  }

  .trip-plan {
    padding: 60px 0;
  }

  .popular-tour {
    padding: 80px 0;
  }
.popular-tour .blogcard33{
  margin: 15px 0;
}
  /* .tour-gallary {
    padding: 80px 0;
  } */

  .site-analysis {
    padding: 30px 0;
  }

  .rotating-wrapper,
  .outer-circle {
    width: 280px;
    height: 280px;
  }

  .inner-circle {
    width: 230px;
    height: 230px;
    margin-top: -255px;
  }

  .inner-circle h2 {
    font-size: 40px;
  }

  .guide-profile {
    padding: 30px 60px;
  }

  .col60 .blogcard60 input {
    max-width: 350px;
    margin-right: 20px;
  }
  .footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .upper-footer col40 h3{
  text-align: center;
}
 .footer-head{
    font-size: 24px;
  }
}
/* @media (max-width: 1020px){
  .header-actions a{
    font-size: 8px;
  }
} */
@media (max-width: 991px) {
  .top-header {
    display: none;
  }
.header .logo{
  display: block;
  max-width: 300px;
  margin-left: -11px;
  margin-top: 20px;
}
.logo{
  display: block;
  max-width: 250px;
  margin-left: 40px;
}
  .desktop-nav,
  .header-actions {
    display: none;
  }
  /* .container {
    max-width: 540px;
  } */
  .mobile-toggle {
    display: flex;
    margin-left: 0;
    margin-right: auto;
  }

  .mobile-nav {
    display: block;

  }

  .navbar {
    padding: 10px 0;
  }
  .banner {
    min-height: 700px;
  }
.h2{
  font-size: 30px;
}
  /* .option-selection.row {
    flex-direction: column;
  } */

  .col20 {
    max-width: 100%;
    flex: 0 0 100%;
    
  }

  .col33 {
    max-width: 100%;
    flex: 0 0 100%;
    /* align-items: center;
    margin-bottom: 40px;
    padding: 0 15px; */
  }
  .selection-section .col33{
    max-width: 33.33%;
    flex: 0 0 33.33%;
  }
.selection-section .blogcard-33{
  max-width: 33.33%;
  flex: 0 0 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.selection-section img{
  width: 80px;
  height: auto;
}
  .content p {
    padding: 0 20px;
  }

  .tour-categories .swiper {
    min-height: 380px;
    max-width: 800px;
  }

  /*  */

  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px;
    padding: 20px;
  }
.service-content{
  text-align: center;
}
.tour-gallary .blogcard33{
  padding: 30px 0;
}
.about-us .content {
    padding-top: 20px;
    flex-direction: column;
  }
.trip-plan {
    padding: 10px 0;
  }
.trip-details{
  display: flex;
  justify-content: center;
  align-items: center;
}
.exclusive-trip{
  text-align: center;
}
.popular-tour{
  padding: 10px 0;
}
 .site-analysis .container {
  display: none;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 10px;

}
  .item {
    margin: 20px 0;
  }
.guide-profile{
  width: 100%;
}
  .tour-guide-profile .row {
    flex-direction: column;
    margin-top: -50px;
    justify-content: center;
    align-items: center;
  }


.about-btn{
  text-align: center;
  margin-top: 20px;
}
  .articles .blogcard33 {
    padding: 20px;
  }

  .footer .row {
    flex-direction: column;
  }

  .col30,
  .col40,
  .col60 {
    max-width: 100%;
    flex: 0 0 100%;
    
  }
.upper-footer col40 h3{
  text-align: center;
}
  .col60 .blogcard60 input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .footer-logo {
    margin-left: 0;
  }

  .quote {
    margin-right: 0;
  }

  .slider-container {
    padding: 0 20px;
  }

  .slide {
    flex: 0 0 50%;
    width: 50%;
  }
  .footer-col30 img{
    max-width: 110px;
    min-height: auto;
    padding: 0 px;
  }
  .lower-footer{
    padding-bottom: 50px;
  }
    .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .footer-head{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
  }

}

/* 768px and below */
@media (max-width: 768px) {
.header .logo{
  display: block;
  margin-left: -20px;
  max-width: 320px;
}
  .container {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links li a {
    font-size: 14px;
  }

  .header-actions .cmn-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .banner {
    min-height: 600px;
  }

  .banner-content {
    padding: 20px;
    width: 90%;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }
.h2{
  font-size: 20px;
}
  h3 {
    font-size: 24px;
  }
.swiper-slide img {
    width: 90%;
    min-height: 200px;
  } 
  .swiper-content h3 {
    font-size: 22px;
  }

  .service-content h4 {
    font-size: 20px;
  }
.about-us .content {
    padding-top: 20px;
    flex-direction: column;
  }
  .tour-categories .swiper {
    min-height: 320px;
  }

.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 25px;
    padding: 15px;
  }

  .swiper-slide h4 {
    font-size: 22px;
  }

  .rotating-wrapper,
  .outer-circle {
    width: 120px;
    height: 120px;
  }

  .inner-circle {
    width: 90px;
    height: 90px;
    margin-top: -200px;
  }

  .inner-circle h2 {
    font-size: 12px;
  }

  .card-gallary figure img {
    max-width: 100%;
    min-height: 180px;
  }

  .big-card-gallary img {
    min-height: 600px;
  }

  
  
    .about-col33{
    max-width: 50%;
    flex: 0 0 50%;
  }
  .socials a{
    font-size: 18px;
    padding: 0 10px;
  }

  .slide {
    flex: 0 0 80%;
    width: 80%;
  }

  .nav-button {
    display: none;
  }
  .login-container {
    flex-direction: column;
    margin: 10px;
    /* max-width: 400px; */
  }
  .trip-details a{
    padding:  20px;
  }
.exclusive-trip{
  text-align: center;
}
.service-details{
  padding: 10px 0;
}
.popular-tour{
  padding: 10px 0;
}
  .visual-panel {
    order: -1;
    min-height: 200px;
    padding: 30px 20px;
  }

  .visual-content h2 {
    font-size: 1.8rem;
  }

  .visual-content p {
    font-size: 1rem;
  }

  .form-container {
    padding: 40px 30px;
  }

  .brand h1 {
    font-size: 2rem;
  }

  .form-title {
    font-size: 1.5rem;
  }
  .footer-col30 img{
    max-width: 100%;
    height: auto;
  }
    .col60 .blogcard60{
  text-align: center;
}
.col60 .blogcard60 h3{
  text-align: center;
}
.footer .col20{
  padding: 0 15px;
  margin: 2px auto;
}
  .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .company .swiper-slide{
    max-width: 100%;
    height: auto;
  }
  .company img {
    max-width: 100%;
    height: auto;
  }
  .footer-head{
    text-align: center;
  }
}

/* 575px and below */
@media (max-width: 575px) {
  .container {
    padding: 0 15px;
  }

  .banner {
    min-height: 500px;
  }

  .banner-content {
    width: 95%;
    padding: 15px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 24px;
  }
.h2{
  font-size: 20px;
}
  h3 {
    font-size: 20px;
  }
 .selection-section .col33{
    max-width: 100%;
    flex: 100%;
  }
.selection-section .blogcard-33{
  max-width: 50%;
  flex: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.selection-section img{
  width: 100px;
  height: auto;
}
  .tour-categories .swiper-slide{
    max-width: 100%;
    font-size: 10px;
  }

  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px;
    padding: 10px;
  }
  .swiper-slide a{
    font-size: 10px;
    padding: 6px;
  }
  
.swiper-slide figure img {
    width: 130px;
    min-height: 130px;
  }
  .swiper-content h3 {
    font-size: 22px;
  }

  .service-content h4 {
    font-size: 22px;
  }
.about-us .content {
    padding-top: 20px;
    flex-direction: column;
  }
  .tour-categories {
    padding-top: 80px;
  }

  .trip-plan {
    padding: 60px 0;
  }
  .trip-details{
    text-align: center;
  }
  .trip-plan{
    padding-bottom: 5px;
  }
  .trip-details a{
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
  }
  .trip-details{
    text-align: center;
    padding-bottom: 0px;
  }
.service-details{
  padding: 10px 0;
}
.popular-tour{
  padding: 10px 0;
}

  .tour-gallary {
    padding: 60px 0;
  }

  .site-analysis {
    padding: 60px 0;
  }

  .testimonial {
    padding: 60px 0;
  }

  .swiper {
    height: 280px;
  }
.tour-categories .swiper{
  min-height: 380px;
}
 .tour-categories .swiper-slide img {
   max-width: 100%;
    min-height: 230px;
  }

  .swiper-slide h4 {
    font-size: 12px;
  }
.service-details{
  padding: 10px 0;
}
.popular-tour{
  padding: 10px 0;
}
  .rotating-wrapper,
  .outer-circle {
    width: 80px;
    height: 80px;
  }

  .inner-circle {
    width: 40px;
    height: 40px;
    margin-top: -160px;
  }

  .inner-circle h2 {
    font-size: 10px;
  }

  .card-gallary img {
    max-width: 140px;
    min-height: 140px;
  }

  .big-card-gallary img {
    min-height: 300px;
    max-width: 100%;
  }

  
  .socials a{
    font-size: 20px;
    padding:0  10px;
  }

  .slide {
    flex: 0 0 100%;
    width: 100%;
  }

  .slider-container {
    padding: 0 10px;
  }
  .article-btn{
    text-align: center;
  }
  .footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
  }
.footer .row{
  display: flex;
  justify-content: center;
  align-items: center;
}
  .footer-col30 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .footer-head{
    text-align: center;
  }
  .about-col33{
    max-width: 100%;
    flex: 0 0 100%;
  }
  .about-col33 .slot-booking-button {
  margin-top: 10px;
  font-size: 14px;
  padding: 8px;
}
.about-col33 p{
  font-size: 18px;
}
}
/* 480px and below */
@media (max-width: 480px) {
  .logo a {
    max-width: 180px;
  }

  .nav-links li {
    padding: 5px 6px;
    font-size: 12px;
  }

  .banner {
    min-height: 450px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 20px;
  }

  .swiper-content h3 {
    font-size: 20px;
  }

  .service-content h4 {
    font-size: 20px;
  }
.about-us .content {
    padding-top: 20px;
    flex-direction: column;
  }
  .tour-categories .swiper {
    height: 250px;
  }

  .tour-categories .swiper-slide img {
    max-width: 100%;
    min-height: 180px;
  }

  .swiper-slide h4 {
    font-size: 16px;
  }

  .rotating-wrapper,
  .outer-circle {
    width: 160px;
    height: 160px;
  }

  .inner-circle {
    width: 120px;
    height: 120px;
    margin-top: -140px;
  }

  .inner-circle h2 {
    font-size: 22px;
  }

  .inner-circle p {
    font-size: 14px;
  }

  .card-gallary img {
    max-width: 200px;
    min-height: 200px;
  }

  .big-card-gallary img {
    min-height: 350px;
    max-width: 100%;
  }
    .trip-plan{
    padding-bottom: 5px;
  }
  .trip-details{
    text-align: center;
    padding-bottom: 0px;
  }
  .service-details{
    padding-bottom: 0px;
  }
.trip-details a{
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
  }
  .guide-profile {

    font-size: 13px;
  }

  .footer-col30 {
    grid-template-columns: 1fr;
  }
  .form-container {
    padding: 30px 20px;
  }

  .brand {
    margin-bottom: 30px;
  }

  .brand h1 {
    font-size: 1.8rem;
  }

  .login-container {
    margin: 5px;
  }
    .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .footer-head{
    text-align: center;
  }
}

/* 420px and below */
@media (max-width: 420px) {
  .logo a {
    max-width: 160px;
  }

  .nav-links {
    flex-direction: column;
    padding: 8px 5px;
  }

  .nav-links li {
    margin: 2px 0;
    width: 100%;
    text-align: center;
  }

  .banner {
    min-height: 400px;
  }

  h1 {
    font-size: 20px;
  }

  .swiper-content h3 {
    font-size: 20px;
  }
.about-us .content {
    padding-top: 20px;
    flex-direction: column;
  }
  .service-content h4 {
    font-size: 20px;
  }

  .tour-categories .swiper {
    min-height: 240px;
  }

  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 15px;
    padding: 8px;
  }
  .tour-categories .swiper-slide img {
    max-width: 100%;
    min-height: 160px;
  }

  .card-gallary img {
    max-width: 180px;
    min-height: 180px;
  }

  .big-card-gallary img {
    min-height: 300px;
    max-width: 100%;
  }
  .trip-plan{
    padding-bottom: 5px;
  }
  .trip-details{
    text-align: center;
    padding-bottom: 0px;
  }
  .service-details{
    padding-bottom: 0px;
  }
.trip-details a{
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
  }
.service-details{
  padding: 10px 0;
}
.popular-tour{
  padding: 10px 0;
}
  .rotating-wrapper,
  .outer-circle {
    width: 140px;
    height: 140px;
  }

  .inner-circle {
    width: 100px;
    height: 100px;
    margin-top: -120px;
  }

  .inner-circle h2 {
    font-size: 18px;
  }

  .inner-circle p {
    font-size: 12px;
  }
    .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .footer-head{
    text-align: center;
  }
}

/* 375px and below */
@media (max-width: 375px) {
  .container {
    padding: 0 10px;
  }

  .logo a {
    max-width: 140px;
  }

  .banner {
    min-height: 350px;
  }

  .banner-content {
    padding: 10px;
  }

  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 18px;
  }

  .swiper-content h3 {
    font-size: 16px;
  }

  .service-content h4 {
    font-size: 16px;
  }

  .tour-categories .swiper {
    height: 200px;
  }

  .swiper-slide img {
    width: 100%;
    min-height: 120px;
  }

  .swiper-slide h4 {
    font-size: 18px;
  }

  .card-gallary img {
    max-width: 160px;
    min-height: 160px;
    padding: 10px;
  }

  .big-card-gallary img {
    min-height: 250px;
    max-width: 100%;
  }
.service-details{
  padding: 10px 0;
}
.popular-tour{
  padding: 10px 0;
}
  .rotating-wrapper,
  .outer-circle {
    width: 120px;
    height: 120px;
  }

  .inner-circle {
    width: 90px;
    height: 90px;
    margin-top: -105px;
  }

  .inner-circle h2 {
    font-size: 16px;
  }

  .inner-circle p {
    font-size: 11px;
  }

  .guide-profile {
    padding: 10px 15px;
    font-size: 12px;
  }

  .socials a{
    font-size: 18px;
    padding: 0 10px;
  }

  .quote {
    padding: 15px;
    margin-right: 0;
  }

  .quote img {
    height: 30px;
    width: 40px;
  }

  .person-review img {
    height: 60px;
    width: 60px;
  }

  .testimonial .blogcard33 {
    margin: 10px 0;
  }

  .review-content {
    padding: 15px;
    font-size: 14px;
  }

  .tour-guide-banner {
    min-height: 400px;
  }

  .tour-guide-banner .content {
    padding-top: 40px;
  }

  .about-us {
    padding: 40px 0;
  }

  .about-us .container {
    padding-top: 20px;
  }
.slot-booking-button .book-now-btn{
  font-size: 8px;
}
  .footer {
    padding: 20px 0;
    margin-top: 30px;
  }

  .lower-footer .blogcard20 {
    margin-top: 30px;
  }

  .footer-heading {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .blogcard20 li {
    font-size: 14px;
  }

  .lower-footer .socials a{
    font-size: 16px;
  }
    .company{
    width: 100%;
    overflow: hidden;
  }
  .company .container{
    max-width: 90%;
    overflow: hidden;
  }
  .footer-head{
    text-align: center;
  }
  .about-col33 .slot-booking-button {
    font-size: 5px;
    padding:  4px;
  }
}
/* 320px and below - Ultra-small devices */
@media (max-width: 320px) {

  /* Header adjustments */
  .header {
    width: 100%;
    min-height: auto;
    padding: 10px 0;
  }

  .header .logo {
    max-width: 220px;
    display: block;
  }

  .header .logo img {
    width: 100%;
    height: auto;
    position: absolute;
    left: -28px;
    top: 15%;
    
  }

  .navbar {
    margin-top: 5px;
    width: 100%;
  }
  .mobile-toggle {
    display: flex !important;
    position: absolute;
    left: 80%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    flex-direction: column;
    cursor: pointer;
  }

  .mobile-toggle span {
    width: 20px;
    max-width: 20px;
    height: 2px;
    background: #333;
    margin: 2px 0;
    margin-left: 0;
    transition: 0.3s;
    border-radius: 3px;
  }

  /* Banner adjustments */
  .banner,
  .about-banner {
    min-height: 300px;
    width: 100%;
  }

  .banner-content {
    max-width: 95%;
    padding: 10px;
    left: 50%;
  }

  /* Typography */
  h1 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  h2,
  .h2 {
    font-size: 16px;
  }

  h3 {
    font-size: 14px;
  }

  h4 {
    font-size: 14px;
  }

  p {
    font-size: 12px;
  }


  /* Selection section */
  .selection-section {
    width: 100%;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .selection-section .col33 {
    max-width: 100%;
    
  }

  .selection-image img {
    max-width: 100%;
    height: auto;
  }

  /* Swiper adjustments */
  .tour-categories {
    padding-top: 40px;
    padding-bottom: 20px;
    width: 100%;
    overflow: hidden;
  }

  .swiper-container {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .swiper {
    width: 100%;
    min-height: 180px;
    max-width: 100%;
  }

  .swiper-content h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .swiper-slide {
    max-width: 150px;
    margin-right: 10px !important;
    padding: 5px !important;
  }

  .swiper-slide img {
    max-width: 100%;
    min-height: auto;
    padding: 5px;
  }

  .swiper-slide h4 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .swiper-slide a {
    font-size: 10px;
    padding: 5px 8px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    padding: 5px;
    font-size:8px;
  }
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 10px;
    padding: 5px;
  }
  /* Trip plan section */
  .trip-plan {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
  }

  .service-content h4 {
    font-size: 16px;
  }

  .service-content p {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 12px;
  }

  .service-details {
    padding: 20px 0;
    width: 100%;
  }

  .trip-details {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
  }

  .trip-details a {
    padding: 15px;
  }

  .exclusive-trip {
    text-align: center;
    width: 100%;
  }

  .exclusive-trip p {
    font-size: 12px;
  }
  .booking-slot{
    text-align: center;
  }
.slot-booking-button .book-now-btn{
  font-size: 8px;
  text-align: center;
  margin-top: -2px;
  padding: 8px;
  margin-left: 20px;
}
  /* Popular tour section */
  .popular-tour {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
  }

  /* .popular-tour .container {
    width: 100%;
    padding: 0 10px;
  } */

  .popular-tour .content p {
    padding: 0 10px;
    font-size: 12px;
  }

  .popular-tour .blogcard33 {
    padding: 10px;
    margin-bottom: 15px;
  }

  .about-col33 .slot-booking-button {
    font-size: 5px;
    padding:  4px;
  }

  .rating-tour {
    flex-direction: row;
    align-items: flex-start;
    padding: 5px 0;
  }

  .rating-tour p {
    margin-left: 0;
    font-size: 11px;
  }

  .booking-slot {
    flex-direction: column;
    align-items: flex-start;
    
  }

  /* Tour gallery */
  .tour-gallary {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
  }

  .tour-gallary h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card-gallary {
    width: 100%;
    margin-bottom: 10px;
  }

  .card-gallary img {
    max-width: 100%;
    min-height: auto;
    /* height: 140px; */
    padding: 5px;
  }

  .big-card-gallary img {
    min-height: 200px;
    max-width: 100%;
  }

  /* Testimonial section */
  .testimonial {
    width: 100%;
    padding: 30px 0;
    /* overflow: hidden; */
  }
.testimonial .quote{
  display: none;
}
  .testimonial .content {
    margin-bottom: 20px;
  }

  .testimonial .blogcard33 {
    padding: 10px;
    margin-bottom: 15px;
  }

  .testimonial .blogcard33 p {
    font-size: 11px;
  }

  .person-review {
    padding: 0 10px;
    flex-direction: column;
    margin: 10px;
  }
  .person-review img{
    max-width: 50px;
    height: autoshr;
  }

  .person-review img {
    min-height: 50px;
    max-width: 50px;
  }

  .review-content {
    padding: 10px;
    font-size: 11px;
  }



  /* Tour guide section */
  .tour-guide-banner {
    min-height: 300px;
    width: 100%;
  }

  .tour-guide-banner .content {
    padding-top: 30px;
  }

  .tour-guide-profile {
    width: 100%;
    /* overflow: hidden; */
  }

  /* .tour-guide-profile .row {
    width: 100%;
  } */

  .guide-profile {
    padding: 10px 15px;
    font-size: 11px;
    width: 100%;
  }

  .socials {
    font-size: 18px;
    padding: 15px 0;
    justify-content: center;
  }

  .socials a {
    padding: 0 8px;
  }

  /* Articles section */
  .articles {
    width: 100%;
    overflow: hidden;
  }

  .articles .blogcard33 {
    padding: 0 10px;
  }

  .articles .blogcard33 p {
    margin-top: 10px;
    padding: 5px;
    font-size: 12px;
  }

  .article-btn {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 11px;
    padding: 6px 12px;
    text-align: center;
  }

  /* About section */
  .about-us {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
  }

  .about-us .content {
    padding-top: 20px;
    flex-direction: column;
  }

  /* Company slider */
  .company {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
  }

  .company .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .company figure {
    max-width: 120px;
    min-height: 80px;
    margin: 0 15px;
    padding: 10px;
  }

  /* Footer */
  .footer {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
  }

  .footer .container {
    width: 100%;
    padding: 0 10px;
  }

  /* .footer .row {
    width: 100%;
  } */

  .footer-logo {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .footer-logo a {
    display: inline-block;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-head {
    font-size: 16px;
    text-align: center;
  }

  .footer-col30 {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
    padding: 10px;
  }

  .footer-col30 img {
    width: 100%;
    height: auto;
  }

  .col60 .blogcard60 {
    text-align: center;
    width: 100%;
  }

  .col60 .blogcard60 input {
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    margin: 0 0 10px 0;
    font-size: 12px;
  }

  .subscribe-btn {
    padding: 20px 20px;
    font-size: 12px;
    width: 100%;
  }

  .lower-footer .col20 {
    margin-top: 20px;
    padding: 0 10px;
  }

  .footer-heading {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .blogcard20 li {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .lower-footer .socials {
    padding: 15px 0;
  }

  .lower-footer .socials a {
    font-size: 16px;
    padding: 0 8px;
  }

  /* Login page */
  .login {
    width: 100%;
    min-height: 600px;
    overflow: hidden;
  }
.login .header{
  position: relative;
}
  .login-container {
    width: 95%;
    max-width: 95%;
    margin: 10px auto;
    flex-direction: column;
  }

  .form-container {
    padding: 20px 15px;
    width: 100%;
  }

  .brand {
    margin-bottom: 20px;
  }

  .brand h1 {
    font-size: 1.5rem;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .form-subtitle {
    font-size: 12px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input {
    padding: 10px 15px;
    font-size: 12px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
  }

  .visual-panel {
    min-height: 150px;
    padding: 20px 15px;
  }

  .visual-content h2 {
    font-size: 1.3rem;
  }

  .visual-content p {
    font-size: 12px;
  }

  /* Buttons */
  /* .cmn-btn,
  .book-now-btn {
    padding: 8px 12px;
    font-size: 11px;
  } */

  .header-actions a {
    margin-left: 10px;
    padding: 8px 12px;
    font-size: 11px;
  }



  /* Prevent any element from causing horizontal scroll */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Tab group */
  .tabgrp {
    width: 100%;
    min-height: 50px;
    overflow: hidden;
  }

  .tabgrp .swiper-slide {
    font-size: 12px;
  }

  /* Content sections */
  .content p {
    padding: 0 10px;
    font-size: 12px;
  }

  /* Ensure no negative margins cause overflow */
  .navbar .logo {
    margin-left: 0;
  }

  .main-header {
    margin-top: 0;
  }

  /* Fix any absolute positioned elements */
  .mobile-toggle span {
    margin-left: 0;
  }
}
/* Additional mobile optimizations */
@media (max-width: 375px) {
  /* Ensure all interactive elements are touch-friendly */
  .cmn-btn,
  .book-now-btn,
  .search-btn,
  .subscribe-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Optimize swiper navigation for mobile */
  .swiper-button-next,
  .swiper-button-prev {
    max-width: 40px;
    min-height: 40px;
    font-size: 10px;
    padding: 30px;
  }

  /* Improve text readability on small screens */
  .content p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Optimize form elements */
  .destination select {
    min-height: 44px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  /* Ensure proper spacing for touch interfaces */
  .top-links li {
    padding: 8px 12px;
  }
  .footer-head{
    text-align: center;
  }

  /* Mobile-specific hover states (remove transform effects that don't work well on mobile) */
  @media (hover: none) {
    .swiper-slide:hover,
    .blogcard33:hover,
    .card-gallary:hover,
    .big-card-gallary:hover,
    .testimonial .blogcard33:hover,
    .guide-profile:hover,
    .item:hover {
      transform: none;
    }

    .swiper-slide:hover img,
    .blogcard33:hover img,
    .card-gallary:hover img,
    .big-card-gallary:hover img {
      transform: none;
      filter: none;
    }

    /* Keep only color/background changes for mobile */
    .nav-links li:hover {
      transform: none;
    }

    .top-links li a:hover {
      transform: none;
    }

    .cmn-btn:hover,
    .book-now-btn:hover {
      transform: none;
    }
  }
}

/* Landscape orientation optimization for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .banner {
    min-height: 400px;
  }

  .banner-content {
    top: 50%;
    padding: 15px;
  }

  h1 {
    font-size: 24px;
  }

  .tour-categories {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .trip-plan,
  .popular-tour,
  .tour-gallary,
  .site-analysis,
  .testimonial {
    padding: 50px 0;
  }
}

/* Print styles */
@media print {
  .header,
  .footer,
  .swiper-button-next,
  .swiper-button-prev,
  .nav-button,
  .append-buttons {
    display: none;
  }

  .banner {
    min-height: 300px;
  }


  .swiper-slide,
  .blogcard33,
  .card-gallary {
    break-inside: avoid;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .rotating-wrapper {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .nav-links li,
  .cmn-btn,
  .book-now-btn,
  .swiper-slide,
  .blogcard33,
  .guide-profile {
    border-width: 2px;
    border-style: solid;
  }

  .swiper-slide:hover,
  .blogcard33:hover {
    border-width: 3px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --col-white: #1a1a1a;
    --col-whitegrey: #2a2a2a;
    --COL-black: #ffffff;
    --col-lightgrey: #3a3a3a;
    --col-darkgrey: #cccccc;
    --col-greyshade: #888888;
  }

  .banner-content {
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
  }

  .nav-links,
  .blogcard33,
  .guide-profile {
    background: var(--col-white);
    color: var(--COL-black);
  }
}
