.beautify-row {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #2381de;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.beautify-row:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.beautify-heading {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
}

.beautify-span {
    display: block;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
}

.beautify-lead {
    font-size: 28px;
    font-weight: bold;
    color: #343a40;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.line{
    border-right: solid 1px #2c405a;
}