/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* STICKY NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #222;
  color: white;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* LOGO */
.logo a {
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* LINKS AND DROPDOWN BUTTONS */
.nav-links a,
.dropbtn {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  background: none;
}

/* HOVER EFFECT */
.nav-links a:hover,
.dropbtn:hover {
  background-color: #444;
  border-radius: 4px;
}

/* DROPDOWN CONTENT */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 180px;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-content li a {
  display: block;
  padding: 10px 12px;
  color: white;
}

.dropdown-content li a:hover {
  background-color: #555;
}

/* DESKTOP HOVER */
@media (hover: hover) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* MOBILE STYLING */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none; /* hidden by default */
    background-color: #222;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
  }

  /* Dropdown for mobile */
  .dropdown-content {
    position: static;
    display: none;
  }

  .dropdown-content.open {
    display: flex;
    flex-direction: column;
  }
}

/* slider section */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: none;
  height: 100%;
}

.slides img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Fade animation */
.fade {
  animation: fadeEffect 1.2s;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Overlay content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 30px;
  border-radius: 10px;
}

.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  background: #ff6600;
  color: white;
  border-radius: 4px;
  text-decoration: none;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-size: 24px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  user-select: none;
}

.next { right: 10px; }
.prev { left: 10px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dots span {
  height: 12px;
  width: 12px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}

.dots span.active {
  background: #ff6600;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 22px;
  }
}

/* slider section end */

/* about us section */
.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-content h2 {
  margin-top: 0;
  font-size: 32px;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* Mobile */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }
}

/* about us section end */

/* destinations */
.card-section {
  padding: 60px 20px;
  background: #fff;
}

.card-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 280px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay */
.card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

/* Hover Effects */
.card:hover img {
  transform: scale(1.1);
}

.card:hover .card-content {
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

/* Mobile */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* destinations end */

/* packages start */
.six-card-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.six-card-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.six-card {
  background: white;
  text-decoration: none;
  color: #333;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.six-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.six-card h3 {
  padding: 15px;
  margin: 0;
  font-size: 18px;
}

/* Hover effect */
.six-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 900px) {
  .six-card-grid {
    grid-template-columns: 1fr;
  }
}

/* packages end */

/* why travel with us start */
.why-us-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.why-us-section h2 {
  margin-bottom: 30px;
}

.why-slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
}

.why-slider {
  overflow: hidden;
  width: 100%;
}

.why-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* CARD */
.why-card {
  flex: 0 0 calc(100% / 3);
  padding: 20px;
  box-sizing: border-box;
}

.why-card img {
  width: 60px;
  height: 55px;
  margin-bottom: 15px;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

/* BUTTONS */
.slider-btn {
  background-color: transparent;
  color: black;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

/* MOBILE */
@media (max-width: 900px) {
  .why-card {
    flex: 0 0 100%;
  }
}

/* why travel with us end */
/* guest experiences 1 */

/* guest experiences 1 end */

/* Guest slider start */
.guest-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.guest-section h2 {
  margin-bottom: 30px;
}

.guest-slider {
  max-width: 800px;
  margin: auto;
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.guest-slide {
  display: none;
}

.guest-slide.active {
  display: block;
}

.guest-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.guest-info span {
  display: block;
  color: gray;
  font-size: 14px;
}

.stars {
  color: #ff9800;
  font-size: 18px;
  margin-top: 10px;
}

/* Buttons */
.guest-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #024;
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
}

.guest-btn.prev {
  left: -20px;
}

.guest-btn.next {
  right: -20px;
}

/* Mobile */
@media (max-width: 768px) {
  .guest-slider {
    padding: 25px;
  }

  .guest-text {
    font-size: 16px;
  }
}

/* Guest slider end */


/* Reset overflow issues */
* {
  box-sizing: border-box;
}

/* Partners Section */
.partners-section {
  width: 100%;
  max-width: 100vw;
  padding: 40px 16px;
  background: #f9f9f9;
  text-align: center;
  overflow: hidden;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}


/* Slider container */
.partners-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Track */
.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 24px;
  animation: scroll 25s linear infinite;
    /* will-change: transform; */
}

/* Partner */
.partner {
  flex: 0 0 auto;
  width: clamp(90px, 15vw, 160px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Images */
.partner img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .partners-section h2 {
    font-size: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .partners-section {
    padding: 30px 12px;
  }

  .partners-track {
    gap: 16px;
    animation-duration: 18s;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .partners-track {
    gap: 12px;
    animation-duration: 15s;
  }
}


/* Infinite scroll animation */
@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .partners-track {
    animation-duration: 30s;
  }

  .partner img {
    height: 55px;
  }
}

/* our partners end */

/* footer start */
.site-footer {
  background: #00203f;
  color: #fff;
  padding: 50px 20px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  /* align-content: center;
  align-items: center;
  align-self: center; */
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 12px;
  color: #ffbc42;
}

.footer-column p,
.footer-column a {
  color: #e0e0e0;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-socials a {
  margin-right: 12px;
  font-size: 16px;
}

.footer-socials a:hover {
  color: #ffbc42;
}

.footer-newsletter input {
  padding: 8px;
  width: 70%;
  border: none;
  border-radius: 4px 0 0 4px;
  margin-right: -5px;
}

.footer-newsletter button {
  padding: 8px 12px;
  border: none;
  background: #ffbc42;
  color: #00203f;
  font-weight: bold;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: #e0a800;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 25px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* .footer-newsletter input {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 4px;
  } */

  /* .footer-newsletter button {
    width: 100%;
    border-radius: 4px;
  } */
}

/* testimonial slider */

/* testimonial slider end */

/* footer ends */