:root {
    --primary-color: #2e8b57; /* Sea Green */
    --secondary-color: #3cb371; /* Medium Sea Green */
    --light-color: #f0fff0; /* Honeydew */
    --dark-color: #006400; /* Dark Green */
    --neutral-light: #f8f9fa; /* Light background */
    --neutral-dark: #343a40; /* Dark text */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

    .top-bar a {
        color: white;
        text-decoration: none;
        transition: all 0.3s;
    }

        .top-bar a:hover {
            color: var(--light-color);
            transform: translateY(-2px);
        }

    .top-bar i {
        color: var(--light-color);
    }

/* Header Styles */
.main-header {
    background-color: white;
    padding: 5px 0;
/*    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);*/
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: 100px;
}

.navbar-nav .nav-link {
    color: var(--neutral-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
    position: relative;
}

    .navbar-nav .nav-link:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        bottom: -5px;
        left: 0;
        transition: width 0.3s;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
    }

        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }

    .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
    }

        .navbar-nav .nav-link.active:after {
            width: 100%;
        }

.navbar-toggler {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(46, 139, 87, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Carousel Styles */
.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.carousel-caption {
/*    background-color: rgba(0, 0, 0, 0.6);*/
    padding: 30px;
    border-radius: 10px;
    bottom: 100px;
    max-width: 600px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

    .carousel-caption h5 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .carousel-caption p {
        font-size: 18px;
        margin-bottom: 25px;
    }

.btn-explore {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

    .btn-explore:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
    }

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-item {
        height: 600px;
    }

    .carousel-caption {
        bottom: 80px;
        padding: 25px;
    }

        .carousel-caption h5 {
            font-size: 30px;
        }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 600px;
    }

    .carousel-caption {
        bottom: 60px;
        padding: 20px;
    }

        .carousel-caption h5 {
            font-size: 26px;
        }

        .carousel-caption p {
            font-size: 16px;
        }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        bottom: 30px;
        padding: 15px;
    }

        .carousel-caption h5 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .carousel-caption p {
            font-size: 14px;
            margin-bottom: 15px;
        }

    .btn-explore {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.section-title {
    
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 25%;
        }

    .section-title p {
        color: #6c757d;
        max-width: 700px;
        margin: 0 auto;
    }

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(46, 139, 87, 0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--light-color);
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--neutral-dark);
}

.feature-box p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
}

.destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-image {
    transition: all 0.5s;
    height: 300px;
    object-fit: cover;
}

.destination-img:hover .package-image {
    transform: scale(1.1);
}

.destination-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transition: all 0.3s;
}

    .destination-name h4 {
        color: white;
        margin: 0;
        font-size: 22px;
        font-weight: 600;
    }

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 139, 87, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s;
}

.destination-img:hover .destination-overlay {
    opacity: 1;
}

.destination-overlay .btn {
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-hover {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid white;
    transition: all 0.3s;
    text-decoration: none;
}

    .btn-hover:hover {
        background-color: white;
        color: var(--primary-color) !important;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
   

   

    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
  

    .why-choose-us, .destinations {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 28px;
        }

    .feature-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
    }

   

  

        

    .btn-explore {
        padding: 8px 20px;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }

    .feature-box h4 {
        font-size: 18px;
    }

    .destination-name h4 {
        font-size: 18px;
    }
}

/*:root {
    --bs-primary: #006400;*/ /* Dark green */
    /*--bs-primary-rgb: 0, 100, 0;
    --bs-primary-hover: #008000;*/ /* Medium green */
    /*--bs-secondary: #4caf50;*/ /* Light green */
/*}*/
/*ccustom css for new packages*/
/* Tour Packages Section Styling */
.tour-packages-section {
    padding: 50px 0;
    font-family: 'Nunito', sans-serif;
    background-color: #f8f9fa;
}

.section-title {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
}

/* Package Card */
.package-card {
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .package-card:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

/* Package Image */
.package-image {
    position: relative;
    overflow: hidden;
}

    .package-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.package-card:hover .package-image img {
    transform: scale(1.05);
}

/* Package Duration */
.package-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .package-duration i {
        margin-right: 5px;
        color: #333;
    }

/* Package Price */
.package-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #e91e63;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Package Title */
.package-title {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

    .package-title h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: #e91e63;
        line-height: 1.3;
    }

/* Package Description */
.package-description {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.caption-scroll {
    min-height: 80px;
    max-height: 80px;
    overflow-y: auto;
    padding-right: 5px;
}

    .caption-scroll p {
        margin: 0;
        font-size: 14px;
        color: #666;
        line-height: 1.5;
    }

    /* Custom Scrollbar */
    .caption-scroll::-webkit-scrollbar {
        width: 4px;
    }

    .caption-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .caption-scroll::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

        .caption-scroll::-webkit-scrollbar-thumb:hover {
            background: #e91e63;
        }

/* Package Amenities */
.package-amenities {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amenity-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.amenity-item span {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

/* Package Actions */
.package-actions {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.package-contact {
    display: flex;
    padding: 15px 20px;
}

.package-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 5px;
}

    .btn i {
        margin-right: 5px;
    }

.btn-details {
    background-color: #2196f3;
    color: white;
}

    .btn-details:hover {
        background-color: #1976d2;
        color: white;
    }

.btn-book {
    background-color: #4caf50;
    color: white;
}

    .btn-book:hover {
        background-color: #388e3c;
        color: white;
    }

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

    .btn-whatsapp:hover {
        background-color: #128c7e;
        color: white;
    }

.btn-call {
    background-color: #e91e63;
    color: white;
}

    .btn-call:hover {
        background-color: #c2185b;
        color: white;
    }

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .package-title h3 {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .package-image img {
        height: 200px;
    }

    .amenity-icon {
        width: 35px;
        height: 35px;
    }

    .amenity-item span {
        font-size: 11px;
    }

    .btn {
        font-size: 13px;
        padding: 8px;
    }

    .caption-scroll {
        min-height: 70px;
        max-height: 70px;
    }
}

@media (max-width: 767.98px) {
    .package-actions, .package-contact {
        flex-direction: column;
    }

    .btn {
        margin: 5px 0;
    }

    .package-amenities {
        flex-wrap: wrap;
    }

    .amenity-item {
        width: 50%;
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .package-image img {
        height: 180px;
    }

    .package-duration {
        font-size: 12px;
        padding: 4px 10px;
    }

    .package-price {
        font-size: 14px;
        padding: 4px 10px;
    }

    .package-title h3 {
        font-size: 16px;
    }

    .caption-scroll {
        min-height: 60px;
        max-height: 60px;
    }
}
/*packages end new css*/
/* Update existing color references */


/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/




/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    /*    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);*/
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url('/Images/Musaidlogo.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
@media(max-width:768px)
{
    .bg-breadcrumb{
        display:none;
    }
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
/*.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}*/
.about-section {
    margin-top: 0;
    /*    background-color: #f9f9f9;*/
    /*    padding: 60px 0;*/
}

/* Section Title */
.about-title {
    font-size: 18px;
    font-weight: 600;
    color: #d9534f; /* Red color */
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.about-heading {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.highlight-text {
    color: #d9534f;
}

/* About Text */
.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Counter Boxes */
.about-box {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

    .about-box:hover {
        background: #d9534f;
        color: white;
        transform: translateY(-5px);
    }

.about-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #006400;
    transition: 0.3s;
}

.about-box:hover .about-icon {
    color: white;
}

.counter {
    font-size: 24px;
    font-weight: bold;
}

.counter-text {
    font-size: 14px;
}

/* Explore Button */
.about-btn {
    display: inline-block;
    background: #d9534f;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: 0.3s;
    text-decoration: none;
}

    .about-btn:hover {
        background: #006400;
    }

/* About Images */
.about-img {
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

    .about-img:hover {
        transform: scale(1.05);
    }

/*** About End ***/




/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/



/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url('/images/gulmarg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Booking end ***/




/*** Testimonial Start ***/

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 60px;
}

    .testimonial-heading h2 {
        font-size: 42px;
        font-weight: 600;
        color: #333;
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

        .testimonial-heading h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #4CAF50;
        }

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 60px;
}

.testimonial-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #4CAF50;
    margin: 0 auto;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 20px;
}

    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-author {
    text-align: center;
}

    .testimonial-author h4 {
        font-size: 24px;
        color: #333;
        margin-bottom: 5px;
    }

    .testimonial-author p {
        color: #4CAF50;
        font-size: 16px;
        margin: 0;
    }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #333;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .carousel-nav:hover {
        background: #4CAF50;
    }

.carousel-nav-prev {
    left: 0;
}

.carousel-nav-next {
    right: 0;
}

.carousel-item {
    transition: transform .6s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 0 20px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-heading h2 {
        font-size: 32px;
    }
}

/*.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary); 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}*/
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/

/* Responsive Design */
/*@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0 15px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        padding-bottom: 20px;
    }

        .footer-brand h2 {
            font-size: 26px;
        }

    .footer-links,
    .contact-info {
        padding: 20px 0;
    }

        .footer-links h3,
        .contact-info h3 {
            font-size: 18px;
        }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 10px;
    }

    .footer-brand h2 {
        font-size: 24px;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .footer-links a,
    .contact-item {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}*/

/*.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}*/

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/*custom css added by danish*/
/*css for cusomter support page and review form start*/
.customer-testimonials {
    position: relative;
    background-color: #f8f9fa;
    font-family: 'Nunito', sans-serif;
}

.testimonial-filters {
    margin-bottom: 30px;
}

.btn-filter {
    background-color: transparent;
    border: 1px solid #ddd;
    color: #666;
    margin: 0 5px 10px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-filter:hover, .btn-filter.active {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #fff;
    }

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card::before {
        content: "\f10d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 60px;
        color: rgba(var(--bs-primary-rgb), 0.1);
        z-index: 0;
    }

.testimonial-rating {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

    .testimonial-rating i {
        color: #FFD700;
        font-size: 18px;
        margin-right: 2px;
    }

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

    .testimonial-text p {
        color: #666;
        font-size: 16px;
        line-height: 1.8;
        font-style: italic;
    }

.testimonial-user {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--bs-primary);
}

    .user-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.user-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.user-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.tour-type {
    display: inline-block;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 5px;
    font-weight: 600;
}

.review-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

    .review-form-container h3 {
        color: #333;
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

        .review-form-container h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--bs-primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--bs-primary);
        box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
    }

.rating-select {
    margin-bottom: 15px;
}

.rating-stars i {
    font-size: 24px; /* Adjust size if needed */
    color: grey; /* Default star color */
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

    .rating-stars i.fas {
        color: gold !important; /* Change to yellow/gold when selected */
    }

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .rating-stars i {
        font-size: 24px;
        color: #ddd;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .rating-stars i:hover, .rating-stars i.active {
            color: #FFD700;
        }

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .testimonial-card {
        padding: 25px;
    }

    .review-form-container {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text p {
        font-size: 15px;
    }

    .user-img {
        width: 50px;
        height: 50px;
    }

    .user-info h5 {
        font-size: 16px;
    }

    .review-form-container {
        padding: 20px;
    }

    .btn-filter {
        padding: 6px 15px;
        font-size: 13px;
        margin: 0 3px 8px;
    }
}
/*customer support end*/

.testimonial-section {
    background: linear-gradient(to right, #e8f0ff, #fefeff);
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e6ea;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #0d6efd;
}

.rating-stars i {
    font-size: 0.9rem;
}

.view-all-btn {
    background-color: #28a745; /* Bootstrap green */
    border: none;
    transition: all 0.3s ease;
    font-weight: 500;
    color: white;
}

    .view-all-btn:hover {
        background-color: #218838; /* Darker green on hover */
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3); /* Green shadow */
    }

/*gallery start*/

/* === Modern Gallery Start === */
.gallery-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .gallery-heading h5 {
        color: #28a745;
        font-weight: 600;
    }

    .gallery-heading h1 {
        font-weight: bold;
    }

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 250px;
    transition: transform 0.3s ease-in-out;
}

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
        border-radius: 12px;
    }

    .gallery-card:hover {
        transform: translateY(-5px);
    }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 167, 69, 0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
    border-radius: 12px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

@media (max-width: 768px) {
    .gallery-heading h1 {
        font-size: 1.75rem;
    }
}
/* === Modern Gallery End === */


/*gallery end*/


/*services start*/
/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.service-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .services::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color: rgba(46, 139, 87, 0.05);
        z-index: 0;
    }

    .services::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color: rgba(46, 139, 87, 0.05);
        z-index: 0;
    }

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(46, 139, 87, 0.1);
    }

.service-img {
    height: 200px;
    overflow: hidden;
}

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s;
    }

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -30px;
    right: 25px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.service-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--neutral-dark);
}

.service-content p {
    color: #6c757d;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

    .service-link:hover {
        color: var(--dark-color);
        transform: translateX(5px);
    }

    .service-link i {
        margin-left: 5px;
        transition: all 0.3s;
    }

    .service-link:hover i {
        transform: translateX(5px);
    }

/*services end*/

.map-container iframe {
    min-height: 400px;
}

.rating-stars i:hover,
.rating-stars i.active {
    color: #ffc107 !important;
    cursor: pointer;
    transform: scale(1.1);
    transition: all 0.2s;
}

.review-form-container input,
.review-form-container textarea {
    border-radius: 8px;
}

@media (max-width: 767px) {
    .rating-stars i {
        font-size: 1.2rem;
    }
}