
/* HERO */
.adm-hero {
  color: #fff;
  text-align: center;
  height: 450px;
  background: url('../assets/images/Admissions.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adm-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.adm-hero p {
  max-width: 600px;
  margin: 10px auto;
  opacity: 0.9;
  line-height: 1.6;
}

.adm-hero button {
  margin-top: 20px;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: #ff9800;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.adm-hero button:hover {
  transform: scale(1.05);
  background: #ffa726;
}

/* GRID SYSTEM */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARDS */
.card,
.course,
.step {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
}

.card:hover,
.course:hover,
.step:hover {
  transform: translateY(-5px);
}

/* STATS */
.adm-stats {
  padding: 40px 0;
  background: #f5f5f5;
}

.card h2 {
  color: #c62828;
  font-size: 32px;
}

/* PROCESS */
.adm-process {
  padding: 40px 0;
  text-align: center;
}

.adm-process h2 {
  margin-bottom: 30px;
}

.step {
  font-weight: 600;
}

/* COURSES */
.adm-courses {
  padding: 40px 0;
  background: #fafafa;
}

.course h3 {
  margin-bottom: 8px;
}

.course button {
  margin-top: 12px;
  padding: 10px 18px;
  border: none;
  background: #c62828;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.course button:hover {
  background: #b71c1c;
}

/* FORM */
.adm-form {
  padding: 40px 0;
}

.adm-form h2 {
  text-align: center;
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.adm-form input,
.adm-form select,
.adm-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.adm-form textarea {
  width: 100%;
  margin-top: 15px;
  height: 120px;
  grid-column: 1/3;
}

.adm-form button {
  width: 100%;
  margin-top: 15px;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff9800, #ff5722);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.adm-form button:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {

  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .adm-hero h1 {
    font-size: 20px;
  }

  .adm-hero {
    padding: 40px 15px;
  }
.adm-hero p {
    max-width: 600px;
    margin: 10px auto;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 12px;
}
  .adm-form textarea {
    grid-column: 1;
  }
  .adm-hero {
  color: #fff;
  text-align: center;
  height: 260px;
  background: url('../assets/images/Admissions.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
}