/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #009846;
    --secondary: #8f8f8e;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Montserrat', sans-serif;
}
body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
	 
      width: 100%;
      z-index: 10;
      background: #fff !important;
	padding: 10px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box img {
    width: 220px;
    height: auto;
}
.wpcf7-submit {
    background: var(--primary);
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px 0;
    transition: all 0.3s ease;
	display: inline-block;
	border: none;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--secondary);
    padding: 5px 15px;
	color: #fff !important;
}
.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: #f8f9fa;
  color: #0d6efd;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 65vh;
	position: relative;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: var(--primary);
}
li.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
.footer{
    background:var(--primary);
    color:#fff;
    padding:60px 0 30px;
    border-radius:30px 30px 0 0;
}
.footer hr{
    border-color:rgb(255 255 255 / 37%);
    margin:30px 0;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.footer-top h2{
    font-size:40px;
    font-weight:600;
    line-height:1.2;
}
.footer-logo img{
    max-width:200px;
    margin-bottom:25px;
}
.footer p {
    color: #ffffff;
}
.footer h4{
    font-size:24px;
    margin-bottom:25px;
}
.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}
.footer ul li{
    margin-bottom:12px;
}
.footer ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}
footer .social-icons{
    display:flex;
    gap:12px;
    margin:20px 0;
}
.footer-logo img {
    max-width: 300px;
    margin-bottom: 25px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
footer .social-icons a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
	text-decoration: none;
}
footer .social-icons a:hover{
    background:#8fd234;
    border-color:#8fd234;
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #ffffff;
}
.contact-item i {
    color: #ffffff;
    margin-top: 5px;
}
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}
.footer-bottom ul{
    display:flex;
    gap:30px;
}
.footer-bottom p{
    margin:0;
}
.newsletter-input{
    position:relative;
}
.newsletter-input .wpcf7-form-control-wrap{
    display:block;
}
.newsletter-input .wpcf7-email{
    width:100%;
    height:60px;
    border:1px solid #dcdcdc;
    border-radius:18px;
    padding:0 80px 0 25px;
    font-size:16px;
    outline:none;
    background:#fff;
}
.newsletter-input .submit-btn{
    position:absolute;
    top:7px;
    right:6px;
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    background:var(--primary);
    color:#fff;
    font-size:22px;
    font-weight:700;
    padding:0;
    cursor:pointer;
    transition:.3s;
}
.newsletter-input .submit-btn:hover{
    transform:translateY(-2px);
}
.newsletter-check{
    margin-top:18px;
    font-size:15px;
}
.newsletter-check .wpcf7-list-item{
    margin:0;
}
.newsletter-check label{
    display:flex;
    align-items:center;
    gap:10px;
}
.newsletter-check input[type="checkbox"]{
    width:18px;
    height:18px;
}
.newsletter-check a{
    color:#fff;
    text-decoration:underline;
}
.wpcf7-spinner{
    display:none;
}
.wpcf7-submit:disabled{
    opacity:1;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}

/* Btn Primary */

.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 35px;
    border: none;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 47px 9px 24px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgb(0 0 0 / 37%);
/*     margin-right: 26px; */
    clip-path: polygon(
        0 0%,
        88% -17%,
        97% 104%,
        8% 113%
    );
}
/* Shine Effect */
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: 0.6s;
}
.btn-primary::after {
    content: "➜";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: all 0.3s ease;
}
/* Hover Effects */
.btn-primary:hover::before {
    left: 130%;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    color: #000;
}

/* Active Click */
.btn-primary:active {
    transform: scale(0.98);
}
/* ===================================================
   HERO SLIDER
=================================================== */
.hero-slider{
    position:relative;
    overflow:hidden;
}
.hero-slider .carousel-item{
    height:100vh;
    position:relative;
    overflow:hidden;
}
.hero-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transition:transform 8s ease;
}
.hero-slider .carousel-item.active img{
    transform:scale(1.12);
}
.hero-slider .carousel-item::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(90deg, rgb(0 0 0 / 15%) 0%, rgba(0, 0, 0, 0.50) 40%, rgba(255, 106, 0, 0.12) 100%)        
}
.hero-slider .carousel-item::after{
    content:'';
    position:absolute;
    width:800px;
    height:800px;
    background:rgba(255,106,0,0.10);
    border-radius:50%;
    top:-250px;
    right:-150px;
    filter:blur(60px);
    z-index:1;
}
.slider-content {
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 5;
    max-width: 700px;
    color: #fff;
    left: 50%;
    text-align: center;
}
.slider-title {
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(60px);
}
.slider-desc{
    color:rgba(255,255,255,0.75);
    font-size:16px;
    line-height:1.8;
    margin-top:30px;
    opacity:0;
    transform:translateY(40px);
}
.carousel-item .btn-primary{
	opacity:0;
    transform:translateY(40px);
}
.carousel-item.active .slider-title{
    animation:fadeZoom 1.2s ease forwards;
    animation-delay:.3s;
}
.carousel-item.active .slider-desc{
    animation:fadeUp 1s ease forwards;
    animation-delay:.6s;
}
.carousel-item.active .btn-primary{
    animation:fadeUp 1s ease forwards;
    animation-delay:.9s;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes fadeZoom{
    from{
        opacity:0;
        transform:translateY(60px) scale(.9);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
.carousel-indicators {
    left: 50%;
    right: auto;
    bottom: 10%;
    transform: translate(-50%,-50%);
    flex-direction: row;
    gap: 18px;
    margin: 0;
    z-index: 2;
}
.carousel-indicators [data-bs-target]{
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--primary);
    border:2px solid var(--primary);
    opacity:1;
    transition:0.4s;
}
.carousel-indicators [data-bs-target]:hover{
    transform:scale(1.2);
}
.carousel-indicators .active{
    background:transparent;
    position:relative;
    transform:scale(1.2);
}
.carousel-indicators .active::after{
    content:'';
    position:absolute;
    width:8px;
    height:8px;
    background:var(--primary);
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* Tour Categories */
.tour-categories {
  background: #fff;
}

.tour-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #002d57;
  transition: all 0.3s ease;
}

/* Circular image */
/*.tour-image {*/
/*  width: 94px;*/
/*  height: 94px;*/
/*  border-radius: 20%;*/
/*  overflow: hidden;*/
/*  padding: 3px;*/
/*  background: #fff;*/
/*  border: 2px solid #e8e8e8;*/
/*  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.tour-image img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: block;*/
/*  object-fit: cover;*/
/*  border-radius: 20%;*/
/*}*/

/* Text */
.tour-item h5 {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #002d57;
  transition: all 0.3s ease;
}


/* =========================================
   Tour Image - Rotating Border
========================================= */

.tour-image {
    position: relative;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    overflow: visible;
    padding: 3px;
    background: #fff;
    border: 2px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

/* Image */
.tour-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}


/* =========================================
   Rotating Loop Border
========================================= */

.tour-image::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;

    /* Only part of the circle is visible */
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 230deg,
        var(--primary) 280deg,
        var(--primary) 360deg
    );

    opacity: 0;
    transition: opacity 0.3s ease;

    /* Creates the loop/ring shape */
    -webkit-mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 3px),
        #000 calc(100% - 2px)
    );

    mask: radial-gradient(
        farthest-side,
        transparent calc(100% - 3px),
        #000 calc(100% - 2px)
    );

    pointer-events: none;
}


/* =========================================
   Hover
========================================= */

.tour-item:hover {
    transform: translateY(-5px);
}

.tour-item:hover .tour-image {
    border-color: transparent;
    box-shadow: 0 7px 18px rgba(255, 75, 35, 0.25);
    transform: scale(1.05);
}

.tour-item:hover .tour-image::before {
    opacity: 1;
    animation: rotateBorder 1.5s linear infinite;
}

.tour-item:hover h5 {
    color: var(--primary);
}


/* =========================================
   Clockwise Rotation
========================================= */

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================
   Hover
========================= */

/*.tour-item:hover {*/
/*  transform: translateY(-5px);*/
/*}*/

/*.tour-item:hover .tour-image {*/
/*  border-color: var(--primary);*/
/*  box-shadow: 0 7px 18px rgba(300, 75, 35, 0.25);*/
/*  transform: scale(1.05);*/
/*}*/

/*.tour-item:hover h5 {*/
/*  color: var(--primary);*/
/*}*/

/* =========================
   Active Item
========================= */

.tour-item.active .tour-image {
  border: 4px solid var(--primary);
  padding: 2px;
}

.tour-item.active h5 {
  color: var(--primary);
}

/* =========================
   Desktop spacing
========================= */

@media (min-width: 992px) {
  .tour-categories {
    padding: 40px 0;
  }

  .tour-categories .row {
    justify-content: space-between;
  }

  .tour-categories .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* =========================
   Tablet
========================= */

@media (max-width: 991px) {
  .tour-image {
    width: 90px;
    height: 90px;
  }

  .tour-item h5 {
    font-size: 14px;
    margin-top: 14px;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 575px) {
  .tour-categories {
    padding: 20px 0 30px;
  }

  .tour-image {
    width: 78px;
    height: 78px;
  }

  .tour-item h5 {
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-top: 12px;
  }

  .tour-item:hover {
    transform: translateY(-3px);
  }
}



/* About Section */
section{
	padding: 60px 0 0;
}
.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 15px;
    background: #00984624;
    padding: 4px 15px;
    border-radius: 50px;
}
.sub-title i{
    font-size:8px;
}
.heading{
    font-size:42px;
    line-height:1.15;
    color: #000;
    font-weight:700;
    margin-bottom:20px;
}
.about-img{
    position:relative;
    min-height:520px;
}
.about-img img{
    width:100%;
    display:block;
    border-radius:25px;
    object-fit:cover;
}
.img-one {
    width: 90%;
}
.about-icon {
    width: 110px !important;
    bottom: 9%;
    position: absolute;
    left: 0;
    border: 2px dashed var(--primary);
    animation: zoomPulse 2s infinite ease-in-out;
    border-radius: 50% !important;
}
@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}
.img-two {
    width: 340px;
    position: absolute;
    right: -10px;
    bottom: 51px;
    border: 5px solid #fff;
    border-radius: 30px;
}
.about-text{
    display:flex;
    align-items:center;
    gap:35px;
    margin-bottom:35px;
}
.about-text p{
    margin:0;
    color:#666;
    line-height:1.8;
}
.about-list {
    display: flex;
    border-top: 1px solid #e6e6e6;
    padding-top: 20px;
    margin: 0;
    list-style: none;
    gap: 40px;
}
.about-list li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    color:#444;
}
.about-list i{
    color:var(--primary);
}
.circle-text{
    width:160px;
    height:160px;
    position:relative;
}
.circle-text svg{
    width:100%;
    height:100%;
    animation:rotateText 15s linear infinite;
    overflow:visible;
}
.circle-text text{
    font-size:16px;
    letter-spacing:3px;
    fill:var(--primary);
	font-weight: 700;
    text-transform:uppercase;
}
.circle-text path{
    fill:none;
}
.circle-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    font-size:22px;
}
@keyframes rotateText{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/* Counter Section */
.counter-box {
    display: flex;
    gap: 15px;
}
.icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background: var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.4s;
}
.icon i{
    color:#fff;
    font-size:25px;
}

.counter-box:hover .icon{
    transform:rotate(10deg) scale(1.08);
}

.content h2{
    font-size:30px;
    font-weight:700;
    color: var(--primary);
    margin-bottom:5px;
}
.content h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}
.content p{
    color:#666;
    line-height:1.6;
    font-size:15px;
    margin:0;
}


/* =========================================
   Popular Destinations
========================================= */

.popular-destinations {
    background: #fff;
}

/* Section Heading */

.section-heading {
    max-width: 650px;
    margin: 0 auto;
}

.section-heading h2 {
    margin: 0 0 10px;
    color: #002d57;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.section-heading p {
    margin: 0;
    color: #42617c;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================
   Destination Card
========================================= */

.destination-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}


/* =========================================
   Image
========================================= */

.destination-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}


/* =========================================
   Content
========================================= */

.destination-content {
    padding: 20px 20px 18px;
}

.destination-content h3 {
    margin: 0 0 12px;
    /*color: #002d57;*/
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.destination-content p {
    margin: 0 0 16px;
    /*color: #42617c;*/
    font-size: 17px;
    line-height: 1.55;
}


/* =========================================
   Learn More
========================================= */

.destination-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--primary);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;

    transition: all 0.25s ease;
}

.destination-link span {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.destination-link:hover {
    color: var(--secondary);
}

.destination-link:hover span {
    transform: translateX(4px);
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .destination-image {
        height: 180px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .popular-destinations {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-heading {
        margin-bottom: 30px !important;
        padding: 0 10px;
    }

    .section-heading h2 {
        font-size: 25px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .destination-image {
        height: 190px;
    }

    .destination-content {
        padding: 18px;
    }

    .destination-content h3 {
        font-size: 20px;
    }

    /*.destination-content p {*/
    /*    font-size: 12px;*/
    /*}*/

}


/* Blog Section */
.blog-card{
    border:none;
    background:#fff;
}
.btn-blog{
	display: flex;
	justify-content: flex-end;
}
.blog-img{
    overflow:hidden;
    border-radius:22px;
    height:240px;
}
.blog-heading {
    margin-bottom: 25px;
}
.blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}
.blog-card:hover .blog-img img{
    transform:scale(1.05);
}
.blog-content{
    padding-top:28px;
}
.blog-meta{
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#657080;
    margin-bottom:22px;
}
.blog-meta span{
    margin:0 8px;
}
.blog-title{
    font-size:25px;
    line-height:1.25;
    margin-bottom:20px;
}
.blog-title a{
    color:#0b1d2d;
    text-decoration:none;
}
.blog-excerpt{
    color:#5d6268;
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
}
.blog-link{
    color:#102235;
    font-weight:600;
    text-decoration:none;
    border-bottom:1px solid #102235;
    padding-bottom:4px;
}
section.blog-section {
    padding: 60px 0;
}
/* Gallery Section */
.gallerySwiper{
    overflow:hidden;
}
.gallery-item{
    display:inline-block;
    position:relative;
    overflow:hidden;
    border-radius:20px;
}
.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
    display:block;
}
.gallery-section .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
}
.gallery-overlay i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    transform: scale(.5);
    transition: .4s;
}
.gallery-item:hover img{
    transform:scale(1.1);
}
.gallery-item:hover .gallery-overlay{
    opacity:1;
}
.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}
.swiper-button-next,
.swiper-button-prev{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    color: var(--primary);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px;
}

.swiper-pagination-bullet-active{
    background:#ff9800;
}

@media(max-width:768px){
    .gallery-item img{
        height:260px;
    }

    .section-title h2{
        font-size:30px;
    }
}
/* Service Section */
.camp-content img {
    background: var(--primary);
    padding: 10px;
    height: 70px !important;
    width: 70px !important;
    margin-bottom: 20px;
    border-radius: 10px;
}
section.camp-section {
    background: #0098461c;
    padding: 60px 0;
}
.camp-card {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            height: 420px;
            cursor: pointer;
        }

        .camp-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .6s ease;
        }

        .camp-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, .88),
                    rgba(0, 0, 0, .30),
                    transparent);
            z-index: 1;
        }

        .camp-content {
            position: absolute;
            left: 30px;
            right: 30px;
            bottom: 30px;
            color: #fff;
            z-index: 2;
            transition: .4s;
        }

        .camp-content h3 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .camp-content p {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, .9);
            margin-bottom: 0;
        }
        .camp-card:hover img {
            transform: scale(1.12);
        }

        .camp-card:hover .camp-content {
            bottom: 40px;
        }
/* why choose us */
    .why-choose-section{
    overflow:hidden;
}
.why-choose-section .heading{
	color: #fff;
	font-size: 25px;
}
.choose-content{
    background:#08182d;
    color:#fff;
    padding:70px 45px;
    height:100%;
}
.choose-list{
    padding:0;
    list-style:none;
    margin:0 0 35px;
}
.choose-list li{
    margin-bottom:14px;
    font-size:17px;
}
.choose-list i{
    color: var(--primary);
    margin-right:10px;
}
.choose-right{
    position:relative;
    min-height:620px;
    background:url("https://luckytaxiservicekargil.com/wp-content/uploads/2026/08/gallery6.webp") center/cover;
	height: 100%;
}
.overlay{
    position:absolute;
    inset:0;
    background:rgb(0 0 0 / 30%);
}
.stats-row{
    position:relative;
    z-index:2;
    padding-top:55px;
}
.stat-box{
    color:#fff;
}
.stat-box .icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    color: var(--primary);
    font-size:32px;
    margin-bottom:15px;
}
.stat-box .icon i{
	color: var(--primary) !important;
}
.stat-box h2{
    font-size:35px;
    font-weight:700;
    margin-bottom:5px;
}
.stat-box p{
    margin:0;
    font-size:18px;
}
/* Contact Section */
.booking-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}
.booking-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:25px;
    transition:.5s;
}
.booking-image:hover img{
    transform:scale(1.03);
}
.experience-box h3 {
    font-size: 35px;
    font-weight: 600;
}
.booking-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.55),transparent);
    border-radius:25px;
}
.experience-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:var(--primary);
    color:#fff;
    padding:25px 35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}
section.booking-section {
    background: #0098461a;
    padding: 60px 0;
    margin-top: 60px;
}
.booking-form {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px 0 #ddd;
}

.booking-form input,
.booking-form textarea,
.booking-form select{
    width:100%;
    height:42px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 18px;
    outline:none;
    transition:.3s;
    font-size:15px;
}
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus{
    border-color:#10b981;
    box-shadow:0 0 0 4px rgba(16,185,129,.12);
}
.fleet-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 0 10px 0 #ddd;
    transition:.35s;
	height: 420px;
    margin: 10px 0;
}
.fleet-image{
    overflow:hidden;
}

.fleet-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;
}

.fleet-card:hover img{
    transform:scale(1.08);
}
.fleet-content {
    padding: 22px;
    text-align: center;
}

.fleet-content h4{
    font-weight:700;
    margin-bottom:18px;
    font-size: 22px;
}

.car-meta{
    display:flex;
    justify-content: center;
    flex-wrap:wrap;
    gap:15px;
    list-style:none;
    padding:0;
    margin-bottom:15px;
    font-size:14px;
}
.car-meta li{
    color:#666;
}
.car-meta i{
    color:var(--primary);
    margin-right:5px;
}
.fleet-content p{
    color:#777;
    margin-bottom:20px;
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.fleet-footer small{
    color:#888;
}

.fleet-footer h5{
    color:#18b76c;
    margin-top:5px;
    font-weight:700;
}

.fleet-footer span{
    font-size:13px;
    color:#777;
}
.fleet-prev ,
.fleet-next{
    background: var(--primary);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}
.prev-next {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
/* testimonial */
.testimonial-wrapper {
            position: relative;
        }
        .testimonial-card {
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 16px;
            padding: 22px;
            transition: .35s;
            height: 300px;
        }
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        }
        .testimonial-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .quote {
            color: #17b663;
            font-size: 22px;
        }
        .google-icon {
            width: 34px;
        }
        .testimonial-card p {
            font-size: 15px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
        }
        .testimonial-bottom {
            display: flex;
            align-items: center;
            gap: 12px;
        }
       .client-avatar{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#17b663,#0f8f4f);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    box-shadow:0 8px 20px rgba(23,182,99,.25);
}
.testimonial-bottom{
    display:flex;
    align-items:center;
    gap:12px;
}
.contact-item a {
    color: #fff;
    text-decoration: none;
}
.contact-detail a {
    color: #000;
    text-decoration: none;
}
        .testimonial-bottom h5 {
            margin: 0;
            font-size: 17px;
            font-weight: 700;
        }
        .rating {
            margin-top: 4px;
        }
        .rating i {
            color: #ffc107;
            font-size: 13px;
        }
        .testimonial-prev,
        .testimonial-next {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            z-index: 10;
            transition: .3s;
        }
        .testimonial-prev {
            left: -25px;
        }
        .testimonial-next {
            right: -25px;
        }
        .testimonial-prev:hover,
        .testimonial-next:hover {

            background: #111827;
        }

/* Responsive */
@media(max-width: 1200px){
	
}
@media(max-width: 1024px){
	.heading {
		font-size: 30px;
		line-height: 1;
		margin-bottom: 12px;
	}
	.sub-title{
		font-size: 16px;
	}
	.choose-content{
		padding: 30px;
	}
	.slider-title{
		font-size: 32px;
	}
}
@media(max-width: 991px){
	.img-one {
		width: 80%;
	}
	.about-icon {
		top: 10%;
		right: 2%;
		left: auto;
	}
	.heading br{
		display: none;
	}
}
@media(max-width: 767px){
	.mobile-menu .btn-primary{
		background: #fff !important;
		color: #000 !important;
		margin: 10px !important;
	}
	.slider-content{
		width: 100%;
		max-width: 100%;
	}
	.hero-slider .carousel-item{
		height: 85vh;
	}
	section{
		padding: 30px 0 0;
	}
	.about-img{
		min-height: auto;
	}
	.about-icon{
		top: 2%;
	}
	section.camp-section{
		padding: 30px 0;
	}
	.prev-next {
		justify-content: flex-start;
	}
	section.booking-section {
		padding: 30px 0;
		margin-top: 30px;
	}
	.btn-blog {
		display: flex;
		justify-content: flex-start;
	}
	section.blog-section {
		padding: 30px 0;
	}
	.footer hr {
		margin: 15px 0;
	}
	.footer-top h2{
		font-size: 25px;
	}
	.footer p{
		margin-bottom: 0;
	}
	.top-bar{
		display: none;
	}
	.camp-card {
    height: 400px;
}
}
@media(max-width: 667px){
	.img-two{
		bottom: 10px;
	}
}
@media(max-width: 568px){
	.about-icon {
    display: none !important;
}
	.img-two{
		display: none;
	}
	.img-one{
		width: 100%;
	}
	.testimonial-prev{
		left: 0;
	}
	.testimonial-next{
		right: 0;
	}
	.booking-image img{
		height: auto;
	}
}
@media(max-width: 479px){
	.about-text {
		display: flex;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 35px;
		flex-direction: column;
	}
	.about-list {
    display: flex;
    border-top: 1px solid #e6e6e6;
    padding-top: 20px;
    margin: 0;
    list-style: none;
    gap: 10px;
    flex-direction: column;
    padding-left: 0;
}
	
}
@media(max-width: 414px){
	.slider-title {
    font-size: 25px;
}
	.section-title h2 {
    font-size: 25px;
}
	.heading {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 12px;
}
}
@media(max-width: 375px){
	
}
@media(max-width: 360px){
	
}
@media(max-width: 325px){
	
}