/* Custom Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #ff6b6b;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
/* Welcome and Filter Layout */
.filter_booking {
    animation: slider 15s infinite; /* 15s for full cycle, repeat infinitely */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 1s ease-in-out;
}

@keyframes slider {
    0% {
        background-image: url('image/c1.jpeg');
    }
    33% {
        background-image: url('image/c2.jpeg');
    }
    66% {
        background-image: url('image/c3.jpeg');
    }
    100% {
        background-image: url('image/c4.jpeg');
    }
}
.filter-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.welcome-title {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    /* animation: fadeInLeft 1s ease; */
}

.welcome-title h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.welcome-title h1 span {
    color: var(--secondary-color);
}

.welcome-title p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.welcome-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 500;
}

.filter-section-right {
    margin-top: 20px;
    margin-bottom: 20px;
    color: white;
    width: 400px;
    animation: fadeInRight 1s ease;
}

/* Filter Toggle Buttons */
.filter-toggle-buttons {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    gap: 10px;
}

.filter-toggle {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.filter-toggle.active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.filter-toggle:not(.active):hover {
    background: rgba(255,255,255,0.3);
}

/* Filter Box Styles */
.filter-box {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    color: var(--dark-color);
}

.filter-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filter-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.filter-title {
    font-size: 1.5rem;
    /* color: var(--dark-color); */
    color: white;
    margin: 0;
    font-weight: 700;
}

.filter-form .form-group {
    margin-bottom: 15px;
}

.filter-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    /* color: var(--dark-color); */
    color: white;
}

.filter-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s;
}

.filter-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .filter-content-wrapper {
        flex-direction: column;
    }
    
    .welcome-title {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .filter-section-right {
        width: 100%;
        max-width: 500px;
    }
    
    .filter-toggle-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .welcome-title h1 {
        font-size: 2.2rem;
    }
    
    .welcome-title p {
        font-size: 1rem;
    }
    
    .filter-toggle {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Feature Cards Styles */
.feature-cards {
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #28a745, #7cbf00);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 8px;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #28a745;
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #28a745, #7cbf00);
    color: white;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
    font-size: 1.3rem;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Animation for cards */
@keyframes fadeInCards {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInCards 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
}



/* card style css */

/* Hero Heading Styles */
.tour-hero-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tour-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tour-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #7cbf00);
}

.tour-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* Tour Card Slider Styles */
.tour-slider-container {
    padding: 30px 0;
    position: relative;
}

.tour-card-slider {
    margin: 0 -15px;
}

.tour-card-slider .slick-slide {
    padding: 0 15px;
}

.tour-card-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    color: #28a745;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.tour-card-slider .slick-prev {
    left: 20px;
}

.tour-card-slider .slick-next {
    right: 20px;
}

.tour-card-slider .slick-arrow:hover {
    background: #28a745;
    color: white;
}

/* Tour Card Styles */
.tour-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    background: white;
    position: relative;
    border: none;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tour-card-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tour-card:hover .tour-card-img {
    transform: scale(1.1);
}

.tour-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.tour-card-content {
    padding: 20px;
}

.tour-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 1.5rem;
    line-height: 1.3;
}

.tour-card-features {
    margin: 15px 0;
    padding-left: 20px;
}

.tour-card-features li {
    margin-bottom: 8px;
    color: #495057;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
}

.tour-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.tour-card-price {
    display: flex;
    flex-direction: column;
}

.tour-card-old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 0.9rem;
}

.tour-card-new-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #28a745;
}

.tour-card-buttons {
    display: flex;
    gap: 10px;
}

.tour-card-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-card-btn-book {
    background: #28a745;
    color: white;
    border: none;
}

.tour-card-btn-book:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.tour-card-btn-call {
    background: white;
    color: #28a745;
    border: 1px solid #28a745;
}

.tour-card-btn-call:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-card-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tour-main-title {
        font-size: 2.8rem;
    }
    
    .tour-card-title {
        font-size: 1.3rem;
    }
    
    .tour-card-new-price {
        font-size: 1.2rem;
    }
    
    .tour-card-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .tour-main-title {
        font-size: 2.2rem;
    }
    
    .tour-subtitle {
        font-size: 1rem;
    }
    
    .tour-card-img-container {
        height: 180px;
    }
    
    .tour-card-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tour-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .tour-main-title {
        font-size: 1.8rem;
    }
    
    .tour-card-slider .slick-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .tour-card-slider .slick-prev {
        left: -10px;
    }
    
    .tour-card-slider .slick-next {
        right: -10px;
    }
}

/* Counter Section Styles */
.counter-section {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #3a0ca3, #4361ee);
    color: white;
    overflow: hidden;
}

.curve-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    transform: scaleX(1.5);
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.08;
}

.counter-card {
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    margin-bottom: 15px;
    line-height: 1;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}

.counter-number::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 10px;
    font-size: 2rem;
}

.counter-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.counter-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .counter-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .counter-section {
        padding: 80px 0 100px;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .counter-card {
        padding: 30px 15px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-number::after {
        font-size: 1.5rem;
        top: 5px;
    }
    
    .counter-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .counter-section {
        padding: 60px 0 80px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
    
    .curve-bg {
        height: 80px;
    }
}


/* Testimonial Section Styles */
.testimonial-section {
    background-color: #f9fbfd;
    position: relative;
    overflow: hidden;
}

.testimonial-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1a2b48;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #5e6d77;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonial Card Styles */
.testimonial-slider {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.testimonial-card {
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #5e6d77;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f4f8;
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a2b48;
    margin-bottom: 5px;
}

.author-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d9e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    .testimonial-heading {
        font-size: 2.2rem;
    }
    
    .testimonial-subheading {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 260px;
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .testimonial-heading {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        min-width: 85%;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}




.travel-section, .car-section {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease-in-out;
}
.travel-section {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
}
.car-section {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}
.travel-section:hover, .car-section:hover {
    transform: scale(1.03);
}
.content {
    flex: 1;
    padding: 20px;
}
.content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.btn:hover {
    transform: scale(1.1);
}
.btn-travel {
    background: #ff4e00;
}
.btn-travel:hover {
    background: #e04300;
}
.btn-car {
    background: #007BFF;
}
.btn-car:hover {
    background: #0056b3;
}
.image {
    flex: 1;
    text-align: center;
}
.image img {
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    animation: bounceIn 1s ease-in-out;
}
@media (max-width: 900px) {
    .travel-section, .car-section {
        flex-direction: column;
        text-align: center;
    }
    .image img {
        width: 80%;
    }
}
.section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 5%;
}


