* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE DESKTOP (1400px+) ================= */
.academic-section {
  width: 100%;
}

.academic-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 70px;
}

/* LEFT SIDE */
.academic-left {
  flex: 1;
}

.academic-left h2 {
  font-family: Merriweather;
  color: #1f3c88;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 25px;
}

.academic-left h2 span {
  color: #e63946;
}

.academic-points {
  margin-top: 20px;
}

.academic-points p {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  font-family: Poppins;
  color: #1f3c88;
  line-height: 1.6;
  font-weight: 400;
  font-size: 20px;
  text-align: justify;
}

.academic-points .line {
  width: 3px;
  background: #e63946;
  display: inline-block;
}

/* IMAGES */
.academic-images {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  align-items: center;
  justify-content: center;
}

.img-box {
  width: 479px;
  height: 302px;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDEBAR */
.academic-right {
  width: 352px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

.call-img-wrap {
  width: 100%;
  height: 220px;
  background: url("../images/Rectangle\ 455.png") center/cover no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.call-phone-badge {
  background-color: #ee1b22cc;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-family: Poppins;
}

/* ABOUT MENU */
.about-menu {
  background: #1f3c88;
  border-radius: 0 0 12px 12px;
}

.about-menu h4 {
  background-color: #fff;
  color: #e63946;
  font-family: Poppins;
  padding: 12px 0px 12px 26px;
}

.about-menu ul {
  padding-left: 0px;
}

.about-menu li {
  color: #fff;
  font-size: 19px;
  padding: 12px 0px 12px 37px;
  position: relative;
}

.about-menu ul li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
}

.about-menu li.active {
  background: #e63946;
}

/* ================= 1200px – 1399px ================= */
@media (max-width: 1499px) and (min-width: 1295px) {
  .academic-wrapper {
    padding: 50px;
    gap: 35px;
    flex-direction: row;
  }

  .academic-left h2 {
    font-size: 28px;
  }

  .academic-points p {
    font-size: 17px;
  }

  .img-box {
    width: 410px;
    height: 260px;
  }

  .academic-right {
    width: 320px;
  }

  .call-img-wrap {
    height: 190px;
  }

  .about-menu li {
    font-size: 16px;
  }
}

/* ================= 1000px – 1199px (FIXED BREAKPOINT) ================= */
@media (max-width: 1295px) and (min-width: 1050px) {
  .academic-wrapper {
    padding: 50px;
    gap: 35px;
    flex-direction: row;
  }

  .academic-left h2 {
    font-size: 25px;
  }

  .academic-points p {
    font-size: 14px;
  }

  .img-box {
    width: 300px;
    height: 190px;
  }

  .academic-right {
    width: 320px;
  }

  .call-img-wrap {
    height: 190px;
  }

  .about-menu li {
    font-size: 14px;
  }
}

/* ================= BELOW 999px (MOBILE STACK ONLY HERE) ================= */
@media (max-width: 1050px) {
  .academic-wrapper {
    flex-direction: column;
    padding: 40px 25px;
  }

  .academic-images {
    flex-direction: row;
  }

  .img-box {
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  .academic-right {
    width: 100%;
  }

  .call-img-wrap {
    height: 400px;
  }
}

/* ================= 480px – 767px ================= */
@media (max-width: 767px) {
  .academic-images {
    flex-direction: column;
  }
  .academic-left h2 {
    font-size: 24px;
    text-align: center;
  }

  .academic-points p {
    font-size: 15px;
    line-height: 1.5;
  }

  .call-phone-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .about-menu li {
    font-size: 14px;
  }

  
  .call-img-wrap {
            height: 306px;
  }
}

/* ================= BELOW 480px ================= */
@media (max-width: 480px) {
  .academic-wrapper {
    padding: 25px 16px;
  }

  .academic-left h2 {
    font-size: 22px;
  }

  .academic-points p {
    font-size: 14px;
  }

  .call-img-wrap {
            height: 306px;
  }
}
