.it-hero-area {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.it-hero-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%
    );
}


.mbbs-benefits-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mbbs-benefits-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.mbbs-benefits-list li::before {
  content: "\f26e"; /* Bootstrap check-circle */
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 16px;
  color: #1376cd;
}


.uni-details-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.uni-details-table th,
.uni-details-table td {
    border: 1px solid #1376cd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.uni-details-table thead th {
    background: #1376cd;
    color: #fff;
    font-weight: 600;
    border: 1px solid #eee;
}

.uni-details-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.uni-details-table tbody tr:hover {
    background: #eef4ff;
    transition: 0.3s ease;
}

@media (max-width: 991px) {
    .it-hero-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%);
    }
}