* {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1600px !important;
}

/* .disclaimer {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffecec;
    color: #b30000;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

.bg-image {
    position: relative;
    background-image: url("images/thumbnail.webp");
    background-position: center center;
    background-size: 100% 100%;
}

.bg-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}

.carousel-img {
    min-width: auto;
    min-height: 80vh;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 2rem;
}

.owl-carousel .owl-item img {
    border-radius: 1rem;
    object-fit: cover;
    transform: scale(0.9);
    transition: all 0.2s ease;
}

.owl-item img:hover {
    transform: scale(1.0);

}

/* Hide the previous button completely */
.owl-nav .owl-prev {
    display: none !important;
}

/* Style and position the next button */
.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: transparent !important;
    font-size: 70px !important;
    transition: color 0.3s;
}

.more-reasons-sec {
    width: 40px;
    bottom: 10px;
    right: 10px
}

.accordion {
    --bs-accordion-bg: rgba(33, 37, 41, 0.5);
    --bs-accordion-active-bg: ;
    --bs-accordion-color: #ffffff;
    --bs-accordion-border-color: none;

    .accordion-button {
        font-size: 1.25rem;
        color: #ffffff;
        border-radius: 1rem !important;
        padding: 1.5rem;
    }

    .accordion-button:not(.collapsed) {
        color: #ffffff;
    }

    .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .accordion-item {
        margin-bottom: .5rem;
        border-radius: 1rem !important;
        padding: 2px;
        font-size: 1.25rem;

        :hover {
            background-color: #3f3f3f;
            border-radius: 1rem !important;
            /* background-color: rgba(63, 63, 63, 0.5); */
            /* background-color: rgba(108, 117, 125, 0.5); */
        }
    }

    .accordion-button::after {
        background-image: none;
        content: '+';
        font-size: 1.5rem;
        color: white;
        margin-left: auto;
        transform: none;
    }

    .accordion-button:not(.collapsed)::after {
        content: '×';
        transform: none;
    }
}

@media (max-width: 1230px) {
    .carousel-img {
        min-height: 70vh;
        width: 100%;
        object-fit: cover;
    }

    .carousel-caption {
        width: 70% !important;

        h1 {
            font-size: 3rem;
            text-align: start;
        }

        p {
            text-align: start;
        }
    }

    .input-group {
        align-items: center;
        width: 60% !important;
    }
}

@media (max-width: 576px) {
    .carousel-img {
        min-height: 70vh;
        width: 100%;
        object-fit: cover;
    }

    .carousel-caption {
        width: 100% !important;
        margin: 0 !important;
        text-align: center;
        padding: 1rem;

        h1 {
            font-size: 1.3rem;
            text-align: center;
        }

        p {
            text-align: center;
        }
    }

    .input-group {
        flex-direction: column;
        align-items: center;
        width: 100% !important;

        button {
            width: 100% !important;
        }
    }

    .form-control {
        width: 100% !important;
    }
}