.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) 
}

.vds_img{
    height: 50vh;
    width: 100%;
}





.contact-wrapper {
    display: flex;
    width: 100%;
    min-height: 520px;
}

/* LEFT BLUE SECTION  */
.left-info {
    width: 35%;
    background: #00AEEF; /* same bright blue from screenshot */
    padding: 60px 30px;
    text-align: center;
    color: white;
}

/* School Name */
.left-info h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Normal text */
.left-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Section titles: Phone, Email */
.left-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Thin white line above each section */
.separator {
    width: 80px;
    height: 2px;
    background: white;
    margin: 20px auto;
}

/* Responsive */
@media (max-width: 900px) {
    .left-info {
        width: 100%;
        padding: 40px 20px;
    }
}


/* RIGHT MAP SECTION */
.map-section {
    width: 65%;
    height: 520px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25); /* slight elevation */
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .left-info,
    .map-section {
        width: 100%;
    }

    .map-section {
        height: 400px;
    }
}
