.admission-section {
  display: flex;
  align-items: flex-start;
}

.admission-left {
  position: sticky;
  top: 80px;        /* Adjust so it sits below navbar */
  height: 100vh;    /* Full height scroll effect */
  overflow: hidden;
}

.admission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* clean crop */
  object-position: center;  /* center focus */
}

.admission-right {
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 50px;
}

/*mobile view*/
@media (max-width: 768px) {
  .admission-left {
    position: relative;
    height: auto;
  }

  .admission-right {
    padding-left: 0;
  }
}

.tc-blue{
  color: rgb(0, 88, 129) 
}

.ul-sq li {
  position: relative;
  list-style: none;
  padding-left: 1.2em;
  padding-right: 5px;
}

.ul-sq li::before {
  content: "■"; /* Unicode square */
  color: #007BFF;
  position: absolute;
  left: 0;
}
.vds_img{
    height: 70vh;
    width: 100%;
}