.banner-area {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-area::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 85%);
}

@media (max-width: 991px) {
    .banner-area::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0) 100%);
    }
}
.main-list p{
    margin-bottom: 6px;
}
.main-list ul {
    padding-left: 10px;
}

.main-list ul li{
   list-style: disc;
}

.pt-40{
    padding-top:40px;
}
.pb-40{
    padding-bottom: 40px;
}

.row-uni {
    display: flex;
    flex-wrap: wrap;
}



.university-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.course-row {
    display: flex;
    flex-wrap: wrap;
}

.course-row > div {
    display: flex;
}

.course-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.course-card .card-body {
    flex: 1;
}

.row-uni {
    display: flex;
    flex-wrap: wrap;
}

.row-uni > div {
    display: flex;
}

.row-uni .university-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.row-uni .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.row-uni .uni-content {
    flex: 1;
}