.mba-section {
    padding: 60px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.mba-heading {
    font-size: 60px;
}

.mba-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
    margin-top: 30px;
    padding: 0 140px;
    text-align: justify;
}

.mba-card {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 50px
}

.mba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mba-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
    transition: background 0.3s ease;
}

.mba-card:hover .mba-overlay {
    background: none;
    cursor: pointer;
}

.mba-title h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px;
    color: white;
    font-size: 25px;
    line-height: normal;
    z-index: 2;
}

.arrow-btn {
    background: none;
    border: none;
    font-size: 25px;
    color: black;
    opacity: 1;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}