.hero-section {
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.05) 0%, rgba(4, 63, 109, 0.05) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 162, 218, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}
.hero-section .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-section .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.hero-section .hero-container .hero-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-content {
    order: 2;
  }
}
.hero-section .hero-container .hero-content .hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #46A2DA;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(70, 162, 218, 0.1);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-section .hero-container .hero-content .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-title {
    font-size: 2.2rem;
  }
}
.hero-section .hero-container .hero-content .hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #767a7c;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-description {
    font-size: 1rem;
  }
}
.hero-section .hero-container .hero-content .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-content .hero-features {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-container .hero-content .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 2px solid rgba(70, 162, 218, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item:hover {
  border-color: #46A2DA;
  background: rgba(70, 162, 218, 0.05);
  transform: translateY(-2px);
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item i {
  color: #46A2DA;
  font-size: 1.2rem;
}
.hero-section .hero-container .hero-content .hero-features .hero-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #043F6D;
}
.hero-section .hero-container .hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease;
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-image {
    order: 1;
  }
}
.hero-section .hero-container .hero-image img {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(4, 63, 109, 0.1));
}
@media (max-width: 968px) {
  .hero-section .hero-container .hero-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(-20px);
  }
}
.mobile-break {
  display: none;
}
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

/* Introduction Section */
.teacher-intro-section-new {
  padding: 3rem 2rem;
  background: #F9F9F9;
}

.teacher-intro-container-new {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  border: 1px solid rgba(4, 63, 109, 0.08);
}
@media (max-width: 768px) {
  .intro-content-box {
    padding: 2rem 1.5rem;
  }
}

.section-subtitle-new {
  font-size: 1.8rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.section-subtitle-new i {
  color: #46A2DA;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .section-subtitle-new {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5D6062;
  margin: 0;
}
@media (max-width: 768px) {
  .intro-text {
    font-size: 1rem;
  }
}

/* Teachers Grid Section */
.teacher-grid-section-new {
  padding: 4rem 2rem;
  background: #ffffff;
}

.teacher-grid-container-new {
  max-width: 1200px;
  margin: 0 auto;
}

.teacher-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .teacher-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.teacher-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  border: 2px solid rgba(70, 162, 218, 0.15);
  transition: all 0.3s ease;
}
.teacher-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(70, 162, 218, 0.2);
  border-color: #46A2DA;
}

.teacher-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(70, 162, 218, 0.1);
}

.teacher-photo-wrapper {
  position: relative;
}

.teacher-photo-new {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #46A2DA;
  box-shadow: 0 4px 15px rgba(70, 162, 218, 0.2);
}
@media (max-width: 768px) {
  .teacher-photo-new {
    width: 80px;
    height: 80px;
  }
}

.teacher-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #043F6D 0%, #46A2DA 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(70, 162, 218, 0.4);
}
.teacher-badge i {
  color: #ffffff;
  font-size: 0.9rem;
}

.teacher-basic-info {
  flex: 1;
}

.teacher-name-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #043F6D;
  margin: 0 0 0.75rem 0;
}

.teacher-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.1) 0%, rgba(70, 162, 218, 0.05) 100%);
  border: 2px solid rgba(70, 162, 218, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #043F6D;
}
.teacher-score-badge i {
  color: #46A2DA;
  font-size: 1rem;
}

.teacher-features-new {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag-new {
  padding: 0.4rem 1rem;
  background: #F9F9F9;
  border: 1px solid rgba(70, 162, 218, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5D6062;
  transition: all 0.3s ease;
}
.feature-tag-new:hover {
  background: rgba(70, 162, 218, 0.05);
  border-color: #46A2DA;
}

.teacher-details-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-item {
  background: rgba(70, 162, 218, 0.03);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(70, 162, 218, 0.1);
}

.detail-item-warning {
  background: rgba(235, 72, 120, 0.03);
  border-color: rgba(235, 72, 120, 0.2);
}

.detail-item-message {
  background: rgba(70, 162, 218, 0.05);
  border: 2px solid rgba(70, 162, 218, 0.15);
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #043F6D;
  margin-bottom: 0.5rem;
}
.detail-label i {
  color: #46A2DA;
  font-size: 1rem;
}

.detail-item-warning .detail-label i {
  color: #EB4878;
}

.detail-value {
  font-size: 0.95rem;
  color: #5D6062;
  line-height: 1.6;
  padding-left: 1.5rem;
}

.teacher-message {
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.no-teachers-message {
  text-align: center;
  font-size: 1.2rem;
  color: #5D6062;
  padding: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .teacher-hero-section-new {
    padding: 4rem 1.5rem 3rem;
  }
  .teacher-intro-section-new {
    padding: 2.5rem 1.5rem;
  }
  .teacher-grid-section-new {
    padding: 3rem 1.5rem;
  }
  .teacher-card-new {
    padding: 1.5rem;
  }
  .teacher-card-header {
    flex-direction: column;
    text-align: center;
  }
  .teacher-basic-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=local.css.map */