.uni-details-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.uni-details-table th,
.uni-details-table td {
    border: 1px solid #236879;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.uni-details-table thead th {
    background: #236879;
    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;
}


.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:"➜"; /* Bootstrap check-circle */
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 16px;
  color: #236879;
}

.mbbs-card{
  background:#ffffff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  height:100%;
  transition:all .3s ease;
}

.mbbs-card h5{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
  color:#236879;
}

.mbbs-card p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.mbbs-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}
.doc-card{
  background:#ffffff;
  border-radius:12px;
  padding:25px 30px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:all .3s ease;
}

.doc-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.doc-list{
  list-style:none;
  padding:0;
  margin:0;
}

.doc-list li{
  position:relative;
  padding-left:35px;
  margin-bottom:15px;
  font-size:15px;
  color:#333;
  line-height:1.6;
}

.doc-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:2px;
  width:22px;
  height:22px;
  background:#236879;
  color:#fff;
  font-size:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}




.hostel-content h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:20px;
  color:#222;
}

.hostel-content p{
  font-size:16px;
  line-height:1.7;
  color:#555;
  margin-bottom:15px;
}

.hostel-image img{
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.facility-list{
  display:flex;
  flex-wrap:wrap;
  list-style:none;
  padding:0;
  margin:0;
}

.facility-list li{
  width:100%;
  font-size: 14px;
  position:relative;
  padding-left:18px;
}

.facility-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:2px;
  color:#236879;
  font-weight:bold;
}

/* Desktop 2 column */
@media (min-width:768px){
  .facility-list li{
    width:50%;
  }
}


.university-card{
  display:flex;
  gap:30px;
  margin-bottom: 25px;
  background:#fff;
  border-radius:12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding:25px;
  align-items:center;
}

.uni-img{
  flex:1;
}

.uni-img img{
  width:100%;
  border-radius:10px;
  object-fit:cover;
}

.uni-content{
  flex:2;
}

.uni-title{
  color:#236879;
  font-size:28px;
  font-weight:700;
  margin-bottom:10px;
}

.uni-desc{
  font-size:15px;
  line-height:1.7;
  color:#555;
  margin-bottom:20px;
}

.uni-details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.detail-item{
  background:#f4f9fa;
  padding:12px 15px;
  border-radius:8px;
}

.detail-item strong{
  display:block;
  color:#236879;
  font-size:14px;
}

.detail-item span{
  font-size:14px;
  color:#333;
}

/* Mobile Responsive */

@media(max-width:768px){

  .university-card{
    flex-direction:column;
  }

  .uni-details{
    grid-template-columns:1fr;
  }

}
.university-card{
  display:flex;
  gap:30px;
  margin-bottom:25px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  padding:25px;
  align-items:stretch; /* important */
}

.uni-img{
  flex:1;
  height:auto;
}

.uni-img img{
  width:100%;
  height:100%; /* full card height */
  border-radius:10px;
  object-fit:cover; /* image crop hogi but stretch nahi hogi */
  display:block;
}

.uni-content{
  flex:2;
}

.nav-item{
    font-weight: 600;
}


@media screen and (max-width:767px){
    .slider-tittle{
        text-align: center;
    }
}

