.carousel-item {
    text-align: center;
}

.text-div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    padding-left: 10px;
}

.carocel-heading-text {
    font-size: 1.5rem;
    color: green;
    font-weight: bold;
}

.text-div span {
    color: black;
    font-size: 0.9rem;
    line-height: 1.3;
    font-family: 'Times New Roman', Times, serif;
}

.carousel-caption h3 {
    font-size: 2.6em;
    font: 500 bolder;
    color: rgb(1, 96, 1);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.carousel-caption p {
    font-size: 1.5em;
    color: #fff;
}

.indicatorbtn {
    height: 12px !important;
    width: 12px !important;
    border-radius: 90% !important;
    background-color: #fff !important;
}

.aboytmore-btn {
    border-radius: 3px;
    font-family: times new roman;
    font-weight: 600;
    font-size: medium;
}

/* Mobile view */
@media (max-width: 576px) {
    .carousel-image {
        height: 300px;
        width: 100%;
        border-radius: 0px 10px 10px 0px;
        object-fit:cover;
    }
   
}

/* desktop view */
@media (min-width: 992px) {
    .carousel-image {
        height: 450px;
        width: 90%;
        border-radius: 0px 10px 10px 0px;
        /* object-fit:cover; */
    }

    .carousel-caption {
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100% !important;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(to right,
                rgba(255, 255, 255, 1.99),
                rgba(255, 255, 255, 1.18),
                rgba(255, 255, 255, 0));
        z-index: 10;
    }
}