html,
body {
    overflow-x: hidden;
}

body.home-page {
    color: #333;
    padding: 0 !important;
    margin: 0 !important;
    
    .section-title {
        padding-top: 20px;
        color: #F9AD42;
        text-align-last: center;
        font-size: 70px;
        font-weight: 400;
    }

    a.btn-custom {
        border-radius: 30px;
        border-color: rgb(231, 118, 52) !important;
        background-color: rgba(231, 118, 52, 0.623);
        font-weight: 600;
        color: white !important;
        transition: 0.3s ease-in-out;
    }

    a.btn-custom:hover {
        background: rgb(231, 118, 52);
    }

    /* Carousel styles */
    .carousel-item {
        position: relative;
        height: 100vh;
        background-size: cover;
        background-position: center;
    }

    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
    }

    .carousel-caption {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 80%;
        max-width: 800px;
    }

    .carousel-caption h1,
    .carousel-caption p {
        color: white;
    }

    .carousel-caption .btn {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    /* Features section */
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #47c2f3;
    }

    .testimonial {
        background-color: #f8f9fa;
        padding: 2rem;
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-section {
        background-color: #2a8ebb29;
        color: white;
        padding: 80px 0;
    }
    
    .social-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
        color: rgb(252, 151, 57);
    }

    .cta-1-section {
        position: relative;
        background: url('../images/about_img4.jpg') center/cover no-repeat;
        padding: 100px 0;
        color: white;
    }

    .cta-1-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .cta-1-section .container {
        position: relative;
        z-index: 1;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1450px;
    }

    /* Travel package cards */
    .travel-package {
        padding: 0 1.5rem;

        .card-container {
            margin-bottom: 40px;
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            scrollbar-width: thin;
            scrollbar-color: transparent;
        }

        .card {
            flex: 0 0 auto;
            max-width: 300px;
            width: 100%;
            height: 400px;
            background-color: #f9f9f9;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .text-block {
            width: 100%;
            height: 30%;
            padding: 10px;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.5rem;
            flex-grow: 1;
            overflow: hidden;
            position: absolute;
            bottom: 0;
            left: 0;
        }

        .card:hover .hidden {
            opacity: 1;
        }

        .card:hover .show {
            opacity: 0;
        }

        .hidden {
            width: 100%;
            height: 100%;
            transition: all 300ms;
            opacity: 0;
        }

        .city {
            width: 100% !important;
            font-weight: bold;
            font-size: 1rem;
            margin: 0;
            color: white;
        }

        .package-info {
            font-size: 0.85rem;
            color: white;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
        }
    }

    /* ========== MEDIA QUERIES ========== */


    @media (max-width: 768px) {
        .carousel-caption {
            bottom: 70px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .carousel-caption h1 {
            font-size: 2rem;
        }

        .carousel-caption p {
            font-size: 1rem;
        }
    }
}