* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

/* ===== Navbar ===== */
/* ===== Navbar ===== */
.navbar {
  background: #f4c400;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  padding-top: 50px;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #2563eb;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}


.logo img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.company-name {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* underline */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: rgb(17, 17, 51);
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color:  #1e293b;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1e293b;
  margin: 4px 0;
  transition: 0.3s;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

.about-us {
  padding: 80px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e0b200;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Layout */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Content */
.about-content h3 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  margin-bottom: 30px;
}

.about-points li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #1e293b;
}

/* Image */
.about-image img {
  width: 300px;
  border-radius: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h3 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* Overlay for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* Content */
.hero-content {
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  background: #f4c400;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #e0b200;
  transform: translateY(-2px);
  border: 2px solid black;
}

.btn-outline {
  background: #f4c400 ;
  
}

.btn-outline:hover {
  background: #e0b200;
  color: black;
  border: 2px solid black;
}


/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 15px;
  border-radius: 50%;
}

.whatsapp-btn img {
  width: 30px;
  height: 30px;
}



/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.icon {
  font-size: 45px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Destinations ===== */
.destinations {
  padding: 80px 20px;
  text-align: center;
}

.destination-grid {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.destination-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.place {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

/* Last card center */
.destination-card:last-child {
  grid-column: span 1;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-box {
  max-width: 600px;
  margin: 40px auto 0;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-box p {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-box h4 {
  color: #0f3d5f;
}

/* ===== Contact ===== */
.contact {
  padding: 80px 20px;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #f4c400;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e0b200;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }
}
.why-choose-us {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Cards Grid */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }
.why-card:nth-child(5) { animation-delay: 0.5s; }
.why-card:nth-child(6) { animation-delay: 0.6s; }

.why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Icon */
.why-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Text */
.why-card h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}
.company-profile {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Video */
.profile-video video {
  width: 75%;
  max-width: 900px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}

.profile-video video:hover {
  transform: scale(1.02);
}

/* Buttons */
.profile-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 34px;
  font-size: 1.05rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
}

/* Glass Button */
.btn-glass {
  background: rgba(255,255,255,0.6);
  color: #e0b200;
  backdrop-filter: blur(10px);
  border: 2px solid #e0b200;
}

.btn-glass:hover {
  background: #e0b200;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Primary Button */
.btn-primary {
  /* background: linear-gradient(135deg, #e0b200, #1e40af); */
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(37,99,235,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37,99,235,0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .profile-video video {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

