/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-padding: 80px;
}

body {
  line-height: 1.6;
  background-color: white;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Section */
header {
  background: linear-gradient(45deg, #003f5f, #0077b6);
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

nav ul {
  font-size: 2rem;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

header .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem; /* Increase font size */
  font-weight: bold; /* Make it more prominent */
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffcc00;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffcc00;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #003f5f;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active ul {
    display: flex;
  }
}

/* Hero Section */
.hero-banner {
  position: relative;
  color: #fff;
  text-align: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 15px;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-inner {
  display: flex;
  position: relative;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

.carousel-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
  text-align: center;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-text h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.app-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.app-link img {
  height: 50px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

/* Responsive Design for Hero Section */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text h2 {
    font-size: 1rem;
  }

  .app-link img {
    height: 40px;
  }
}

/* Features Section */
.features-diagonal-grid {
  padding: 2rem 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-diagonal-grid h2 {
  font-size: 2.5rem;
  color: #004f6f;
  margin-bottom: 3rem;
  position: relative;
  animation: fadeInDown 1s ease-in-out;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}

.diagonal-feature {
  background: linear-gradient(135deg, #004f6f, #0077b6);
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: rotateY(0deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  position: relative;
  cursor: pointer;
}

.diagonal-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.diagonal-feature:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.diagonal-feature:hover::before {
  opacity: 1;
}

.feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
}

.feature-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-text li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.tick-sign {
  color: #ffcc00;
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-diagonal-grid h2 {
    font-size: 2rem;
  }

  .diagonal-feature {
    padding: 1.5rem;
  }

  .feature-text h3 {
    font-size: 1.5rem;
  }

  .feature-text li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .features-diagonal-grid h2 {
    font-size: 1.8rem;
  }
}

/* popular destination */
.popular-destinations {
  padding: 2rem;
  background-color: #f3f3f3;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.popular-destinations h2 {
  font-size: 2.5rem;
  color: #004f6f;
  margin-bottom: 2rem;
  font-weight: bold;
}

.destination-rotating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1000px;
}

.destination-item {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 0.5s ease-in-out;
}

.destination-item:hover {
  transform: rotateY(15deg);
}

.destination-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  border-radius: 10px;
}

.destination-item:hover .destination-overlay {
  opacity: 1;
  transform: translateY(0);
}

.destination-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.destination-overlay p {
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .popular-destinations h2 {
    font-size: 2rem;
  }

  .destination-item img {
    height: 150px;
  }

  .destination-overlay h3 {
    font-size: 1.3rem;
  }

  .destination-overlay p {
    font-size: 0.9rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .popular-destinations h2 {
    font-size: 2rem;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-image img {
    height: 150px;
  }

  .destination-details h3 {
    font-size: 1.3rem;
  }

  .destination-details p {
    font-size: 0.9rem;
  }
}

/* Traveller Review */
.traveler-review {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}
.customer-review-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  height: auto;

  h2 {
    color: #004f6f;
    margin-top: 0.5em;
    font-size: 2.5em;
    text-align: center;
  }
}
.review-container {
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  justify-content: space-around;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;

  .stars {
    height: 10px;
    margin-top: 20px;
    font-size: 1.5rem;
    color: #ffc107;
  }

  .review {
    padding: 5px;
    text-align: center;
  }
  .reviewer-name {
    font-style: italic;
    font-size: 1rem;
  }
}

.review-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.round-image-container img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.review-text {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.review-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.review-text p {
  font-size: 1.2rem;
  line-height: 1.8;
}

.review-text strong {
  font-size: 1.1rem;
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .review-text {
    padding: 1rem;
  }

  .review-text h3 {
    font-size: 1.5rem;
  }

  .review-text p {
    font-size: 1rem;
  }
  .traveler-review {
    height: auto;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 0.5em;
    h2 {
      font-size: 2em;
    }
  }
}

/* explore-nepal */
.explore-nepal {
  padding: 2rem 15px;
  text-align: center;
  background-color: #f9f9f9;
}

.explore-nepal h2 {
  font-size: 2.5rem;
  color: #004f6f;
  margin-bottom: 1.5rem;
}

.explore-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.explore-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: fadeInUp 0.8s ease both;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.explore-card img {
  width: 100%;
  object-fit: cover;
  height: 25rem;
}

.card-content {
  padding: 1rem;
  text-align: left;
}

.card-content h3 {
  font-size: 1.8rem;
  color: #004f6f;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-content h3 {
    font-size: 1.5rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .explore-cards {
    grid-template-columns: 1fr;
  }

  .explore-card {
    animation: fadeInUp 1s ease both;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .card-content p {
    font-size: 0.85rem;
  }
}

/* Footer Section */
.footer {
  background: linear-gradient(45deg, #004f6f, #0077b6);
  color: #fff;
  padding: 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-item {
  min-width: 250px;
  text-align: center;
  flex: 1;
  p {
    margin-top: -30px;
    font-size: 1.5em;
    font-style: italic;
  }
}

.footer-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-item ul li {
  margin: 0.5rem 0;
}

.footer-item ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-item ul li a:hover {
  color: #ffcc00;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  justify-content: center;

  h3 {
    margin-top: -5em;
    font-size: 2rem;
  }
}
.seperator {
  flex: 1;
}
.contact-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.footer-contact a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-social .social-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ddd;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-item {
    text-align: center;
  }
  .footer-contact h3 {
    margin-top: -1em;
  }
  .footer-contact {
    gap: 0.5em;
  }
}

@media (max-width: 480px) {
  .footer-item {
    min-width: 100%;
    img {
      width: 300px;
      height: 300px;
    }
  }

  .footer-social .social-logos img {
    width: 30px;
    height: 30px;
  }
}
