 /* banner section */
 .page-banner {
     position: relative;
     height: 300px;
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .page-banner .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     /* dark overlay */
 }

 .page-banner .content {
     position: relative;
     z-index: 2;
     color: #fff;
 }

 .page-title {
     font-size: 36px;
     font-weight: 700;
     color: #fff;
 }

 .breadcrumb {
     background: transparent;
 }

 .breadcrumb a {
     color: #fff;
     text-decoration: none;
 }

 .breadcrumb-item.active {
     color: #ddd;
 }

 /* ============= */



 /* ===== HEADER ===== */
 .main-header {
     position: sticky;
     top: 0;
     z-index: 9999;
 }

 /* TOP BAR */
 .top-bar {
     background: #777674;
     color: #fff;
     font-size: 14px;
     padding: 8px 0;
 }

 /* NAVBAR */
 .navbar-area {
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     padding: 12px 0;
 }

 /* LOGO */
 .logo img {
     height: 55px;
 }

 /* MENU */
 .nav-menu ul {
     display: flex;
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .nav-menu ul li {
     margin-left: 25px;
 }

 .nav-menu ul li a {
     text-decoration: none;
     color: #333;
     font-weight: 600;
     position: relative;
     transition: 0.3s;
 }

 /* ACTIVE LINK */
 .nav-menu ul li a.active,
 .nav-menu ul li a:hover {
     color: #141d28;
 }

 .nav-menu ul li a.active::after,
 .nav-menu ul li a:hover::after {
     content: "";
     position: absolute;
     width: 100%;
     height: 2px;
     background: #ee7709;
     bottom: -5px;
     left: 0;
 }

 /* MOBILE BUTTON */
 .menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .menu-toggle span {
     width: 25px;
     height: 3px;
     background: #333;
     margin: 4px 0;
 }

 /* SECTION SPACING */
 .tours-type {
     padding: 60px 0;
 }

 /* CARD */
 .tours-type__item__image {
     position: relative;
     display: block;
     overflow: hidden;
 }

 .tours-type__item__image img {
     width: 100%;
     display: block;
     transition: transform 0.3s;
 }

 .tours-type__item__image:hover img {
     transform: scale(1.05);
 }

 .tours-type__item__image .overlay {
     position: absolute;
     bottom: 0;
     /* <-- text at the bottom */
     left: 0;
     width: 100%;
     background: rgba(0, 0, 0, 0.5);
     /* semi-transparent background */
     color: #fff;
     padding: 15px;
     box-sizing: border-box;
     transition: background 0.3s;
 }



 .tours-type__item__image .overlay h4,
 .tours-type__item__image .overlay p {
     margin: 0;
 }

 /* Container Flex */
 .read_more {
     display: flex;
     gap: 10px;
     justify-content: space-between;
     /* Call left, WhatsApp right */
 }

 /* Common button style */
 .read_more a.btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     /* icon & text spacing */
     padding: 10px 15px;
     border-radius: 6px;
     font-weight: 500;
     color: #fff;
     text-decoration: none;
     font-size: 14px;
     transition: 0.3s;
 }

 /* Call Button */
 .btn-call {
     background-color: #28a745;
 }

 .btn-call:hover {
     background-color: #218838;
 }

 /* WhatsApp Button */
 .btn-whatsapp {
     background-color: #25D366;
 }

 .btn-whatsapp:hover {
     background-color: #1DA851;
 }

 /* Icon fix */
 .read_more i.fa {
     font-size: 16px;
 }

 /* Mobile responsive: stack vertically */
 @media (max-width: 576px) {
     .read_more {
         flex-direction: column;
     }

     .read_more a.btn {
         width: 100%;
         justify-content: center;
     }

     .btn-whatsapp {
         order: 2;
         /* WhatsApp below call on mobile */
     }
 }


 /* ===== RESPONSIVE ===== */

 /* MOBILE */
 @media (max-width: 576px) {
     .tours-type__item__image img {
         height: 200px;
     }

     .overlay h4 {
         font-size: 16px;
     }

     .overlay p {
         font-size: 12px;
     }
 }

 /* TABLET */
 @media (max-width: 768px) {
     .tours-type__item__image img {
         height: 220px;
     }
 }

 /* LARGE */
 @media (min-width: 1200px) {
     .tours-type__item__image img {
         height: 260px;
     }
 }

 /* ===== MOBILE ===== */
 @media (max-width: 991px) {

     .menu-toggle {
         display: flex;
     }

     .nav-menu {
         position: fixed;
         top: 0;
         left: -100%;
         width: 260px;
         height: 100%;
         background: #fff;
         transition: 0.3s;
         padding-top: 60px;
         z-index: 9999;
     }

     .nav-menu.active {
         left: 0;
     }

     .nav-menu ul {
         flex-direction: column;
     }

     .nav-menu ul li {
         margin: 15px 20px;
     }
 }

 /* HERO SLIDER */
 /* Slider height */


 /* Image */
 .carousel-item img {
     height: 100%;
     object-fit: cover;
 }

 .carousel-item {
     height: 85vh;
 }

 /* Overlay */


 /* Caption */
 .custom-caption {
     bottom: 25%;
     left: 8%;
     text-align: left;
 }

 /* Text */
 .custom-caption h1 {
     font-size: 50px;
     font-weight: 700;
     color: #fff;
 }

 .custom-caption p {
     font-size: 18px;
     color: #ddd;
 }

 /* Center content */
 .custom-caption {
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     bottom: auto;
     text-align: center;
     width: 100%;
 }

 /* Text center */
 .custom-caption h1,
 .custom-caption p {
     text-align: center;
 }

 /* Button */
 .custom-caption .btn {
     padding: 10px 25px;
     border-radius: 30px;
 }

 .carousel-item {
     transition: transform 0.3s ease-in-out;
 }

 /* Mobile */
 @media (max-width: 768px) {
     .carousel-item {
         height: 60vh;
     }

     .custom-caption h1 {
         font-size: 26px;
     }

     .custom-caption p {
         font-size: 14px;
     }
 }

 /* index - WHY CHOOSE US  /////////////////******************/

 /* Main Card Styling */
 .widget-icon-box {
     background: #fff;
     padding: 25px 20px;
     border-radius: 12px;
     text-align: center;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     height: 100%;
 }

 /* Hover Effect */
 .widget-icon-box:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }

 /* Icon Styling */
 .boxes-icon {
     margin: auto;
     border-radius: 50%;
     background: linear-gradient(135deg, #ece8e8, #ebe8e6);
     color: #fff;
     margin-bottom: 15px;
     transition: 0.3s;
 }

 .widget-icon-box:hover .boxes-icon {
     transform: scale(1.1);
 }

 /* Title */
 .heading__primary {
     font-size: 18px;
     font-weight: 600;
     margin-top: 10px;
 }

 /* Description */
 .desc-icon-box div {
     font-size: 14px;
     color: #666;
     margin-top: 8px;
 }

 /* Responsive spacing */
 @media (max-width: 768px) {
     .wpb_column {
         margin-bottom: 20px;
     }
 }

 /* index -DESTINATION *****************************************/

 /* Overlay */
 .card-overlay {
     position: absolute;
     bottom: 0;
     width: 100%;
     padding: 15px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: #fff;
 }

 .card-overlay h5 {
     margin: 0;
     font-weight: 600;
 }

 .card-overlay p {
     margin: 0;
     font-size: 13px;
 }

 .destination-card {
     position: relative;
     overflow: hidden;
 }

 .destination-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: 0.4s;
 }

 .destination-card:hover img {
     transform: scale(1.1);
 }

 .card-overlay {
     position: absolute;
     bottom: 0;
     width: 100%;
     padding: 15px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: #fff;
 }

 .tours_type_item img {
     width: 100%;
     height: 220px;
     /* ✅ fixed height */
     object-fit: cover;
     /* ✅ image crop proper */
 }

 .tours_type_item {
     padding: 5px;
     /* gap between items */
 }

 /* About page  ****************/
 .padding-top-4x {
     padding-top: 60px;
 }

 .padding-bottom-4x {
     padding-bottom: 60px;
 }

 .margin-top-3x {
     margin-top: 30px;
 }

 .title_primary {
     margin-bottom: 20px;
     font-weight: bold;
 }

 .section-white {
     background: #f9f9f9;
 }

 /* services */
 .accordion-item {
     border-bottom: 1px solid #ddd;
     margin-bottom: 10px;
 }

 .accordion-header {
     background: #f5f5f5;
     padding: 15px 20px;
     cursor: pointer;
     transition: 0.3s;
 }

 .accordion-header:hover {
     background: #e9e9e9;
 }

 .accordion-header h4 {
     margin: 0;
     color: #75abaf;
     font-weight: 600;
 }

 .accordion-body {
     display: none;
     padding: 15px 20px;
     background: #fff;
 }

 .accordion-body ul {
     list-style: none;
     padding-left: 0;
 }

 .accordion-body li {
     padding: 5px 0;
     position: relative;
 }

 .accordion-body li::before {
     content: "›";
     color: #426d72d2;
     margin-right: 10px;
 }



 /* about button  */

 .cta-btn {
     display: inline-block;
     margin: 10px;
     padding: 12px 25px;
     border-radius: 30px;
     color: #fff;
     font-size: 16px;
     text-decoration: none;
     transition: 0.3s;
 }

 .call-btn {
     background: #007bff;
 }

 .whatsapp-btn {
     background: #25d366;
 }

 .cta-btn:hover {
     transform: scale(1.05);
 }


 .section-title {
     font-size: 32px;
     position: relative;
 }

 .section-title::after {
     content: "";
     width: 60px;
     height: 3px;
     background: #007bff;
     display: block;
     margin: 10px auto 0;
     border-radius: 2px;
 }

 /* Card Style */
 .choose-card {
     background: #fff;
     padding: 30px 20px;
     border-radius: 15px;
     transition: 0.4s;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
     position: relative;
     overflow: hidden;
 }

 /* Hover Animation */
 .choose-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 /* Icon Box */
 .icon-box {
     width: 70px;
     height: 70px;
     margin: auto;
     margin-bottom: 20px;
     border-radius: 50%;
     background: linear-gradient(135deg, #007bff, #00c6ff);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 28px;
     transition: 0.4s;
 }

 /* Icon hover */
 .choose-card:hover .icon-box {
     transform: rotate(360deg) scale(1.1);
 }

 /* Text */
 .choose-card h5 {
     font-weight: 600;
     margin-bottom: 10px;
 }

 .choose-card p {
     font-size: 14px;
     color: #666;
 }

 /* Glow effect */
 .choose-card::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 0;
     background: rgba(0, 123, 255, 0.1);
     top: 0;
     left: 0;
     transition: 0.4s;
 }

 .choose-card:hover::before {
     height: 100%;
 }



 /* Title */
 .section-title {
     padding: 20px;
     font-size: 32px;
     position: relative;
 }

 .section-title::after {
     content: "";
     width: 60px;
     height: 3px;
     background: #007bff;
     display: block;
     margin: 10px auto;
 }

 /* Accordion */
 .custom-accordion .accordion-item {
     background: rgba(255, 255, 255, 0.7);
     backdrop-filter: blur(10px);
     border-radius: 12px;
     margin-bottom: 15px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
     transition: 0.3s;
 }

 .accordion-header {
     padding: 18px 20px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
 }

 .accordion-header h5 {
     margin: 0;
 }

 .accordion-header i {
     color: #007bff;
     margin-right: 10px;
 }

 /* Plus icon */
 .accordion-header .icon {
     font-size: 22px;
     transition: 0.3s;
 }

 /* Content */
 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: 0.4s ease;
     padding: 0 20px;
 }

 /* Active */
 .accordion-item.active .accordion-content {
     max-height: 300px;
     padding: 20px;
 }

 .accordion-item.active .icon {
     transform: rotate(45deg);
 }

 /* List */
 .accordion-content ul {
     padding-left: 15px;
 }

 .accordion-content li {
     margin-bottom: 8px;
     font-size: 14px;
     color: #555;
 }

 /* Hover */
 .accordion-item:hover {
     transform: translateY(-5px);
 }

 /* footer call icon **************/

 /* Container */
 /* Container */
 .floating-buttons {
     position: fixed;
     right: 20px;
     bottom: 20px;
     display: flex;
     flex-direction: column;
     /* 👈 vertical */
     gap: 15px;
     /* 👈 space between buttons */
     z-index: 9999;
 }

 /* Button */
 .float-btn {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 24px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
     position: relative;
 }

 /* Colors */
 .call {
     background: #007bff;
 }

 .whatsapp {
     background: #25d366;
 }

 /* Hover */
 .float-btn:hover {
     transform: scale(1.1);
 }

 /* Pulse */
 .float-btn::before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background: inherit;
     z-index: -1;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 0.6;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 0.6;
     }

     70% {
         transform: scale(1.5);
         opacity: 0;
     }

     100% {
         transform: scale(1);
         opacity: 0;
     }
 }

 /* Vibrate on hover */
 .float-btn:hover i {
     animation: vibrate 0.4s linear infinite;
 }

 @keyframes vibrate {
     0% {
         transform: translate(0);
     }

     25% {
         transform: translate(2px, -2px);
     }

     50% {
         transform: translate(-2px, 2px);
     }

     75% {
         transform: translate(2px, 2px);
     }

     100% {
         transform: translate(0);
     }



 }

 .fleet-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: 0.3s;
 }

 .fleet-card:hover {
     transform: translateY(-8px);
 }

 .image-box {
     position: relative;
 }

 .image-box img {
     width: 100%;
     height: 220px;
     object-fit: cover;
 }

 .price {
     position: absolute;
     top: 10px;
     left: 10px;
     background: #26BDF7;
     color: #fff;
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 14px;
 }

 .content {
     padding: 15px;
 }

 .content h4 {
     margin-bottom: 5px;
     font-weight: 600;
 }

 .actions {
     display: flex;
     justify-content: space-between;
     padding: 15px;
     border-top: 1px solid #eee;
 }

 .actions a {
     text-decoration: none;
 }

 .btn-wa {
     background: #25D366;
     color: #fff;
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 14px;
 }

 .item-tour {
     height: 100%;
 }

 .item_border {
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .post_imag img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .container-fluid {
     max-width: 1400px;
     margin: auto;
 }

 /* about page  */
 .about-section {
     background: #f9f9f9;
 }

 /* Main Image */
 .about-img {
     position: relative;
     overflow: hidden;
     border-radius: 15px;
 }

 .about-img img {
     width: 100%;
     height: 450px;
     object-fit: cover;
     transition: 0.4s;
 }

 .about-img:hover img {
     transform: scale(1.05);
 }

 /* Content */
 .about-content {
     padding: 20px;
 }

 .container-fluid {
     max-width: 1400px;
     margin: auto;
 }

 .subtitle {
     color: #ff6600;
     font-size: 14px;
     letter-spacing: 3px;
     margin-bottom: 10px;
     font-weight: 600;
 }

 .title {
     font-size: 32px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .desc {
     color: #666;
     font-size: 15px;
     margin-bottom: 20px;
 }

 /* Small Images */
 .small-img {
     width: 100%;
     height: 120px;
     object-fit: cover;
     border-radius: 10px;
     transition: 0.3s;
 }

 .small-img:hover {
     transform: scale(1.05);
 }

 /* Button */
 .btn-book {
     display: inline-block;
     padding: 10px 25px;
     background: #ff6600;
     color: #fff;
     border-radius: 30px;
     text-decoration: none;
     transition: 0.3s;
 }

 .btn-book:hover {
     background: #e05500;
     color: #fff;
 }

 /* 📱 Mobile Responsive */
 @media (max-width: 768px) {
     .about-img img {
         height: 250px;
     }

     .title {
         font-size: 24px;
     }

     .small-img {
         height: 100px;
     }
 }

 .post_images {
     position: relative;
     overflow: hidden;
 }

 /* .post_images img {
    width: 100%;
    display: block;
} */

 .post_images img {
     width: 100%;
     /* container width fill karel */
     height: 200px;
     /* fixed height (adjust as per design) */
     object-fit: cover;
     /* crop without stretching */
     border-radius: 5px;
     /* optional, design sathi */
 }



 .item-tour {
     position: relative;
     overflow: hidden;
 }

 .item_border {
     position: relative;
     overflow: hidden;
 }

 .price {
     position: absolute;
     top: 10px;
     left: 10px;
     z-index: 10;
     background: #d47e06;
     color: #fff;
     padding: 5px 12px;
     border-radius: 10px;
 }

 .button-container {
     display: flex;
     justify-content: center;
     /* horizontally center */
     padding: 20px;
     /* optional spacing */
 }

 .btn-see-all {
     padding: 10px 25px;
     background-color: #d47e06;
     color: #fff;
     text-decoration: none;
     border-radius: 5px;
     font-weight: 600;
     display: inline-block;
     /* optional */
     transition: 0.3s;
 }

 .btn-see-all:hover {
     background-color: #e65c00;
 }

 .related-section {
     margin-top: 40px !important;
 }

 .col-lg-8 img {
     max-height: 350px;
     object-fit: cover;
 }

 .image-wrapper {
     width: 100%;
     height: 350px;
     /* fixed height */
     overflow: hidden;
     border-radius: 10px;
 }

 .image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* main magic */
 }

 .gallery_item-wrap img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 .gallery-item {
     position: absolute;
     bottom: 0;
     width: 100%;
     background: rgba(0, 0, 0, 0.5);
     color: #fff;
     padding: 10px;
 }


 .gallery-card {
     overflow: hidden;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .gallery-img {
     position: relative;
     height: 220px;
     overflow: hidden;
 }

 .gallery-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* 🔥 MAIN FIX */
     transition: 0.4s ease;
 }

 /* ZOOM EFFECT */
 .gallery-card:hover img {
     transform: scale(1.1);
 }

 /* OVERLAY */
 .gallery-img .overlay {
     position: absolute;
     bottom: 0;
     width: 100%;
     padding: 15px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     color: #fff;
 }

 .gallery-img .overlay h5 {
     margin: 0;
     font-size: 16px;
     font-weight: 600;
 }

 .gallery-img .overlay p {
     margin: 0;
     font-size: 13px;
 }

 .fleet-card .image-box {
     position: relative;
     overflow: hidden;
 }

 .fleet-card .image-box img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     border-radius: 10px;
 }

 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: all 0.4s ease;
 }

 .accordion-item.active .accordion-content {
     max-height: 500px;
 }

 @media (max-width: 768px) {
     .section-background {
         min-height: auto;
         /* mobile वर height auto */
         padding: 40px 0;
     }
 }

 .section-background {
     position: relative;
     z-index: 1;
 }

 .section-background::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.5);
     /* dark overlay */
     z-index: -1;
 }

 .menu-toggle {
     transition: transform 0.3s ease;
 }

 .menu-toggle.active {
     transform: rotate(90deg);
 }


 /* ///////////////////////////////////////////////////////////////////////////////Dashboard */