/* Business Intelligence page paragraph styles */
.para {
    font-size: 20px;
    margin-top: 10px;
}
/* Services pages content description */
.content-font {
    font-size: 20px;
    line-height: 1.5;
}
.remove-bottom {
    padding-bottom: 0;
}
.tab-space {
    display: inline-block;
    margin-left: 40px;
}
.heading-orange {
    color: var(--color-blue2);
}

.bi-image {
    max-width: 400px;
    max-height: auto;
}
.support_services {
    padding: 15px;

    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

/* Star icon animation starts */
/* ----------------------------------------------------- */

.rotating-star {
    display: inline-block;
    animation: rotation 2s infinite linear;
    margin-right: 8px;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* ----------------------------------------------------- */
/* Star icon animation ends */
