/* ===============================
   ADMISSIONS SECTION
================================ */
.admissions-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

/* CARD */
.admissions-card {
  width: 100%;
  max-width: 1200px;
  background: url("../../Assets/Addmissions/admission background.png")
    no-repeat center center;
  background-size: cover;
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* HEADING */
.admissions-card h2 {
  font-size: 42px;
  font-weight: 1200;
  color: #003E66;
  line-height: 1.25;
  margin-bottom: 18px;
}

/* SUBTEXT */
.admissions-card p {
  font-size: 16px;
  color: #008E99;
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* BUTTON WRAPPER */
.admissions-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(0deg, #0064A3 0%, #00B3FF 100%);  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-primary:hover {
  background: #3b79e0;
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: #ffffff;
  color: #0b2d39;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-secondary:hover {
  background: #f2f2f2;
}

/* ===============================
   RESPONSIVE
================================ */

/* TABLETS */
@media (max-width: 992px) {
  .admissions-card {
    padding: 60px 30px;
  }

  .admissions-card h2 {
    font-size: 36px;
  }
}

/* PHONES */
@media (max-width: 600px) {
  .admissions-card {
    padding: 50px 22px;
  }

  .admissions-card h2 {
    font-size: 30px;
  }

  .admissions-card p {
    font-size: 14px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}
