/* ============================================================
   RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #f8f9fa;
  overflow-x: hidden;
}

/* ============================================================
   TOP HEADER
   ============================================================ */
.top-header {
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-section img {
  height: 100px;
}

.logo-text {
  font-size: 28px;
  font-weight: bold;
}

.logo-text span:first-child {
  color: #fca311;
}

.logo-text span:last-child {
  color: #0d1b2a;
}

/* Contact Info */
.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  border: 2px solid #ccc;
  padding: 8px;
  border-radius: 50%;
  color: #333;
}

.contact-text {
  font-size: 13px;
}

.contact-text b {
  display: block;
}

/* Action Buttons */
.actions {
  display: flex;
  gap: 20px;
}

.action-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 25px;
}

.action-box i {
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  color: white;
}

.action-box i.whatsapp {
  background: #25d366;
}

.action-box i.call {
  background: #ff6600;
}

.action-text {
  font-size: 13px;
}

.action-text b {
  display: block;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #0d1b2a;
  color: #fff;
}

.logo {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fca311;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Dropdown (1st level) */
.dropdown {
  position: relative;
  margin-left: 20px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #5a936e;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(26, 46, 48, 0.548);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}


.dropdown-content a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
  margin:0;
  text-align: center;
}

.dropdown-content a:hover {
  background: #f1f1f1;
  color: black;
  border-radius: 4px;
  margin: 0px;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

/* Submenu (2nd level) */
.submenu {
  position: relative;
}

.submenu > a {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}

.submenu-content {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #5a936e;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.submenu-content a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
}

.submenu-content a:hover {
  background: #f1f1f1;
}

.submenu:hover .submenu-content {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  height: 60vh !important;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* Slides — background-image based, covers all screens */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: scale(1);
  transition: transform 8s ease;
  z-index: 0;
}

/* If hero uses <img> tags instead of background-image */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide.active {
  transform: scale(1.05);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5 !important;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Explore Button */
.explore-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  background: #ff9933;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #ff7700;
  transform: scale(1.05);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  width: 30px;
  background: #ff9933;
  border-radius: 10px;
}

/* Prev / Next Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 18px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn { left: 20px; }
.next-btn  { right: 20px; }

/* ============================================================
   GENERAL SECTION & LAYOUT
   ============================================================ */
section {
  padding: 20px;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background: #fca311;
  border: none;
  color: #fff;
}

#text-decor {
  text-decoration: none;
  color: white;
}

/* ============================================================
   CARDS (shared)
   ============================================================ */
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
 background: white;
    width: 300px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba
#0000001a
(0, 0, 0, 0.1);
    border: 1px solid #090b42d9;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
}
.card-services{
  padding-top:5px;
}

/* ============================================================
   TOUR PACKAGES & OUR SERVICES
   ============================================================ */
.tour-packages {
  background: rgb(0 255 255 / 12%);
}

.tour-packages .card,
.our-services .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-packages .card:hover,
.our-services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 20px;
  background: linear-gradient(135deg, #313a38, #1b263b);
  text-align: center;
  color: white;
}

.gallery h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: auto;
}

/* Gallery Item */
.gallery-item {
   width: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.15);
}

/* Overlay */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: 0.4s;
}

.gallery-item:hover::before {
  opacity: 1;
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.gallery-item:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery Button */
.gallery-btn-wrapper {
  margin-top: 40px;
}

.gallery-btn {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #fca311, #ff8800);
  color: white;
  transition: 0.3s;
}

.gallery-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 136, 0, 0.4);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox span {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 30px;
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE — TABLET (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header */
  .top-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-bottom: 18px;
  }

  /* Navbar */
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0d1b2a;
    text-align: center;
    height:100vh;
  }

  .nav-links a {
    padding: 10px;
    margin: 0;
  
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  

  .dropdown.active .dropdown-content {
    display: block;
  }

  .submenu-content {
    top: 44px;
    left: 3%;
    background: #4e72ed;
  }

  .submenu.active .submenu-content {
    display: none;
  }

  /* Hero */
  .hero {
    height: 480px !important;
    min-height: unset;
  }

  .hero-slide,
  .hero-slide img {
    height: 480px !important;
    object-fit: cover;
    object-position: center;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .explore-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* Gallery */
  .gallery-item img {
    height: 200px;
  }
  .gallery-container{
    display:flex;
  }
   .sub-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
}

/* ============================================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero {
    height: 420px !important;
  }

  .hero-slide,
  .hero-slide img {
    height: 420px !important;
    object-fit: cover;
    object-position: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 425px)
   ============================================================ */
@media (max-width: 425px) {
  .top-header {
    width: 100%;
  }

  .gallery-item img {
    height: 200px;
  }
}

/* ============================================================
   RESPONSIVE — EXTRA SMALL (max 320px)
   ============================================================ */
@media (max-width: 320px) {
  .actions {
    display: grid;
  }
  .logo {
    font-size: 16px;
 }
}
@media (max-width: 880px) {
   .actions {
      display: grid;
      margin:5px;
  } 
  .logo-text {
    font-size: 18px;
    font-weight: bold;
  }
  .logo {
    font-size: 15px;
    font-weight: normal;
  }
}
@media (max-width: 1024px) {
  /* .actions {
      display: grid;
  } */
  .logo-text {
    font-size: 18px;
    font-weight: bold;
  }
  .logo {
    font-size: 15px;
    font-weight: normal;
  }
}