   *{box-sizing:border-box;margin:0;padding:0}
    html,body{height:100%}
    body{font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial; color:#0b2740; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;}
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}

    /* Smooth scrolling */
    html{scroll-behavior:smooth}

    /* --- Global section background setup --- */
    .section {
      position: relative;
      min-height:100vh;                 /* full viewport height */
      width:100%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      display:flex;
      align-items:center;
      padding:60px 20px;
      isolation:isolate;
      overflow:visible;
    }

  body, h1, h2, h3, h4, h5, h6, a, p {
    font-family: 'Montserrat', sans-serif;
}

/* --- NAV --- */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 12px;

    /* Background color blended with gradient */
    background: linear-gradient(to right, #3B3B3B, #4A4A4A);

    position: sticky;
    top: 0;
    z-index: 70;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 7px rgba(2, 6, 23, 0.3);
}

.nav .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav .logo img {
    height: 100px;
    width: auto;
    border-radius: 6px;
    border: 2px solid #F5D042; /* gold outline */
}

/* Desktop Menu */
.nav ul {
    display: flex;
    gap: 16px;
    list-style: none;
    align-items: center;
}

/* Link colors updated */
.nav a.nav-link {
    padding: 8px 8px;
    border-radius: 6px;
    font-weight: 600;
    color:#F5D042;  /* Tours & Travels gold */
    transition: 0.3s;
}

.nav a.nav-link:hover {
    color: #F5D042; /* bright gold hover */
    background: rgba(255, 255, 255, 0.08);
}

/* Hamburger */
.hamburger {
    display: none;
    color: #D7A848; /* gold icon */
    font-size: 22px;
    cursor: pointer;
}

/* Mobile Menu */
@media(max-width:900px){
    .nav ul {
        display: none;
        position: absolute;
        right: 14px;
        top: 66px;
        background: #3B3B3B;
        padding: 14px;
        border-radius: 8px;
        flex-direction: column;
        box-shadow: 0 6px 20px rgba(2,6,23,0.4);
    }

    .hamburger {
        display: block;
    }

    .nav a.nav-link {
        color: #F5D042; /* brighter gold for mobile */
    }
}


/* NAV Arrows (if needed) */
.navbar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, #2D2D2D, #3A3A3A, #444444);
    color: #F5D042; /* gold arrows */
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    opacity: 0.7;
    transition: 0.3s;
}

.navbar:hover {
    opacity: 1;
}

.prev { left: 10px; }
.next { right: 10px; }

 

/* =============================
   HERO SECTION – DESKTOP DEFAULT
==============================*/
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-attachment: fixed;
}

/* CAROUSEL */
.hero-carousel {
    position: relative;
    height: 100%;
}

.hero-carousel .slides {
    height: 100%;
    background-attachment: fixed;
}

.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: none;
    background-attachment: fixed;
}

.hero-img.active {
    display: block;
}

.hero-left {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}

  .blur-wrapper {
  overflow: visible !important;
}

.blur-box {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 50px 52px;
  margin-top: 70px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);

  margin-top: 30px;
}


.hero-carousel {
  position: relative;
  z-index: 1;
}

.hero-mini-img {
  position: absolute;
  top: -95px;
  left: -85px;
  z-index: 10;
}


.hero-mini-img img {
  width: 220px;        /* BIG & CLEAR */
  height: auto;
  border-radius: 18px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.4);
}



.blur-wrapper { position: relative; }
.hero-left { opacity: 1; visibility: visible; }


@media (max-width: 992px) {
  .hero-mini-img img {
    width: 90px;
  }

  .hero-mini-img {
    top: -45px;
    left: -25px;
  }
}

@media (max-width: 576px) {
  .hero-mini-img {
    top: -35px;
    left: 0;
  }

  .hero-mini-img img {
    width: 70px;
  }
}




.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* LEFT CONTENT */
.hero-inner {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 20;
    max-width: 520px;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hero-left p {
    margin-top: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* BUTTONS */
.quick-buttons {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-buttons .btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
}

/* =============================
   MOBILE RESPONSIVE FIXES
==============================*/
@media (max-width: 768px) {

    .hero-section {
        height: auto;
        padding-bottom: 40px;
    }

    .hero-img {
        height: 75vh;
        z-index: 0;
    }

    /* HERO TEXT CENTERED */
    .hero-inner {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 14px;
        padding: 0 10px;
    }

    /* BUTTONS STACK */
    .quick-buttons {
        justify-content: center;
    }

    /* MOBILE — FIXED VERTICAL BOOK BUTTON */
    .open-booking-btn {
        top: 62%;
        bottom: 35%;
        right: 2;
        padding: 55px 50px;
        font-size: 34px;
        letter-spacing: 4px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
}

@media (max-width: 480px) {

    .hero-left h1 {
        font-size: 26px;
    }

    .hero-left p {
        font-size: 13px;
    }

    .open-booking-btn {
        bottom: 20%;
        font-size: 13px;
        padding: 12px 8px;
        transform: translateY(-50%) rotate(-90deg);
        font-size: 34px;
        letter-spacing: 2px;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
}

/* ---------------- MOBILE FIXES ---------------- */
@media (max-width: 768px) {

  /* HERO SECTION HEIGHT FIX */
  .hero-section {
      height: auto;
      padding-bottom: 120px; /* Space for bottom buttons */
  }

  /* TEXT CENTERING */
  .hero-left {
      text-align: center;
      padding: 20px;
  }

  .hero-left h1 {
      font-size: 32px;
      line-height: 38px;
  }

  .hero-left p {
      font-size: 14px;
      line-height: 20px;
      padding: 0 10px;
  }

  /* MOVE ACTION BUTTONS CENTERED */
  .quick-buttons {
      flex-direction: column;
      gap: 10px;
      width: 100%;
      align-items: center;
  }

  .quick-buttons .btn {
      width: 90%;
      font-size: 14px;
      padding: 12px 0;
  }

  /* SAFE BOX ADJUST */
  .small-box {
      width: 90%;
      margin: 10px auto;
      padding: 12px;
  }

  /* CAROUSEL CONTROLS */
  .carousel-btn {
      top: 55%;
      width: 38px;
      height: 38px;
      font-size: 20px;
  }

  /* ---------------- BOOK A CAB BUTTON ---------------- */
@media (max-width: 768px) {
    .open-booking-btn {
        right: 0;                  /* keep same side */
        top: 50%;                  /* same vertical center */
        bottom: 100px;
        right: -25px;
        transform: translateY(-50%) rotate(-90deg);
        writing-mode: vertical-rl; /* same vertical text */
        font-size: 23px;
        padding: 10px 18px;
        letter-spacing: 2px;
    }
}

}
    /* --------------------------------------------------------- */

    /* --- Sections general --- */
    section{ padding:64px 20px; position:relative }
    .section h2{ color:black; margin-bottom:12px; text-align:left }
    .section p.lead{ color: rgba(53, 47, 47, 0.95); text-align:left; margin-bottom:20px; max-width:900px; margin-left:auto; margin-right:auto; font-weight: 700;}
    
    

    .section .two-col{ display:flex; gap:30px; align-items:center; margin-top:24px }
    .two-col .left{ flex:1 }
    .two-col .right{ flex:1 }


   .about-lr {
    padding: 60px 20px;
    background: url('images/about11.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT CONTENT */
.about-content {
    flex: 1;
    color: black;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: black;
}

.about-content p {
    line-height: 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: justify;
    color: black;
}

/* RIGHT IMAGE */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    border: 3px solid #ffd166;
}


/* ====================================
   RESPONSIVE — TABLET & MOBILE
==================================== */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        order: 2; /* content comes below image */
    }

    .about-image {
        order: 1; /* image comes first */
    }

    .about-content h2 {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .about-lr {
        padding: 40px 15px;
        background-attachment: scroll; /* fixes mobile BG jerk */
    }

    .about-content p {
        font-size: 15px;
        line-height: 26px;
    }

    .about-image img {
        max-width: 330px;
    }
}


/* DARK OVERLAY */
.parallax-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

/* HEADINGS */
.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
    position: relative;
}
.section-subtitle {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 40px;
    position: relative;
}

/* TESTIMONIAL CAROUSEL */
.testimonials-section {
    padding: 80px 20px;
    background: url('images/bk1.jpg') center/cover fixed;
    position: relative;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
   
}

.testimonials-section > * {
    position: relative;
    z-index: 5;
}

/* ----- Titles ----- */
.title {
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #eee;
    margin-bottom: 30px;
}

/* ----- HORIZONTAL SCROLL WRAPPER ----- */
.testimonials-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding-bottom: 15px;

    /* hide scrollbar for clean look */
    scrollbar-width: none;
}
.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

/* ----- TESTIMONIAL CARD ----- */
.testimonial-card {
    min-width: 320px;
    height: 260px;
    background: rgba(0,0,0,0.85);
    border: 2px solid gold;
    border-radius: 12px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
}

/* icon */
.testimonial-card .icon {
    font-size: 42px;
    text-align: center;
}

/* title */
.testimonial-card h3 {
    text-align: center;
    font-size: 20px;
    margin: 5px 0;
}

/* review text — overflow protected */
.testimonial-card p {
    font-size: 14px;
    text-align: center;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3; /* max lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* stars */
.testimonial-card .stars {
    color: gold;
    font-size: 18px;
    text-align: center;
}

.slider-container {
    position: relative;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: 1px solid gold;
    color: gold;
    font-size: 26px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.scroll-btn:hover {
    background: rgba(255, 215, 0, 0.25);
}

.scroll-btn.left {
    left: -10px;
}

.scroll-btn.right {
    right: -10px;
}

/* =========================
   BOTTOM CTA BUTTONS
========================= */

.testimonial-actions {
    position: relative;
    bottom: 5px;
    justify-content: center;
    display: flex;
    gap: 15px;
    z-index: 999;
    padding-bottom: 180px;
}

/* Base button */
.btn-review {
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    text-align: center;
    min-width: 180px;
}

/* Outline */
.btn-review.outline {
    color: black;
    border: 2px solid gold;
   
}

.btn-review.outline  {
 
    background: gold;
}


/* Solid */
.btn-review.solid {
    background: gold;
    color: #000;
    border: 2px solid gold;
}

.btn-review.solid:hover {
    background: #ffdd55;
}


@media (max-width: 600px) {
    .testimonial-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        bottom: 5px;
    }

    .btn-review {
        width: 100%;
        max-width: 280px;
    }
}





/* ===== MOBILE RESPONSIVE (max-width: 600px) ===== */
@media (max-width: 600px) {

    .testimonials-section {
        padding: 30px 15px;
        background: url('images/bk1.jpg') center/cover no-repeat; /* mobile devices ignore fixed */
        position: relative;
        padding-bottom: 120px; /* space for buttons */
        
    }

    .title {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* wrapper spacing */
    .testimonials-wrapper {
        gap: 12px;
        padding-bottom: 10px;
    }

    /* card size for mobile */
    .testimonial-card {
        min-width: 160px;
        height: auto; /* allow natural height */
        padding: 15px;
    }

    .testimonial-card .icon {
        font-size: 34px;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial-card p {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }

    .testimonial-card .stars {
        font-size: 16px;
    }

    /* scroll buttons – shrink + reposition */
    .scroll-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 48%;
    }

    .scroll-btn.left {
        left: -5px;
    }

    .scroll-btn.right {
        right: -5px;
    }
}

/* FOOTER SECTION */
.footer {
    background-image: url("images/ourmission.jpg"); /* your image path */
    background-size: cover;       /* image covers full footer */
    background-position: center;  /* center the image */
    background-repeat: no-repeat;
    color: #fff;                  /* text visible on image */
    padding: 50px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* LEFT SIDE */
.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 15px;
    margin-right: 20px;

     display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center (inside div) */
}

.footer-tagline {
    font-size: 16px;
    color: gold;
    margin-top: 10px;
    font-weight: bold;
    margin-right: 30px;
}

/* CENTER LINKS */
.footer-center {
    flex: 1;
    min-width: 200px;
}

.footer-center h3 {
    color: gold;
    margin-bottom: 15px;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 8px;
}

.footer-center ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-center ul li a:hover {
    color: gold;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-right h3 {
    color: gold;
    margin-bottom: 10px;
}

.footer-social a {
    color: white;
    margin-right: 15px;
    font-size: 22px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: gold;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: gold;
}

.footer-bottom .credit {
    color: gold;
    font-weight: bold;
    margin-left: 5px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .footer-social a {
        margin: 10px;
    }
}

    /* Fade-in animation */
    .reveal{ opacity:0; transform:translateY(30px); transition: all 700ms cubic-bezier(.2,.9,.3,1); }
    .reveal.visible{ opacity:1; transform:translateY(0); }

    /* Responsive tweaks */
    @media(max-width:1000px){
      .hero-inner{flex-direction:column-reverse; align-items:center}
      .hero-right{width:100%}
      .two-col{flex-direction:column}
      .footer-grid{grid-template-columns:1fr}
      .vehicle-carousel{flex-wrap:wrap}
      .section{padding:48px 16px}
      .hero-left{min-height:250px}
    }

    /* small utility */
    .center{text-align:center}
    .muted{color:rgba(255,255,255,0.85)}



    /* local  */

/* -----------------------------------
   PARALLAX HERO
-------------------------------------*/
.parallax-hero {
    height: 60vh;
    background-image: url("images/bk1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.parallax-hero1 {
    height: 60vh;
    background-image: url("images/bk1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.parallax-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* LIGHTER overlay */
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.parallax-content h1 {
    font-size: 48px;
    text-shadow: 0 0 10px black;
}


/* -----------------------------------
   PARALLAX SECTION (MAIN ISSUE FIXED)
-------------------------------------*/
.localtrip-section {
    padding: 60px 15px;
    background-image: url("images/bk1.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;       /* <<< FIXED */
    position: relative;
}



.localtrip-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.localtrip-section > * {
    position: relative;
    z-index: 2;
}


/* -----------------------------------
   SECTION TITLE
-------------------------------------*/
.title {
    text-align: center;
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 25px;
}


/* -----------------------------------
   CAR CARDS
-------------------------------------*/
.vertical-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* FIX: Removed full black background */
.car-card {
    display: flex;
    gap: 20px;
    background: rgba(0,0,0,0.55);   /* Lighter so background shows */
    border: 2px solid #ffd700;
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px);     /* GLASS EFFECT */
}

.car-card img {
    width: 280px;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
}


/* -----------------------------------
   TEXT
-------------------------------------*/
.car-content h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 8px;
}

.car-content ul {
    color: white;
    margin-bottom: 12px;
}


/* -----------------------------------
   BUTTONS
-------------------------------------*/
.book-btn {
    display: inline-block;
    background: #25D366;
    padding: 10px 16px;
    color: black;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}

.book-btn:hover {
    box-shadow: 0 0 12px #25D366;
}


/* -----------------------------------
   RESPONSIVE
-------------------------------------*/
@media(max-width: 768px) {
    .car-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .car-card img {
        width: 90%;
        height: auto;
    }
}

/* NAV BUTTONS */
.nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    background: gold;
    color: black;
    border: none;
    padding: 12px 17px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #ffea47;
}

.prev { left: -5px; }
.next { right: -5px; }

/* DOTS */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255,215,0,0.4);
    margin: 0 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots .active {
    background: gold;
    transform: scale(1.2);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .vehicle-card { flex: 0 0 50%; }
}

@media(max-width: 600px) {
    .vehicle-card { flex: 0 0 100%; }
}


.localtrip-section .title {
    text-align: center;
    color: gold;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.vertical-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.car-card {
    background: rgba(0, 0, 0, 0.45); /* reduces dark background */
    border: 2px solid gold;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(255,195,0,0.3);
    display: flex;
    gap: 20px;
    padding: 15px;
    transition: 0.3s;
    backdrop-filter: blur(4px);  /* smooth glass effect */
}

.car-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255,215,0,0.5);
}

.car-card img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid gold;
}

.car-content h3 {
    color: gold;
    margin-bottom: 10px;
}

.car-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.car-content ul li {
    color: white;
    margin-bottom: 6px;
}

.book-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: gold;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.book-btn:hover {
    background: #ffcf40;
}

/* Tour packages */
 body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#000;
    color:white;
}


/* HERO */
/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* HERO CAROUSEL */
.hero-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: none;
}

.hero-img.active {
    display: block;
    animation: fade 1s;
}

/* FADE */
@keyframes fade {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

/* ARROW BUTTONS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 35px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 10;
}

.carousel-btn.left { left: 20px; }
.carousel-btn.right { right: 20px; }

.carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

/* LEFT CONTENT ABOVE IMAGE */
.hero-inner {
    position: relative;
    z-index: 5;
}

/* VERTICAL BOOK NOW BUTTON */
.open-booking-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: #ffbb00;
    padding: 15px 25px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 8px 0 0 8px;
    z-index: 999;
}


.open-booking-btn:hover {
    background: #e09c00;
}


@media (max-width: 480px) {
    .open-booking-btn {
        font-size: 14px;
        padding: 8px 12px;
    }
}


/* BOOKING PANEL SLIDE OUT */
.booking-panel {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    transition: 0.4s ease;
    z-index: 9999;
}

.booking-panel.show {
    right: 0;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.booking-panel input,
.booking-panel select,
.booking-panel textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.booking-panel .submit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 13px;
    background: #ffb400;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}


/* MAIN WRAPPER */
.tour-wrapper{
    padding:60px 20px;
    display:flex;
    flex-direction:column;
    gap:60px;
}

/* TOUR BOX */
.tour-box{
    display:flex;
    align-items:center;
    gap:25px;
    background:#111;
    padding:25px;
    border-radius:14px;
    border:2px solid gold;
    box-shadow:0 0 20px rgba(255,215,0,0.25);
}
.tour-box.reverse{
    flex-direction:row-reverse;
}

/* LEFT IMAGE */
.tour-image img{
    width:380px;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    border:2px solid gold;
    cursor:pointer;
    transition:0.3s;
}
.tour-image img:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px gold;
}

/* CONTENT */
.tour-content h2{
    color:gold;
    font-size:28px;
    margin-bottom:8px;
}
.days{
    color:#ffda7b;
    font-weight:700;
}
.tour-content p{
    margin:12px 0;
    line-height:1.6;
}

/* BUTTONS */
.btn-row{
    margin-top:15px;
    display:flex;
    gap:15px;
}
.call-btn, .wa-btn{
    padding:12px 18px;
    font-weight:700;
    text-decoration:none;
    border-radius:8px;
}
.call-btn{
    background:#0b63d6;
    color:white;
}
.wa-btn{
    background:#25D366;
    color:white;
}

/* ZOOM IMAGE FULLSCREEN */
#zoomOverlay{
    position:fixed;
    inset:0;
    background:white;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}
#zoomedImg{
    width:70%;
    border:4px solid gold;
    border-radius:18px;
}

/* SECTION TITLE */
.features-section {

    background-image: url("images/footerbackgound.jpg"); /* your image path */
    background-size: cover;       /* image covers full footer */
    background-position: center;  /* center the image */
    background-repeat: no-repeat;
    color: #fff;                  /* text visible on image */
    padding: 50px 0;
    text-align: center;
    padding: 40px 20px;
    background-attachment: fixed;
}
   

.features-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    color: gold;
    font-family: 'Poppins', sans-serif;
}

/* GRID (Mobile First) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 35px;
    justify-items: center;
}

/* BOX STYLE */
.feature-box {
    text-align: center;
    transition: 0.3s;
    max-width: 260px;
}

.feature-box i {
    font-size: 40px;
    color: gold;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 17px;
    font-weight: 700;
    color: #F5D042;
}

.feature-box p {
    font-size: 14px;
    color: #F5D042;
    margin-top: 4px;
}

/* ---------- TABLET & DESKTOP ---------- */
@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
        gap: 55px;
    }

    .features-title {
        font-size: 28px;
    }
}


/* HOVER EFFECT */
.feature-box:hover {
    transform: translateY(-6px);
}


/* TOUR FRONT STYLE */
.tour-slider-section {
    position: relative;
    overflow: hidden;
    background: url('images/tourslide.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 60px 20px;
    color: #000;
}

/* SLIDER WRAPPER */
.tour-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 10px;
}

.tour-slider::-webkit-scrollbar {
    display: none;
}

/* TOUR CARD */
.tour-card {
    position: relative;
    width: 260px;       /* mobile friendly */
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

/* OVERLAY */
.tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: 0.4s ease-in-out;
}

.tour-card:hover img {
    filter: brightness(60%);
    transform: scale(1.07);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

/* TEXT STYLES */
.tour-overlay h3 {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.tour-overlay p {
    font-size: 13px;
    margin: 5px 0 14px;
}

/* BUTTON */
.tour-btn {
    padding: 8px 18px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.tour-btn:hover {
    background: #fff;
    color: #000;
}

/* NAV BUTTON POSITIONS */
.prev { left: 10px; }
.next { right: 10px; }

/* ============================= */
/* MOBILE VIEW – FORCE FIXED TEXT */
/* ============================= */

@media screen and (max-width: 768px) {

    .tour-card {
        position: relative;
    }

    /* FORCE overlay to be always visible */
    .tour-overlay {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 14px 16px;
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.85),
            rgba(0,0,0,0.4),
            transparent
        );
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Disable hover-based hiding on mobile */
    .tour-card:hover .tour-overlay {
        opacity: 1;
        transform: none;
    }

    .tour-overlay h3 {
        font-size: 17px;
        margin: 0;
        color: #fff;
        font-weight: 600;
    }

    .tour-btn {
        font-size: 12px;
        padding: 6px 14px;
        background: #ffcc00;
        color: #000;
        border-radius: 18px;
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
    }
}



/* ===========================================
   📱 MOBILE-FIRST IS DONE ABOVE
   NOW TABLET & DESKTOP RESPONSIVE ADJUSTMENTS
   =========================================== */

/* TABLET */
@media (min-width: 600px) {
    .tour-card {
        width: 300px;
        height: 420px;
    }

    .tour-overlay h3 {
        font-size: 22px;
    }
}

/* DESKTOP */
@media (min-width: 992px) {
    .tour-slider-section {
        padding: 80px 40px;
        background-attachment: fixed;
    }

    .tour-card {
        width: 350px;
        height: 500px;
    }

    .tour-overlay h3 {
        font-size: 26px;
    }

    .tour-overlay p {
        font-size: 14px;
    }
}


/* Second Footer */

.tour-footer {
    
    background: url('images/about11.jpg') center/cover no-repeat;
    position: relative;
    padding: 60px 0;
    color: #000;
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;   /* aligns headings evenly at top */
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  padding: 0 20px;
}

.footer-column {
  flex: 1;                   /* equal width columns */
  min-width: 250px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color:black;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    font-size: 16px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color:black;
    font-weight: 500;
}

.footer-column ul li i {
    font-size: 18px;
    color: #1abc9c; /* Light green icon theme */
}


.footer-badge {
    text-align: center;
}

.footer-badge img {
    width: 150px;
    margin-bottom: 10px;
}

.registered-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-badge {
        text-align: left;
    }
}

/* ABOUT SECTION WITH BACKGROUND */
.about-two {
    background: url('images/about111.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 20px;
    position: relative;
}

/* Overlay */
.about-two::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(3px);
}

.about-two-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT IMAGE */
.about-two-image {
    flex: 1;
}
.about-two-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.35);
}

/* RIGHT CONTENT */
.about-two-content {
    flex: 1;
    color:black;
    max-width: 600px;
}

.about-two-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-two-content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}



/* ================================
   📱 PERFECT MOBILE VIEW (NEW)
   ================================ */
/* FIX: Prevent narrow text on mobile */
@media (max-width: 768px) {

    /* Force content to take full width */
    .about-two-container, 
    .about-two-content, 
    .about-two-image {
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }

    .about-two-content {
        text-align: left; /* Or center if you prefer */
        padding: 0 15px;
        margin-top: 10px;
    }

    /* Fix text breaking awkwardly */
    .about-two-content p {
        word-break: normal !important;
        white-space: normal !important;
        text-align: justify;
        line-height: 26px;
    }

    /* Make sure image stays under text and not overlapping */
    .about-two-image img {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto;
    }

    /* Remove any unexpected floating or positioning */
    .about-two-image, .about-two-content {
        float: none !important;
    }
}



/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {

    .about-two {
        padding: 40px 15px;
    }

    .about-two-content h2 {
        font-size: 24px;
    }

    .about-two-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .about-two-image img {
        border-radius: 10px;
    }
}

/* MAIN SECTION */
.vm-section {
    background: url('images/about111.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 80px 40px;
}

/* FLEX BOX FIX */
.vm-box {   
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.blur-box {
  background: rgba(255, 255, 255, 0.10);      /* Transparent white */
  backdrop-filter: blur(8px);                /* Actual blur */
  -webkit-backdrop-filter: blur(8px);        /* Safari support */
  border-radius: 35px;
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.3);   /* Premium shadow */
  color: #fff;
   max-width: 480px;   /* adjust: 420 / 460 / 500 */
}


/* REVERSE FIX */
.vm-box.reverse {
    flex-direction: row-reverse !important;
}

/* EQUAL WIDTH COLUMNS */
.vm-text, .vm-img {
    flex: 1 !important;
    max-width: 50% !important;
}

/* MAKE IMAGES BIG & VISIBLE */
.vm-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 10px;
    display: block;
}

/* TEXT STYLING */
.vm-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: black;
}

.vm-text p {
    font-size: 18px;
    line-height: 1.6;
    color: black;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .vm-box,
    .vm-box.reverse {
        flex-direction: column !important;
        max-width: 100% !important;
    }

    .vm-text, .vm-img {
        max-width: 100% !important;
        text-align: left;
    }
}

.jd-btn {
    background-color: #ff6600;   /* 🔥 Change button color */
    color: white;                /* Text color */
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
}

.jd-btn:hover {
    background-color: #e65c00;   /* Hover effect */
}

/* footer -simple  */

.footer-simple {
   width: 100%;
    min-height: 220px;
    background-image: url("images/footerbackgound.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    
    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal center */
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

/* Logo */
.footer-logo img {
    max-width: 280px;
    margin-bottom: 25px;
}

/* Bottom Lines */
.footer-bottom-text p {
    margin: 6px 0;
    font-size: 24px;
    font-weight: 600;
    color: gold;
}

/* Credit line style */
.footer-bottom-text .credit {
    font-size: 13px;
    color: gold;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .footer-logo img {
        max-width: 140px;
    }

    .footer-bottom-text p {
        font-size: 13px;
    }
}

/* FOUNDERS MESSAGE SECTION */
.founder-section {
  background-image: url("images/hero-bg1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 80px 0;
}

.founder-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 60px 20px;
}

.founder-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.founder-image {
  flex: 1;
  text-align: center;
  color: #fff;
}

.founder-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #f4b41a;
  margin-bottom: 15px;
}

.founder-image h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.founder-image p {
  font-size: 15px;
  opacity: 0.9;
}

/* RIGHT CONTENT */
.founder-content {
  flex: 2;
  color: #fff;
}

.founder-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #f4b41a;
}

.founder-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BUTTON */
.founder-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.founder-btn:hover {
  background: #f4b41a;
  border-color: #f4b41a;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-content h2 {
    font-size: 25px;
    text-align: left;
  }
}

.founder-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: left;
}

.founder-image {
  text-align: left;
  color: #fff;
  max-width: 260px;
  margin: auto;
}

/* IMAGE */
.founder-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #f4b41a;
  display: block;
  margin: 0 auto 15px;
}

/* NAME FIX */
.founder-name {
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 4px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ROLE FIX */
.founder-role {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.85;
  text-align: center;
}
