    .carousel-item {
        position: relative;
        height: 100vh;
        min-height: 400px;
        background: #000;
        color: #fff;
    }

    .carousel-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        opacity: 0.7;
    }

    .carousel-caption-custom {
        position: absolute;
        top: 50%;
        left: 29%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 10;
        background: #00000085;
        width: 40%;
        padding: 30px 10px;
        border-radius: 10px;
    }

    .carousel-caption-custom h2 {
        font-size: 2.5rem;
        font-weight: bold;
        animation: fadeInDown 2s ease-in-out;
    }

    .carousel-caption-custom p {
        font-size: 1.2rem;
        animation: fadeInUp 2s ease-in-out;
    }

    .carousel-caption-custom a.btn {
        margin: 10px 5px;
        animation: fadeInDown 2s ease-in-out;
    }

    /* Form Styling */
    .carousel-form-wrapper {
        position: absolute;
        top: 25%;
        left: 78%;
        transform: translateX(-50%);
        background: #00000085;
        padding: 25px;
        border-radius: 10px;
        z-index: 20;
        width: 30%;
        max-width: 600px;
        color: #fff;
    }

    .carousel-form-wrapper input,
    .carousel-form-wrapper textarea {
        background: rgba(255, 255, 255, 0.9);
        color: #000;
    }

    @keyframes fadeInDown {
        0% { opacity: 0; transform: translateY(-20px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
        0% { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
        .carousel-caption-custom {
            width: 90%;
            left: 50%;
            padding: 15px 10px;
        }

        .carousel-form-wrapper {
            width: 95%;
        }
    }
    .banner-btn{
    background: blue;
    color: #fff;
    width: -webkit-fill-available;
    padding: 5px;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 35px;
    user-select: none;
    -webkit-user-select: none;
    padding: 3px 0px;
    background-color: #ebeaea !important;
}

@media (max-width: 768px) {
.carousel-form-wrapper {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    background: #00000085;
    padding: 0px;
    border-radius: 10px;
    z-index: 20;
    width: 95%;
    max-width: 600px;
    color: #fff;
}
.carousel-caption-custom{
    display: none;
}
.contacts{
    margin: 20px 2px -35px;
}
}
.blog-form {
    background: #194570;
    padding: 25px;
    color: #fff;
}