/* ==============================
   RESET
   ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nav-height: 80px;
  --primary-color: #001f3f;
  --secondary-color: #ff0000;
  --text-color: #333;
  --white: #ffffff;
  --hero-overlay: rgba(0, 31, 63, 0.6);
  --bg-light: #f4f7fc;
  --bg-dark: #f9f9f9;
  --font-main: 'Open Sans', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --transition-fast: 0.3s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 1s ease-out;
  --border-radius: 12px;
  --box-shadow-light: 0 4px 12px rgba(0,0,0,0.1);
  --box-shadow-medium: 0 6px 18px rgba(0,0,0,0.15);
  --box-shadow-heavy: 0 8px 25px rgba(0,0,0,0.4);
  --btn-padding: 12px 24px;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  overflow-x: hidden;
  opacity: 0;
  animation: bodyFadeIn 1.2s ease forwards;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ==============================
   NAVBAR
   ============================== */
nav {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000; /* always on top */
  padding: 20px 0;
  border-bottom: 5px solid #001f3f; /* White border */
  height: var(--nav-height);
}

.nav-container {
  width: 100%;
  position: relative;
  margin: -20px auto;
  padding: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* group logo + heading */
.brand {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}

/* make heading smaller on small devices */
@media (max-width: 992px) {
  .brand h1 {
      font-size: 22px;
  }
  .contact-box {
    min-height: 250px; /* taller on mobile if needed */
  }
}
@media (max-width: 768px) {
  .brand h1 {
      font-size: 20px;
  }
  .contact-box {
    min-height: 250px; /* taller on mobile if needed */
  }
}
@media (max-width: 480px) {
  .brand h1 {
      font-size: 18px;
  }
  .contact-box {
    min-height: 250px; /* taller on mobile if needed */
  }
}
@media (max-width: 320px) {
  .brand h1 {
      font-size: 16px;
  }
  .contact-box {
    min-height: 250px; /* taller on mobile if needed */
  }
}


/* logo + heading */
.logo {
  display: flex;
  align-items: center;
  margin-left: 0;
  padding-left: 0;
  text-decoration: none;
}

.logo img {
  height: auto;
  max-height: 150px;
  width: auto;
  display: block;
  animation: fadeInLeft 1s ease-in-out forwards;
}

/* Heading */
nav h1 {
  color: #001f3f;
  font-size: 22px;
  animation: fadeInLeft 1s ease-in-out forwards;
}

/* Menu links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: auto;
}


@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Menu links animation */
.nav-links {
  list-style: none;
  display: flex;
  z-index: 1001;
  gap: 20px;
  margin-right: 15px;
}

.nav-links li {
  position: relative;
  opacity: 0;
  animation: fadeInRight 0.8s ease-in-out forwards;
}

/* staggered delay for each menu item */
.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.5s; }
.nav-links li:nth-child(3) { animation-delay: 0.7s; }
.nav-links li:nth-child(4) { animation-delay: 0.9s; }
.nav-links li:nth-child(5) { animation-delay: 1.1s; }
.nav-links li:nth-child(6) { animation-delay: 1.3s; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-links a {
  text-decoration: none;
  color: #001f3f;
  padding: 8px 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: #001f3f;
  color: #fff;
}


/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 28px;
  border: 2px solid #fff;
  padding: 0 3px;
  border-radius: 5px;
  color: #001f3f;
  cursor: pointer;
}

/* ==============================
   HERO SECTION NEW DESIGN
   ============================== */
.hero-section {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  padding: 0 5%;
  gap: 50px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
  color: #001f3f;
  animation: fadeInLeft 1.5s ease forwards;
  opacity: 0;
}

.hero-content span.since {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff0000;
  background: #ffeaea;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.hero-content h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
  color: #333;
}

.hero-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 100%;
  animation: fadeInLeft 1s ease-in-out forwards;
}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 400px;
  animation: slideImages 12s infinite; /* sliding animation */
}

.slider-wrapper img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1); /* normal */
  transition: transform 1s ease;
}

.slider-wrapper img:hover {
  transform: scale(1.05); /* zoom a bit on hover */
}

/* Slide animation */
@keyframes slideImages {
  0%   { transform: translateX(0); }
  30%  { transform: translateX(0); }
  33%  { transform: translateX(-100%); }
  63%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  96%  { transform: translateX(-200%); }
  100% { transform: translateX(0);}
}

/* VERTICAL LINKS */
.hero-links {
  position: absolute;
  top: 40%;
  right: 2.5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInLeft 1s ease-in-out forwards;
}

.hero-links a {
  writing-mode: vertical-rl;
  font-size: 20px;
  text-decoration: none;
  color: #001f3f;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-links a:hover {
  color: #ff0000;
  transform: scale(1.2) translateY(-2.5px); /* zoom + move upward */
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes slideImages {
  0% { transform: translateX(0); }
  30% { transform: translateX(0); }
  35% { transform: translateX(-100%); }
  65% { transform: translateX(-100%); }
  70% { transform: translateX(-200%); }
  100% { transform: translateX(-200%); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { background: #ffeaea; color: #ff0000; }
  50% { background: #ff0000; color: #fff; }
}

/* Primary Button */
.btn-enquiry {
  display: inline-block;
  background: linear-gradient(to right, #001f3f 0%, #001f3f 50%, #ffffff 50%, #ffffff 100%);
  background-size: 200% 100%;
  background-position: left bottom;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  margin-right: 10px;
}

.btn-enquiry:hover {
  background-position: right bottom; /* slide gradient */
  color: #001f3f;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bodyFadeIn {
  to {
    opacity: 1;
  }
}

/* Destination SECTION */

.destinations-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 10% 40px;
  gap: 0px;
  background: #fff;
}

.destination-text {
  text-align: center;
  margin-bottom: 20px;
}

.destination-text h1 {
  color: #001f3f;
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-align: left;
  cursor: pointer; /* optional */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.destination-text h1.show {
  opacity: 1;
  transform: translateY(0);
}

.destination-text h1::after {
  content: "";
  display: block;
  width: 50%;              /* underline full width */
  height: 4px;
  background: #ff0000;
  border-radius: 2px;
  transform: scaleX(0);      /* start hidden */
  transform-origin: left;    /* start animating from left */
  transition: transform 0.4s ease;
}
.destination-text h1:hover::after {
  transform: scaleX(1);      /* expand underline */
}

  .slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin: 40px auto;
  }

  .slides {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    width: calc(250px * 10); /* total width: 10 images cloned for loop */
    animation: scroll 20s linear infinite;
  }

  .slide {
    width: 250px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    padding: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }

  .slide.show {
    opacity: 1;
    transform: translateY(0);
  }

  .slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border-radius: 10px;
    transition: filter 0.3s ease;
  }

  /* Blur only the hovered image */

  .slide img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: blur(2px) brightness(80%);
  }

  .country-name {
    position: absolute;  
    top: 50%;              /* center vertically in its own image */
    left: 50%;             /* center horizontally in its own image */
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  /* Show only on hover */
  .slide:hover .country-name {
    opacity: 1;
  }

  /* Infinite scroll animation */
  @keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .destinations-preview {
  text-align: center;
  padding: 50px 20px;
}

.destinations-preview h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #001f3f;
}

.flag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.flag-row div {
  text-align: center;
}

.flag-row img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.flag-row img:hover {
  transform: scale(1.1);
}

.flag-row p {
  margin-top: 8px;
  font-weight: 600;
}

/* About SECTION */

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 10% 80px;
  gap: 40px;
  background: #fff;
}

.about-text h1 {
  color: #001f3f;
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-align: left;
  cursor: pointer; /* optional */
}

.about-text h1::after {
  content: "";
  display: block;
  width: 50%;              /* underline full width */
  height: 4px;
  background: #ff0000;
  border-radius: 2px;
  transform: scaleX(0);      /* start hidden */
  transform-origin: left;    /* start animating from left */
  transition: transform 0.4s ease;
}

.about-text h1:hover::after {
  transform: scaleX(1);      /* expand underline */
}


.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
  text-align: justify;
}

.about-text {
  flex: 1;
  opacity: 0;
  transform: translateY(50px); /* start: slightly down */
  transition: all 1s ease-out;
}

.about-text.show {
  opacity: 1;
  transform: translateY(0); /* end: normal place */
}


/* Primary Button */
.cta-btn {
  display: inline-block;
  background: linear-gradient(to right, #001f3f 0%, #001f3f 50%, #ffffff 50%, #ffffff 100%);
  background-size: 200% 100%;
  background-position: left bottom;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  margin-right: 10px;
}

.cta-btn:hover {
  background-position: right bottom; /* slide gradient */
  color: #001f3f;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

/* Secondary Button */
.secondary-btn {
  background: linear-gradient(to right, #ff0000 0%, #ff0000 50%, #ffffff 50%, #ffffff 100%);
  background-size: 200% 100%;
  background-position: left bottom;
  color: #fff;
  transition: all 0.4s ease;
}

.secondary-btn:hover {
  background-position: right bottom;
  color: #ff0000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}


/* Image side */
.about-image {
  flex: 1;
  position: relative; /* for absolute positioning */
  text-align: right;
  transform: translateX(150px); /* scroll animation initial */
  opacity: 0;
  transition: all 1s ease-out;
}

.about-image img {
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* First image (main) */
.about-image .img-main {
  position: relative;
  z-index: 2;
}

/* Second image (slightly offset) */
 .img-secondary {
  position: absolute;
  top: 40px;   /* move down */
  right: 280px; /* move left */
  z-index: 1;
  opacity: 0.9;
}

/* Hover effect */
.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* When visible (scroll effect) */
.about-image.show {
  transform: translateX(0);
  opacity: 1;
}

/* Services Section */
.services-section {
  padding: 100px 10% 80px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: center;
}

.services-section h1 {
  color: #001f3f;
  margin-bottom: 15px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  text-align: left;
}

/* Underline aligned to left */
.services-section h1::after {
  content: "";
  display: block;
  width: 50%;              /* underline full width */
  height: 4px;
  background: #ff0000;
  border-radius: 2px;
  transform: scaleX(0);      /* start hidden */
  transform-origin: left;    /* start animating from left */
  transition: transform 0.4s ease;
}

.services-section h1:hover::after {
  transform: scaleX(1);      /* expand underline */
}

/* Services section animation */
.services-section h1,
.services-section .service-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

/* Show state */
.services-section.show h1,
.services-section.show .service-card {
  opacity: 1;
  transform: translateY(0);
}

/* Cards Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; /* adjust gap */
  justify-content: center; /* center last row */
}

.service-card {
  background: #f4f7fc; /* default light background */
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* add background-color transition */
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  background-color: #001f3f; /* blue hover background */
}

/* Change heading and paragraph color on hover for better contrast */
.service-card:hover p {
  color: #fff;
}

.service-card img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }
.service-card:nth-child(5) { animation-delay: 1s; }
.service-card:nth-child(6) { animation-delay: 1.2s; }
.service-card:nth-child(7) { animation-delay: 1.4s; }
.service-card:nth-child(8) { animation-delay: 1.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card img {
  width: auto; /* adjust to maintain aspect ratio */
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin: 0 auto 15px; /* center horizontally and add bottom margin */
  border-radius: 10px;
  object-fit: contain; /* maintain full image */
  transition: transform 0.3s ease;
}

.service-card h2 {
  color: #ff0000;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Commitment Box */
.commitment {
  margin-top: 60px;
  padding: 25px;
  background: #f4f7fc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.commitment:hover {
  transform: scale(1.02);
}
.commitment h2 {
  color: #001f3f;
  margin-bottom: 15px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  text-align: left;
}

.commitment h2::after {
  content: "";
  display: block;
  width: 50%;              /* underline full width */
  height: 4px;
  background: #ff0000;
  border-radius: 2px;
  transform: scaleX(0);      /* start hidden */
  transform-origin: left;    /* start animating from left */
  transition: transform 0.4s ease;
}

.commitment h2:hover::after {
  transform: scaleX(1);
}

/* ==============================
   ENQUIRY FORM SECTION
   ============================== */

  .enquiry-section {
    background-color: #001f3f; /* match contact-section style */
    padding: 60px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 120px 0;
  }

  .contact-box.enquiry-form {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.3s ease;
    opacity: 0;
    transform: translateY(50px); /* start slightly below */
  }

  .contact-box.enquiry-form.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* ==============================
   ENQUIRY FORM HEADING - CENTERED, BLUE, UNDERLINE
   ============================== */
.contact-box.enquiry-form h2 {
  color: #fff;          /* Blue text */
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;       /* Center the heading text */
  position: relative;
  transition: all 0.4s ease;
}

/* Animated underline */
.contact-box.enquiry-form h2::after {
  content: "";
  display: block;
  width: 55%;               /* underline width */
  height: 4px;              /* thickness */
  background: #ff0000;      /* red underline */
  border-radius: 2px;
  transform: scaleX(0);     /* start hidden */
  transform-origin: left;   /* animate from left */
  margin: 5px auto 0;       /* center the underline under the heading */
  transition: transform 0.4s ease;
}

.contact-box.enquiry-form h2:hover::after {
  transform: scaleX(0.5);     /* expand underline on hover */
}

  .contact-box.enquiry-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-box.enquiry-form input,
  .contact-box.enquiry-form textarea,
  .contact-box.enquiry-form select {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
  }

  .contact-box.enquiry-form input::placeholder,
  .contact-box.enquiry-form textarea::placeholder,
  .contact-box.enquiry-form select::placeholder {
    color: #f1f1f1;
  }

  .contact-box.enquiry-form input:focus,
  .contact-box.enquiry-form textarea:focus,
  .contact-box.enquiry-form select:focus {
    background-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 8px #ff0000;
  }

  .contact-box.enquiry-form select option {
    background-color: #001f3f; /* blue background */
    color: #fff;               /* white text */
    border: 10px;
  }

  .contact-box.enquiry-form select option:hover {
    background-color: #fff;    /* white background on hover */
    color: #001f3f;            /* blue text on hover */
  }

  .contact-box.enquiry-form button {
    background-color: #fff;
    background-position: right bottom;
    color: #001f3f;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .contact-box.enquiry-form button:hover {
    background: linear-gradient(to right, #ff0000 0%, #001f3f 50%, #fff 50%, #ffffff 100%);
    background-size: 200% 100%;
    background-position: left bottom;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-3px);
  }

  /* ==============================
    CONTACT SECTION
    ============================== */
  .contact-section {
    background: #001f3f;
    color: #fff;
    padding: 60px 10% 50px;
    text-align: center;
    border-radius: 25px;
    width: 90%;
    min-height: 500px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px); /* start slightly below */
    transition: all 1s ease-out;
  }

  .contact-section.show {
    opacity: 1;
    transform: translateY(0); /* end in place */
  }

  .contact-section h1 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    text-align: left;
  }

  .contact-section h1::after {
    content: "";
    display: block;
    width: 50%;              /* underline full width */
    height: 4px;
    background: #ff0000;
    border-radius: 2px;
    transform: scaleX(0);      /* start hidden */
    transform-origin: left;    /* start animating from left */
    transition: transform 0.4s ease;
  }

  .contact-section h1:hover::after {
    transform: scaleX(1);
  }

  .contact-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #f1f1f1;
  }

  .contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;             /* space between boxes */
    align-items: stretch;     /* <— makes all boxes stretch same height */
  }

  .contact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition-delay: 0s !important;
  }

  .contact-box.show {
    opacity: 1;
    transform: translateY(0);
  }

  .contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  }

  .contact-box h2 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #ff0000;
  }

  .contact-box p {
    margin: 6px 0;
    font-size: 1rem;
    color: #fff;
  }

  .contact-section a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }

  .contact-box a i {
    color: #fff; /* icon white */
    transition: color 0.3s ease;
  }

  .contact-box a:hover,
  .contact-box a:hover i {
    color: #ff0000; /* red on hover */
  }

  .social-links a {
    color: #fff;
    font-size: 28px;  /* bigger size */
    margin: 0 12px;
    transition: all 0.3s;
  }

  .social-links a:hover {
    color: #ff0000;
  }

  /* ==============================
   FOOTER
   ============================== */
  footer {
    background-color: #001f3f;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 30px;
  }

  /* ==============================
   RESPONSIVE DESIGN
   ============================== */

/* ==============================
   RESPONSIVE
   ============================== */
/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 992px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-links.show {
    right: 0; /* slide in */
  }

  .nav-links a {
    font-size: 25px;
    padding: 10px;
    display: block;
    color: #fff;
  }
  .nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
  }

  .nav-links.show li {
    opacity: 1;
    transform: translateX(0);
  }

  .menu-toggle {
    font-size: 40px;
  }

  /* Hamburger to X */
  .menu-toggle.open::before {
    content: "✕"; /* X */
    font-size: 40px;
    font-weight: bold;
    border: 2px solid #fff;
    background-color: #fff;
    padding: 0px;
    border-radius: 7px;
    border-width: 2px;
    color: #001f3f;
    display: flex; /* ✅ always flex */
    transition: right 0.4s ease;
  }

  .menu-toggle.open::before:hover {
    color: #001f3f;
  }

  /* hide ☰ when open */
  .menu-toggle.open #bar-icon {
    display: none;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .logo img {
    max-height: 100px;
  }

  .nav-container {
    gap: 5px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: -150%;
    width: 100%;
    background-color: #001f3f;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: bottom 0.4s ease;
    z-index: 9999;
    gap: 20px;
    padding-top: 30px;
  }

  .nav-links.show {
    right: -15px;
  }

  .nav-links li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
  }

  .nav-links.show li {
    opacity: 1;
    transform: translateX(0);
  }

  /* HERO SECTION adjustments */
  .hero-section {
    flex-direction: column;
    padding: 120px 5% 40px; /* reduce padding top/bottom */
    text-align: center;
  }

  .hero-content {
    opacity: 1;
    animation: none;
  }

  .hero-content span.since {
    font-size: 18px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    margin: 0 auto 20px;
    font-size: 1.1rem;
    max-width: 100%;
  }

  .hero-slider {
    width: 100%;
    height: 200px; /* 👈 reduce slider height */
  }

  .slider-wrapper {
    height: 550px; /* match slider height */
  }

  /* If you have cards with images below, force them smaller */
  .card img, 
  .gallery img {  /* use your real class here */
    height: auto;
    max-height: 180px; /* reduce image height */
    object-fit: cover;
  }

  .hero-links {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
  }

  .hero-links a {
    writing-mode: horizontal-tb;
    transform: none;
    font-size:30px;
  }

  .about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10% 80px;
    gap: 40px;
    background: #fff;
  }

  .about-image .img-main {
    left: 150px;
    right: 0;
  }

  .about-image .img-secondary {
    right: 150px;
  }
}

/* Tablet view (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 50vh;
    margin: 90px 0 0;
    padding: 0 6% 40px;
    gap: 30px;
  }

  .about-section {
    flex-direction: column;
  }
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {

  nav h1 {
    font-size: 22px;
  }

  .menu-toggle {
    display: block; /* show hamburger in tablet/mobile */
    font-size: 45px;
  }

  .menu-toggle.open::before {
    font-size: 45px;
  }

  .hero {
    padding: 15px 10px;
  }

  /* When menu is open */
  .nav-links.show {
    right: 0; /* slide in */
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    font-size: 25px;
    padding: 10px;
    display: block;
    color: #fff;
  }
  .nav-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
  }

  .nav-links.show li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Hamburger to X */
  .menu-toggle.open::before {
    content: "✕"; /* X */
    font-size: 50px;
    font-weight: bold;
    border: 2px solid #fff;
    background-color: #fff;
    padding: 0px;
    border-radius: 7px;
    border-width: 2px;
    color: #001f3f;
    display: flex; /* ✅ always flex */
    transition: right 0.4s ease;
  }

  .menu-toggle.open::before:hover {
    color: #001f3f;
  }

  /* hide ☰ when open */
  .menu-toggle.open #bar-icon {
    display: none;
  }
  .hero-section h2 {
    font-size: 28px;
  }

  .hero-section pre {
    font-size: 15px;
    padding: 20px;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }
  .logo img {
    max-height: 100px;
  }

  .nav-container {
    gap: 5px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: -150%;
    width: 100%;
    height: 100vh;
    background-color: #001f3f;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: bottom 0.4s ease;
    z-index: 9999;
    gap: 20px;
  }

  .nav-links.show {
    right: -15px;
  }

  .nav-links li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
  }

  .nav-links.show li {
    opacity: 1;
    transform: translateX(0);
  }

  .hero-section {
    padding: 50px 20px 40px;
  }
  .hero-section h2 { 
      font-size: 28px;
  }
  .hero-section pre {
      font-size: 15px; padding: 20px;
  }

  /* About Section */
  .about-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding-bottom: 5rem;
    gap: 50px;
  }
  
  .about-text,
  .about-image { 
      width: 100%; 
  }
  
  .about-image { 
      text-align: center;
  }
  
  .about-image .img-main {
    position: absolute;
    top: -30px;
    right: 0;
    left: 340px;
    max-width: 45%;
    margin-bottom: 15px;
  }
  
  .about-image .img-secondary {
    position: relative;
    top: 50px;
    right: 330px;
    left: -150px;
    max-width: 45%;
    margin-bottom: 15px;
  }
  .about-image.show {
      transform: none !important;
      opacity: 1 !important;
  }
  .about-text p {
      font-size: 1rem;
  }

  .cta-btn {
      padding: 10px 14px;
      margin-bottom: 10px;
  }

  /* Services Section */
  .services-section h1 {
      font-size: 1.8rem;
  }
  .service-card h2 {
      font-size: 1.1rem;
  }
  .service-card p {
      font-size: 0.95rem;
  }

  /* Commitment */
  .commitment h2 {
      font-size: 1.8rem;
  }

  .contact-box.enquiry-form {
    padding: 25px;
  }
  .contact-box.enquiry-form h2 {
    font-size: 1.8rem;
  }

  .contact-box.enquiry-form h2::after {
    width: 42%;
  }

  /* Contact Section */
  .contact-section {
      flex-direction: column;
      text-align: center;
      gap: 30px;
  }

  .contact-section h1 {
    font-size: 1.8rem;
  }
  .contact-info h2 {
      font-size: 1.8rem;
  }
  .contact-form input,
  .contact-form textarea {
      font-size: 15px;
  }
  
  /* Destinations Section */
  .destination-text h1 {
      font-size: 1.8rem;
      text-align: center;
  }
  .country-name {
      font-size: 16px;
  }
}

/* ------------------------------
   Mobile view (max-width: 480px)
   ------------------------------ */
@media (max-width: 480px) {
  /* Navbar */
  .brand {
    gap: 5px;
  }
  .brand h1 {
      font-size: 14px;
  }

  .nav-container {
      flex-direction: row;
      padding:10px;
  }

  .nav-links {
    gap: 5px;
  }

  .nav-links a {
      border-radius: 0;
      font-size: 18px;
  }

  .logo img {
    max-height: 80px;
  }

  .menu-toggle {
    font-size: 30px;
  }

  .menu-toggle.open::before {
    font-size: 30px;
  }
  
  /* Hero Section */
  .hero-section {
      padding: 10px 5% 40px;
      min-height: 100vh;
  }
  .hero-section h2 {
      font-size: 22px;
      line-height: 1.3;
  }
  .hero-section pre {
      font-size: 14px;
      padding: 15px;
      border-radius: 12px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
      font-size: 1rem;
      margin: 0 auto 15px;
  }

  .slider-wrapper {
    height: 400px;
  }

  .hero-links a {
    font-size: 25px;
  }

  /* About Section */
  .about-section {
      padding: 20px 10% 50px;
      gap: 45px;
      text-align: center;
  }
  .about-text h1 {
      font-size: 1.8rem;
  }
  .about-text p {
      font-size: 1rem;
      text-align: justify;
  }
  .about-image {
      transform: none !important;
      opacity: 1 !important;
      right: 10px;
  }
  .about-image.show {
      transform: none !important;
      opacity: 1 !important;
  }

  .about-image .img-main {
    right: 0;
    left: 180px;
  }

  /*Enquiry Form Section */
  .contact-box.enquiry-form h2::after {
    width: 60%;
  }

  /* Services Section */
  .services-section {
      padding: 100px 20px 20px 20px;
  }
  .services-section h1 {
      font-size: 1.8rem;
  }

  .services-section p {
    text-align: center;
  }
  .services-section h1::after,
  .commitment h2::after {
      height: 3px;
  }

  /* Commitment */
  .commitment h2 {
      font-size: 1.8rem;
  }

  .commitment p{
    text-align: justify;
  }
  
  /* Contact Section */
  .contact-section {
      padding: 50px 20px;
      gap: 25px;
      width: 100%;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      margin-top: 80px;
  }
  .contact-info h2 {
      font-size: 1.8rem;
  }
  .contact-form input,
  .contact-form textarea {
      font-size: 14px; padding: 10px;
  }
  .contact-form button {
      font-size: 14px;
      padding: 10px;
  }

  /* Destinations Section */
  .destinations-section {
      gap: 10px;
      padding: 20px 10% 0px;
  }
  .destination-text {
      padding: 10px;
  }
  .destination-text h1 {
      font-size: 1.8rem
  }
  .country-name {
      font-size: 14px;
  }

  /* Footer */
  footer {
      font-size: 14px;
      padding: 25px;
  }

  /* About/Services/Commitment general padding */
  .about-image img,
  .service-card,
  .commitment {
      max-width: 100%;
  }
}

@media only screen and (max-width: 360px) {

  .menu-toggle {
    font-size: 25px;
  }

  .menu-toggle.open::before {
    font-size: 25px;
  }

  /*Enquiry Form Section */
  .contact-box.enquiry-form h2::after {
    width: 70%;
  }

  .about-image .img-secondary {
    right: 70px;
  }

}

@media only screen and (max-width: 412px) {

  /*Enquiry Form Section */
  .contact-box.enquiry-form h2::after {
    width: 80%;
  }

  .about-image .img-secondary {
    right: 50px;
    left: -80px;
  }
}