:root {
  --stat-blue: #2563eb;
  --stat-green: #16a34a;
  --stat-purple: #7c3aed;
  --stat-orange: #ea580c;
}

/* BODY */
body {
  margin: 0;
  font-family: Arial;
  background: #f5f5f5;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background:#030000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo{
display: flex;
align-items: center;
gap: 20px;
}
.logo img{
  height: 120px;
}

@media (max-width: 768px){
  .logo img{
    height: 85px;
  }
}


.logo-text{
color:white;
font-size:22px;
font-weight:700;
line-height:1.2;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* NAV BUTTON */
.enquiry-btn {
  padding: 10px 20px;
  background: #ffc107;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: #e0a800;
  transform: scale(1.05);
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -2;
    filter: brightness(0.5) contrast(1.2);
}

.hero-content {
    z-index: 5;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
}

.hero-services-line {
    font-size: 14px;   /* reduce text size */
    font-weight: 400;  /* optional: make it lighter */
    opacity: 0.9;      /* optional: softer look */
}

/* Welcome Section */
.welcome-section {
    background: #f4f7f9;
    padding: 70px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.welcome-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color:#1755d8f1;
}

.welcome-sub {
    font-size: 1.2rem;
    width: 80%;
    margin: auto;
    line-height: 1.7;
    color: #444;
}

.highlight {
    color: #010403;
    font-weight: 600;
}

.contact-info {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.phone {
    color: #0aa06e;
    font-weight: 700;
}

.cars-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cars-row img {
    width: 180px;
    height: auto;
    object-fit: contain;
}
.section-divider {
      width: 100%;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .section-divider::before {
      content: '';
      width: 60%;
      height: 2px;
      background: linear-gradient(
        to right,
        transparent,
        rgba(255,183,3,0.6),
        transparent
      );
      box-shadow: 0 0 18px rgba(255,183,3,0.6);
    }

    @media (max-width: 600px) {
      .section-divider::before { width: 85%; }
    }
 /* STATS */
    .stats {
      padding: 60px 8%;
      background: linear-gradient(180deg, #f3f3f3, #ededed);
    }

    .stats-grid {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

   .stat-box {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.95),
    rgba(245,245,245,0.9)
  );
  padding: 34px 24px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* subtle colored strip */
.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: var(--accent);
}

/* hover effect */
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}


    .stat-box:hover {
      box-shadow:
        0 0 0 1px rgba(255,183,3,0.3),
        0 0 28px rgba(255,183,3,0.4);
      transform: translateY(-6px);
    }

   .stat-box h4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 15px;
  color: #4b5563;
  font-weight: 500;
}

    
.stat-box:nth-child(1) {
  --accent: var(--stat-blue);
}

.stat-box:nth-child(2) {
  --accent: var(--stat-green);
}

.stat-box:nth-child(3) {
  --accent: var(--stat-purple);
}

.stat-box:nth-child(4) {
  --accent: var(--stat-orange);
}


    @media (max-width: 900px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 500px) {
      .stats-grid { grid-template-columns: 1fr; }
    }


/* ============================
   OUR SERVICES + MERGED CARD STYLE
============================= */
.services-section {
    padding: 70px 0;
    background: #ffffff;
}

.services-section h2 {
    color: #0aa06e;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.service-text {
    width: 85%;
    margin: auto;
    color: #444;
    margin-bottom: 40px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

/* PREMIUM CARD STYLE */
.service-card {
  padding: 40px 30px;
  border-radius: 26px;
  text-align: center;
  cursor: pointer;
  transition: all 0.45s ease;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.4);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.6),
    rgba(245,245,245,0.4)
  );
}

/* Glow Colors */
.service-card.local { --glow: #ff7b7b; }
.service-card.outstation { --glow: #ffb84d; }
.service-card.airport { --glow: #47c9ff; }
.service-card.corporate { --glow: #8a6bff; }

/* Glow Border */
.service-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--glow), transparent);
  z-index: -1;
  opacity: 0.8;
}

/* Hover FX */
.service-card:hover {
  transform: translateY(-12px) scale(1.04) rotate3d(1,1,0,6deg);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

/* Icons */
.service-card .icon {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.service-card:hover .icon {
  transform: translateY(-10px);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

/* Titles */
.service-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

/* Text */
.service-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

/* ============================
   OUR PACKAGES (Styled Like Screenshot)
============================= */

/* Section */
.packages-section {
    background: #fff;
    padding: 70px 0;
    position: relative;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Slider container */
.package-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
}

.package-slider::-webkit-scrollbar {
    display: none;
}

/* Card styling */
.slide {
    min-width: 330px;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}

/* Image in card */
.slide img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Title */
.slide h3 {
    padding: 18px 0;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

/* Slider arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 22px;
    opacity: 0.7;
    transition: 0.3s;
}

.slider-btn:hover {
    opacity: 1;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* ============================
   CAB SERVICES SECTION – WHITE BG
============================= */

.cab-services {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cab-card {
  text-align: center;
  color: #100202;
  font-family: "Poppins", sans-serif;
}

.cab-card img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #1e2b34;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.cab-card h2 {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 600;
}

.price {
  margin-top: 10px;
  font-size: 20px;
  color: #0b0000;
}

.price span {
  font-size: 24px;
  font-weight: bold;
  color: #070101;
}

.book-btn {
  margin-top: 20px;
  background-color: #34d058;
  color: #000;
  border: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
  font-weight: 600;
}

.book-btn:hover {
  background-color: #2db84d;
}


/* ============================
   WHY CHOOSE US (ENHANCED)
============================= */
.choose-section {
  padding: 80px 0;
  background: #f6f9fb;
}

.choose-section h2 {
  font-size: 2.3rem;
  margin-bottom: 50px;
  text-align: center;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.choose-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
}

.choose-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* ICON STYLE */
.choose-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111827;
}

.choose-box p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}
/* ============================
   POPUP ENQUIRY FORM
============================= */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.popup-overlay.active{
  display:flex;
}

.popup-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  width:90%;
  max-width:400px;
  position:relative;
}

.close-btn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:28px;
  cursor:pointer;
}
.popup-box h2{
  margin-bottom:20px;
  font-size:24px;
  color:#333;
}

/* FORM */
.popup-box input,
.popup-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #1eb255;
}

 /* ==========================
   FOOTER – CLEAN & RESPONSIVE
========================== */

        .footer {
    background: radial-gradient(circle at top, #0b1c26, #02090e);
    color: #dbe7f0;
    padding: 60px 20px 0;
    margin-top: 50px; 
}

        /* GRID */
        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1.6fr 1fr;
            gap: 32px;
        }

        /* COMMON COLUMN */
        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-col h3,
        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 14px;
            color: #facc15;
        }

        /* BRAND */
        .brand-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .footer-logo {
            width: 70px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.6;
            max-width: 300px;
        }

        /* LINKS */
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: #dbe7f0;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
            padding-left: 4px;
        }

        /* CONTACT */
        .footer-contact p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        /* FOLLOW */
        .social-icons {
            display: flex;
            gap: 14px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: #ffffff;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: 0.3s ease;
        }

        .social-icons a:hover {
            background: #facc15;
            transform: translateY(-3px);
        }

        /* COPYRIGHT */
        .footer-copy {
            margin-top: 40px;
            padding: 14px;
            text-align: center;
            background: #082f49;
            font-size: 13px;
            color: #e5e7eb;
        }

        /* ==========================
   TABLET VIEW
========================== */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand p {
                max-width: 100%;
            }
        }

        /* ==========================
   MOBILE VIEW
========================== */
        @media (max-width: 600px) {
            .footer {
                padding-top: 40px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .brand-header {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-col ul li a:hover {
                padding-left: 0;
            }
        }


        /* HAMBURGER ICON */
        .menu-toggle {
            display: none;
            font-size: 26px;
            cursor: pointer;
            color: white;
        }

/* Mobile Navbar */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0a3d62;
    margin-top: 10px;
    padding: 10px 0;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  .mobile-enquiry button,
  .enquiry-btn {
    width: 90%;
  }
}
/* ==========================
   SCROLLING TESTIMONIAL
========================== */

.scroll-testimonial-section {
  padding: 80px 0;
  background: #f0f4f8;
  color: #000;
  text-align: center;
  overflow: hidden;
}

.scroll-testimonial-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 10s linear infinite;
}

.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}

.scroll-card {
  min-width: 300px;
  max-width: 300px;
  margin: 0 20px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.scroll-card p {
  font-size: 16px;
  line-height: 1.6;
}

.scroll-card .stars {
  color: #facc15;
  margin: 15px 0;
  font-size: 20px;
}

.scroll-card h4 {
  margin-top: 10px;
  font-weight: 600;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================
   GOOGLE REVIEW BUTTON
========================== */
.google-review-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 12px 30px;
  background: #facc15;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.google-review-btn:hover {
  background: #eab308;
  transform: translateY(-3px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-card {
  min-width: 300px;
  max-width: 300px;
  margin: 0 20px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff8e1, #f50101);
  color: #111;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  /* animation: fadeIn 0.8s ease forwards; */
}
 /* ===============================
   TESTIMONIAL UPDATED LAYOUT
================================= */

.scroll-testimonial-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scroll-card {
  flex: 0 0 260px;   /* reduced width */
  background: #fff;
  padding: 16px;     /* slightly less padding */
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  text-align: left;
  /*min-height: 190px;   reduced height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top Row */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.customer-name {
  font-size: 14px;
  font-weight: 600;
}

.stars {
  margin-left: auto;
  color: #f4b400;
  font-size: 14px;
}

/* Description */
.review-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.scroll-card.expanded .review-text {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.read-more-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #ff0000;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  text-align: left;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* =========================
   FORCE SMALL TESTIMONIAL CARDS (MOBILE)
========================= */
@media (max-width: 768px) {

  .scroll-wrapper {
    overflow: visible;
  }

  .scroll-track {
    flex-direction: column;
    animation: none;
    width: 100%;
    gap: 10px;
  }

  .scroll-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 12px;
  }

  .avatar-circle {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .customer-name {
    font-size: 12.5px;
  }

  .stars {
    font-size: 11px;
  }

  .review-text {
    -webkit-line-clamp: 2;
  }

  .google-review-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
      /* ==========================
   FOOTER – CLEAN & RESPONSIVE
========================== */

        .footer {
    background: radial-gradient(circle at top, #0b1c26, #02090e);
    color: #dbe7f0;
    padding: 60px 20px 0;
    margin-top: 50px; 
}

        /* GRID */
        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1.6fr 1fr;
            gap: 32px;
        }

        /* COMMON COLUMN */
        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-col h3,
        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 14px;
            color: #facc15;
        }

        /* BRAND */
        .brand-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }

        .footer-logo {
            width: 70px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.6;
            max-width: 300px;
        }

        /* LINKS */
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: #dbe7f0;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
            padding-left: 4px;
        }

        /* CONTACT */
        .footer-contact p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        /* FOLLOW */
        .social-icons {
            display: flex;
            gap: 14px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: #ffffff;
            color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: 0.3s ease;
        }

        .social-icons a:hover {
            background: #facc15;
            transform: translateY(-3px);
        }

        /* COPYRIGHT */
        .footer-copy {
            margin-top: 40px;
            padding: 14px;
            text-align: center;
            background: #082f49;
            font-size: 13px;
            color: #e5e7eb;
        }

        /* ==========================
   TABLET VIEW
========================== */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand p {
                max-width: 100%;
            }
        }

        /* ==========================
   MOBILE VIEW
========================== */
        @media (max-width: 600px) {
            .footer {
                padding-top: 40px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .brand-header {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-col ul li a:hover {
                padding-left: 0;
            }
        }


        /* HAMBURGER ICON */
        .menu-toggle {
            display: none;
            font-size: 26px;
            cursor: pointer;
            color: white;
        }

        /* =========================
   CLEAN MOBILE NAV FIX
========================= */

        .menu-toggle {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #fff;
        }

        /* Desktop nav */
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        /* Mobile */
        @media (max-width: 768px) {

            .menu-toggle {
                display: block;
            }

            nav ul {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #0a3d62;
                flex-direction: column;
                text-align: center;
                padding: 15px 0;
                display: none;
                /* hidden by default */
            }

            nav ul.show {
                display: flex;
                /* show when toggled */
            }

            nav ul li {
                padding: 12px 0;
            }
        }

        /* NAVBAR */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
            background: #030000;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }


        .logo {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo img {
            height: 120px;
        }

        @media (max-width: 768px) {
            .logo img {
                height: 85px;
            }
        }


        .logo-text {
            color: white;
            font-size: 22px;
            font-weight: 700;
            line-height: 1.2;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        nav a:hover,
        nav a.active {
            text-decoration: underline;
        }

        /* NAV BUTTON */
        .enquiry-btn {
            padding: 10px 20px;
            background: #ffc107;
            color: black;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .enquiry-btn:hover {
            background: #e0a800;
            transform: scale(1.05);
        }

        /* ============================
   POPUP ENQUIRY FORM
============================= */
        .popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup-box {
            background: #fff;
            padding: 30px;
            border-radius: 16px;
            width: 90%;
            max-width: 400px;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
        }

        .popup-box h2 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        /* FORM */
        .popup-box input,
        .popup-box textarea {
            width: 100%;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #25d366;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 17px;
            cursor: pointer;
        }

        .submit-btn:hover {
            background: #1eb255;
        }

        /* ===============================
   FINAL NAVBAR FIX (OVERRIDE)
   DO NOT REMOVE ANYTHING ABOVE
================================ */

        /* Keep nav stable */
        nav {
            position: relative !important;
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
        }

        /* Fix hamburger alignment */
        .menu-toggle {
            margin-left: auto;
            z-index: 2000;
        }

        /* Fix UL positioning */
        @media (max-width: 768px) {

            nav ul {
                position: absolute !important;
                top: 100% !important;
                left: 0 !important;
                right: 0 !important;
                width: 100% !important;
                background: #0a3d62 !important;
                flex-direction: column !important;
                display: none;
                padding: 20px 0 !important;
                text-align: center;
                z-index: 1500;
            }

            nav ul.show {
                display: flex !important;
            }

            nav ul li {
                padding: 12px 0;
            }

            body.menu-open {
                overflow: hidden;
            }
        }

        /* ==================================
   FINAL OVERRIDE NAVBAR (CLEAN)
================================== */

        nav.navbar {
            background: #000;
            height: 100px;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            padding: 0 20px !important;
            position: sticky;
            top: 0;
            z-index: 9999;
        }

        /* LOGO LEFT */
        nav.navbar .logo {
            position: relative !important;
            transform: none !important;
            left: auto !important;
            right: auto !important;
        }

        nav.navbar .logo img {
            height: 100px;
            display: block;
        }

        /* Desktop menu */
        nav.navbar ul {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav.navbar ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        /* Hamburger */
        nav.navbar .menu-toggle {
            display: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
        }

        /* ===============================
   MOBILE NAV ALIGNMENT FIX ONLY
=============================== */
        @media (max-width: 768px) {

            nav.navbar {
                display: flex !important;
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
            }

            /* Keep logo left */
            nav.navbar .logo {
                order: 1;
            }

            /* Keep menu icon right */
            nav.navbar .menu-toggle {
                order: 2;
                margin-left: 0 !important;
                display: block !important;
                /* <-- ADDED THIS LINE */
            }

            /* Hide desktop menu until toggle */
            nav.navbar ul {
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                width: 100%;
                background: #0a3d62;
                flex-direction: column;
                text-align: center;
                display: none !important;
                /* force hidden */
            }

            /* SHOW WHEN TOGGLED */
            nav.navbar ul.show {
                display: flex !important;
                /* force visible */
            }
        }
        /* ===============================
   HERO SECTION FIX (REDUCED HEIGHT)
=================================*/

.hero {
  position: relative;
  height: 75vh;   /* reduced from full screen */
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 36px;
  max-width: 900px;
  margin: auto;
}

@media (max-width: 768px) {
  .hero {
    height: 65vh;
    min-height: 450px;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}
