.page-hero {
  position: relative;
  height: 420px;
  background: url("images/about-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 8%;
  color: #fff;
  overflow: hidden;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  font-family: "Georgia", serif;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 16px;
}

.hero-content a {
  color: #ff5a2c;
  text-decoration: none;
}

.hero-content span {
  color: #fff;
}

/* SCALLOP BOTTOM */
.scallop-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: radial-gradient(circle at 30px -10px, #737373 30px, #f2f2f2 31px)
    repeat-x;
  background-size: 60px 60px;
}
.teachers-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  color: #0e3c4c;
  font-family: "Georgia", serif;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* GRID */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.teacher-card {
  position: relative;
  text-align: center;
}

/* OVAL IMAGE */
.teacher-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 200px;
}

.teacher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* INFO CIRCLE */
.teacher-info {
  width: 220px;
  height: 220px;
  background: #fff;
  border-radius: 50%;
  margin: -100px auto 0;
  padding-top: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.teacher-info h4 {
  font-size: 20px;
  color: #0e3c4c;
  margin-bottom: 5px;
}

.teacher-info span {
  font-size: 14px;
  color: #888;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  background: #ff5a2c;
  color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e0481f;
  transform: translateY(-3px);
}

/* HOVER EFFECT */
.teacher-card:hover .teacher-image img {
  transform: scale(1.08);
}

.teacher-card:hover .teacher-info {
  transform: translateY(-10px);
}

/* admission */
.admission-bar {
  background: #f8f8f8;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.admission-track {
  display: inline-block;
  padding: 10px 0;
  animation: scrollLeft 20s linear infinite;
}

.admission-track span {
  margin-right: 100px;
  font-size: 15px;
  color: #d60000;
  font-weight: 500;
}

.admission-track a {
  color: #1a56db;
  text-decoration: none;
  font-weight: 600;
}

.admission-track a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .teachers-grid {
    grid-template-columns: 1fr;
  }

  .teacher-image {
    height: 350px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .page-hero {
    height: 300px;
    padding-left: 5%;
  }
}
