/* ==========================
   STUDENT PAGE BANNER
========================== */

.student-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
}

.student-banner-content {
  flex: 1;
  max-width: 500px;
}

.student-banner-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #169a9a;
  margin-bottom: 1rem;
}

/* Buttons */
.student-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.student-buttons img {
  height: 2rem;
}

/* .student-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
} */

/* .student-buttons .btn-college {
  background: #20a2a8;
  color: #fff;
} */

/* .student-buttons .btn-college:hover {
  background: #17868a;
} */

/* .student-buttons .btn-demo {
  background: #eaeaea;
  color: #111;
} */

/* .student-buttons .btn-demo:hover {
  background: #ccc;
} */

/* Right-side image */
.student-banner-image {
  flex: 1;
  text-align: right;
}

.student-banner-image img {
  max-width: 70%;
  /* border-radius: 0 0 0 200px; */
}

/* Responsive */
@media (max-width: 992px) {
  .student-banner {
    flex-direction: column;
    text-align: center;
  }

  .student-banner-content {
    margin-bottom: 30px;
  }

  .student-banner-image {
    text-align: center;
  }

  .student-banner-image img {
    max-width: 100%;
    border-radius: 0;
  }
}
