:root {
      --primary: #5CAB11;
      --primary-dark: #386d07;
      --secondary: #6bca11;
      --accent: #015a28;
      --bg: #f9fbff;
      --text: #1a1a2e;
      --text-muted: #6b7280;
     
      --card-radius: 16px;
      --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ── HEADER ── */
    .site-header {
      background: #fff;
      border-bottom: 1px solid #f0e8ff;
      padding: 5px 0;
     
      border-top: 3px solid #386d07;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(123, 47, 247, .07);
    }

    .logo-text {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }

    .logo-text span {
      color: var(--accent);
    }

    .header-contact a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .875rem;
      font-weight: 600;
      color: var(--text);
      background: #e6ffcd;
      padding: 8px 14px;
      border-radius: 30px;
      transition: var(--transition);
    }

    .header-contact a:hover {
      background: var(--primary);
      color: #fff;
    }

    .wa-btn {
      background: #25D366 !important;
      color: #fff !important;
    }

    .wa-btn:hover {
      background: #1da851 !important;
    }

    /* ── HERO ── */
    .hero {
      min-height: 92vh;
      background: url('../img/banner.jpg') center/cover no-repeat;
      position: relative;
      background-attachment: fixed;
      display: flex;
      align-items: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(25, 25, 25, 0.82) 0%, rgba(10, 0, 40, .55) 60%, rgba(10, 0, 40, .3) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 60px 0;
    }

    .badge-pill {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 20px;
      letter-spacing: .8px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .hero h1 {
      font-size: clamp(1.9rem, 4.5vw, 3.2rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .hero h1 span {
      color: #f8b721;
    }

    .hero-sub {
      color: rgba(255, 255, 255, .82);
      font-size: 1rem;
      margin-bottom: 24px;
      font-weight: 400;
    }

    .feature-list {
      list-style: none;
      margin-bottom: 30px;
      padding-left: 0px;
    }

    .feature-list li {
      color: #fff;
      font-size: .93rem;
      font-weight: 500;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature-list li i {
      color: #f8b721;
      font-size: 1.1rem;
      width: 22px;
    }

    .cta-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn-call {
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 13px 28px;
      border-radius: 40px;
      font-weight: 700;
      font-size: .95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-call:hover {
      background: #e55b00;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 106, 0, .4);
      color: #fff;
    }

    .btn-wa {
      background: #25D366;
      color: #fff;
      border: none;
      padding: 13px 28px;
      border-radius: 40px;
      font-weight: 700;
      font-size: .95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-wa:hover {
      background: #1da851;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(37, 211, 102, .4);
      color: #fff;
    }

    /* Enquiry Form */
    .enquiry-card {
      background: #fff;
      border-radius: 22px;
      padding: 36px 32px;
      box-shadow: 0 24px 60px rgba(123, 47, 247, .18);
      border: 1px solid #f0e8ff;
    }

    .enquiry-card h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .enquiry-card p {
      font-size: .83rem;
      color: var(--text-muted);
      margin-bottom: 22px;
    }

    .form-label {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 5px;
    }

    .form-control {
      border: 1.5px solid #e8d8ff;
      border-radius: 10px;
      padding: 11px 14px;
      font-size: .9rem;
      font-family: 'Poppins', sans-serif;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(123, 47, 247, .12);
      outline: none;
    }

    .btn-enquire {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      border: none;
      width: 100%;
      padding: 14px;
      border-radius: 40px;
      font-weight: 700;
      font-size: .97rem;
      transition: var(--transition);
      margin-top: 4px;
    }

    .btn-enquire:hover {
      opacity: .88;
      transform: translateY(-2px);
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: #fff;
      padding: 22px 0;
      border-bottom: 1px solid #f0e8ff;
      box-shadow: 0 4px 20px rgba(123, 47, 247, .06);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 16px;
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #f7fff5, #e6ffcd);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--primary);
    }

    .trust-num {
      font-size: 1.15rem;
      font-weight: 800;
      color: #222222;
      line-height: 1;
    }

    .trust-label {
      font-size: .78rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ── SECTION HEADER ── */
    .sec-tag {
      display: inline-block;
      background: linear-gradient(135deg, #f7fff5, #e6ffcd);
      color: var(--primary);
      font-size: .75rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 10px;
    }

    .sec-title {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
    }

    .sec-sub {
      color: var(--text-muted);
      font-size: .95rem;
      max-width: 620px;
      margin: 0 auto;
    }

    /* ── PACKAGES ── */
    .packages {
      padding: 60px 0;
      background: var(--bg);
    }

    /* .pkg-card {
      border-radius: var(--card-radius);
      overflow: hidden;
      background: #fff;
      border: 1px solid #f0e8ff;
      transition: var(--transition);
      position: relative;
      height: 100%;
    }

    .pkg-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(123, 47, 247, .15);
    }

    .pkg-img-wrap {
      overflow: hidden;
      height: 195px;
      position: relative;
    }

    .pkg-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .55s ease;
    }

    .pkg-card:hover .pkg-img-wrap img {
      transform: scale(1.09);
    }

    .discount-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--accent);
      color: #fff;
      font-size: .7rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: .5px;
    }

    .pkg-body {
      padding: 18px 18px 14px;
    }

    .pkg-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .pkg-meta {
      font-size: .78rem;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pkg-meta i {
      color: var(--primary);
    }

    .pkg-highlights {
      list-style: none;
      margin-bottom: 14px;
      padding-left: 0px;
    }

    .pkg-highlights li {
      font-size: .8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 5px;
    }

    .pkg-highlights li i {
      color: var(--primary);
      font-size: .8rem;
    }

    .pkg-price {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--primary);
    }

    .pkg-price span {
      font-size: .78rem;
      font-weight: 400;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-left: 6px;
    }

    .pkg-actions {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .btn-sm-call {
      flex: 1;
      background: var(--accent);
      color: #fff;
      border: none;
      padding: 9px;
      border-radius: 30px;
      font-size: .78rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      transition: var(--transition);
    }

    .btn-sm-call:hover {
      background: #e55b00;
    }

    .btn-sm-wa {
      flex: 1;
      background: #25D366;
      color: #fff;
      border: none;
      padding: 9px;
      border-radius: 30px;
      font-size: .78rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      transition: var(--transition);
    }

    .btn-sm-wa:hover {
      background: #1da851;
    }

    .read-more-btn {
      background: none;
      border: none;
      color: var(--primary);
      font-size: .78rem;
      font-weight: 600;
      padding: 0;
      cursor: pointer;
      margin-top: 4px;
      display: flex;
      align-items: center;
      gap: 4px;
      font-family: 'Poppins', sans-serif;
    }

    .extra-details {
      font-size: .8rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid #f0e8ff;
      display: none;
    }

    .extra-details.show {
      display: block;
    } */


    .tp-package-card{
    
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.4s ease;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.tp-package-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.tp-img-wrap{
    position:relative;
}

.tp-img{
    width:100%;
   
    object-fit:cover;
}

.tp-discount{
    position:absolute;
    top:15px;
    right:0;
        background: #f8b721;
    color: #040404;
    font-size:13px;
    font-weight:600;
    padding:10px 18px;
    border-radius:18px 0 0 18px;
    box-shadow:0 8px 18px rgba(0,143,69,.35);
}

.tp-content{
    padding:15px;
}

.tp-duration{
    font-size:14px;
    color:#666;
    font-weight:600;
    margin-bottom:8px;
}

.tp-title{
    font-size:18px;
    font-weight:600;
    color:#181818;
    line-height:1.3;
    margin-bottom:15px;
}

.tp-icon-features{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.tp-icon-box{
    text-align:center;
    font-size:12px;
    color:#666;
}

.tp-icon-box i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    margin:auto;
    margin-bottom:7px;
    border-radius:12px;
    background:#f0faf4;
    color:#0a8f4d;
    font-size:18px;
}

.tp-list li{
    list-style:none;
    margin-bottom:6px;
    color:#333333;
    font-size:14px;
}

.tp-list li i{
    color:#0a8f4d;
    margin-right:8px;
}

.tp-extra{
    display:none;
}

.tp-read-toggle{
    color:#0a8f4d;
    font-weight:700;
    cursor:pointer;
    font-size:14px;
    margin-top:8px;
    display:inline-block;
}

.tp-btn-wrap{
    display:flex;
    gap:10px;
    margin-top:22px;
}

.tp-icon-btn{
    width:52px;
    height:52px;
    border:none;
    border-radius:14px;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.tp-call-btn{
    background:#eef7ff;
    color:#0d6efd;
    border: 1px solid #0d6efd;
}

.tp-call-btn:hover{
    background:#0d6efd;
    color:#fff;
}

.tp-wa-btn{
    background:#e9fff1;
    color:#25D366;
    border: 1px solid #25D366;
}

.tp-wa-btn:hover{
    background:#25D366;
    color:#fff;
}

.tp-book-btn{
    flex:1;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#ff6a00,#ff8f00);
    color:#fff;
    font-weight:700;
    font-size:16px;
    transition:.3s;
}

.tp-book-btn:hover{
    transform:scale(1.03);
    box-shadow:0 8px 20px rgba(255,106,0,.35);
}

    /* ── WHY US ── */
    .why-us {
      padding: 60px 0;
      background: #fff;
    }

    .why-card {
      border-radius: var(--card-radius);
      padding: 28px 24px;
      border: 1.5px solid #cfd8d2;
      transition: var(--transition);
      background: #fff;
      height: 100%;
    }

    .why-card:hover {
      border-color: var(--secondary);
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(123, 47, 247, .1);
    }

    .why-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      background: #f0faf4;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: #088038;
      margin-bottom: 16px;
      transition: var(--transition);
    }

    .why-card:hover .why-icon {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
    }

    .why-title {
      font-size: .97rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }

    .why-desc {
      font-size: .83rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ── MID CTA ── */
    .mid-cta {
      padding: 90px 0;
      background: url('../img/cta.jfif') center/cover no-repeat;
      position: relative;
    }

    .mid-cta-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgb(22 64 159 / 50%), rgb(0 0 0 / 45%));
    }

    .mid-cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
    }

    .mid-cta h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .mid-cta p {
      font-size: 1.05rem;
      opacity: .9;
      margin-bottom: 30px;
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      padding: 60px 0;
      background: var(--bg);
    }

    .testi-card {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 28px;
      border: 1.5px solid #d2e3b0;
      transition: var(--transition);
    }

    .testi-card:hover {
      box-shadow: 0 16px 40px rgba(123, 47, 247, .1);
      transform: translateY(-4px);
    }

    .testi-avatar {
      width: 52px!important;
      height: 52px!important;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f0e8ff;
    }

    .testi-name {
      font-size: .92rem;
      font-weight: 700;
      color: var(--text);
    }

    .testi-loc {
      font-size: .76rem;
      color: var(--text-muted);
    }

    .stars {
      color: #f59e0b;
      font-size: .85rem;
    }

    .testi-text {
      font-size: .88rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-top: 14px;
      font-style: italic;
    }

    .quote-icon {
      font-size: 4rem;
      color: #e8f8ca;
      line-height: 1;
      margin-bottom: 0px;
    }

    /* ── FOOTER ── */
    .site-footer {
      background: #181818;
      color: rgba(255, 255, 255, .85);
      padding: 60px 0 0;
    }

    .footer-brand {
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-brand span {
      color: var(--accent);
    }

    .footer-info li {
      list-style: none;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 15px;
      font-size: 1.1rem;
      color: rgba(255, 255, 255, .7);
    }

    .footer-info li p{
      margin-bottom: 0px;
    }

    .footer-info li i {
      color: var(--secondary);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .footer-form-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 16px;
      padding: 28px;
    }

    .footer-form-card .form-control {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(255, 255, 255, .15);
      color: #fff;
    }

    .footer-form-card .form-control::placeholder {
      color: rgba(255, 255, 255, .45);
    }

    .footer-form-card .form-control:focus {
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(163, 76, 243, .2);
    }

    .footer-form-card .form-label {
      color: rgba(255, 255, 255, .8);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      margin-top: 48px;
      padding: 18px 0;
      text-align: center;
      font-size: .8rem;
      color: rgba(255, 255, 255, .45);
    }

    /* ── DIVIDER STAR ── */
    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 auto 40px;
      max-width: 300px;
      justify-content: center;
    }

    .divider-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, #d8b4fe, transparent);
    }

    /* responsive */
    @media(max-width:767px) {
      .hero {
        min-height: auto;
      }

      .hero-content {
        padding: 40px 0 32px;
      }

      .enquiry-card {
        margin-top: 32px;
        padding: 24px 20px;
      }

      .trust-item {
        padding: 6px 6px;
      }

      .trust-num {
        font-size: 1rem;
      }

      .cta-group .btn-call,
      .cta-group .btn-wa {
        padding: 11px 20px;
        font-size: .88rem;
      }
      .footer-info li{
        font-size: 0.9rem;
      }
      .footer-info li i{
        font-size: 20px;
      }
    }

 

    /* NAV BUTTONS */
.testimonial-slider .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.testimonial-slider .owl-nav button {
    width: 48px;
    height: 48px;
    border-radius: 14px !important;
    border: none !important;
    background: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin: 0 8px;
    font-size: 18px !important;
    color: #74ab11 !important;
    transition: all 0.3s ease;
}

.testimonial-slider .owl-nav button:hover {
    background: #74ab11 !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* DOTS */
.testimonial-slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.testimonial-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #f4ffe1 !important;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-slider .owl-dots .owl-dot.active span {
    width: 30px;
    border-radius: 20px;
    background: #74ab11 !important;
}

.testimonial-slider .owl-dots .owl-dot:hover span {
    background: #74ab11 !important;
}


 .owl-carousel .owl-nav.disabled {
    display: block!important;
}

.footer-brand img{
      width: 150px;
    padding: 15px;
    background: #fff;
    border-radius: 28px;
}

.contact-us-heading h2{
  font-size: 35px;
  margin-bottom: 30px;
}


.trv-marquee-wrap {
  background: #015a28;
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.trv-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.trv-marquee-track {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  animation: trv-scroll 25s linear infinite;
}

/* ðŸ”¥ Pause on hover */
.trv-marquee:hover .trv-marquee-track {
  animation-play-state: paused;
}

/* Clickable text */
.trv-marquee-item {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.trv-marquee-item:hover {
  color: #ffcc00;
}

.trv-marquee-track i {
  color: #fff;
  font-size: 12px;
  opacity: 0.9;
}

/* Gradient fade */
.trv-marquee-fade {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trv-fade-left {
  left: 0;
  background: linear-gradient(to right, #015a28 0%, transparent 100%);
}

.trv-fade-right {
  right: 0;
  background: linear-gradient(to left, #015a28 0%, transparent 100%);
}

/* Animation */
@keyframes trv-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }}


.pricetag{
  font-size: 18px;
  padding: 5px 10px;
  font-weight: 600;
  background-color: #31b907;
  color: #fff;
  border-radius: 20px;
  position: absolute;
  bottom: -20px;
  right: 5px;
}

@media screen and (max-width:768px) {
  .flex-menu{
    flex-wrap: wrap;
    justify-content: center!important;
    gap: 10px;
  }
  .hero{
    padding: 15px;
  }
}

.floating-contact{
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-contact a{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.float-call{
    background: #0d6efd;
}

.float-whatsapp{
    background: #25D366;
}

.floating-contact a:hover{
    transform: scale(1.12);
    color: #fff;
}

@keyframes pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0.25);
    }
    70%{
        box-shadow: 0 0 0 14px rgba(0,0,0,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

.inner-banner-content h2{
  color: #fff;
  text-align: center;
  font-size: 45px;
  font-weight: 700;
}

.privacy-content h5{
  color: #5cab11;
}

.footer-bottom .container{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}