      *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

header {
  position: fixed;   /* FIXED instead of sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;  /* Avoid transparency */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Adjust navbar inside */
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Logo */
.logo{
  font-size:24px;
  font-weight:bold;
}
.logo span{
  color:#f6b500;
}

/* Menu */
nav ul{
  list-style:none;
  display:flex;
  gap:25px;
}

nav ul li a{
  text-decoration:none;
  color:#000;
  font-weight:600;
  font-size:17px;
}

nav ul li a.active,
nav ul li a:hover{
  color:#f6b500;
}

/* Right actions */
.nav-actions{
  display:flex;
  align-items:center;
  gap:15px;
}

.icon{
  cursor:pointer;
  font-size:18px;
}

.btn{
  background:#f6b500;
  padding:10px 18px;
  color:#000;
  font-weight:bold;
  border-radius:5px;
  text-decoration:none;
  white-space:nowrap;
}
.btn{
 background: #f6b500;
    padding: 16px 31px;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover{
  background: #fff;
  border: 1px solid #161614;
}



/* Hamburger */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  nav ul{
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    padding:20px 0;
    gap:20px;
    display:none;
  }

  nav ul.show{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .btn{
    display:none;
  }
}

@media(max-width:500px){
  .icon{
    display:none;
  }
}
.logo img{
  max-height:100px;   /* desktop size */
  width:auto;
  display:block;
}

/* Tablet */
@media(max-width:900px){
  .logo img{
    max-height:45px;
  }
}

/* Mobile */
@media(max-width:500px){
  .logo img{
    max-height:40px;
  }
}
@media (max-width:900px){

  nav ul{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  nav ul.show{
    display: flex;
  }

  .menu-toggle{
    display: block;
  }

  .btn{
    display: none;
  }
}
.navbar{
  max-width:1200px;
  margin:auto;
  padding:0px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position: relative; /* ✅ IMPORTANT */
}

      
      
      
      
      /* Initial state */
.slider-content h1 {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 1s ease;
}

.slider-content p {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
    transition-delay: 0.6s;
}

/* Animate ONLY when slide becomes active */
.slider-item.active .slider-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slider-item.active .slider-content p {
    opacity: 1;
    transform: translateY(0);
}


        .hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 15s ease-in-out infinite alternate;
}

@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Overlay for darker effect */
.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Content Animation */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
}

.slide-content h1 {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 1s ease;
}

.slide-content p,
.slide-content .btn {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
    transition-delay: 0.6s;
}

.slide-content.active h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content.active p,
.slide-content.active .btn {
    opacity: 1;
    transform: translateY(0);
}


/* Animations */
@keyframes fadeInTitle {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 3;
}
/* Initial state for slide content */
.slide-content h1 {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease;
}

.slide-content p,
.slide-content .btn {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    transition-delay: 1s; /* Wait for h1 to finish */
}

/* Active state */
.slide-content.active h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content.active p,
.slide-content.active .btn {
    opacity: 1;
    transform: translateY(0);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background-color: #000;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-item {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .slider-item.active {
            opacity: 1;
        }

        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overlay */
        .slider-overlay {
               position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(36 96 42 / 44%);
    z-index: 1;
        }

        /* Content */
        .slider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            color: white;
            width: 90%;
            max-width: 800px;
        }

        .slider-content h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
            font-style: italic;
            text-transform: capitalize;
        }

        .slider-content p {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        /* Navigation Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #f6b500;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            color: #000;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background-color: #f6b500;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        /* Side Icons */
        .slider-icons {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .slider-icon-btn {
            width: 45px;
            height: 45px;
            background-color: #f6b500;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            color: #000;
        }

        .slider-icon-btn:hover {
            background-color: #f6b500;
            transform: scale(1.1);
        }

        /* Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 12px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .indicator.active {
            background-color: white;
            width: 30px;
            border-radius: 6px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slider-content h1 {
                font-size: 3.5rem;
            }

            .slider-content p {
                font-size: 1.2rem;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .slider-icon-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .slider-content h1 {
                font-size: 2rem;
            }

            .slider-content p {
                font-size: 1rem;
            }

            .slider-arrow {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .slider-icons {
                display: none;
            }
        }
    /* GLOBAL */


    /* about page  */
    /* ================= ABOUT SECTION ================= */

.about-wrap{
  max-width:1300px;
  margin:120px auto;
  padding:0 30px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  
}

/* LEFT */
.about-left{
  position:relative;
}

/* MAIN IMAGE */
.about-main-img{
  height:520px;
  border-radius:20px;
  overflow:hidden;
}

.about-main-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* FLOATING STATS */
.about-stats{
  position:absolute;
  top:30px;
  left:-25px;
  background:#fff;
  padding:18px 22px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  display:flex;
  flex-direction:column;
  gap:6px;
  z-index:5;
}

.about-stats h2{
  font-size:28px;
  font-weight:700;
}

.about-stats span{
  font-size:14px;
  color:#666;
}

/* SMALL IMAGE */
.about-small-img{
  position:absolute;
  bottom:-40px;
  right:-40px;
  width:260px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.about-small-img img{
  width:100%;
  display:block;
}

/* PLAY ICON (VISUAL ONLY) */
.play-icon{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.play-icon span{
  width:60px;
  height:60px;
  background:#f6b500;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

/* RIGHT CONTENT */
.about-right small{
  color:#f6b500;
  font-weight:600;
  letter-spacing:1px;
}

.about-right h1{
  font-size:46px;
  margin:15px 0 20px;
}

.about-right p{
  color:#666;
  line-height:1.7;
}

/* BOTTOM */
.about-bottom{
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:35px;
}

.about-phone{
  display:flex;
  gap:12px;
  align-items:center;
}

.about-btn{
  background:#f6b500;
  padding:14px 26px;
  text-decoration:none;
  font-weight:600;
  color:#000;
  border-radius:6px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-wrap{
    grid-template-columns:1fr;
  }

  .about-small-img{
    right:0;
    bottom:-30px;
  }
}

@media(max-width:500px){
  .about-main-img{
    height:360px;
  }

  .about-small-img{
    width:200px;
  }

  .about-right h1{
    font-size:32px;
  }
}
.para{
    margin-bottom: 20px;
}


.services-section{
  background:#14280C;
  color:#fff;
  padding:80px 40px;
}

.services-header{
  max-width:1300px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.services-header small{
  color:#f6b500;
  font-weight:600;
}

.services-header h2{
  font-size:42px;
  margin-top:10px;
}

.services-nav{
  display:flex;
  gap:10px;
}

.srv-btn{
  background:#f6b500;
  border:none;
  width:50px;
  height:50px;
  font-size:22px;
  cursor:pointer;
}

.services-slider{
  max-width:1300px;
  margin:50px auto 0;
  overflow:hidden;
}

.services-track{
  display:flex;
  gap:30px;
  transition:transform 0.6s ease;
}

.service-card{
  min-width:calc((100% - 60px)/3);
  background:#fff;
  color:#000;
}

.service-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.service-info{
  padding:20px;
  position:relative;
}

.service-info h3{
  font-size:18px;
  margin-bottom:10px;
}

.service-info a{
  font-size:14px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}

.count{
  position:absolute;
  right:20px;
  bottom:15px;
  font-size:22px;
  opacity:0.15;
  font-weight:700;
}

/* RESPONSIVE */
@media(max-width:900px){
  .service-card{
    min-width:100%;
  }
}
/* WRAPPER */
/* WRAPPER */
/* ================================
   BOOKING SECTION WRAPPER
================================ */
/* ================================
   WRAPPER

   
.booking-wrapper {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 15px;
  overflow-x: hidden;
}

/* ================================
   FORM BOX
================================ */
.booking-form-box {
  background: #f6b500;
  padding: 40px;
  position: relative;
  margin-bottom: 60px;   /* space for image */
}


/* ANGLED EDGES (DESKTOP ONLY) */
.booking-form-box::before,
.booking-form-box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 66px;
  height: 120px;
  background: #f6b500;
}

.booking-form-box::before {
  left: -65px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.booking-form-box::after {
  right: -65px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

/* ================================
   TITLE
================================ */
.booking-wrapper {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 15px;
  position: relative;
}

/* ================================
   FORM BOX
================================ */
.booking-form-box {
  background: #f6b500;
  padding: 40px 40px 40px 40px;
  position: relative;
  margin-bottom: 100px;
}


/* Angled edges (desktop only) */
.booking-form-box::before,
.booking-form-box::after {
  content: "";
  position: absolute;
  top: 0;
  width: 66px;
  height: 120px;
  background: #f6b500;
}

.booking-form-box::before {
  left: -65px;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.booking-form-box::after {
  right: -65px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* ================================
   TITLE
================================ */
.booking-title {
     color: #121010;;
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* ================================
   FORM GRID
================================ */
.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.booking-form .form-group:nth-child(5) {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input {
  padding: 12px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #fff;
  width: 100%;
}

/* Remove number arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* ================================
   BUTTON
================================ */
.btn-group {
  display: flex;
  align-items: flex-end;
}

.btn-group button {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 4px;
}

.btn-group button:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

/* ================================
   IMAGE
================================ */
.booking-image {
  margin-top: -120px;
  position: relative;
  z-index: 1;
}


.booking-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ================================
   OVERLAY TEXT
================================ */
.booking-overlay-text {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  max-width: 90%;
  width: 700px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.booking-overlay-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.booking-overlay-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media (max-width: 1298px) {
  .booking-form-box::before,
.booking-form-box::after {
  display: none;
}
 
}

/* ================================
   TABLET
================================ */
@media (max-width: 992px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-image {
    margin-top: -80px;
  }

  .booking-image img {
    height: 360px;
  }

  .booking-overlay-text {
    top: 60%;
    padding: 30px;
  }

  .booking-overlay-text h2 {
    font-size: 26px;
  }
}

/* ================================
   MOBILE (FIXED & CLEAN)
================================ */
@media (max-width: 576px) {

  /* Remove angled shapes */
  .booking-form-box::before,
  .booking-form-box::after {
    display: none;
  }

  .booking-form-box {
    padding: 20px 16px;
  }

  .booking-title {
    display: block;
    text-align: center;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking-form .form-group:nth-child(5) {
    grid-column: auto;
  }

  .btn-group button {
    font-size: 15px;
  }

  .booking-image {
    margin-top: 0;
  }

  .booking-image img {
    height: 260px;
  }

  .booking-overlay-text {
    position: static;
    transform: none;
    margin: 20px auto;
    padding: 20px;
    width: 100%;
    border-radius: 12px;
  }

  .booking-overlay-text h2 {
    font-size: 22px;
  }

  .booking-overlay-text p {
    font-size: 14px;
  }

  /* reCAPTCHA mobile fix */
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left top;
    width: 100%;
  }

  /* Floating buttons */
  .whatsapp-btn,
  .call-btn {
    right: 10px !important;
  }

  .call-btn {
    bottom: 80px !important;
  }

  .whatsapp-btn {
    bottom: 20px !important;
  }
}


  /* Fix Testimonials Header size */
  .testimonials-header h2 {
    font-size: 28px;
    margin-top: 5px;
  }
  
  .testimonials-header small {
    font-size: 12px;
  }
  
  .section-header h2 {
      font-size: 28px; /* General fix for other sections */
  }
}

.testimonials {
  padding: 90px 20px;
  background: #fff;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header small {
  color: #f6b500;
  font-weight: 700;
  letter-spacing: 2px;
}

.testimonials-header h2 {
  font-size: 40px;
  margin-top: 10px;
}

.testimonial-slider {
  max-width: 1300px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  text-align: left;
}

.testimonial-card img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  margin: 0;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

.testimonial-card p {
  margin: 15px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.stars {
  color: #f6b500;;
  font-size: 18px;
}

.t-arrow {
  position: absolute;
  bottom: -70px;
  background: #f6b500;
  border: none;
  width: 50px;
  height: 45px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
}

.t-arrow.left { left: 48%; }
.t-arrow.right { right: 48%; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .t-arrow {
    bottom: -50px;
  }
}
.testimonials {
  padding: 0px 100px 20px;
  background: #fff;
  text-align: center;
}

.testimonials-header small {
  color: #f6b500;
  font-weight: 700;
  letter-spacing: 2px;
}

.testimonials-header h2 {
  font-size: 40px;
  margin: 15px 0 60px;
}

.testimonial-slider {
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: 300px;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
}

.testimonial-card img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

.testimonial-card p {
  margin: 14px 0;
  font-size: 15px;
  color: #666;
}

.stars {
  color: #f6b500;
}

/* BOTTOM ARROWS */
.testimonial-arrows {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-arrows button {
  background: #f6b500;
  border: none;
  width: 48px;
  height: 42px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 100%;
  }
}
 /* Section Container */
.package-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.package-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 100, 0.1);
    overflow: hidden;
    padding: 40px;
    position: relative;
}

/* Decorative elements */
.package-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,#f6b500, #f6b500);
}

/* Header Section */
.package-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.package-header h2 {
    font-size: 2.8rem;
    color: #050505;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.package-header h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #050505, #050505);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.package-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Grid Layout */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Package Cards */
.package-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.package-card::before {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(42 215 53 / 14%) 0%, rgba(42, 215, 200, 0.03) 100%);
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(42, 91, 215, 0.15);
    border-color: #d6e4ff;
}

/* Highlight Card */
.package-card.highlight {
    border: 2px solid #050505;
    background: linear-gradient(135deg, #f8faff 0%, #f0f7ff 100%);
}

.package-card.highlight::before {
    background: linear-gradient(135deg, rgba(42, 91, 215, 0.05) 0%, rgba(42, 215, 200, 0.05) 100%);
}

/* Dark Card */
.package-card.dark {
    background: linear-gradient(135deg, rgba(42, 91, 215, 0.05) 0%, rgba(42, 215, 200, 0.05) 100%);
    color: white;
}

.package-card.dark::before {
    background-color: #f6b500;
}

/* Card Titles */
.package-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #050505;
    font-weight: 700;
    display: flex;
    align-items: center;
}


.package-card h3 i {
    margin-right: 12px;
    color: #050505;
}

.package-card.dark h3 i {
    color: #050505;
}

/* Time Badge */
.package-time {
    display: inline-block;
    background: #eef2f7;
    color: #050505;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid #d6e4ff;
}

.package-card.dark .package-time {
    background: rgba(2, 2, 2, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Price */
.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #050505;
    margin: 20px 0;
    position: relative;
    display: inline-block;
}



.package-card.dark .price-main {
    color: white;
}

/* Price List */
.price-list {
    list-style: none;
    margin-top: 25px;
}

.price-list li {
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.price-list li:hover {
    padding-left: 10px;
    border-bottom-color: #050505;
}

.package-card.dark .price-list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.package-card.dark .price-list li:hover {
    border-bottom-color: #050505
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li strong {
    font-size: 1.3rem;
    color: #050505;
    font-weight: 700;
}

.package-card.dark .price-list li strong {
    color: #101111;
}

/* Extra Info */
.extra {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    font-size: 1.1rem;
    border-left: 4px solid #3c790b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-card.dark .extra {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #10ee40;
}

.extra strong {
    font-size: 1.4rem;
    color:#050505;
}

.package-card.dark .extra strong {
    color: #2ad7c8;
}

/* Highlight Badge */
.highlight-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(to right, #2a5bd7, #2ad7c8);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(42, 91, 215, 0.3);
}

/* Icon Decorations */
.icon-container {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(42, 91, 215, 0.1);
    font-size: 4rem;
    z-index: -1;
}

.package-card.dark .icon-container {
    color: rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .package-container {
        padding: 25px;
    }
    
    .package-header h2 {
        font-size: 2.2rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-card {
        padding: 25px;
    }
    
    .price-main {
        font-size: 2.4rem;
    }
    
    .highlight-badge {
        right: 20px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .package-container {
        padding: 20px;
    }
    
    .package-header h2 {
        font-size: 1.9rem;
    }
    
    .package-header p {
        font-size: 1rem;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .package-card h3 {
        font-size: 1.4rem;
    }
    
    .price-main {
        font-size: 2.2rem;
    }
    
    .price-main::before {
        left: -20px;
        font-size: 1.5rem;
    }
    
    .highlight-badge {
        right: 15px;
        padding: 5px 12px;
        font-size: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-header {
    animation: fadeInUp 0.8s ease-out;
}

.package-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.package-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.package-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hover effect for price list items */
.price-list li:hover strong {
    transform: scale(1.1);
    display: inline-block;
    transition: transform 0.3s ease;
    border: #3c790b;
}


/* footer */

.site-footer {
  background: #14280C;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: #f6b500;
  color: #111;
  text-align: center;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #f6b500;
}

.footer-links-col h4,
.footer-contact h4 {
  font-size: 18px;
  color: #f6b500;
  margin-bottom: 15px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
}

.footer-links-col ul li {
  margin-bottom: 10px;
}

.footer-links-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links-col ul li a:hover {
  color: #f6b500;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #f6b500;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #ccc;
}

.footer-bottom-links a {
  margin-left: 15px;
  color: #f6b500;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.logo-h{
  font-size: 14px;
  color: #f6b500;
  margin-bottom: 2px;
}
.logo-p{
   font-size: 12px;
  color: #f6b500;
  margin-bottom: 2px;
  max-width: 150px;
}


/* ================= SERVICES SECTION ================= */
.our-services {
  background-color: #14280C;
  color: #fff;
  padding: 100px 20px;
  position: relative;
}

.our-services .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.our-services .section-header small {
  color: #f6b500;
  font-weight: 700;
  letter-spacing: 2px;
 
  display: block;
  margin-bottom: 15px;
}

.our-services .section-header h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.our-services .section-header p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

/* CARDS GRID */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD DESIGN */
.choose-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* DECORATIVE SHAPE */
.choose-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: rgba(249, 196, 0, 0.15); /* Faint Yellow initially */
  border-radius: 50%;
  z-index: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.choose-card:hover::after {
  transform: scale(20); /* Expands to fill card */
  background: #f6b500; /* Becomes solid brand yellow */
  bottom: -100px; /* Adjusting origin slightly if needed, but scale handles it */
  right: -100px;
}

/* CONTENT TEXT COLOR UPDATE ON HOVER */
.choose-card:hover h3,
.choose-card:hover p,
.choose-card:hover a {
  color: #000; /* Ensure text remains black on yellow */
}

/* ICON */
.choose-card .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: false;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.choose-card:hover .icon i {
  color: #000; /* Icon turns black on yellow background */
}

.choose-card .icon i {
  font-size: 50px;
  color: #f6b500; /* Brand Yellow */
  transition: color 0.3s ease;
}

/* CONTENT */
.choose-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.choose-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* LINK */
.choose-card a {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.choose-card a:hover {
  gap: 12px;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .choose-card {
    padding: 30px 25px;
  }
}
.sticky-buttons {
    position: fixed;
    right: 0;
    top: 35%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Common button style */
.sticky-btn {
    width: 70px;
    height: 70px;
    background: #f6b500;
    color: #080606;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Icon */
.sticky-btn span {
    font-size: 22px;
    margin-bottom: 4px;
}
/* Sticky buttons container */


/* WhatsApp logo */
.sticky-btn.whatsapp img {
    width: 35px;
    height: 42px;
    margin-bottom: 0px;
}

/* Text */


/* WhatsApp border accent */
.sticky-btn.whatsapp {
    color: rgb(15, 13, 13);
    background-color: white;
}


/* Hover effect */
.sticky-btn:hover {
    width: 90px;
}

/* Buy button color */
.sticky-btn.buy {
    background: #faf7f7;
    color: black
}
.booking-overlay {
  max-width: 900px;
  margin: 0 auto 40px;   /* center + space below */
  text-align: center;
  padding: 0px;
}

.booking-overlay h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.booking-overlay p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 5px 0;
}
.services-nav {
  display: flex;
  gap: 10px;
}

.srv-btn {
  background: #f6b500;
  color: #000;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
}

.srv-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 576px) {

  .services-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .services-nav {
    justify-content: flex-start;
  }

  .srv-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
/* Font Awesome icons color inside package section */
.package-section i.fas,
.package-section i.fa-solid {
    color: wheat;
}
