* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}
.ba-course-list{
    padding-left: 0px;
}

.ba-course-list li {
  color: #1c3f94;

  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;

  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  list-style: none;
}

.ba-course-list li::before {
  content: "✔";
  color: #ee1b22;

  font-weight: bold;
  position: absolute;
  left: 0;
  top: 2px;
}

.section-hostel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 90px 0px 90px 63px;
  background: #f8f8f8;
  gap: 100px;
}

/* LEFT NORMAL IMAGE */
.image-left img {
  width: 600px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* RIGHT CONTENT BOX */
.hostel-content {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 45px;
  border-radius: 20px;
  max-width: 679px;
  backdrop-filter: blur(4px);
}

.hostel-content h2 {
  color: #1c3f94;
  font-family: Merriweather;
  font-weight: 700;
  font-size: 36px;
}

.hostel-content h2 span {
  color: #e41d23;
}

.hostel-content p {
  margin: 18px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #1c3f94;
  border-left: 3px solid #e41d23;
  padding-left: 12px;
}

/* BUTTONS */
.btn-row {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.btn-apply {
  background: #1c3f94;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.btn-about {
  background: transparent;
  border: 2px solid #e41d23;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #e41d23;
  transition: 0.3s;
}

/* ======================================================
      RESPONSIVE DESIGN
   ====================================================== */

/* ---------- TABLETS (max-width: 1024px) ---------- */

/* ---------- MOBILE LARGE (max-width: 768px) ---------- */
@media (min-width: 1600px) {
  .section-hostel {
    justify-content: center;
    gap: 200px; /* optional: adjust spacing */
  }
}
@media (max-width: 1300px) {
  .section-hostel {
    flex-direction: column;
    padding: 50px 30px;
    gap: 50px;
  }

  .image-left img {
    width: 100%;
            max-width: 537px;
  }

  .hostel-content {
    max-width: 100%;
    padding: 30px;
  }

  .btn-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-row button {
    width: 100%;
  }
}

/* ---------- SMALL MOBILE (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .hostel-content h2 {
    font-size: 28px;
  }

  .hostel-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .image-left img {
    width: 100%;
  }

  .section-hostel {
    padding: 40px 20px;
  }
}
