* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

.top-nav {
  background-color: #fff; 
  padding: 10px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-nav.logo img {
  height: 60px;
  width: auto;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}


/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
}

.hero-text p {
  font-size: 1.2rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: #e0ddd3;
  gap: 60px;
}

.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #555;
}

.about-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff914d, #ff5e62);
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ff5e62, #ff914d);
}

.about-logo {
  flex: 1 1 300px;
  text-align: center;
}

.about-logo img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-logo img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 60px 5%;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2em;
  }

  .about-text p {
    font-size: 1em;
  }

  .about-logo {
    margin-top: 30px;
  }
}


/* Cards Section */
.cards {
  padding: 40px 5%;
  background-color: #e3b04b;
  text-align: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.card {
  width: 300px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #333;
}

/* Footer */
footer {
  background-color: #3f4b75;
  color: white;
  padding: 40px 20px 80px;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  flex: 1;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.contact-top h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.contact-top p a {
  color: white;
  text-decoration: none;
}

.social-icons {
  position: absolute;
  bottom: 50px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* Footer background image */
.footer-image img {
  position: absolute;
  bottom: 80px;
  right: 10px;
  width: 120px;
  opacity: 0.5;
  z-index: 1;
}

/* Footer bottom center */
.footer-bottom {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #ffffff;
  z-index: 2;
}

/* Responsive layout */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .footer-bottom {
    text-align: center;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.featured-package {
  background-color: #e0ddd4;
  padding: 60px 20px;
  text-align: center;
}

.featured-package h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.package-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.package-card img {
  width: 100%;
  height: auto;
}

.package-details {
  padding: 30px;
  text-align: left;
}

.package-details h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #222;
}

.package-details p {
  margin: 15px 0;
  color: #555;
}

.package-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.package-details li {
  margin: 8px 0;
  color: #333;
}

.book-btn {
  background-color: #d1a91a;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.book-btn:hover {
  background-color: #b88c0d;
}

@media (min-width: 768px) {
  .package-card {
    flex-direction: row;
  }

  .package-card img {
    width: 50%;
  }

  .package-details {
    width: 50%;
  }
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
  }

  .nav-links li a {
    font-size: 0.9rem;
    padding: 8px;
  }
}
