﻿/* Base style */
.stats-group {
  padding: 12px 18px;
  border-radius: 10px;
  transition: 0.3s;
}
.stats-group label{
    margin-bottom: 0;
    color: var(--title-color);
}
/* ICON BASE */
.stats-group .icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ---------------- COLORS ---------------- */

/* â­ Google Rating */
.stats-group.rating {
  background: #fff7e6;
}
.stats-group.rating .icon {
  background: #ffe0a3;
  color: #ff9800;
}

/* ðŸ˜Š Happy Customers */
.stats-group.customers {
  background: #e6f7ff;
}
.stats-group.customers .icon {
  background: #b3e5fc;
  color: #0288d1;
}

/* ðŸŒ Tours Completed */
.stats-group.tours {
  background: #e8f5e9;
}
.stats-group.tours .icon {
  background: #c8e6c9;
  color: #2e7d32;
}

/* ðŸ† Trusted */
.stats-group.trusted {
  background: #f3e5f5;
}
.stats-group.trusted .icon {
  background: #e1bee7;
  color: #8e24aa;
}

/* TEXT FIX */
.search-input h6 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: black;
}

footer
{
  background-color: #0029640f;
}
.affiliation-wrapper
{
  text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -61px;
    position: relative;
    z-index: 3;
}

.cta-area6.space
{
  padding: 120px 0px 80px;
}



.affiliation {
  /* background: linear-gradient(0deg, #f2f2f2, #dbf1f9); */
      background: linear-gradient(0deg, #f2f2f2, #e9f6f9);
    width: max-content;
    padding: 20px 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.affiliation h3{
margin-bottom: 0px;
}

.affiliation  img{

    border-radius: 20px;
    
    border: 1px solid #d8d8d8;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 12%);
}
.affiliation .affiliation-images
{
  display: inline-flex;;
  gap: 12px;
}



/* =========================
   TOUR CARD DESIGN
========================= */

.tour-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
}

.tour-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.tour-box_img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.tour-box_img img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    transition: 1.3s;
}
.tour-box .tour-content
{
  padding: 16px;
}
.tour-content {
  padding: 24px;
}

/* =========================
   PACKAGE TITLE
========================= */

.box-title {
  margin-bottom: 14px;
  line-height: 1.4;
}

.box-title a {
  font-size: 18px;
  font-weight: 700;
  color: #002964;
  line-height: 24px;
  text-decoration: none;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

/* =========================
   DAYS & NIGHTS
========================= */

.package-days {
display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #0d3b83;
    background: #f3f7ff;
    padding: 4px 14px;

    margin-bottom: 16px;
    line-height: 1;
    border-radius: 6px;
    width: max-content;
}

.package-days i {
  font-size: 15px;
}

/* =========================
   PRICE ON REQUEST
========================= */

.tour-box_price {
  margin-top: 18px;
  margin-bottom: 20px;
}

.tour-box_price span {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* .tour-box_price span::before {
  content: "@";
  width: 42px;
  height: 42px;
  background: #f4b400;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* =========================
   AMENITIES
========================= */

.package-amenities {
  /* display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px; */
  display: none;
}

.package-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #90d5ee, transparent);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    line-height: 1;
    border-radius: 2px;
}

.package-amenities span i {
  color: #011027;
  font-size: 12px;
}

/* =========================
   BUTTONS
========================= */

.tour-action {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.tour-action .view-btn,
.tour-action .contact-btn {
    flex: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    padding: 6px;
}


.view-btn {
  background: #fd921b;
  color: #fff;
}

.view-btn:hover {
  background: #d89e00;
  color: #fff;
}

.contact-btn {
  background: #01286b;
  color: #fff;
}

.contact-btn:hover {
  background: #0b2b5d;
  color: #fff;
}


.tour-package .swiper-slide {
  height: auto;
}

.tour-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tour-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* PUSH BUTTONS TO BOTTOM */
.tour-action {
  margin-top: auto;
}






/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
  .tour-box_img img {
    height: 240px;
  }

  .box-title a {
    font-size: 22px;
  }

  .tour-action {
    flex-direction: column;
  }
}

/* ========================= MAYODIYA TOUR DETAIL REDESIGN ========================= */
.mayodiya-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 0 115px;
}

.mayodiya-hero__content {
  max-width: 820px;
}

.mayodiya-breadcrumb {
  margin-bottom: 24px;
}

.mayodiya-breadcrumb a,
.mayodiya-breadcrumb span {
  color: rgba(255, 255, 255, 0.86);
}

.mayodiya-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mayodiya-hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: 0;
}

.mayodiya-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.mayodiya-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mayodiya-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.mayodiya-outline-btn:hover {
  background: #fff;
  color: #032b73;
}

.mayodiya-overview-band {
  background: #fff;
  margin-top: 100px;
}

.mayodiya-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.mayodiya-fact {
  background: #fff;
  border: 1px solid #e6edf4;
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 18px 45px rgba(7, 32, 70, 0.1);
}

.mayodiya-fact i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #fff4e4;
  color: #fd921b;
  font-size: 20px;
}

.mayodiya-fact span {
  display: block;
  color: #6f7d8f;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mayodiya-fact strong {
  display: block;
  color: #002964;
  font-size: 17px;
  line-height: 1.35;
}

.mayodiya-detail-section {
  background: #f7fafc;
  margin:50px 0;
}

.mayodiya-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(3, 158px);
  gap: 14px;
  margin-bottom: 32px;
}

.mayodiya-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.mayodiya-gallery-main {
  grid-row: 1 / span 3;
}

.mayodiya-tabs {
  top: 100px;
  border-radius: 8px;
  margin-bottom: 28px;
  padding: 0 8px;
}

.mayodiya-tabs .tour-tab-btn {
  font-size: 15px;
  padding: 18px 20px;
}

.mayodiya-content-block {
  display: block;
  margin-bottom: 28px;
  scroll-margin-top: 150px;
}

.mayodiya-content-block p {
  color: #5f6f82;
  line-height: 1.8;
}

.mayodiya-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mayodiya-highlights div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 8px;
  background: #f4f8fc;
  color: #102f59;
  font-weight: 600;
}

.mayodiya-highlights i {
  color: #20a66a;
  margin-top: 4px;
}

.mayodiya-timeline {
  display: grid;
  gap: 18px;
}

.mayodiya-day {
  position: relative;
  padding: 26px 28px 26px 96px;
  border: 1px solid #e6edf4;
  border-radius: 8px;
  background: #fbfdff;
}

.mayodiya-day span {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #002964;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.mayodiya-day.active span {
  background: #fd921b;
}

.mayodiya-day h3 {
  color: #002964;
  font-size: 22px;
  margin-bottom: 10px;
}

.mayodiya-day strong {
  color: #163c6d;
}

.mayodiya-list-card,
.mayodiya-info-grid > div,
.mayodiya-route-card,
.mayodiya-price-card,
.mayodiya-help-card {
  border-radius: 8px;
}

.mayodiya-list-card {
  height: 100%;
}

.mayodiya-list-card h3 {
  margin-bottom: 18px;
  color: #002964;
}

.mayodiya-list-card ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.mayodiya-list-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
  color: #53677e;
}

.mayodiya-list-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.mayodiya-list-card.included li::before {
  content: "\f00c";
  color: #20a66a;
}

.mayodiya-list-card.excluded li::before {
  content: "\f00d";
  color: #d94a38;
}

.mayodiya-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mayodiya-info-grid > div {
  padding: 24px;
  background: #fbfdff;
}

.mayodiya-info-grid i {
  color: #fd921b;
  font-size: 26px;
  margin-bottom: 14px;
}

.mayodiya-info-grid h3 {
  color: #002964;
  font-size: 20px;
}

.mayodiya-route-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.mayodiya-route-step {
  padding: 26px 20px;
  border-right: 1px solid #e6edf4;
}

.mayodiya-route-step:last-child {
  border-right: 0;
}

.mayodiya-route-step span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff4e4;
  color: #fd921b;
  font-weight: 800;
  margin-bottom: 14px;
}

.mayodiya-route-step strong,
.mayodiya-route-step small {
  display: block;
}

.mayodiya-route-step strong {
  color: #002964;
  margin-bottom: 6px;
  font-size: 18px;
}

.mayodiya-route-step small {
  color: #66778a;
  line-height: 1.55;
}

.mayodiya-sidebar {
  position: sticky;
  top: 110px;
}

.mayodiya-price-card {
  padding: 28px;
  margin-bottom: 22px;
  background: #002964;
  color: #fff;
}

.mayodiya-price-card span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.mayodiya-price-card h2 {
  color: #fff;
  margin: 8px 0 10px;
}

.mayodiya-price-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}

.mayodiya-form-card {
  margin-bottom: 22px;
}

.mayodiya-form-card h3{
  margin-bottom: 18px;
  color: #ffffff;
}
.mayodiya-help-card {
  padding: 24px;
}

.mayodiya-help-card h3 {
  color: #ffffff;
  margin-bottom: 14px;
}

.mayodiya-help-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5e5e5;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 600;
}

.mayodiya-help-card i {
  color: #fd921b;
}

@media (max-width: 1199px) {
  .mayodiya-hero h1 {
    font-size: 56px;
  }

  .mayodiya-facts,
  .mayodiya-route-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .mayodiya-sidebar {
    position: static;
  }

  .mayodiya-hero {
    min-height: 560px;
    padding: 125px 0 90px;
  }
}

@media (max-width: 767px) {
  .mayodiya-hero {
    min-height: auto;
    padding: 105px 0 75px;
  }

  .mayodiya-hero h1 {
    font-size: 38px;
  }

  .mayodiya-hero p {
    font-size: 16px;
  }

  .mayodiya-facts,
  .mayodiya-highlights,
  .mayodiya-info-grid,
  .mayodiya-route-card {
    grid-template-columns: 1fr;
  }

  .mayodiya-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mayodiya-gallery-grid > div,
  .mayodiya-gallery-main {
    height: 220px;
    grid-row: auto;
  }

  .mayodiya-content-block {
    padding: 24px 18px;
  }

  .mayodiya-day {
    padding: 88px 20px 22px;
  }

  .mayodiya-day span {
    left: 20px;
    top: 22px;
  }

  .mayodiya-tabs {
    top: 72px;
  }
}
/* ========================= END MAYODIYA TOUR DETAIL REDESIGN ========================= */



.important-info-text p {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.important-info-text p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}


.tour-overlay-wrap{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999;
  padding:10px;
}

.tour-enquiry-modal{
  width:100%;
  max-width:320px;   /* Smaller Popup */
  background:#fff;
  border-radius:14px;
  padding:18px;
  position:relative;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

/* Close */
.tour-close-icon{
  position:absolute;
  top:8px;
  right:12px;
  font-size:20px;
  color:#666;
  cursor:pointer;
}

/* Image */
.tour-user-image-box{
  width:55px;
  height:55px;
  border-radius:50%;
  overflow:hidden;
  margin:-40px auto 8px;
  border:2px solid #fff;
}

.tour-user-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Heading */
.tour-modal-heading{
  font-size:20px;
  margin-bottom:5px;
  color:#222;
}

/* Text */
.tour-modal-text{
  font-size:12px;
  color:#666;
  line-height:1.4;
  margin-bottom:14px;
}

/* Form Fields */
.tour-input-group{
  margin-bottom:10px;
}

.tour-input-field,
.tour-select-field,
.tour-message-field{
  width:100%;
  padding:9px 12px;
  border:1px solid #ddd;
  border-radius:7px;
  font-size:13px;
  outline:none;
}

.tour-message-field{
  height:65px;
  resize:none;
}

/* Button */
.tour-submit-btn{
  width:100%;
  background:#00aaff;
  color:#fff;
  border:none;
  padding:10px;
  border-radius:8px;
  font-size:14px;
  cursor:pointer;
}

.tour-submit-btn:hover{
  background:#008ecc;
}


/* REMOVE HORIZONTAL SCROLL */
body {
    overflow-x: hidden;
}

/* POPUP */
.enquiry-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.enquiry-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}

/* FORM WRAP */
.popup-form-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
    z-index: 2;
    animation: popupFade 0.3s ease;
}

/* FORM */
.popup-form-wrap .tour-form-card {
    margin: 0;
    width: 100%;
}
.modal-title{
  color:white;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: #032b66;
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}
/* CLOSE BUTTON */
.popup-close {
    position: absolute;
    top: 12px;
    right: 150px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #ff681a;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.popup-close:hover {
    transform: rotate(90deg);
    transition: 0.3s;
}

.modal-header .btn-close {
    color: white;
    background-color: #c8c1c1a8;
    border: none;
}

.modal-header{
  border-bottom: none;
}
@keyframes popupFade {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* MOBILE */
@media (max-width: 575px) {

    .enquiry-popup {
        padding: 15px;
    }

    .popup-close {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

}


.contact-wrap{
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.contact-left{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-wrap{
  width: 50%;
}

/* Optional */
.about-contact-grid{
  height: 100%;
}

/* Mobile */
@media (max-width: 991px){

  .contact-wrap{
    flex-direction: column;
  }

  .contact-left{
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-form-wrap{
    width: 100%;
  }

}

.detail-form{
background: #002964;
    padding: 20px;
    border-radius: 8px;
}


.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-box{
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

.team-box:hover{
  transform: translateY(-8px);
}

.team-img img{
  width: 100%;
  display: block;
}

.team-content{
  padding: 25px;
  text-align: center;
}

.team-desig{
  display: block;
  margin-top: 8px;
  margin-bottom: 18px;
}

.th-social{
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

.th-social a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: 0.3s ease;
}

.th-social a:hover{
  background: #0d6efd;
  color: #fff;
}

@media (max-width: 1199px){

  .team-grid{
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 991px){

  .team-grid{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 575px){

  .team-grid{
    grid-template-columns: 1fr;
  }

}

.tour-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1199px){

  .tour-grid{
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 991px){

  .tour-grid{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 575px){

  .tour-grid{
    grid-template-columns: 1fr;
  }

}


.contact-info{
  width: 100%;
  background: #0dcaf00a;
  border-radius: 8px;
  gap: 12px;
  padding: 20px;
}

.space-bottom{
  padding-bottom: 100px;
}


.ajax-contact{
      background: #fff;
    box-shadow: 0px 20px 20px rgba(204, 204, 204, 0.25);
    padding: 20px;
}


.whatsapp-float{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 34px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    color:#fff;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}


.breadcumb-overlay{
  content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}


