/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0d47a1;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links li a {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #0d47a1;
}

.nav-links i {
  cursor: pointer;
  color: #555;
}

/* Hero Section */
.hero {
  background: url('https://source.unsplash.com/1600x700/?travel,adventure') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 2rem;
  background-color: #ff6f00;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #e65100;
}

/* Tools Section */
.tools {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.tools h2 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 2rem;
}

.tool-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.tool-cards .card {
  background: #e3f2fd;
  padding: 2rem;
  border-radius: 12px;
  width: 250px;
  font-size: 1.2rem;
  font-weight: 500;
  transition: transform 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tool-cards .card:hover {
  transform: translateY(-10px);
}

/* Destinations Section */
.destinations {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f1f8e9;
}

.destinations h2 {
  font-size: 2rem;
  color: #33691e;
  margin-bottom: 2rem;
}

.destination-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.dest-card {
  background: #c5e1a5;
  padding: 2rem;
  border-radius: 12px;
  width: 250px;
  font-size: 1.2rem;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.dest-card:hover {
  transform: translateY(-10px);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #212121;
  color: #fff;
  font-size: 0.9rem;
}
/* Hero Section CSS */
.hero {
  position: relative;
  height: 90vh;
  background: url('https://source.unsplash.com/1600x900/?travel,landscape') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  margin: 0 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff6f00;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e65100;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #333;
}
.hero-slider {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hero Slider */
.hero-slider {
  width: 100%;
  height: 90vh;
  position: relative;
  z-index: 0;
}

.hero-slider .slide img,
.hero-slider .video-container video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.video-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.owl-nav i {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: 0.3s;
}

.owl-nav i:hover {
  background-color: #ff6f00;
}

.owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.owl-dot span {
  background: #fff;
  opacity: 0.6;
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: #ff6f00;
  opacity: 1;
}
.slide {
  position: relative;
}

.caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.caption h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.caption p {
  font-size: 1.2rem;
}
.hero-slider {
  width: 100%;
  height: 65vh; /* Smaller height */
  position: relative;
  z-index: 0;
}

.hero-slider .slide img,
.hero-slider .video-container video {
  width: 100%;
  height: 65vh; /* Match slider height */
  object-fit: cover;
}
.owl-carousel .owl-item {
  transition-timing-function: ease-in-out !important;
}
.tools {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  text-align: center;
}

.tools h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #333;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tool-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 111, 0, 0.3);
}

.card .icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  color: #ff6f00;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
.trending-packages {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.trending-packages h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
}

.packages-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.package-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
  overflow: hidden;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.15);
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.package-info {
  padding: 20px;
  text-align: left;
}

.package-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0077b6;
}

.package-info p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0077b6;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #023e8a;
}
.tools {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.tools h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

.tool-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card h3 {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #0077b6;
}

.card p {
  font-size: 1rem;
  color: #555;
  padding: 0 20px 20px;
}
.destinations {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.destinations h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: 700;
}

.destination-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

.dest-card {
  position: relative;
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}

.overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}
/* explore css */
/* Explore Page Styles */
.explore-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.explore-hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  color: white;
  width: 100%;
  padding: 30px;
  text-align: center;
}

.explore-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.explore-hero p {
  font-size: 1.3rem;
}

.explore-content {
  background: #f9f9f9;
  padding: 60px 20px;
}

.explore-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 40px;
}

.explore-left {
  flex: 1 1 500px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.explore-left h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #0077b6;
}

.explore-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
}

.package-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.package-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

.package-list li i {
  color: #0077b6;
  margin-right: 10px;
}

.btn.book-now {
  background-color: #0077b6;
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn.book-now:hover {
  background-color: #023e8a;
}

/* Right side images */
.explore-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.explore-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
/* navbar css */
/* Top bar styling */
.sotc-header .top-nav {
  background: #fefefe;
  padding: 6px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.top-nav a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: #0077b6;
}

.login-btn {
  padding: 4px 12px;
  border: 1px solid #0077b6;
  background: transparent;
  color: #0077b6;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
}
.login-btn:hover {
  background: #0077b6;
  color: #fff;
}

/* Main navigation styling */
.sotc-header .main-nav {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0077b6;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #333;
  text-decoration: none;
  padding: 8px 0;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #0077b6;
}

/* Mega dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: none;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-menu li:hover .mega-menu {
  display: block;
}

.mega-menu a {
  display: block;
  margin-bottom: 8px;
  color: #555;
}

.mega-menu a:last-child {
  margin-bottom: 0;
}
