/* Global Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: poppins;
        line-height: 1.6;
    }

    a {
        text-decoration: none;
        color: #000000;
    }

    /* Navbar Styles */


    /* Hero Section */

    .cta-button {
        padding: 10px 20px;
        background-color: #ffcc00;
        color: #333;
        font-weight: bold;
        border-radius: 5px;
    }


    .destinations {
        padding: 50px 20px;
        text-align: center;
    }

    .destinations h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .destination-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .destination-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        max-width: 300px;
    }

    .destination-card img {
    min-width: 200px;
        height: 200px;
        
    }

    .destination-card h3 {
        margin: 20px 0 10px;
    }

    .destination-card p {
        padding: 0 20px 20px;
        font-size: 1rem;
    }

  

    /* Carousel container styling */
    .testimonials-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .jh2{
        color: white;
    }
    .jh2 span{
        color: orange;
    }

    /* Each slide contains three testimonials */
    .testimonial-slide {
        display: flex;
        flex: 1 0 100%;
        box-sizing: border-box;
    }

    .testimonial {
        flex: 1;
        padding: 15px;
        text-align: center;
        margin: 10px;
        background-color: white; /* Testimonials background is white */
        border-radius: 8px; /* Rounded corners for each testimonial */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for the testimonial */
    }

    .client-name {
        font-weight: bold;
        color: #333;
        margin-top: 10px;
    }

    .rating {
        color: #f5b301;
        font-size: 1.2em;
        margin: 10px 0;
    }

    .client-quote {
        color: #555;
        font-size: 1em;
        margin-top: 10px;
    }

    /* Style for the arrows */
    .arrow {
        position: relative;
        left:92%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 1.5em;
        z-index: 1;
    }

    .arrow-left {
    
        left: 92%;
    }

    .arrow-right {
        right: -10px;
    }
    .sticky {
        position: fixed;
        top: 0;
        width: 100%;
    }
    .sticky + .content {
        padding-top: 102px;
    }
    @media(max-width: 768px) {
        .header {
            flex-direction: column;
            padding: 20px;
            text-align: center;
        }

        .header .link {
            flex-direction: column;
            gap: 10px;
        }

        .main {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .main .head {
            width: 100%;
            margin-top: 40px;
        }

        .destination-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        }

        .destination-card img {
            height: 180px;
        }

        .testimonials-container {
            flex-direction: column;
            align-items: center;
        }

        .testimonial {
            width: 80%;
            margin-bottom: 20px;
        }
    }

    /* Hero Section Image Fix */
    .hero img {
        width: 100%;
        object-fit: cover;
    }