@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.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: rgb(117.832460733, 121.6335078534, 124.167539267);
  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;
  }
}

body {
  background: rgb(248.3298429319, 248.5340314136, 248.6701570681);
}

.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;
  }
}

ul {
  list-style: none !important;
  padding-left: 0 !important;
}
ul li {
  list-style: none !important;
}

.testimonial-grid-section {
  padding: 4rem 2rem;
  background: #ffffff;
}
.testimonial-grid-section .testimonial-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card {
  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;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(70, 162, 218, 0.2);
  border-color: #46A2DA;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card {
    padding: 1.5rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-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);
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header {
    flex-direction: column;
    text-align: center;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container {
    flex-direction: column;
    gap: 1rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .avatar-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #285c7c;
  box-shadow: 0 4px 15px rgba(70, 162, 218, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(70, 162, 218, 0.1) 0%, rgba(70, 162, 218, 0.05) 100%);
  font-size: 1.8rem;
  font-weight: 700;
  color: #043F6D;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .avatar-initials {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #285c7c;
  box-shadow: 0 4px 15px rgba(70, 162, 218, 0.2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .avatar {
    width: 80px;
    height: 80px;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .avatar-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #285c7c;
  box-shadow: 0 4px 15px rgba(70, 162, 218, 0.2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .avatar-photo {
    width: 80px;
    height: 80px;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .profile-info {
  flex: 1;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .profile-info .name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #043F6D;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .profile-info .name {
    font-size: 1rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .profile-info .overall {
  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;
  margin: 0;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .profile-info .overall i {
  color: #285c7c;
  font-size: 1rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .header .avatar-container .profile-info .date {
  margin-top: 10px;
  color: rgb(143.6596858639, 147.0680628272, 149.3403141361);
  font-size: 0.8rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 468px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores {
    gap: 0.75rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score {
  background: #285c7c;
  color: #F9F9F9;
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score:hover {
  background: lighten #285c7c, 10%;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #F9F9F9;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score h6 i {
  color: #46A2DA;
  font-size: 0.9rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score .score-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F9F9F9;
  margin-bottom: 0.5rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score .score-value::after {
  content: "\f149";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 0.8rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score .score-icon {
  display: none;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score .score-image {
  margin-top: 0.5rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .scores .score .score-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(4, 63, 109, 0.1);
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment {
  background: rgba(70, 162, 218, 0.03);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(70, 162, 218, 0.1);
  position: relative;
  margin-top: 1.5rem;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .summary {
  font-size: 1.1rem;
  font-weight: 700;
  color: #043F6D;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .summary i {
  color: #285c7c;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .summary {
    font-size: 1rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .comment-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5D6062;
  margin: 0;
  white-space: pre-wrap;
  max-height: 5rem;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .comment-text {
    font-size: 0.9rem;
  }
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .comment-text .highlight {
  background: #d1e4f0;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  color: #043F6D;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .comment-text::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  height: 2rem;
  background: linear-gradient(to bottom, transparent, rgba(70, 162, 218, 0.03));
  pointer-events: none;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .comment-text.expanded {
  max-height: none;
  padding-bottom: 0;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .comment-text.expanded::after {
  display: none;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .toggle-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(70, 162, 218, 0.1);
  border: 1px solid rgba(70, 162, 218, 0.3);
  border-radius: 6px;
  color: #043F6D;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .toggle-button:hover {
  background: rgba(70, 162, 218, 0.15);
  border-color: #46A2DA;
  transform: translateX(2px);
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .toggle-button i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.testimonial-grid-section .testimonial-grid-container .testimonial-grid .testimonial-card .comment .toggle-button.expanded i {
  transform: rotate(180deg);
}

.testimonial-post {
  max-width: 768px;
  margin: 0 auto;
  padding: 3rem 10px;
}
.testimonial-post h3 {
  text-align: center;
  color: #043F6D;
}
.testimonial-post button {
  border: none;
}

.table-th-vertical {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.table-th-vertical thead {
  background-image: linear-gradient(135deg, #043F6D 0%, rgb(5.8053097345, 91.4336283186, 158.1946902655) 50%, #46A2DA 100%);
  color: #ffffff;
}
.table-th-vertical thead tr th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
}
.table-th-vertical tbody tr {
  border-bottom: 1px solid rgb(222.1623036649, 223.167539267, 223.8376963351);
  transition: background-color 0.2s ease;
}
.table-th-vertical tbody tr:hover {
  background-color: rgb(216.4159292035, 237.3008849558, 253.5840707965);
}
.table-th-vertical tbody tr:last-child {
  border-bottom: none;
}
.table-th-vertical tbody tr td {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: #35393C;
  vertical-align: middle;
}
.table-th-vertical tbody tr td a {
  color: #043F6D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.table-th-vertical tbody tr td a:hover {
  color: #46A2DA;
  text-decoration: underline;
}
.table-th-vertical tr {
  border-bottom: 1px solid rgb(222.1623036649, 223.167539267, 223.8376963351);
  transition: background-color 0.2s ease;
}
.table-th-vertical tr:hover {
  background-color: rgb(216.4159292035, 237.3008849558, 253.5840707965);
}
.table-th-vertical tr:last-child {
  border-bottom: none;
}
.table-th-vertical tr th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  background: rgba(70, 162, 218, 0.05);
  color: #043F6D;
  vertical-align: middle;
}
.table-th-vertical tr td {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: #35393C;
  vertical-align: middle;
}
.table-th-vertical tr td a {
  color: #043F6D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.table-th-vertical tr td a:hover {
  color: #46A2DA;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .table-th-vertical {
    font-size: 0.9rem;
  }
  .table-th-vertical thead tr th {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
  }
  .table-th-vertical tbody tr td {
    padding: 1rem 0.75rem;
  }
  .table-th-vertical tr th,
  .table-th-vertical tr td {
    padding: 1rem 0.75rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .table-th-vertical thead {
    display: none;
  }
  .table-th-vertical tbody tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgb(222.1623036649, 223.167539267, 223.8376963351);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .table-th-vertical tbody tr td {
    display: block;
    padding: 0.75rem 1rem;
    text-align: right;
    position: relative;
    border-bottom: 1px solid rgb(248.3298429319, 248.5340314136, 248.6701570681);
  }
  .table-th-vertical tbody tr td:last-child {
    border-bottom: none;
    text-align: center;
  }
  .table-th-vertical tbody tr td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    font-weight: 600;
    color: #043F6D;
    text-align: left;
  }
  .table-th-vertical tbody tr td:last-child::before {
    content: "";
  }
  .table-th-vertical tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgb(222.1623036649, 223.167539267, 223.8376963351);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .table-th-vertical tr th {
    display: block;
    padding: 0.75rem 1rem;
    text-align: left;
    background: rgba(70, 162, 218, 0.08);
    border-bottom: 1px solid rgb(248.3298429319, 248.5340314136, 248.6701570681);
    font-size: 0.85rem;
    font-weight: 600;
  }
  .table-th-vertical tr td {
    display: block;
    padding: 0.75rem 1rem;
    text-align: right;
    position: relative;
    border-bottom: 1px solid rgb(248.3298429319, 248.5340314136, 248.6701570681);
  }
  .table-th-vertical tr td:last-child {
    border-bottom: none;
  }
}

.box-info {
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(4, 63, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, white, rgb(248.5, 251.7324324324, 253.7));
  border: 1px solid rgb(218.75, 236.777027027, 247.75);
}
.box-info .title {
  color: #043F6D;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  list-style: none;
}
.box-info ul {
  margin: 0;
}
.box-info ul li {
  color: #5D6062;
  margin-bottom: 0.4rem;
  list-style: none;
}

@media (max-width: 768px) {
  .box-info {
    padding: 1.25rem;
  }
  .box-info .title {
    font-size: 1rem;
  }
}/*# sourceMappingURL=local.css.map */