@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,450;0,450;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,450;1,450;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    font-size: 62.5%;
    /* 1rem = 10px; */
}

/*  Theme */
:root {
    --back-color: #000;
    --white-color: #fff;
    --orange-color: #ff9900;
    --yellow-color: #ffbe00;
    --background-color: #f4f4f4;
    --yellow-btn: linear-gradient(135deg, yellow, orange);
    --popup-bg: linear-gradient(135deg, #0917330a, #1a385014);
}

/* Layout */
.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 1.2rem;

    @media (max-width: 375px) {
        padding: 0 0.5rem;
    }

    @media (max-width: 450px) {
        padding: 0 0.5rem;
    }
}


/* Header Section */
.header {
    background-color: var(--white-color);
    padding: 0.5rem 3rem;
    border-bottom: 1px solid #ddd;

    @media (max-width: 600px) {
        padding: 0.3rem 2rem;
    }

    @media (max-width: 375px) {
        padding: 0.2rem 1rem;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;

        img {
            width: 15%;

            @media (max-width: 900px) {
                width: 20%;
            }

            @media (max-width: 600px) {
                width: 30%;
            }

            @media (max-width: 450px) {
                width: 40%;
            }

        }

        .contact-info {
            button {
                cursor: pointer;
                font-size: 1rem;
                padding: 0.7rem 1.5rem;
                border-radius: 1rem;
                background-image: var(--yellow-btn);

                @media (max-width: 450px) {
                    padding: 0.3rem 1rem;
                }

                @media (max-width: 375px) {
                    padding: 0.2rem 0.5rem;
                }
            }
            .mail{
                padding-left:2rem;
                @media (max-width: 730px){
                    display:none;
                }
            }
        }
    }
}

@media (max-width: 600px) {
    header .header-content .contact-info button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Hero Section */
.hero {
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 8rem;
    position: relative;
    z-index: 1;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
        z-index: 0;
    }

    .container {
        position: relative;
        z-index: 2;

        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: auto;
            /* Adjust height for responsiveness */
            flex-direction: column;
            /* Stack items vertically on small screens */

            @media (min-width: 768px) {
                flex-direction: row;
                /* Align items side by side on larger screens */
            }

            .hero-text {
                max-width: 100%;
                text-align: center;
                color: white;
                margin-bottom: 2rem;
                padding: 1rem;

                @media (max-width: 375px) {
                    padding: 0;
                }

                @media (max-width: 450px) {
                    padding: 0;
                }

                @media (min-width: 768px) {
                    max-width: 60%;
                    text-align: left;
                }

                h2 {
                    font-size: 30px;
                    /* Adjust font size for responsiveness */
                    margin-bottom: 20px;

                    @media (max-width: 768px) {
                        font-size: 20px;
                    }
                }

                p {
                    font-size: 16px;
                    /* Adjust font size for responsiveness */
                    margin-bottom: 15px;

                    @media (min-width: 768px) {
                        font-size: 18px;
                    }
                }

                ul {
                    list-style: none;
                    padding: 0;

                    li {
                        font-size: 16px;
                        /* Adjust font size for responsiveness */
                        margin-bottom: 10px;

                        @media (max-width: 768px) {
                            /* font-size: 18px; */
                            display: none;
                        }
                    }
                }

                .hero-highlight {
                    color: var(--orange-color);
                }
            }

            .hero-form {
                background-color: white;
                width: 100%;
                /* Full width on small screens */
                padding: 1rem;
                border-radius: 10px;
                box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
                z-index: 3;
                position: relative;

                /* Space between text and form on small screens */

                @media (min-width: 768px) {
                    width: 45%;
                    padding: 2rem;
                }

                @media (max-width: 768px) {
                    margin-top: -2rem;
                }


                h3 {
                    font-size: 20px;
                    /* Adjust font size for responsiveness */
                    margin-bottom: 15px;

                    @media (max-width: 375px) {
                        font-size: 22px
                    }

                    @media (max-width: 450px) {
                        font-size: 22px
                    }

                    .hero-highlight {
                        color: var(--orange-color);
                    }
                }

                p {
                    font-size: 14px;
                    /* Adjust font size for responsiveness */
                    margin-bottom: 20px;

                    @media (min-width: 768px) {
                        font-size: 16px;
                    }

                    @media (min-width: 450px) {
                        font-size: 14px;
                    }
                }

                form {

                    input,
                    select,
                    textarea {
                        width: 100%;
                        padding: 10px;
                        margin-bottom: 15px;
                        border: 1px solid #ddd;
                        border-radius: 5px;
                    }

                    button {
                        width: 100%;
                        padding: 15px;
                        background-image: var(--yellow-btn);
                        color: var(--back-color);
                        border: none;
                        border-radius: 0.5rem;
                        font-size: 16px;
                        /* Adjust font size for responsiveness */
                        cursor: pointer;
                        transition: background-image 0.2s ease;

                        @media (max-width: 375px) {
                            font-size: 14px;
                            padding: 10px;
                        }

                        @media (max-width: 450px) {
                            font-size: 14px;
                            padding: 10px;
                        }

                        &:hover {
                            background-image: linear-gradient(135deg, rgb(255, 166, 0), darkorange);
                        }
                    }
                }
            }
        }
    }
}

/* Packages Section */
.packages {
    text-align: center;
    padding: 2rem 3rem;

    @media (max-width: 375px) {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .card-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;

        .card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            margin: 3rem 0rem;
            overflow: hidden;
            width: 17.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;

            &:hover {
                transform: scale(1.05);
            }

            .card-header {
                position: relative;

                img {
                    width: 100%;
                    height: 15rem;
                    object-fit: cover;
                }

                .popular-badge {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    background-color: red;
                    color: var(--white-color);
                    padding: 0.3rem 1rem;
                    font-size: 14px;
                    font-weight: bold;
                    border-radius: 3px;
                    animation: blink 0.5s linear infinite alternate-reverse;
                }
            }

            .card-body {
                padding: 1.2rem;
                text-align: left;

                h3 {
                    font-size: 1.2rem;
                    margin-bottom: 0.7rem;
                }

                p {
                    font-size: 14px;
                    margin-bottom: 8px;
                }

                .highlight {
                    color: red;
                    font-weight: bold;
                }

                .icons {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 1.3rem;

                    span {
                        font-size: 0.6rem;
                    }
                }

                .price {
                    font-size: 1rem;
                    font-weight: bold;
                    color: #333;
                    text-align: center;
                }


            }

            .card-footer {
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0.6rem;

                button {
                    padding: 0.5rem 2rem;
                    background-color: var(--yellow-color);
                    border: none;
                    font-size: 1rem;
                    font-weight: 600;
                    border-radius: 0.3rem;
                    animation: blink 0.5s linear infinite alternate-reverse;
                    cursor: pointer;
                }
            }
        }
    }

    .package-btn {
        cursor: pointer;
        padding: 0.8rem 2rem;
        margin-bottom: -2rem;
        background-color: red;
        color: var(--white-color);
        font-size: 0.9rem;
        border: none;
        border-radius: 0.5rem;
        margin-top: -1rem;

        @media (max-width: 450px) {
            margin: 0rem 1rem;
            font-size: 0.8rem;
            padding: 0.5rem 1rem;
        }
    }
}

.more-details {

    .toggle {
        color: blue;
        cursor: pointer;
    }

    #paragraph1,
    #paragraph2,
    #paragraph3,
    #paragraph4,
    #paragraph5,
    #paragraph6,
    #paragraph7,
    #paragraph8 {
        display: none;
    }

}



/* Why Choose Us Section */
.why-choose-us {
    padding: 2rem 3rem;

    @media (max-width: 450px) {
        padding: 1rem 1.5rem;
    }

    .para {
        font-size: 0.8rem;
        text-align: center;
        padding: 2rem;

        @media (max-width: 600px) {
            padding: 1rem;
        }
    }

    .container {
        text-align: center;

        h2 {
            font-size: 1.7rem;
            margin-bottom: 2rem;
            font-weight: 600;

            @media (max-width: 450px) {
                font-size: 1.5rem;
            }
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
            gap: 2rem;

            .feature-box {
                background-color: #fff;
                padding: 1.5rem;
                border-radius: 8px;
                box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
                text-align: center;


                i {
                    font-size: 40px;
                    margin-bottom: 1rem;
                }

                h3 {
                    font-size: 20px;
                    margin-bottom: 1rem;

                    /* color: #333; */
                    @media (max-width: 450px) {
                        font-size: 18px;
                    }
                }

                p {
                    font-size: 16px;

                    /* color: #666; */
                    @media (max-width: 450px) {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

/*  Animations */
@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



/* Responsive Queries */
@media only screen and (max-width: 1200px) {
    .hero {
        padding: 3rem 5rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-form {
        width: 100%;
        margin-top: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 50%;
    }

    .hero {
        padding: 2rem 3rem;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-text p,
    .hero-text li {
        font-size: 1.6rem;
    }

    .packages h1 {
        font-size: 1.8rem;
    }

    .card {
        width: 100%;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 40%;
    }

    .hero {
        padding: 1rem 0rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p,
    .hero-text li {
        font-size: 1.4rem;
    }

    .packages h1 {
        font-size: 1.5rem;
    }

    .hero-form {
        padding: 2rem;
    }

    .card {
        width: 100%;
    }
}

@media only screen and (max-width: 375px) {
    .packages {
        padding: 0;
    }
}

/* Destionation Start */
.destination-section {
    padding: 2rem 3rem;

    h2 {
        font-size: 2rem;
        text-align: center;
        padding-bottom: 2rem;
    }

    .container {
        .row {
            display: flex;
            flex-wrap: wrap;
        }

    }
}




/* Destionation Start */
.popular-destination {
    text-align: center;
    padding: 2rem 3rem;
    font-family: 'Poppins', sans-serif;
}

.popular-destination h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--back-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.popular-destination h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: orange;
    margin: 10px auto;
}

/* Cards Grid */
.destinations {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Two columns */
    gap: 1.75rem;
    padding-bottom: 1.75rem;
}

/* Individual Card Styling */
.destination-card {
    position: relative;
    height: 20rem;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* Overlay Styling */
.destination-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    text-align: left;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 20px;
    transition: background 0.3s ease-in-out;
    
    .card-footer{
         position: absolute;
         bottom:1rem;
    }
    
    
}

.destination-card:hover .overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
}

.destination-card .overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.destination-card hr {
    width: 20%;
    margin-bottom: 1rem;
}

.destination-card p {
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}


.card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.6rem;

    button {
        padding: 0.5rem 2rem;
        background-color: var(--yellow-color);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 0.3rem;
        animation: blink 0.5s linear infinite alternate-reverse;
        cursor: pointer;
    }
}






/* Ensure first and last cards take 50% width on large screens */
.large-card {
    grid-column: span 2; /* Takes two columns */
}

/* Responsive Design */
@media (max-width: 960px) {
    .destination-card {
        height: 20rem;
    }

    .destination-card h3 {
        font-size: 1.5rem;
    }

    .destination-card p {
        font-size: 1.1em;
    }

    .large-card {
        grid-column: span 2; /* Take full width on medium screens */
    }

    /* Adjust layout for smaller screens */
    .destinations {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Cards adjust to available space */
    }
}

@media (max-width: 600px) {
    .destination-card {
        height: 18rem;
    }

    .destination-card h3 {
        font-size: 1.2rem;
    }

    .destination-card p {
        font-size: 1rem;
    }

    .destinations {
        grid-template-columns: 1fr; /* Stack all cards in a single column */
        gap: 1.5rem;
    }

    .large-card {
        grid-column: span 1; /* Full width on mobile */
    }
}

/* Destination End */





/* Popup Start */
/* .popup-background{
    background-color: rgba(0, 0, 0, 0.5);
} */

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
    box-shadow: 0 0 20px rgba(0, 0, 5px, 2px);
}

.popup-content {
    background: var(--popup-bg);
    color: var(--white-color);
    padding: 2rem;
    max-width: 30rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: relative;
    /* overflow: hidden; */
    animation: slideIn 0.3s ease-out;
}


.paragraph {
    color: var(--orange-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-content .text-lg {
    letter-spacing: 0.1rem;
}

.popup-content .paragraph:hover {
    color: var(--orange-color);
}

.form-box .btn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    top: -15px;
    right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.btn svg {
    fill: var(--orange-color);
    margin-top: 2rem;
    border-radius: 2rem;
    transition: transform 0.3s ease-in-out, fill 0.3s ease-in-out;
}

.btn:hover svg {
    fill: var(--orange-color);
    transform: rotate(90deg);
    background-color: var(--popup-bg);
    box-shadow: 0px 0px 15px 10px var(--orange-color);
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* popup form ---------- */
.hero-form {
    background-color: white;
    color: var(--back-color);
    width: 100%;
    /* Full width on small screens */
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    position: relative;
    margin-top: 2rem;
    /* Space between text and form on small screens */

    /* @media (min-width: 768px) {
        width: 45%;
        /* Adjust width on larger screens */
    /* padding: 2rem; */
}

h3 {
    font-size: 2rem;
    /* Adjust font size for responsiveness */
    margin-bottom: 15px;

    @media (max-width: 365px) {
        font-size: 1.5rem;
    }
    @media (max-width: 365px) {
        font-size: 1.3rem;
    }
    @media (max-width: 330px) {
        font-size: 1.1rem;
    }

    .hero-highlight {
        color: var(--orange-color);
    }
}

p {
    font-size: 14px;
    /* Adjust font size for responsiveness */
    margin-bottom: 20px;

    /* @media (min-width: 768px) {
            font-size: 16px;
        } */
}

form {

    input,
    select,
    textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    button {
        width: 100%;
        padding: 15px;
        background-image: var(--yellow-btn);
        color: var(--back-color);
        border: none;
        border-radius: 0.5rem;
        font-size: 16px;
        /* Adjust font size for responsiveness */
        cursor: pointer;
        transition: background-image 0.2s ease;

        &:hover {
            background-image: linear-gradient(135deg, rgb(255, 166, 0), darkorange);
        }
    }
}


/* Popup End */



/* Whatsapp icon */
.click-to-chat {
    z-index: 999;
}

.whatsapp-icon {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 999999;

    img {
        width: 50px;
        position: relative;
        z-index: 1;
    }
}





/* Footer Start */
footer {
    background-color: var(--back-color);
    color: var(--white-color);
    padding: 1rem 3rem;

    @media (max-width: 600px) {
        padding: 0.5rem 1rem
    }


    .container {
        padding: 0.5rem 0.5rem;

        .par {
            padding-bottom: 1.1rem;
            font-size: 0.9rem;
            text-align: center;
            font-weight: 600;

            @media (max-width: 450px) {
                font-size: 0.8rem;
            }
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
            gap: 1rem;

            .first-col {
                h3 {
                    font-size: 1.1rem;
                    color: var(--orange-color);
                    padding: 1.2rem 0;
                }

                img {
                    width: 100%;

                    @media (max-width: 600px) {
                        width: 70%;
                    }
                }
            }

            .second-col {
                h3 {
                    font-size: 1.1rem;
                    color: var(--orange-color);
                    padding: 1.2rem 0;
                }

                img {
                    width: 30%;

                    @media (max-width: 600px) {
                        width: 25%;
                    }
                }
            }

            .third-col {
                h3 {
                    font-size: 1.1rem;
                    color: var(--orange-color);
                    padding: 1.2rem 0;
                }

                img {
                    width: 70%;
                }

                h4 {
                    font-size: 1.2rem;

                }

                p {
                    font-size: 0.75rem;
                }
            }

        }
    }
}

/* Footer End */