:root {
    --primary-color: #c99d66;
    --heading: #341942;
    --white: #fff;

}

* {
    font-family: "Poppins", sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
}
.p-color{
    color: #c99d66;
}
.pt100{
    padding-top: 100px;
}
.pt70{
    padding-top: 70px;
}
.pt50{
    padding-top: 50px;
}
.pb100{
    padding-bottom: 100px;
}
.pb70{
    padding-bottom: 70px;
}
.pb50{
    padding-bottom: 50;
}
/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins";
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

header {
    /* background: rgba(0, 0, 0, 0.6); */
    padding: 15px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    /* padding: 0 20px; */
}



/* Logo */
.logo img {
    width: 200px;
}

/* Desktop Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0 20px;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    display: inline-block;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Submenu */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.submenu li {
    display: block;
    padding: 0px 15px;
    /* Side padding */
}

.submenu li a {
    width: 180px;
    display: block;
    color: var(--primary-color);
    /* Gold text color */
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 5;
    /* Space above and below */
    border-bottom: 1px solid #ccc;
    /* Border under the text */
}

.submenu li:last-child a {
    border-bottom: none;
    /* Remove border for last item */
}

.submenu li a:hover,
.submenu li.active a {
    /* Active state */
    color: var(--heading);
    /* Dark purple */

}

.nav-links li:hover .submenu {
    display: block;
}

.bar {
    color: var(--primary-color);
}

/* Add dropdown arrows */
.nav-links li .dropdown-arrow::after {
    content: " \f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
}
.header_acct--area {
    display: flex;
    align-items: center;
}
.curren-div select {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}
.cart-div a img {
    width: 25px;
}
.cart-div {
  position: relative;
  display: inline-block;
}

.cart-div i{
    color: #b88643;
}

.cart-link {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #341942;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #341942;
  color: #b88643;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 0 0 2px #b88643; /* optional border to separate from icon */
}
.account-sign a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
}
.cart-div {
    padding: 0 10px 0 20px;
}
.account-sign {
    padding: 0 0 0 10px;
}
.header_inner{
    margin-right: 30px;
    display: flex;
}

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: var(--heading);
    color: white;
    transition: 0.3s;
    padding-top: 30px;
    z-index: 1001;
    overflow-y: auto;
    /* Makes the menu scrollable */
}

.mobile-menu img {
    filter: brightness(100);
    margin-left: 10px;
    width: 180px;
}

.close-btn {
    display: flex;
    justify-content: space-between;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .close-btn {
    justify-content: center;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 30px;
    cursor: pointer;
}

.mobile-logo {
    /* border-bottom: 1px solid; */
    padding-bottom: 25px;
}

.mobile-menu ul {
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    padding: 15px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    flex-grow: 1;
}

.mobile-menu ul li a:hover {
    background: var(--primary-color);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-submenu li {
    padding: 10px;
}

.mobile-submenu li a {
    padding-left: 0px;
}

ul.mobile-submenu li {
    padding: 10px 10px;
}

.mobile-menu ul li .toggle-submenu {
    padding: 8px;
    background: var(--primary-color);
    float: right;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-menu ul li .toggle-submenu.rotate {
    transform: rotate(180deg);
}

/* hero section starts */

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.slide.active {
    opacity: 1;
}

.overlay {
    opacity: 1;
    overflow: hidden;
    /* top: -100px; */
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/hero-overlay.png');
    background-repeat: no-repeat;
}

/* .overlay {
    overflow: hidden;
    top: -100px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #341942, transparent);
} */

.slide-content {
    position: relative;
    text-align: center;
    color: white;
    /* max-width: 700px; */
    padding: 20px;
    z-index: 100;
}

.slide-content span {
    color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-content h1 {
    margin-top: 50px;
    font-size: 78px;
    margin-bottom: 100px;
    opacity: 0;
    /* Initially hidden */
    transform: translateY(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);



}

.slide.active .slide-content h1 {
    animation: slideDown 2s ease-out forwards;
}


.slide-content p {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    font-size: 32px;
    margin-bottom: 60px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 40px;
    color: var(--primary-color);
    font-weight: bolder;
    background: transparent;
    font-size: 28px;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: 0.3s ease;

}

.hero-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Navigation Arrows */
.slider-nav {
    z-index: 101;
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.video-bg {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    z-index: -1;
                    /* Send it behind content */
                }
                /* .hero-nav .prev img */
.slider .prev  img,
.slider .next  img {
    height: 40px !important;
}

.slider .prev i,
.slider .next i {
    font-size: 55px !important;
    text-shadow: 2px 0 var(--primary-color),
        -2px 0 var(--primary-color),
        0 2px var(--primary-color),
        0 -2px var(--primary-color);
}

.slider .prev img,
.slider .next img {
    padding: 0px 40px;
    font-size: 55px !important;
    -webkit-text-stroke: 2px var(--primary-color);
    color: transparent;
    /* Removes the fill, keeping only the stroke */
}


.slider .prev  img:hover,
.slider .next  img:hover {
    cursor: pointer;
    filter: brightness(100);
}

.breadcrumb-section {
    background-size: cover !important;
    position: relative;
    width: 100%;
    height: 100%; 
    background-repeat: no-repeat !important;
    background-position: center;
    background: url('../images/breadcrumb-1.jpg') ;
    display: flex;
    align-items: center;
}
.packages-breadcrumb{
    background: url('../images/breadcrumbs/packages-breadcrumb.jpg') ;
}
.packages-single-breadcrumb{
    background: url('../images/breadcrumbs/packages-single-breadcrumb.jpg') ;
}
.aboutus-breadcrumb{
    background: url('../images/breadcrumbs/about-us.jpg');
}
.contactus-breadcrumb{
    background: url('../images/breadcrumbs/contact-us.jpg');
}
.terms-breadcrumb{
    background: url('../images/breadcrumbs/terms-condition.jpg');
}
.vacation-breadcrumb{
    background: url('../images/breadcrumbs/vacations.jpg');
}
.vacation-det-breadcrumb{
    background: url('../images/breadcrumbs/leisure-vacation-breadcrumb.jpg');
}
.destination-breadcrumb{
    background: url('../images/breadcrumbs/destination.jpg');
}
.destination-det-breadcrumb{
    background: url('../images/breadcrumbs/morroco-destination-detail.jpg');
}
.services-breadcrumb{
    background: url('../images/breadcrumbs/services-breadcrumb.jpg');
}
.cart-breadcrumb{
    background: url('../images/breadcrumbs/cart-breadcrumb.jpg');
}
.custompkg-breadcrumb{
    background: url('../images/breadcrumbs/custom-pkg.jpg');
}
.pkg-det-breadcrumb{
    background: url('../images/breadcrumbs/family-travel-breadcrimb.jpg');
}
/* Overlay to darken the background */
.breadcrumb-section .breadcrumb-overlay {
    opacity: .9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/breadcrumbs/BREADCRUMBS-SHADE-01.png');
    background-repeat: no-repeat;
    background-size: cover;
}


/* Content Styling */
.breadcrumb-content {
    padding: 200px 0px;
    text-align: center; 
    color: var(--primary-color);
}

/* Heading with Underline */
.breadcrumb-content h1 {
    color: var(--white);
    font-size: 60px;
    font-weight: 600;
    position: relative;
}

/* Underline using ::after */
.breadcrumb-content h1::after {
    content: "";
    display: none;
    width: 140px;
    height: 8px;
    background: var(--primary-color); 
    margin-top: 20px; 
}


/* why golden globe */
.why-section {
    padding: 50px 25px 0px 25px;
}

.why-heading h1 {
    color: var(--heading);
    font-size: 48px;
    font-weight: bolder;
}

.why-card {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    /* text-align: center; */
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.why-card:hover {
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Image Styling */
.why-card img {
    width: 80px;
    /* Adjust Image Size */
    margin-bottom: 15px;
}

/* Title Styling */
.why-card h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.why-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.4;
}

/* featured activites */

.featured-activities {
    padding: 50px 25px 0px 25px;
}

.feature-heading h1 {
    color: var(--heading);
    font-size: 48px;
    font-weight: bolder;
    padding-bottom: 25px;
}

/* Swiper Container */
.mySwiper {
    width: 100%;
    height: 400px;
}

/* Slide Content Wrapper */
.slide-wrapper {
    position: relative;
    border-radius: 45px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/* Image Styling */
.slide-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px !important;
}

/* Image Overlay */
.slide-overlay {
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/featured-act-overlay.png');
    opacity: .9;
    z-index: 1;
}

/* Overlay Text & Button */
.activity-content {
    position: absolute;
    top: 20%;
    left: 5%;
    color: white;
    z-index: 2;
}

.activity-content h3 {
    color: #c99d66;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
    max-width: 680px;
}
.activity-content h4 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    width: 100%;
    max-width: 680px;
}

.activity-content p {
    font-size: 28px;
    margin-bottom: 40px;
}

.book-btn {
    display: inline-block;
    padding: 8px 40px;
    color: var(--primary-color);
    font-weight: bolder;
    background: transparent;
    font-size: 22px;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: 0.3s ease;
}

.book-btn:hover {
    color: #fff;
    background: var(--primary-color);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: auto;
    /* Allow image size */
    height: auto;
    /* Allow image size */
    background: none !important;
    /* Remove default Swiper background */
    top: 50% !important;
    /* Center vertically */
    /* transform: translateY(-50%); */
    margin: 0 50px;
    /* Add margin to left and right */
}
.testimonial-arrow{
    margin: 0 0px !important;

}
.swiper-button-next img,
.swiper-button-prev img {
    height: 40px;
}

/* Hover effect */
.swiper-button-next:hover img,
.swiper-button-prev:hover img {
    filter: brightness(1.2);
    /* Lighten the image on hover */
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev';
    display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next';
    display: none;
}

/* dubai attractions start */
.dubai-attraction,
.abu-dhabi-attraction,
.safari-attraction,
.oman-attraction {
    padding: 50px 25px 0px 25px;
}

.dubai-slider-heading,
.abudhabi-slider-heading,
.safari-slider-heading,
.oman-slider-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

.dubai-slider-heading h1 a,
.abudhabi-slider-heading h1 a,
.safari-slider-heading h1 a,
.oman-slider-heading h1 a{
    text-decoration: none;
    color: var(--heading);
    font-size: 48px;
    font-weight: bold;
}
.dubai-slider-heading h1 a:hover,
.abudhabi-slider-heading h1 a:hover,
.safari-slider-heading h1 a:hover,
.oman-slider-heading h1 a:hover{
    color: var(--primary-color);
}

.dubai-slider-heading p,
.abudhabi-slider-heading p,
.safari-slider-heading p,
.oman-slider-heading p {
    font-size: 18px;
    color: gray;
}

/* Custom Owl Navigation */
.duabi-custom-owl-nav .owl-nav,
.abu-custom-owl-nav .owl-nav,
.safari-custom-owl-nav .owl-nav,
.oman-custom-owl-nav .owl-nav {
    display: flex;
    gap: 10px;
}

.duabi-custom-owl-nav button,
.abu-custom-owl-nav button,
.safari-custom-owl-nav button,
.oman-custom-owl-nav button {
    color: var(--primary-color) !important;
    background: transparent;
    border: 1px solid var(--heading) !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: 0.3s;
}

.duabi-custom-owl-nav button:hover,
.abudhabi-custom-owl-nav button:hover,
.safari-custom-owl-nav button:hover,
.oman-custom-owl-nav button:hover {
    background: var(--heading) !important;

}

.owl-stage-outer {
    padding: 10px 15px;
    /* Adds space on both sides */
    margin: 0 -15px;
    /* Offsets the padding to prevent overflow */
    overflow: hidden;
    /* Keeps other cards hidden */
}

/* Attraction Card */
.attraction-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.attraction-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    /* Optional: Enhances hover effect */
}


.attraction-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.attraction-card .card-body {
    padding: 28px 25px 0px 25px;
}

.attraction-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}
.attraction-card .card-body h3 a {
    
    color: #000;
    text-decoration: none;
}
.attraction-card .card-body h3 a:hover {
    color: var(--primary-color);
}


.attraction-card ul {
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

.attraction-card ul li {
    padding-bottom: 8px;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.attraction-card ul li i {
    color: var(--heading);
}

/* Price & Buttons */
.attraction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px 24px;
    /* border-top: 1px solid #ddd; */
}

.contact-btn {
    background: var(--heading);
    color: #fff;
    font-size: 18px;
    padding: 8px 18px;
    border-radius: 45px;
    text-decoration: none;
    transition: 0.3s;
}

a.contact-btn.contact-whatsapp img {
    display: inline;
    height: 36px;
    width: 36px;
}

a.contact-btn.contact-whatsapp {
    background: none;
    padding: 5px;
}

.contact-btn:hover {
    background: #3d3d8f;
    color: #fff;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: var(--heading);
}


/* package-description-starts */
.pkg-det-gallery-section {
    padding: 50px 25px 50px 25px;
}

.tour-top-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 35px 0px;
    border-radius: 10px;
    margin: auto;
}

.tour-info {
    display: flex;
    flex-direction: column;
}

.recommended {
    font-size: 28px;
    font-weight: 500;
    color: var(--heading);
    text-transform: uppercase;
}

.tour-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 3px 0;
}

.tour-details {
    display: flex;
    gap: 60px;
    font-size: 18px;
    color: #000;
    margin-top: 15px;
}

.tour-details i {
    margin-right: 5px;
}

.tour-top-desc .price {

    font-size: 32px;
    font-weight: 700;
    color: var(--heading);
}

/* gallery-css */
.gallery-container {
    display: flex;
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.more-images-overlay {
    position: relative;
}

.more-counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(27 17 97 / 50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 25px;
}

/* Enlarge main image */
.lg-item.lg-current {
    width: 62.5%;
    /* Increase width of main image */
    height: auto;
}

/* Align thumbnail images in a horizontal row */
.lg-thumb {
    display: flex !important;
    /* Make thumbnails inline */
    justify-content: center;
    /* Center the thumbnails */
}

.lg-thumb-item {
    margin: 0 5px;
    /* Add some spacing between thumbnails */
}

/* Optional: Adjust thumbnail size */
.lg-thumb-item img {
    width: 80px;
    /* Set desired thumbnail width */
    height: auto;
    border-radius: 4px;
    /* Optional: rounded corners */
}

.lg-container.lg-show {
    position: relative;
    z-index: 100000;
}

.right-images {
    display: grid;
    width: 36.5%;
    gap: 10px;
    grid-template-columns: 2fr;
}

.gallery-item.large-image img {
    border-radius: 35px;
}

/* gallery-css finish */
.tour-plan {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 5px;
}

.underline {
    width: 70px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 0;
    margin-bottom: 15px;
}

.table-responsive {
    overflow-x: auto;
}

.tour-table {
    width: 100%;
    min-width: 1000px;
    border: 1px solid #EAEAEA;
    background: #FFF;
    border-radius: 10px;
    padding: 0 0 0 0;
}

.tour-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
    padding: 10px 15px;
    border-bottom: 1px solid #EAEAEA;
    gap: 40px;
}

.tour-row:last-child {
    border-bottom: none;
}

.column-title {
    font-size: 14px;
    font-weight: 500;
    color: #a9a9a9;
}

.tour-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
    line-height: 16px;
}

.input-capsule {
    background: #EAEAEA;
    border: none;
    border-radius: 30px;
    padding: 8px 15px;
    text-align: center;
    width: 100%;
    color: #7d7d7d;
    font-size: 14px;
    font-weight: 500;
}

/* Quantity Selector Styling */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    width: 100%;
    overflow: hidden;
}

.quantity-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    width: 30px;
    text-align: center;
    font-weight: bold;
    height: 30px;
}

.quantity-value {
    background: white;
    color: black;
    border: none;
    width: 50px;
    text-align: center;
    font-weight: 600;
    height: 30px;
}


.tour-plan-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
}

.total-price {
    color: var(--heading);
    font-size: 28px;
}

.gold-btnHover:hover {
    background: #2D1C3E;
    color: #fff;
}

.blu-btnHover:hover {
    background: var(--primary-color);
    color: #fff;
}

button.gold-btnHover {
    padding: 10px 50px;
    margin-right: 50px;
}

button.blu-btnHover {
    padding: 10px 50px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.pkg-btn-book {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.pkg-btn-cart {
    background: var(--heading);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 50px;
}
.pkg-btn-touch{
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 0px !important;
}

.total-price br {
    display: none;
}

.pkg-accordian-section {
    padding: 50px 0 0 0;
}

button.accordion {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-size: 18px;
    transition: background-color 0.2s linear;
    position: relative;
}

button.accordion:after {
    content: '';
    content: '';
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('../images/down-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    right: 0;
    bottom: 1px;
}

button.accordion.is-open:after {
    content: '';
    content: '';
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('../images/down-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    right: 0;
    bottom: 1px;
}

.accordion-content {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}
.accordion-content ul {
    padding: 10px 0 0 2px;
}
.accordion-content ul li {
    display: flex;
    align-items: baseline;
}
.accordion-content ul li i{
    font-size: 16px;
    padding-right: 10px;
    color: #d4a255
}
.accordion-content strong{
    color: var(--heading);
}
.prod-accrod {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.prod-accrod h3 {
    color: var(--heading);
    font-size: 22px;
    font-weight: 600;
}

.service-accord h3{
    color: var(--heading);
    font-size: 32px;
    font-weight: 600;
}
.service-accord{
    border-radius: 25px;
    padding: 20px 20px;
}
.service-accord .image-box{
    padding: 30px;
}
.visa-services-flags {
        margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  padding: 30px 20px;
}

.visa-services-flags .flag-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #F6F6F6;
  padding: 8px;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  color: #000;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.visa-services-flags .flag-item:hover {
  background-color: #e0e0e0;
}

.visa-services-flags .flag-item img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.tour-guides-service {
        margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
}

.tour-guides-service .guide-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f5f5f5;
  padding: 8px 45px 8px 8px;
  border-radius: 20px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0; /* Prevent from shrinking too much on smaller screens */
}
  
.tour-guides-service .guide-item img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
                                   .ticketing-services-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* remove gap between items to control spacing with border */
  padding: 30px 0px;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}

.ticketing-services-logos .logo-item {
  padding: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ddd;
  height: 60px; /* or adjust as per logo size */
}

.ticketing-services-logos .logo-item:last-child {
  border-right: none; /* remove border on last item */
}

.ticketing-services-logos .logo-item img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}
                                .transfer-services {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}

.transfer-services .content {
  flex: 0 0 auto;
}

.transfer-services .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transfer-services .service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0px;
    font-size: 24px;
    color: var(--heading);
    font-weight: 600;
}

.transfer-services .service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #cba45d;
  font-size: 20px;
  line-height: 1;
}

.transfer-services .image {
  flex: 0 0 auto;
  /* max-width: 600px; */
  text-align: left;
}

.transfer-services .image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Floating Button Container with Brown Background ===== */
.floating-btn {
    position: fixed;
    right: 0px;
    top: 75%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--primary-color);
    /* Brown Background */
    padding: 15px;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* ===== Floating Button Items (Only Icons, No Background) ===== */
.floating-btn a {
    font-size: 24px;
    color: white;
    /* White Icons */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ===== Hover Effect: Icons turn Blue ===== */
.floating-btn a:hover {
    color: var(--heading);
    /* Blue Icon */
}

/* cards headings contain */
/* .card-body h3 a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 300px;
} */
/* footer-css */
#main_main--footer{
    margin-top: 50px;
    background: url('../images/backgrounds/WEBSITE-DESIGN-footer-01.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.footer-col-1 img {
    width: 250px;   
}
.footer-col-1 ul li img {
width: 20px;
}
.footer-col-1 ul li {
display: flex;
align-items: start;
margin-bottom: 20px;
}
.footer-col-1 ul li:last-child{
margin-bottom: 0px;
}
.footer-col-1 ul li p {
margin: 0;
font-size: 16px;
color: #fff;
line-height: 18px;
margin-left: 15px;
font-weight: 300;
}
.footer-col-1 ul {
padding: 0;
margin-top: 80px;
margin-bottom: 0;
}
.footer-col-1 ul li p a {
font-size: 16px;
text-decoration: none;
color: #fff;
font-weight: 300;
}
.footer-col-2 {
    margin-top: 100px;
}
.footer-col-2 h4 {
font-size: 20px;
font-weight: 600;
color: var(--primary-color);
}
.footer-col-2 ul{
padding: 0px;
margin-top: 60px;
margin-bottom: 0px;
}
.footer-col-2 ul li {
margin-bottom: 18px;
}
.footer-col-2 ul li a{
font-size: 16px;
font-weight: 400;
color: var(--white);
transition: all 0.3s linear;
text-decoration: none;
}
.footer-col-2 ul li a:hover{
color: var(--primary-color);
}
.footer-col-3 {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.footer-col-3 iframe {
width: 100%;
height: 240px;
border: 1px solid var(--primary-color) !important;
border-radius: 20px;
padding: 10px;
}
.footer-col-4 ul {
margin: 32px 0 0 0;
padding: 0;
text-align: end;
}
.footer-col-4 ul li{
margin-bottom: 25px;
}
.footer-col-4 ul li a img {
    border: 2px solid #fff;
    width: 42px;
    border-radius: 45px;
}
.footer-col-4 ul li:last-child{
margin-bottom: 0px;
}
/* footer ends */

.package-page .attraction-card{
    margin-top: 40px;
}

/* testimonial-section */
.testimonial-heading h1{
    color: var(--heading);
font-size: 48px;
font-weight: bolder;
padding-bottom: 0px;
}
.testimonial-heading p{
    font-size: 18px;
    color: gray;
}
section.testimonials {
padding: 50px 25px 0px 25px;
}
/* Add horizontal padding to the Swiper container */
.swiper.reviewSwiper {
padding: 25px 50px; /* Adjust value as needed so the arrows are outside the cards */
margin: 0px 0px !important;
}

/* Optionally, reposition the arrow buttons if needed */
.swiper-button-next.testimonial-arrow {
right: 10px; /* or adjust to taste */
}
.swiper-button-prev.testimonial-arrow {
left: 10px;
}

.testimonial__card {
background: var(--color-background);
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.08);
}
.testimonial__card--top {
margin-bottom: 2rem;
}
.testimonial__author {
gap: 1.5rem;
}
.testimonial__author--name {
margin-bottom: 0.2rem;
font-size: 16px;
}
span.testimonial__author--subtitle.stars i {
color: #f3c319;
font-size: 14px;
}
/* sign in page */
.signin-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/backgrounds/sign-in-bg.jpg') no-repeat center center/cover;
  }

  .signin-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('../images/backgrounds/sign-in-overlay.png') no-repeat center center/cover;
    opacity: 0.9;
    z-index: 1;
  }

  .custom-login-box {
    position: relative;
    z-index: 3;
  }

  .left-content {
      text-align: center;
    padding: 20px;
  }
  .left-content img{
      height: 500px;
      margin-top: -180px;
  }

  

  .login-box {
position: relative;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(1px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50px;
padding: 35px;
color: #fff;
max-width: 100%;
overflow: hidden;
}

/* Top Border */
.login-box::before {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 2px;
width: 80%;
background: linear-gradient(to right, transparent, #ffffff, transparent);
}

/* Bottom Border */
.login-box::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
height: 2px;
width: 80%;
background: linear-gradient(to right, transparent, #ffffff, transparent);
}

/* Left and Right Borders */
.login-box .side-glow {
position: absolute;
top: 50%;
transform: translateY(-50%);
height: 80%;
width: 2px;
background: linear-gradient(to bottom, transparent, #ffffff, transparent);
z-index: 2;
}

.login-box .side-glow.left {
left: 0;
}

.login-box .side-glow.right {
right: 0;
}




.login-box h2 {
  font-size: 54px;
  color: var(--primary-color);
  margin-bottom: 35px;
  font-weight: 400;
}

  .login-box p {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .login-box .form-control {
    background: rgb(255, 255, 255);
    border: none;
    border-radius: 10px;
    color: #000000;
    font-size: 18px;
    height: 50px;
    padding: 10px 20px;
  }

  .login-box .form-control::placeholder {
    color: gray;
  }

  .forgot-link {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }
  .forgot-link:hover {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }
  .custom-signin {
    display: inline-block;
    width: 100%;
    height: 50px;
    background-color: #fff;
    color: var(--heading);
    font-weight: 500;
    border-radius: 10px;
    border: none;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
}
.custom-signin:hover {
   
    background-color: #341942;
    color: #fff;
}
.signup-hover:hover{
    background-color: var(--primary-color);
    columns: #fff;
}
 

  .btn-signin:hover {
    background-color: #f6c86e;
    color: #000;
  }

  .signup-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
  }

  .signup-link:hover {
    color: #f6c86e;
  }
/* signup- css */
.form-row {
    display: flex;
    gap: 10px;
  }

  .form-row .form-control {
    flex: 1;
  }

  .form-row .code-input {
    max-width: 100px;
  }

  .social-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
  }

  .social-buttons button {
    flex: 1;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    color: #fff;
  }

  .btn-google {
    background-color: #fff;
    color: #000;
  }

  .btn-facebook {
    background-color: #1877f2;
  }

  .btn-x {
    background-color: #000;
    border: 1px solid #fff;
  }
  /* terms & conditions */
  .terms-content{
    padding-top: 90px;
}
.terms-content p{
    font-size: 20px;
    color: #A9A9A9;
    margin-bottom: 30px;
}
.terms-content p strong{
    font-size: 20px;
    color: var(--primary-color);
}
.terms-content h5{
    color: var(--heading);
    font-size: 25px;
    font-weight: 600;
}
.terms-ul{
    margin-bottom: 30px;
    font-size: 20px ;
    padding-left: 22px;
    color: #A9A9A9 ;
}
.terms-ul li{
    list-style: disc;
}

/* vacation cards */
.vacation-card {
    margin-bottom: 60px;
    border-radius: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
    font-family: 'Arial', sans-serif;
    transition: transform 0.3s ease;
}

.vacation-card:hover {
    transform: translateY(-5px);
}

.vacation-img {
    width: 100%;
    object-fit: cover;
}

.vacation-content {
    padding: 25px;
}

.vacation-title a {
    font-size: 24px;
    font-weight: 700;
    color: #341942;
    margin: 0 0 12px;
    text-transform: uppercase;
    text-decoration: none;
}
.vacation-title a:hover {
    color: var(--primary-color);
}
.vacation-rating {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #a9a9a9;
    margin-bottom: 65px;
}

.vacation-rating .star {
    color: #999;
    margin-right: 4px;
}

.vacation-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.vacation-price .from {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
}

.vacation-price .price {
    color: var(--heading);
    font-weight: 700;
}
/* destination detail */
.destination-content {
    font-size: 18px;
    font-size: 20px;
    color: #a9a9a9;
}
.destination-content p {
    font-size: 20px;
    color: #a9a9a9;
}
.destination-content p strong {
   color: var(--primary-color);
}
.destination-content h4 {
    margin: 25px 0px;
    font-weight: bold;
    color: var(--heading);
}
.destination-content h5 {
    
    font-weight: bold;
    color: var(--primary-color);
}
/* contact us page */

button.btn.btn-link.text-decoration-none.clearform {
color: #D0D0D0;
}
.contact-us-section {
background: #fff;
}
.form-group {
margin-bottom:25px;
}

.section-header .form-title {
margin-top: 30px;
font-weight: bold;
color: var(--heading); /* Dark blue */
font-size: 54px;
}

.section-header .form-subtitle {
color: #A9A9A9;
font-size: 18px;
font-weight: 700;
margin-bottom: 60px;
}

.contact-form {
box-shadow: 0px 0px 15px #d4d4d4;
background: #fff;
border-radius: 50px;
padding: 60px;
}

.contact-form form .form-group .form-control {

border-radius: 18px;
background-color: #f6f6f6;
border: none;
padding: 20px 30px;
font-size: 18px;
color: #333;
}

.contact-form form .form-group .form-control::placeholder {
color: #dadada;
font-size: 18px;
}

.contact-form form .form-group .form-control:focus {
border-color: #800080;
box-shadow: none;
background-color: #f6f6f6;
}

.send-btn {
background-color: var(--primary-color);
border: none;
padding: 10px 25px;
border-radius: 8px;
color: #fff;
font-weight: bold;
}

.send-btn:hover {
background-color: #b48f5b;
}

.contact-info {
padding-left: 30px;
}

.icon {
margin: 30px 0px;
height: 60px;
}

.info-text {
font-size: 28px;
color: var(--heading); 
}
/* about us page */

.about-us-section {
padding-top: 100px ;
background: #fff;
}
.about-us-section .row{
margin-bottom: 80px;
}

.content-wrapper {
display: flex;
gap: 20px;
align-items: flex-start;
}

.vertical-text-box {
flex-shrink: 0;
}

.vertical-text {
writing-mode: vertical-rl;
text-orientation: mixed;
transform: rotate(180deg);
color: var(--heading);
font-weight: bold;
font-size: 24px;
letter-spacing: 2px;
margin-top: 0px;
margin-right: 30px;
}
.vertical-text-2{
margin-left: 60px;
}

.text-box {
flex: 1;
}

.description-1 {
font-weight: 500;
font-size: 20px;
color: #A9A9A9;
line-height: 1.5;
padding-right: 50px;
}
.description-2 {
font-weight: 500;
font-size: 20px;
color: #A9A9A9;
line-height: 1.5;
}
.description-3 {
font-weight: 500;
font-size: 20px;
color: #A9A9A9;
line-height: 1.5;
padding-right: 50px;

}

.image-box img {
width: 100%;
border-radius: 45px !important;
box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
/* cart page css start */
        .cart-title h2{
            color: #341942;
            font-weight: 700;
            margin-bottom: 25px;
        }
        .cart-topbar {
        margin-bottom: 30px;
    padding: 20px 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgb(169 160 160 / 31%);
}

.step {
    font-size: 20px;
  font-weight: 500;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-number {
    margin-right: 20px;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--heading);
  color: #C99D66;
}

.active-step .step-number {
  background-color: var(--heading);
  color: #C99D66;
  border: none;
}

.cart-status-text {
  color: var(--heading);
  font-size: 22px;
}

.continue-shopping {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 22px;
}

.continue-shopping:hover {
  text-decoration: underline;
}
.form-box {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 0 8px rgb(169 160 160 / 31%);
}

.form-box h5 {
    padding-bottom: 15px;
    color: var(--primary-color);
    font-size: 28px;
}

.extra-heading {
  color: var(--heading);
  font-size: 24px;
  margin-bottom: 15px;
}
.extra-heading span{
    color: var(--heading) !important;
    font-size: 18px;
}
.form-box .form-control {
    border-radius: 18px;
    background-color: #f6f6f6;
    border: none;
    padding: 20px 30px;
    font-size: 18px;
    color: #333;

}

.form-box .form-control::placeholder {
  color: #dadada;
font-size: 18px;
}

.payment-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.payment-title {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Hide default radio and create custom circle */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
    transition: border 0.2s ease-in-out;
    display: inline-block;
    vertical-align: middle;
}

/* Dot inside radio (centered) */
input[type="radio"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* When selected, show dot + update border */
input[type="radio"]:checked {
    border-color: var(--primary-color);
}

input[type="radio"]:checked::before {
    opacity: 1;
}

.payment-radio input[type="radio"] {
  accent-color: var(--primary-color);
  margin-right: 8px;
}

.payment-radio span {
  color: var(--heading);
  font-weight: 600;
  font-size: 18px;
}
label.payment-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 8px;
}
.card-numbers .form-control{
text-align: center;
}
.col-auto {
  flex: 1 0 auto !important;
  width: auto;
}

/* Hide default checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
}

/* Checked state */
input[type="checkbox"]:checked {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

/* Optional: checkmark (✓) */
input[type="checkbox"]:checked::after {
  content: '✓';
  color: white;
  font-size: 12px;
  position: absolute;
  top: 0px;
  left: 3px;
}
.payment-note small {
  font-size: 14px;
  color: var(--heading);
}

.payment-note .text-warning {
  color: var(--primary-color) !important;
  font-weight: 500;
}

.form-check-label {
  font-size: 12px;
  color: var(--heading);
  font-weight: 600;
}

.form-check-label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.paynow-btn {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 25px;
  padding: 8px 28px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: background 0.3s ease;
  text-decoration: none;
}

.paynow-btn:hover {
    color: #fff;
  background-color: #b1854f;
}


.cartitem-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 8px rgb(169 160 160 / 31%);
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 20px;
    position: relative;
}

.cartitem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #2b1d38;
    margin-bottom: 10px;
}
.cartitem-header p {
    font-size: 14px;
}
.cartitem-header p span {
    font-weight: 400;
}
.cartitem-header .transfer-type {
    font-weight: normal;
    font-size: 13px;
    color: #555;
    margin-left: 5px;
}

.cartclose-btn {
    background-color: #FF0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}


.cartitem-body .item-row {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 14px;
}
.item-row .text1 {
    font-weight: 600;
    color: var(--heading);
    font-size: 14px;
}
.item-row .text2 {
    font-size: 14px;
    color: var(--primary-color);
}

.timing {
    color: var(--primary-color);
}

.cancel-label {
    font-weight: 600;
    color: #FF0000;
}

.non-refundable {
    font-weight: 600;
    color: #FF0000;
}

.on-request {
    color: #C99D66;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: #341942;
    font-size: 22px;
    margin-top: 20px;
}

.final-payment {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 8px rgb(169 160 160 / 31%);
}

.final-label {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.total-payment {
    font-size: 18px;
    background: #f1eef7;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #341942;
}

/* cart css ends here */
/* custom pkg css */
   
        
        label.form-label.pkg-counter-label {
    font-size: 20px;
    font-weight: 500;
    color: #341942;
}
        .pkg-submit-btn {
        border-radius: 20px;
        border: none;
        font-weight: 600;
        color: #fff;
        font-size: 18px;
        padding: 5px 40px;
        background-color: var(--primary-color);
    }
        .type-heading{
            padding-top: 30px;
            padding-bottom: 30px;
            text-align: center;
            color: var(--heading);
            font-size: 32px;
            font-weight: 600;
        }
        .custom-pkg-card {
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.05);
}
.custom-pkg-form{
    padding: 50px;
}
.custom-pkg-form .form-control{
    border-radius: 18px;
    background-color: #f6f6f6;
    border: none;
    padding: 20px 30px;
    font-size: 18px;
    color: #333;
}
.custom-pkg-form .form-control::placeholder{
    color: #DADADA;
    font-size: 18px;
}
.custom-pkg-form .form-control::placeholder{
    color: #DADADA;
}

.custom-pkg-heading {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 500;
    padding-bottom: 10px;
    padding-top: 15px;
}
 .custompkg-selector{
    width: 35%;
    margin: 0 auto;
}
.type-travelers label{
    font-size: 18px;
    margin-left: 8px;
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 10px;

}
.prefer-flight label{
    font-size: 18px;
    margin-left: 8px;
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 10px;
}
.prefer-flight{
    padding-bottom: 10px;
}
.hotel-cat label{
    font-size: 18px;
    margin-left: 8px;
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 10px;
}
.hotel-cat{
    padding-bottom: 10px;
}
.meal-pref label{
    font-size: 18px;
    margin-left: 8px;
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 10px;
}
.meal-pref{
    padding-bottom: 10px;
}
.experince-checks label{
    font-size: 18px;
    margin-left: 8px;
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 10px;
}
/* Hide default radio and create custom circle */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    position: relative;
    cursor: pointer;
    transition: border 0.2s ease-in-out;
    display: inline-block;
    vertical-align: middle;
}

/* Dot inside radio (centered) */
input[type="radio"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/* When selected, show dot + update border */
input[type="radio"]:checked {
    border-color: var(--primary-color);
}

input[type="radio"]:checked::before {
    opacity: 1;
}
/* Hide default checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
}

/* Checked state */
input[type="checkbox"]:checked {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

/* Optional: checkmark (✓) */
input[type="checkbox"]:checked::after {
  content: '✓';
  color: white;
  font-size: 12px;
  position: absolute;
  top: 0px;
  left: 3px;
}
/* thankyou page */
.thankyou-page {
        margin: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f9f9f9; /* optional background */
    }

    .continue-travel {
        text-align: center;
        padding: 40px 30px;
        box-shadow: 0 0 8px rgb(169 160 160 / 31%);
        border-radius: 16px;
        background-color: white;
        /* max-width: 600px; */
        width: 80%;
    }

    .continue-travel h1 {
        color: var(--primary-color);
        margin: 20px 0;
    }

    .continue-travel a {
        font-size: 28px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        background-color: var(--heading);
        padding: 10px 30px;
        border-radius: 50px;
        display: inline-block;
        margin-top: 20px;
    }
/* testimonial section */
 
        .testimonials-section {
            padding: 50px 0px;
            display: flex;
            align-items: flex-start;
            justify-content: start;
        }

        /* LEFT COLUMN */
        .testimonials-intro {
            flex: 1;
            max-width: 40%;
        }

        .testimonials-intro h2 {
            font-size: 48px;
            font-weight: 700;
            color: var(--heading);
            margin-bottom: 8px;
        }

        .testimonials-intro p.sub {
            font-size: 32px;
            color: #DCDCDC;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .testimonials-intro p.desc {
            font-size: 32px;
            color: #DCDCDC;
            line-height: 1.4;
            font-weight: 600;
        }

        /* RIGHT COLUMN (SLIDER) */
        .testimonials-slider {
            position: relative;
            flex: 1;
            max-width: 50%;
            /* space for stack */
            height: 300px;
        }

        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 24px 30px;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .testimonial-card.next {
            display: flex;
            align-items: center;
            z-index: 1;
            transform: translate(100px, 110px) scale(0.85);
            opacity: 0.6;
        }

        .testimonial-card.active {
            display: flex;
            align-items: center;
            z-index: 2;
            transform: translate(0, 0);
            opacity: 1;
        }

        .testimonial-card img {
            width: 75px;
            height: 75px;
            border-radius: 50%;
            object-fit: cover;
            float: left;
            margin-right: 16px;
            margin-top: -10px;
            /* peek */
        }

        .testimonial-card h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: var(--heading);
        }

        .testimonial-card p {
            clear: both;
            margin-top: 12px;
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }

        /* NAVIGATION ARROWS */
        .testimonial-slider-nav {
            position: absolute;
            right: -150px;
            top: 35%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .testimonial-slider-nav button {
            background: #fff;
            border: 2px solid var(--heading);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 16px;
            color: var(--heading);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        .testimonial-slider-nav button i {
    color: #c99d66;
}

        .testimonial-slider-nav button:hover {
            background: var(--heading);
            color: #fff;
        }
        button#testimonial-next i img {
            height: 15px;
            margin-top: 4px;
        }
        button#testimonial-prev i img {
                    height: 15px;
                    margin-bottom: 4px;
        }
        /* dashboard css starts */
         .edit-personal {
  padding: 40px 0;
}

.edit-personal__sidebar {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow:0 0 8px rgb(169 160 160 / 31%);
}

.edit-personal__profile-img {
    line-height: 120px;
    font-size: 42px;
    color: var(--primary-color);
  width: 120px;
  height: 120px;
  background: var(--heading);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.edit-personal__email {
  font-weight: 600;
  color: #c39248;
  margin-bottom: 5px;
}

.edit-personal__edit-link {
  font-weight: 500;
  color: var(--heading);
  text-decoration: none;
  display: inline-block;
}

.edit-personal__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* align menu items to the left */
  margin-top: 90px;
  gap: 45px;
}


.edit-personal__menu-item {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
a.edit-personal__menu-item:hover {
    color: var(--heading);
}

.edit-personal__menu-item img {
  height: 18px;
  margin-right: 15px;
}

.edit-personal__form-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 8px rgb(169 160 160 / 31%);
}

.edit-personal__title {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 600;
}

.edit-personal__desc {
  font-weight: 600;
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 30px;
}


.edit-personal .form-control {
   border-radius: 18px;
    background-color: #f6f6f6;
    border: none;
    padding: 20px 30px;
    font-size: 18px;
    color: #333;
}
.edit-personal .form-control::placeholder {
color: #dadada;
font-size: 18px;
}


.edit-personal__save-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
}
.img-no-booking.text-center {
    /* padding-bottom: 20px; */
    /* border-bottom: 1px solid #a9a9a9; */
}

/* booking info */
 .booking-info {
  max-width: 100%;
}

.booking-info__header {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px #eee;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.booking-info__header h5 {
    text-align: start;
  font-weight: 600;
  color: #b88643;
}

.booking-info__header p {
  color: #000;
  text-align: left;
  font-size: 14px;
  margin-bottom: 20px;
}

.booking-info__add-btn {
  background-color: #b88643;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.booking-info__form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px #eee;
  padding: 30px;
}

.booking-info__form h6 {
  font-weight: 600;
  color: #b88643;
  margin-bottom: 20px;
}

.booking-info__section h6 {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
  color: #000;
}

.booking-info__section .form-control {
 border-radius: 18px;
    background-color: #f6f6f6;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    color: #333;
}
.booking-info__section select.form-control {
    border-radius: 18px;
    background-color: #f6f6f6;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    color: #dadada;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path fill="%23dadada" d="M0 0l6 8 6-8z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px 8px;
}


.booking-info__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cancel-btn {
  border: 1px solid #b88643;
  color: #b88643;
  background: transparent;
  padding: 8px 20px;
  border-radius: 25px;
}
.cancel-btn:hover {
  border: 1px solid #b88643;
  background-color: #b88643;
  color: #fff;
}

.ok-btn {
  background: #b88643;
  color: #fff;
  border: none;
  padding: 8px 25px;
  border-radius: 25px;
}
.ok-btn:hover {
  background: #341942;
  color: #fff;
  border: none;
}
.dashboard-password {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 30px #eee;
  padding: 30px;
  max-width: 100%;
  margin-bottom: 30px;
}

.dashboard-password h6 {
  font-weight: 600;
  color: #b88643;
  margin-bottom: 5px;
}

.dashboard-password p {
  color: #000;
  font-size: 14px;
  margin-bottom: 20px;
}

.dashboard-password .form-control {
  border-radius: 18px;
  background-color: #f6f6f6;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  color: #333;
}

.delete-btn {
  background-color: #341942;
  color: #fff;
  padding: 8px 25px;
  border-radius: 25px;
  border: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.delete-btn:hover {
  background-color: #b88643;
  color: #fff;
}

@media (max-width: 768px) {
  .edit-personal__sidebar,
  .edit-personal__form-box {
    padding: 20px;
  }

  .edit-personal__save-btn {
    width: 100%;
  }

  .edit-personal__menu {
    align-items: center;
  }
}

       
        /* Responsive Overrides */
@media (max-width: 992px) {
    .testimonials-section {
  overflow-x: hidden;
}
  .testimonials-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 10px;
  }

  /* Center & shrink intro text */
  .testimonials-intro {
    max-width: 100%;
    text-align: center;
    padding: 0 10px 20px;
  }
  .testimonials-intro h2 {
    font-size: 28px;
    margin-bottom: 6px;
  }
  .testimonials-intro p.sub,
  .testimonials-intro p.desc {
    font-size: 18px;
    margin-bottom: 12px;
  }

  /* Make slider full width and flow cards vertically */
  .testimonials-slider {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .testimonial-card {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 20px;
  }
  /* Don’t show the peeked-behind card on mobile */
  .testimonial-card.next {
    display: none;
  }

  /* Arrows go beneath the cards, centered */
  .testimonial-slider-nav {
    justify-content: center;
    margin-top: 35px !important;
    position: static;
    margin-top: 10px;
    flex-direction: row;
    gap: 16px;
  }
}




/* Responsive */
@media (max-width: 768px) {
.content-wrapper {
flex-direction: column;
}
.vertical-text {
    margin-left: 0px;
writing-mode: horizontal-tb;
transform: none;
margin-bottom: 10px;
}
.about-us-section .row{
margin-bottom: 30px;
}
}


@media (max-width: 768px) {
.contact-info {
padding-left: 0;
margin-top: 40px;
}
}



  @media (max-width: 991px) {
    .signin-bg {
      text-align: center;
    }

    .left-content {
      display: none;
    }

    .login-box {
      margin-top: 30px;
    }
    .footer-col-2 {
        margin-top: 0px;
    }
    .breadcrumb-section {
        background-position: center !important;
        background-size: cover !important;
        /* height: 300px; */
        /* background-size: 100% !important; */
    }
  }
  
   /* search icon */

  /*.mobile-search{*/

  /*  display: none;*/
  /*}*/
  /*.mobile-search i{*/
  /*  color: #fff !important;*/
    /* display: none; */
  /*}*/
  
  /*  .search-button {*/
     
  /*    justify-content: center;*/
  /*    align-items: center;*/
  /*    border-radius: 50%;*/
  /*    z-index: 100;*/
  /*    cursor: pointer;*/
  /*  }*/

  /*  .search-button i {*/
  /*    color: #c99d66;*/
  /*    font-size: 20px;*/
  /*  }*/

  /*  .search-popup {*/
  /*    position: fixed;*/
  /*    top: 0;*/
  /*    left: 0;*/
  /*    width: 100vw;*/
  /*    height: 100vh;*/
  /*    background: #34194270;*/
  /*    display: none;*/
  /*    justify-content: center;*/
  /*    align-items: center;*/
  /*    z-index: 99;*/
  /*  }*/

  /*  .search-box {*/
  /*      margin: 0 auto;*/
  /*      margin-top: 180px;*/
  /*    width: 80%;*/
      /* max-width: 500px; */
  /*    display: flex;*/
  /*    align-items: center;*/
  /*    border: 3px solid #c99d66;*/
  /*    padding: 12px 16px;*/
  /*    background: transparent;*/
  /*  }*/

  /*  .search-box input {*/
  /*    flex: 1;*/
  /*    background: transparent;*/
  /*    border: none;*/
  /*    outline: none;*/
  /*    color: #fff;*/
  /*    font-size: 16px;*/
  /*    padding: 5px 10px;*/
  /*  }*/

  /*  .search-box i {*/
  /*      font-size: 22px;*/
  /*    color: #c99d66;*/
  /*  }*/

    /* Close icon inside popup */
  /*  .close-button {*/
  /*    position: fixed;*/
  /*    top: 20px;*/
  /*    right: 20px;*/
  /*    width: 50px;*/
  /*    height: 50px;*/
  /*    background: #c99d66;*/
  /*    border-radius: 50%;*/
  /*    display: flex;*/
  /*    align-items: center;*/
  /*    justify-content: center;*/
  /*    cursor: pointer;*/
  /*    z-index: 101;*/
  /*  }*/

  /*  .close-button i {*/
  /*    color: white;*/
  /*    font-size: 20px;*/
  /*  }*/
