body {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* NAVBAR BASE */
/* NAVBAR BASE */
#mainNav {
  background: rgba(2, 6, 23, 0.85); /* deep navy */
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* On scroll */
#mainNav.scrolled {
  background: #020617;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.nav-link {
  color: #e5e7eb !important;
  font-weight: 500;
}

/* .nav-link:hover {
  color: #38bdf8 !important;
} */

#mainNav.scrolled .nav-link {
  color: #e5e7eb !important;
}

.nav-link.active {
  color: #38bdf8 !important;
}

#mainNav {
  padding: 12px 0;
}

body {
  padding-top: 50px;
}


.logo {
  height: 42px;
}

@media (max-width: 768px) {
  .logo {
    height: 34px;
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #ffffff;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 600;
}

.brand-text small {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.4px;
}


/* 
#mainNav.scrolled .brand-text {
  color: #ffffff;
} */
/* Slightly smaller on mobile */
@media (max-width: 768px) {
  .brand-text {
    font-size: 15px;
  }
}

.btn-enquire {
  background: linear-gradient(135deg, #14b8a6, #22d3ee);
  color: #ffffff !important;
  padding: 8px 18px;
  font-weight: 500;
}


/* Hero */
.hero-section {
  min-height: 100vh;
  background: url("../images/hero.jpg") center center / cover no-repeat;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 6, 23, 0.85),
    rgba(2, 6, 23, 0.55)
  );
}

.hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* Section */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Packages */
.package-card {
  background: #f1f5f9;
  padding: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border-radius: 12px;
  transition: transform 0.3s;
}

.package-card:hover {
  transform: translateY(-8px);
}

/* Why Us */
.why-us {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  padding: 60px 0;
  color: #fff;
}

/* Footer */
.footer {
  background: #020617;
  color: #cbd5f5;
  padding: 50px 0 20px;
  font-size: 15px;
}

.footer-logo {
  height: 50px;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 17px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-links li a:hover {
  color: #38bdf8;
}

/* Footer Call Buttons */
.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.footer-btn.call {
  background: #0ea5e9;
}

.footer-btn.whatsapp {
  background: #25d366;
}

.footer-btn:hover {
  transform: translateY(-2px);
}

/* Map Card Design */
.map-card {
  background: #020617;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.map-header {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #fff;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 15px;
}

.map-link {
  display: inline-block;
  margin-top: 5px;
  color: #38bdf8;
  text-decoration: none;
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: transform 0.3s;
}

.footer-social a:hover {
  transform: translateY(-5px);
}

.footer p {
  margin-bottom: 6px;
}

.footer hr {
  margin: 20px 0 10px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* WHy US */
.why-us .row > div {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 500;
}

.package-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}


#mainNav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
}


/*international Section with Fixed Background */
.international-section {
  position: relative;
  background: url("../images/domestic-bg.jpg") center / cover no-repeat fixed;
  color: #ffffff;
}

/* Overlay for readability */
.international-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.75); /* dark overlay */
  z-index: 1;
}

/* Keep content above overlay */
.international-section .container {
  position: relative;
  z-index: 2;
}

/* Title color */
.international-section .section-title {
  color: #ffffff;
}

/* Card tweaks on dark bg */
.international-section .package-card {
  background: rgba(255, 255, 255, 0.92);
  color: #020617;
}
