/* Font Regular */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

/* Font Light */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Light Italic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

/* Font XLight */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Xlight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Xlight Italic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}

/* Font Medium */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Medium Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

/* Font SemiBold */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy SemiBold Italic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
}

/* Font Bold */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Bold Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

/* Font Heavy */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Heavy Italic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
}

/* Font Black */
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../assets/SVN-Gilroy/SVN-Gilroy Black Italic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}

/* Root Variables for Consistent Spacing */
:root {
  --primary-color: #db1f1f;
  --primary-gradient: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  --secondary-color: #252525;
  --light-red: #f7dede;
  --spacing-xs: 8px;
  --spacing-sm: 10px;
  --spacing-md: 12px;
  --spacing-lg: 24px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --border-radius: 12px;
  --box-shadow: 0px 4px 16px rgba(219, 31, 31, 0.15);
  --transition: all 0.3s ease;
  --Gradient-LMC: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
}

/* Smooth scrolling and reduced motion support */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: "SVN-Gilroy", sans-serif;
  line-height: 1.6;
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.animate-fadeInUp.animate-visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInLeft {
  opacity: 0;
  transform: translateX(-30px);
  transition: var(--transition);
}

.animate-fadeInLeft.animate-visible {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fadeInRight {
  opacity: 0;
  transform: translateX(30px);
  transition: var(--transition);
}

.animate-fadeInRight.animate-visible {
  animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scaleIn {
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition);
}

.animate-scaleIn.animate-visible {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Hover effects for interactive elements */
.hero-avatar-img:hover {
  transform: scale(1.1) rotate(5deg);
  transition: var(--transition);
}

.stat-card {
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

.course-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(58, 22, 22, 0.2);
}

.news-card:hover,
.teacher-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(58, 22, 22, 0.15);
}

h1 {
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  line-height: 1.4;
}

h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
}

h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
}

h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
}

h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
}


/* Hero Section */
.hero-section {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
  min-height: 715px;
  padding-top: var(--spacing-md);
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: var(--spacing-2xl);
  }
}

@media (max-width: 991.98px) {
  .hero-left-section,
  .hero-avatar-container,
  .hero-avatar-background,
  .hero-avatar-img {
    display: none !important;
  }
}

.hero-container {
  display: grid;
  grid-template-columns: 354px 343px 368px;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "sale-banner sale-banner form"
    "avatar highlights form";
  gap: 78px 27px;
  align-items: start;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 2;
}

/* Sale Banner */
.hero-sale-banner {
  grid-area: sale-banner;
  position: relative;
  z-index: 4;
  display: none;
  justify-content: center;
  align-items: center;
  height: 160px;
  width: 100%;
}

.hero-sale-banner-mobile {
  display: none;
  order: -1;
  width: calc(100% - 60px);
  margin: 0 30px 24px;
}

@media (min-width: 992px) {
  .hero-sale-banner {
    display: flex;
  }
}

@media (max-width: 991.98px) {
  .hero-sale-banner {
    display: none;
  }
  .hero-sale-banner-mobile {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 24px;
    order: 1;
  }
  .hero-sale-banner-mobile img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
  }
}

.hero-sale-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .hero-left-section {
    display: none;
  }
}

/* Left Section: Avatar */
.hero-left-section {
  grid-area: avatar;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-avatar-container {
  position: relative;
  width: 354px;
  height: 454px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.hero-avatar-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-avatar-background img {
  width: 351px;
  height: 351px;
  display: block;
}

.hero-avatar-img {
  width: 354px;
  height: 580px;
  object-fit: cover;
  position: relative;
  z-index: 3;
  right: 26px;
}

.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-bulb {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 6px 0px rgba(219, 31, 31, 0.24);
  z-index: 4;
}

/* Right Section: Registration Form */
.hero-right-section {
  grid-area: form;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.registration-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 39px 23px;
  width: 368px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Highlights Section */
.hero-highlights-section {
  grid-area: highlights;
  width: 343px;
  margin-top: 0;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
}

.highlight-item-long {
  min-height: 58px;
}

.form-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.form-group {
  position: relative;
}

.form-select-wrapper {
  position: relative;
}

.form-control {
  width: 100%;
  height: 48px;
  background: #f2f4f5;
  border: none;
  border-radius: 12px;
  padding: 16px 15px;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #b7c6cd;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(219, 31, 31, 0.2);
  background: #ffffff;
  color: #000000;
}

.form-control::placeholder {
  color: #b7c6cd;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background: #f2f4f5;
}

.select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
  filter: invert(0.5);
}

.btn-register {
  background: #db1f1f;
  border: none;
  border-radius: 12px;
  height: 48px;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.btn-register:hover {
  background: #b71c1c;
}

/* Course Ecosystem Section */
.course-ecosystem-section {
  background: #ffffff url("../assets/images/white-background.png");
  padding: 2rem;
}

/* Statistics Section */
.stats-section {
  margin-bottom: 3rem;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 58px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  .stat-card {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
  }
}

.stat-image {
  width: auto;
  height: 75px; /* Reduced from 92px */
  margin-bottom: 16px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .stat-image {
    height: 55px; /* Reduced from 70px */
    margin-bottom: 12px;
  }
}

.stat-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #252525;
  margin: 0;
  text-align: center;
}

.stat-title-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .stat-title {
    display: none;
  }

  .stat-title-mobile {
    display: block;
    font-family: "SVN-Gilroy", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.05;
    text-transform: uppercase;
    color: #252525;
    margin: 0;
    text-align: center;
  }
}

/* Main Content */
.ecosystem-content {
  max-width: 1144px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .ecosystem-content {
    margin: 0;
    max-width: none;
    width: 100%;
  }
}

/* Title Section */
.ecosystem-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
  .ecosystem-title-section {
    margin-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  .ecosystem-title-section {
    margin-bottom: 10px !important;
  }
}

.ecosystem-title {
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-only {
  display: block !important;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 991.98px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .ecosystem-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .ecosystem-title span {
    display: inline-block;
  }

  .ecosystem-title span:last-child {
    white-space: nowrap;
  }
}

.mobile-decoration {
  display: none;
}

@media (max-width: 991.98px) {
  .mobile-decoration {
    display: block;
    text-align: center;
  }

  .mobile-decoration img {
    width: 100%;
    height: auto;
  }
}

.title-decorations {
  position: relative;
  width: 100%;
  height: 18px;
  margin-top: 14px;
}

@media (max-width: 991.98px) {
  .title-decorations {
    display: none !important;
  }
}

.title-decoration-group {
  position: absolute;
  left: 50%;
  top: 0;
  width: 52px;
  height: 18px;
  translate: -50% 0;
}

.decoration-rect {
  position: absolute;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 2px;
  transform: rotate(45deg);
}

.rect-1 {
  width: 18px;
  height: 18px;
  left: 17px;
  top: 0;
}

.rect-2 {
  width: 12px;
  height: 12px;
  left: 0;
  top: 3px;
}

.rect-3 {
  width: 12px;
  height: 12px;
  left: 40px;
  top: 3px;
}

/* Main Grid */
.ecosystem-grid {
  display: flex;
  gap: 28px;
  margin-bottom: 64px;
}

.ecosystem-left {
  flex: 1;
  max-width: 721px;
}

.ecosystem-right {
  flex: 0 0 395px;
}

@media (max-width: 991.98px) {
  .ecosystem-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .ecosystem-left {
    order: 2;
  }

  .ecosystem-right {
    order: 1;
    display: flex;
    justify-content: center;
  }
}

/* Benefits Card */
.benefits-card {
  background: #fff2f2;
  border-radius: 20px;
  padding: 63px 45px 45px 45px;
  margin-bottom: 20px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.benefit-icon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
}

.benefit-icon img {
  width: 17px;
  height: 17px;
}

.benefit-text {
  font-family: "SVN-Gilroy", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  color: #252525;
  flex: 1;
}

.benefit-divider {
  width: 100%;
  height: 0;
  border-top: 1.5px dashed rgba(219, 31, 31, 0.35);
  margin: 0;
}

.btn-details {
  display: flex;
  align-items: center;
  gap: 17px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border: 4px solid #ffffff;
  border-radius: 50px;
  padding: 11px 16px;
  box-shadow: 0px 4px 4px rgba(217, 217, 217, 1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-details img {
  width: 30px;
  height: 16px;
}

.btn-details span {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: #ffffff;
}

.btn-arrow {
  width: 30px;
  height: 16px;
  background: #ffffff;
  border-radius: 8.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow img {
  width: 14px;
  height: 8px;
}

.btn-details:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(217, 217, 217, 1);
}

/* Course Types Grid */
.course-types-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 991.98px) {
  .course-types-grid {
    gap: 12px;
    padding: 0 30px;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.course-type-card {
  border-radius: 20px;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 4px 24px rgba(58, 22, 22, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.course-card-header {
  position: relative;
  padding: 16px 93px 16px 36px;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 20px;
  border: 1px solid transparent; /* Reserve space to avoid jump when active border appears */
  background: #ffffff;
}

.course-type-card.course-active .course-card-header {
  border: 1px solid #db1f1f;
}

@media (max-width: 991.98px) {
  .course-type-card {
    box-shadow: none;
  }

  .course-card-header {
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 10px;
  }

  .course-active {
    border: 1px solid #db1f1f;
  }
}

.course-card-header {
  position: relative;
  padding: 16px 93px 16px 36px;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .course-card-header {
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 10px;
  }
  .course-active {
    border: 1px solid #db1f1f;
  }

  .course-type-card {
    box-shadow: none;
  }
}

.course-type-card.course-active {
  background: transparent;
  border: none !important;
}

.course-type-card.course-active .course-title {
  color: #000000;
}

@media (max-width: 991.98px) {
  .course-type-card {
    padding: 0;
  }
}

.course-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 10px;
  background: url("../assets/images/ic-expandable-arrow.svg") no-repeat center
    center;
  background-size: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
  .course-arrow {
    right: 10px;
    width: 18px;
    height: 8px;
  }
}

.course-type-card.course-active .course-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.course-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.05;
  color: #252525;
  margin: 0;
  flex: 1;
}

.course-active .course-title {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .course-title {
    font-size: 13px;
  }
}

.course-icon {
  width: 26px;
  height: 36px;
  margin-right: 31px;
  position: relative;
  background: url("../assets/images/ic-bulb.svg") no-repeat center center;
  background-size: contain;
}

@media (max-width: 991.98px) {
  .course-icon {
    width: 13px;
    height: 18px;
    margin-right: 20px;
  }
}

.course-indicator {
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 32px;
  background: #db1f1f;
  border-radius: 0px 3px 4px 0px;
}

/* Course Benefits within Cards */
.course-benefits {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
  background: #fff2f2;
  width: 100%;
  border-radius: 8px;
  padding: 0 45px; /* animate vertical padding; keep horizontal to avoid width shift */
  will-change: max-height, padding, opacity;
}

.course-benefits.expanded {
  max-height: 1000px;
  padding: 45px;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .course-benefits {
    padding: 0 24px;
  }
  .course-benefits.expanded {
    padding: 24px;
  }
}

.course-benefits .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .course-benefits .benefits-list {
    gap: 16px;
    margin-bottom: 24px;
  }

  .benefit-item {
    gap: 10px !important;
  }
}

.course-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.course-benefits .benefit-icon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
}

.course-benefits .benefit-icon img {
  width: 17px;
  height: 17px;
}

.course-benefits .benefit-text {
  font-family: "SVN-Gilroy", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  color: #252525;
  flex: 1;
}

@media (max-width: 991.98px) {
  .course-benefits .benefit-text {
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
  }
}

.course-benefits .benefit-divider {
  width: 100%;
  height: 0;
  border-top: 1.5px dashed rgba(219, 31, 31, 0.35);
  margin: 0;
}

.course-benefits .benefits-cta {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.course-benefits .benefits-cta a{
  text-decoration: none;
}

@media (max-width: 992px) {
  .course-benefits .benefits-cta {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
}

.course-benefits .btn-details {
  display: flex;
  align-items: center;
  gap: 17px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border: 4px solid #ffffff;
  border-radius: 50px;
  padding: 11px 16px;
  box-shadow: 0px 4px 4px rgba(217, 217, 217, 1);
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
  .course-benefits .btn-details {
    padding: 8px 12px;
    gap: 12px;
    border-width: 3px;
  }
}

.course-benefits .btn-details img {
  width: 30px;
  height: 16px;
}

.course-benefits .btn-details span {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .course-benefits .btn-details span {
    font-size: 16px;
  }
}

.course-benefits .btn-arrow {
  width: 30px;
  height: 16px;
  background: #ffffff;
  border-radius: 8.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-benefits .btn-arrow img {
  width: 14px;
  height: 8px;
}

.course-benefits .btn-details:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(217, 217, 217, 1);
}

/* Hero Image */
.ecosystem-hero-image {
  width: 100%;
  height: auto;
  max-width: 395px;
  object-fit: cover;
}

/* Bottom CTA */
.ecosystem-cta {
  display: flex;
  justify-content: center;
}

.btn-consultation {
  background: linear-gradient(180deg, #fdda35 36%, #fe9c2b 100%);
  border: 4px solid #ffffff;
  border-radius: 50px;
  padding: 17px 26px;
  box-shadow: 0px 4px 4px rgba(217, 217, 217, 1);
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 0.958;
  text-transform: uppercase;
  color: #db1f1f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(217, 217, 217, 1);
}

/* Why Choose Langmaster Section */
.why-choose-section {
  background: url("../assets/images/white-background.png") repeat;
  padding-bottom: 5rem;
  position: relative;
}

.why-choose-container {
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title Section (reuse from ecosystem) */
.why-choose-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 85px;
  position: relative;
}

.why-choose-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; 
    padding-bottom: 14px;
}

/* Main Grid Layout */
.why-choose-grid {
  display: grid;
  grid-template-columns: 368px 371px 368px;
  gap: 27px;
  align-items: start;
  margin-bottom: 64px;
}

@media (max-width: 991.98px) {
  .why-choose-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
  }

  /* Right column should appear first with its accordion items in original order */
  .why-choose-grid .feature-cards-column:first-child {
    order: 1;
  }

  /* Left column should appear second with reordered items (0->3, 1->2, 2->1, 3->0) */
  .why-choose-grid .feature-cards-column:last-child {
    order: 2;
    display: flex;
    flex-direction: column;
  }

  .why-choose-grid .feature-cards-column:last-child .accordion-item:nth-child(1) { order: 3; }
  .why-choose-grid .feature-cards-column:last-child .accordion-item:nth-child(2) { order: 2; }
  .why-choose-grid .feature-cards-column:last-child .accordion-item:nth-child(3) { order: 1; }
  .why-choose-grid .feature-cards-column:last-child .accordion-item:nth-child(4) { order: 0; }

  /* Hero image last */
  .why-choose-grid .why-choose-hero { order: 3; }
}

/* Feature Cards Columns */
.feature-cards-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 991.98px) {
  .feature-cards-column {
    gap: 12px;
  }
  .feature-cards-column + .feature-cards-column {
    margin-top: 12px !important;
  }

  .why-choose-grid {
    gap: 12px !important;
  }
}

/* Regular Feature Cards */
/* .feature-card {
  background: #ffffff;
  border-radius: 13px;
  padding: 12px;
  box-shadow: 3px 4px 24px rgba(58, 22, 22, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
} */

/* Fix Accordion Border Radius */
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.accordion-item:first-of-type {
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

.accordion-item:last-of-type {
  border-bottom-left-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

.accordion-item .accordion-button {
  border-radius: 12px !important;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px;
}

.accordion-button .accordion-icon {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.accordion-button .accordion-text {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}

.accordion-button::after {
  position: absolute !important;
  right: 20px !important;
  bottom: 10px !important;
  margin: 0 !important;
  transform-origin: center !important;
}

.accordion-button.collapsed::after {
  transform: rotate(0deg) !important;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg) !important;
}

@media (max-width: 991.98px) {
  .accordion-button {
    padding: 8px 7px !important;
  }

  .accordion-button .accordion-text {
    font-size: 13px;
  }

  .accordion-button::after {
    position: absolute !important;
    right: 7px !important;
    bottom: 5px !important;
    margin: 0 !important;
  }

  .accordion-item {
    margin-bottom: 0 !important;
  }

  .accordion-item:last-child {
    margin-bottom: 0;
  }
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-bg {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

.icon-bg.orange {
  background: rgba(219, 31, 31, 0.12);
}

.icon-bg.red {
  background: #db1f1f;
}

.icon-bg.pink {
  background: #fbe4e4;
}

.feature-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.05;
  color: #252525;
  margin: 0;
  flex: 1;
}

.main-feature-header {
  display: flex;
  align-items: center;
  gap: 13px;
}

.main-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.main-feature-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.05;
  color: #252525;
  margin: 0;
  flex: 1;
}

.feature-divider {
  width: 100%;
  height: 0;
  border-top: 1.5px dashed #000000;
  margin: 0;
}

.main-feature-description {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.05;
  color: #252525;
  margin: 0;
  text-align: justify;
}

/* Hero Image */
.why-choose-hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 371px;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .hero-image {
    max-width: 100%;
    margin: 20px 0;
  }

  .why-choose-hero {
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* Registration CTA */
.registration-cta {
  display: flex;
  justify-content: center;
}

.btn-register-test {
  background: linear-gradient(180deg, #fdda35 36%, #fe9c2b 100%);
  border: 4px solid #ffffff;
  border-radius: 50px;
  padding: 17px 15px;
  box-shadow: 0px 4px 4px rgba(217, 217, 217, 1);
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 0.958;
  text-transform: uppercase;
  color: #db1f1f;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-register-test:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(217, 217, 217, 1);
}

/* Teaching Methods Section */
.teaching-methods-section {
  position: relative;
  padding-bottom: 5rem;
}

.teaching-methods-container {
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

/* Title Section */
.teaching-methods-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 85px;
  position: relative;
}

.teaching-methods-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* margin-bottom: 14px; */
    padding-top: 12px; 
    padding-bottom: 14px;
}

/* Methods Grid */
.methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  height: auto;
  align-items: stretch;
}

/* Method Cards */
.method-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 3px 4px 30px rgba(58, 22, 22, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 694px;
  margin-bottom: 14px;
}

/* Method Header */
.method-header {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-12px);
  z-index: 2;
  margin-bottom: 32px;
}

.method-header-bg {
  position: absolute;
  top: 0;
  left: 50%;
  height: 12px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 20px 20px 0px 0px;
  z-index: 0;
  width: 100%;
  max-width: 357px;
  transform: translate(-50%, -100%);
}

.method-header-content {
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 0px 0px 20px 20px;
  z-index: 1;
  padding: 9px 28px 15px 28px;
  width: 100%;
  max-width: 330px;
}
.method-title {
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 2;
    font-size: 21px;
}

/* Method Image */
.method-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.method-image img {
  width: 100%;
  max-width: 248px;
  height: auto;
  object-fit: contain;
}

/* Method Description */
.method-description {
  padding: 20px 49px;
  flex: 1;
}

.method-description p {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #252525;
  margin: 0 0 20px 0;
  text-align: justify;
}

.method-description p:last-child {
  margin-bottom: 0;
}

/* Method CTA */
.method-cta {
  padding: 20px 49px 40px 49px;
  display: flex;
  justify-content: end;
}

.btn-method-details {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #db1f1f;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding: 3px 6px;
  border-bottom: 1px solid #db1f1f;
}

.btn-method-details:hover {
  border-radius: 50px;
  border: 1px solid #db1f1f;
}

/* Method Footer Background */
.method-footer-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 316px;
  height: 14px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 0px 0px 20px 20px;
}

/* Teachers Section */
.teachers-section {
  background: url("../assets/images/white-background.png");
  padding-bottom: 5rem;
  position: relative;
}

.teachers-container {
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 ;
}

/* Title Section (reuse existing pattern) */
.teachers-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 85px;
  position: relative;
}

.teachers-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 14px 0;
  /*max-width: 1007px;*/
}

/* Teachers Carousel */
.teachers-carousel {
  margin-bottom: 53px;
}

/* Teacher Cards */
.teacher-card {
  outline: none;
  margin: 0 14px;
}

.teacher-card-inner {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 3px 4px 30px rgba(58, 22, 22, 0.1);
  position: relative;
  padding: 0;
  height: 466px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Teacher Header Background */
.teacher-header-bg {
  position: absolute;
  top: 0;
  left: 90px;
  right: 90px;
  height: 14px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 100%;
  width: calc(100% - 24px);
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px;
}

.mobile-menu-logo img {
  height: 26px;
  width: auto;
}

.mobile-menu-close {
  font-size: 24px;
  background: none;
  border: none;
  color: #000;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  transform: translateX(100%);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 24px;
  color: #252525;
  text-decoration: none;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.mobile-nav-link[aria-expanded="true"] {
  color: #db1f1f;
}

.mobile-nav-link[aria-expanded="true"] .icon-down {
  filter: invert(15%) sepia(87%) saturate(4829%) hue-rotate(347deg)
    brightness(96%) contrast(85%);
  transform: rotate(180deg);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #db1f1f;
}

.mobile-nav-link .icon-down {
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  -webkit-overflow-scrolling: touch;
}

.mobile-dropdown-menu.show {
  max-height: 70vh;
  overflow-y: auto;
  transition: max-height 0.5s ease-in;
}

.mobile-dropdown-content {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-header {
  color: #252525;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: none;
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 8px 20px 8px 44px;
  position: relative;
  transition: background-color 0.3s ease;
}

.mobile-dropdown-header:first-child {
  margin-top: 0;
}

.mobile-dropdown-header:before {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: #db1f1f;
}

.mobile-dropdown-header.selected {
  background-color: transparent;
}

.mobile-dropdown-item {
  color: #252525;
  text-decoration: none;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  padding: 8px 20px 8px 64px;
  position: relative;
  transition: background-color 0.3s ease;
  display: block;
}

.mobile-dropdown-item:before {
  content: "";
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #252525;
}

.mobile-dropdown-item.selected {
  background-color: #db1f1f1a;
}

.mobile-dropdown-item:hover {
  color: #db1f1f;
}

/* Show mobile menu only on mobile devices */
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Teacher Crown */
.teacher-crown {
  position: absolute;
  top: 21px;
  right: 30px;
  z-index: 3;
}

/* Teacher Image */
.teacher-image {
  width: 166px;
  height: 166px;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px 0 20px 0;
  box-shadow: 3px 4px 30px rgba(58, 22, 22, 0.15);
  position: relative;
  z-index: 2;
}

.teacher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Teacher Name */
.teacher-name {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 14px 0;
  padding: 0 30px;
}

/* Teacher Score */
.teacher-score {
  background: rgba(219, 31, 31, 0.1);
  border-radius: 10px;
  padding: 13px 0;
  margin: 0 60px 23px 60px;
  text-align: center;
  width: calc(100% - 120px);
}

.score-text {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 27px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.teachers-section .info {

}

.teachers-section .info li {
    position: relative;
    padding-left: 1.5rem;
    text-align: justify;
    margin-bottom: 10px;
    list-style: none;
}

.teachers-section .info li::before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: url(../assets/images/ic-check-red.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 3px;
    left: 0;
}

/* Teacher Qualifications and Experience */
.teacher-qualification,
.teacher-experience,
.teacher-additional {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 20px 23px 20px;
  width: calc(100% - 40px);
}

.qualification-icon,
.experience-icon,
.additional-icon {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.qualification-text,
.experience-text,
.additional-text {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.167;
  color: #000000;
  flex: 1;
}

/* Teacher Footer Background */
.teacher-footer-bg {
  position: absolute;
  bottom: 0;
  left: 90px;
  right: 90px;
  height: 14px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 0px 0px 20px 20px;
  z-index: 1;
  margin-top: auto;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 100%;
  width: calc(100% - 24px);
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 20px;
}

.mobile-menu-logo img {
  height: 26px;
  width: auto;
}

.mobile-menu-close {
  font-size: 24px;
  background: none;
  border: none;
  color: #000;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  transform: translateX(100%);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 24px;
  color: #252525;
  text-decoration: none;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.mobile-nav-link[aria-expanded="true"] {
  color: #db1f1f;
}

.mobile-nav-link[aria-expanded="true"] .icon-down {
  filter: invert(15%) sepia(87%) saturate(4829%) hue-rotate(347deg)
    brightness(96%) contrast(85%);
  transform: rotate(180deg);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #db1f1f;
}

.mobile-nav-link .icon-down {
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  -webkit-overflow-scrolling: touch;
}

.mobile-dropdown-menu.show {
  max-height: 70vh;
  overflow-y: auto;
  transition: max-height 0.5s ease-in;
}

.mobile-dropdown-content {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-header {
  color: #252525;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: none;
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 8px 20px 8px 44px;
  position: relative;
  transition: background-color 0.3s ease;
}

.mobile-dropdown-header:first-child {
  margin-top: 0;
}

.mobile-dropdown-header:before {
  content: "";
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: #db1f1f;
}

.mobile-dropdown-header.selected {
  background-color: transparent;
}

.mobile-dropdown-item {
  color: #252525;
  text-decoration: none;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  padding: 8px 20px 8px 64px;
  position: relative;
  transition: background-color 0.3s ease;
  display: block;
}

.mobile-dropdown-item:before {
  content: "";
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #252525;
}

.mobile-dropdown-item.selected {
  background-color: #db1f1f1a;
}

.mobile-dropdown-item:hover {
  color: #db1f1f;
}

/* Show mobile menu only on mobile devices */
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* Teachers CTA */
.teachers-cta {
  display: flex;
  justify-content: center;
}

.btn-consultation {
  background: linear-gradient(180deg, #fdda35 36.06%, #fe9c2b 100%);
  border: 4px solid #ffffff;
  border-radius: 50px;
  padding: 14px 50px;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 0.958;
  text-transform: uppercase;
  text-align: center;
  color: #db1f1f;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px rgba(217, 217, 217, 1);
}

.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(217, 217, 217, 1);
}

/* Custom Slick Carousel Styles - Universal */

/* Universal Arrow Styles for All Carousels */
.slick-prev,
.slick-next {
  width: 36px !important;
  height: 36px !important;
  background: #db1f1f !important;
  border-radius: 50% !important;
  z-index: 4 !important;
  top: 50% !important;
  opacity: 1 !important;
}

.slick-prev {
  left: -60px !important;
}

.slick-next {
  right: -60px !important;
}

.slick-prev:before,
.slick-next:before {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

/* Success Stories Section */
.success-stories-section {
  background: url("../assets/images/white-background.png");
  padding-bottom: 5rem;
  position: relative;
}

.success-stories-container {
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title Section (reuse existing pattern) */
.success-stories-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 85px;
  position: relative;
}

.success-stories-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 14px 0;
  max-width: 1007px;
}

/* Success Stories Carousel */
.success-stories-carousel {
  position: relative;
}

/* Video Cards */
.video-card {
  outline: none;
  margin: 0 14px;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 189px;
  transition: all 0.3s ease;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

/* Play Button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-thumbnail:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.3));
}

/* Custom Arrow Styles for Success Stories - Now handled by universal styles */

/* Testimonials Section */
.testimonials-section {
  background: url("../assets/images/white-background.png");
  padding-bottom: 60px;
  position: relative;
}

.testimonials-container {
  /*max-width: 1144px;*/
  margin: 0 auto;
  padding: 0 20px;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 53px;
}

/* Testimonial Cards */
.testimonial-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 472px;
}

.testimonial-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  margin: 0 20px;
}

/* Reviewer Avatar */
.reviewer-avatar-container {
  position: relative;
  display: flex;
  justify-content: center;
  height: 57.5px;
}

.reviewer-occupation {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 3px 4px 30px rgba(58, 22, 22, 0.1);
  z-index: 2;
  padding-top: 70px;
  position: relative;
  height: 580px;
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

.reviewer-avatar-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 115px;
  height: 115px;
  background: #db1f1f;
  border-radius: 50%;
  z-index: 1;
  translate: -50%;
}

.reviewer-avatar {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 3px 4px 30px rgba(58, 22, 22, 0.15);
  z-index: 3;
  position: absolute;
  top: 5px;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviewer Name */
.reviewer-name {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
  padding: 0 30px;
}

/* Star Rating */
.star-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px 0;
  padding: 0 20px;
}

.stars {
  display: flex;
  gap: 8px;
}

.quote-marks {
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 40px;
  translate: 0 -50%;
}

/* Testimonial Content */
.testimonial-content {
  padding: 0 19px;
  flex: 1;
}

.testimonial-content p {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3125;
  color: #000000;
  text-align: justify;
  margin: 0 0 12px 0;
}

.testimonial-content p:last-child {
  margin-bottom: 0;
}

.testimonial-text {
  font-size: 16px;
}

/* Testimonial CTA */
.testimonial-cta {
  padding: 0 20px 10px 20px;
  display: flex;
  justify-content: flex-end;
}

.testimonials-section .btn-arrows {
  display: flex;
  gap: 7px;
}

.testimonials-section .arrow-right {
  width: 8px;
  height: 8px;
  border-right: 1px solid #db1f1f;
  border-bottom: 1px solid #db1f1f;
  transform: rotate(-45deg);
}

.testimonials-section .btn-details:hover {
  transform: translateX(5px);
}

/* Testimonial Footer Background */
.testimonial-footer-bg {
  width: 150px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  height: 7px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 0px 0px 20px 20px;
  z-index: 1;
}

/* View All Reviews CTA */
.view-all-reviews {
  display: flex;
  justify-content: center;
}

.btn-view-all-reviews {
  background: linear-gradient(180deg, #fdda35 36.06%, #fe9c2b 100%);
  border: none;
  border-radius: 50px;
  padding: 14px 50px;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 0.958;
  text-transform: uppercase;
  text-align: center;
  color: #db1f1f;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px rgba(217, 217, 217, 1);
  text-decoration: none;
}

.btn-view-all-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(217, 217, 217, 1);
}

/* Press/News Section */
.press-section {
  background: url("../assets/images/white-background.png");
  padding-bottom: 5rem;
  position: relative;
}

.press-container {
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Section Title */
.press-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 56px 0;
  position: relative;
  z-index: 2;
}

/* Title Decorations */
.press-title-decorations {
  position: relative;
  margin: 0px auto 71px;
  z-index: 2;
}

.title-decoration-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.decoration-rect {
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 2px;
}

.rect-1 {
  width: 18px;
  height: 18px;
}

.rect-2 {
  width: 12px;
  height: 12px;
}

.rect-3 {
  width: 12px;
  height: 12px;
}

/* News Carousel */
.news-carousel {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

/* News Cards */
.news-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 3px 4px 30px rgba(58, 22, 22, 0.1);
  overflow: hidden;
  position: relative;
  height: 325px;
  margin: 0 10px;
}

.news-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* News Image */
.news-image {
  padding: 20px 17px 0 17px;
  flex: 1;
  margin-bottom: 12px;
}

.news-image img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  border-radius: 16px;
}

/* News Content */
.news-content {
  padding: 0 17px 0 17px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  flex: 1;
}

.news-title, .news-title a {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.05;
  color: #000000;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  text-decoration: none;
}

/* News Logo */
.news-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-logo img {
  max-width: 106px;
  max-height: 75px;
  object-fit: contain;
}

/* News Footer Background */
.news-footer-bg {
  position: absolute;
  bottom: 0;
  left: 91px;
  right: 91px;
  height: 7px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 0px 0px 20px 20px;
  z-index: 1;
}

/* Responsive Design for Course Ecosystem */
@media (max-width: 1199.98px) {
  .stats-container {
    gap: 40px;
    flex-wrap: wrap;
  }

  .ecosystem-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .ecosystem-grid {
    flex-direction: column;
    gap: 40px;
  }

  .ecosystem-right {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  /* Why Choose section responsive */
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-choose-container {
    max-width: 95%;
  }

  /* Teaching Methods section responsive */
  .methods-grid {
    grid-template-columns: 1fr;
  }

  .course-indicator {
    width: 2.5px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .teaching-methods-container {
    max-width: 95%;
  }

  /* Teachers section responsive */
  .teachers-container {
    max-width: 95%;
  }

  /* Success Stories section responsive */
  .success-stories-container {
    max-width: 95%;
  }

  /* Testimonials section responsive */
  .testimonials-container {
    max-width: 95%;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Press section responsive */
  .press-container {
    max-width: 95%;
  }

  .press-title {
    font-size: 32px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .news-card {
    height: 300px;
  }

  /* Universal carousel arrows responsive */
  .slick-prev {
    left: -30px !important;
  }

  .slick-next {
    right: -30px !important;
  }
}

@media (max-width: 991.98px) {
  .course-ecosystem-section {
    padding: 30px 0;
  }

  .stats-section {
    margin: 5px 0 30px 0;
  }

  .stats-container {
    gap: 30px;
  }

  .stat-image {
    height: 35px;
  }

  .stat-title {
    font-size: 16px;
  }

  .ecosystem-title {
    font-size: 32px;
  }

  .ecosystem-title-section {
    margin-bottom: 60px;
  }

  .title-decorations {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: row;
    justify-items: center;
  }

  .benefits-card {
    padding: 40px 30px;
  }

  .benefit-text {
    font-size: 16px;
  }

  /* Why Choose section responsive */
  .why-choose-section {
    padding: 43px 0;
  }

  .why-choose-title {
    font-size: 32px;
  }

  .why-choose-title-section {
    margin-bottom: 16px;
  }

  .feature-title,
  .main-feature-title {
    font-size: 16px;
  }

  .main-feature-description {
    font-size: 14px;
  }

  /* Teaching Methods section responsive */
  .teaching-methods-section {
    padding-bottom: 16px;
  }

  .teaching-methods-title {
    font-size: 32px;
  }

  .teaching-methods-title-section {
    margin-bottom: 16px;
  }

  .method-title {
    font-size: 20px;
  }

  .method-description p {
    font-size: 18px;
  }

  .btn-method-details {
    font-size: 16px;
  }

  /* Teachers section responsive */
  .teachers-section {
    padding: 60px 0;
  }

  .teachers-title {
    font-size: 32px;
  }

  .teachers-carousel {
    margin-bottom: 16px
  }

  .teachers-title-section {
    margin-bottom: 16px;
  }

  .teacher-card-inner {
    height: auto;
    min-height: 400px;
  }

  .qualification-text,
  .experience-text,
  .additional-text {
    font-size: 16px;
  }

  .btn-consultation {
    font-size: 20px;
    padding: 12px 40px;
  }

  /* Success Stories section responsive */
  .success-stories-section {
    padding: 60px 0;
  }

  .success-stories-title {
    font-size: 32px;
  }

  .success-stories-title-section {
    margin-bottom: 16px;
  }

  .video-thumbnail {
    height: 160px;
  }

  /* Testimonials section responsive */

  .testimonial-card {
    min-height: 400px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  .btn-view-all-reviews {
    font-size: 20px;
    padding: 12px 40px;
  }

  /* Press section responsive */
  .press-section {
    padding: 16px 0;
  }

  .press-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .press-title-decorations {
    margin-bottom: 50px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card {
    height: 280px;
  }

  .news-title {
    font-size: 16px;
  }

  .news-carousel {
    margin-top: 16px;
  }
}

@media (max-width: 767.98px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }

  .ecosystem-title {
    font-size: 24px;
  }

  .benefits-card {
    padding: 30px 20px;
  }

  .course-type-card {
    padding: 0;
  }

  .course-title {
    font-size: 14px;
    font-weight: 700;
  }

  .btn-consultation {
    font-size: 20px;
    padding: 15px 20px;
  }

  /* Why Choose section mobile */
  .why-choose-title {
    font-size: 24px;
  }

  .btn-register-test {
    font-size: 20px;
    padding: 15px 20px;
  }

  /* Teaching Methods section mobile */
  .teaching-methods-title {
    font-size: 24px;
  }

  .method-card {
    min-height: auto;
  }

  .method-description {
    padding: 20px 30px;
  }

  .method-cta {
    padding: 20px 30px 30px 30px;
  }

  .method-description p {
    font-size: 16px;
  }

  .btn-method-details {
    font-size: 16px;
  }

  /* Teachers section mobile */
  .teachers-title {
    font-size: 21px;
  }

  .teacher-card {
    margin: 0 5px;
  }

  .teacher-image {
    width: 140px;
    height: 140px;
  }

  .teacher-name {
    font-size: 18px;
    padding: 0 20px;
  }

  .teacher-score {
    margin: 0 40px 20px 40px;
    width: calc(100% - 80px);
  }

  .score-text {
    font-size: 24px;
  }

  .teacher-qualification,
  .teacher-experience,
  .teacher-additional {
    margin: 0 15px 20px 15px;
    width: calc(100% - 30px);
  }

  .qualification-text,
  .experience-text,
  .additional-text {
    font-size: 14px;
  }

  .btn-consultation {
    font-size: 18px;
    padding: 10px 30px;
  }

  /* Success Stories section mobile */
  .success-stories-title {
    font-size: 24px;
  }

  .video-card {
    margin: 0 5px;
  }

  .video-thumbnail {
    height: 140px;
  }

  /* Universal carousel arrows mobile - hide on small screens */
  .slick-prev,
  .slick-next {
    display: block !important;
  }

  /* Larger arrow buttons on mobile */
  .slick-prev,
  .slick-next {
    width: 24px !important;
    height: 24px !important;
  }

  .slick-prev:before,
  .slick-next:before {
    font-size: 18px !important;
  }

  /* Testimonials section mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviewer-name {
    font-size: 18px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

  .testimonials-section {
    padding-bottom: 16px;
  }

  .testimonials-section .btn-details {
    font-size: 14px;
  }

  .btn-view-all-reviews {
    font-size: 18px;
    padding: 10px 30px;
  }

  /* Press section mobile */
  .press-title {
    font-size: 24px;
  }

  .decoration-circle {
    display: none;
  }

  .news-card {
    height: 260px;
  }

  .news-image img {
    height: 160px;
  }

  .news-title {
    font-size: 14px;
  }

  .news-logo img {
    max-width: 80px;
    max-height: 50px;
  }
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  color: #ffffff;
  gap: 8px;
}

.highlight-icon img {
  width: 10px;
  height: 10px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(0%) contrast(100%);
}

.highlight-item span {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  flex: 1;
}

.highlight-divider {
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.35);
  margin: 1rem 0;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 50%
  );
  background-size: 6px 1.5px;
  background-repeat: repeat-x;
}

.form-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  text-align: left;
  margin-bottom: 2rem;
  line-height: 1.05;
}

.hero-form .form-control {
  background: #f2f4f5;
  border: none;
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) var(--spacing-sm);
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary-color);
  height: 60px;
  width: 100%;
  transition: var(--transition);
}

.hero-form .form-control::placeholder {
  color: #b7c6cd;
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.hero-form .form-control:focus {
  background: #ffffff;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(219, 31, 31, 0.25);
  outline: none;
  transform: scale(1.02);
}

.hero-form .form-control:hover {
  background: #ffffff;
  border: 1px solid var(--primary-color);
}

.hero-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23252525' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right var(--spacing-sm) center;
  background-size: 12px;
  padding-right: var(--spacing-xl);
  height: 60px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.hero-form .form-select:focus {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(219, 31, 31, 0.25);
  transform: scale(1.02);
}

.hero-form .form-select:hover {
  border: 1px solid var(--primary-color);
}

.btn-register {
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--border-radius);
  padding: var(--spacing-sm) var(--spacing-xl);
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1.05;
  position: relative;
  overflow: hidden;
}

.btn-register::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-register:hover::before {
  left: 100%;
}

.btn-register:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 25px rgba(219, 31, 31, 0.4);
}

.btn-register:active {
  transform: translateY(-1px);
}

/* Background Decorations */
.hero-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-wave-top-left {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.53;
}

.bg-wave-top-left img {
  width: 100%;
  height: auto;
  max-width: 800px;
}

.bg-wave-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.53;
}

.bg-wave-bottom-right img {
  width: 100%;
  height: auto;
  max-width: 800px;
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr 320px;
  }

  .hero-avatar-img {
    width: 280px;
    height: 360px;
  }

  .hero-avatar-background img {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 991.98px) {
  .hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "highlights"
      "form"
      "avatar";
    padding: var(--spacing-sm);
    gap: 0;
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-avatar-section {
    padding: var(--spacing-sm);
    order: 4;
  }

  .hero-right-section {
    padding: var(--spacing-md);
    order: 3;
    justify-content: center;
  }

  .hero-highlights-section {
    padding: var(--spacing-md);
    order: 2;
    justify-content: center;
    width: calc(100% - var(--spacing-2xl));
    margin: 0 var(--spacing-lg);
  }

  .registration-form {
    max-width: 100%;
  }

  .hero-highlights {
    max-width: 100%;
    text-align: center;
  }

  .highlight-item {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .highlight-item img {
    margin-top: 3px;
  }

  .highlight-item span {
    font-size: 16px;
    text-align: left;
  }

  .hero-highlights {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .form-title {
    font-size: 20px;
    text-align: center;
  }

  .hero-avatar-img {
    width: 250px;
    height: 320px;
  }

  .hero-avatar-background img {
    width: 250px;
    height: 250px;
  }

  .bg-wave-top-left,
  .bg-wave-bottom-right {
    display: none;
  }

  .hero-sale-banner {
    display: none;
  }
  .hero-sale-banner-mobile {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 24px;
    order: -1;
  }
  .hero-sale-banner-mobile img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 575.98px) {
  .hero-container {
    padding: var(--spacing-sm);
  }

  .hero-avatar-section,
  .hero-form-section,
  .hero-highlights-section {
    padding: var(--spacing-sm);
  }

  .highlight-item {
    margin-bottom: var(--spacing-sm);
  }

  .highlight-item span {
    font-size: 14px;
  }

  .registration-form {
    padding: var(--spacing-md);
  }

  .form-title {
    font-size: 18px;
    margin-bottom: var(--spacing-md);
  }

  /* .hero-form .form-group {
    margin-bottom: 1rem;
  } */

  .hero-avatar-img {
    width: 200px;
    height: 260px;
  }

  .hero-avatar-background img {
    width: 200px;
    height: 200px;
  }

  .highlight-divider {
    margin: var(--spacing-sm) 0;
  }
}

/* Strategic Partnerships Section */
.strategic-partnerships-section {
  background: url("../assets/images/white-background.png") repeat;
  padding: 80px 0;
  position: relative;
}

.partnerships-container {
  max-width: 1256px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

/* Partnerships Decorations */
.partnerships-decorations {
  position: relative;
  height: 274px;
}

.decoration-circle {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #db1f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-circle-left {
  left: 0;
  top: 153px;
}

.decoration-circle-right {
  right: 0;
  top: 153px;
}

.decoration-arrow-left,
.decoration-arrow-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.decoration-arrow-left svg,
.decoration-arrow-right svg {
  width: 10px;
  height: 16px;
}

/* Partnerships Title */
.partnerships-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 126px;
}

/* Partnerships Title Decorations */
.partnerships-title-decorations {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.title-decoration-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.decoration-rect {
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 2px;
}

.rect-1 {
  width: 18px;
  height: 18px;
}

.rect-2 {
  width: 12px;
  height: 12px;
}

.rect-3 {
  width: 12px;
  height: 12px;
}

.decoration-line {
  position: absolute;
  height: 1.5px;
}

.line-1 {
  width: 391px;
  left: 50%;
  top: 50%;
  transform: translate(-110%, -50%);
  background: linear-gradient(90deg, rgba(50, 50, 50, 0) 0%, #323232 100%);
}

.line-2 {
  width: 391px;
  right: 50%;
  top: 50%;
  transform: translate(110%, -50%);
  background: linear-gradient(90deg, #323232 0%, rgba(50, 50, 50, 0) 100%);
}

/* Partners Carousel */
.partners-carousel {
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 0 56px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin: 0 10px;
}

.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Partnerships Progress */
.partnerships-progress {
  display: flex;
  justify-content: center;
  padding: 0 550px;
}

.progress-bar-bg {
  width: 156px;
  height: 8px;
  background: #d9d9d9;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  border-radius: 34px;
  width: 25%;
  transform: translateX(0);
  transition: transform 300ms ease-in-out;
}

/* Responsive Design for Strategic Partnerships */
@media (max-width: 1199.98px) {
  .partnerships-container {
    max-width: 95%;
  }

  .partnerships-title {
    font-size: 36px;
    padding: 0 80px;
  }

  .partners-carousel {
    padding: 0 40px;
  }

  .partnerships-progress {
    padding: 0 400px;
  }

  .decoration-circle {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .strategic-partnerships-section {
    padding: 60px 0;
  }

  .partnerships-title {
    font-size: 32px;
    padding: 0 60px;
    margin-bottom: 40px;
  }

  .partners-carousel {
    padding: 0 30px;
  }

  .partner-logo {
    height: 100px;
    padding: 15px;
  }

  .partnerships-progress {
    padding: 0 300px;
  }

  .progress-bar-bg {
    width: 120px;
  }

  .progress-bar-fill {
    width: 40px;
  }
}

@media (max-width: 767.98px) {
  .strategic-partnerships-section {
    padding: 40px 0;
  }

  .partnerships-container {
    max-width: 100%;
    padding: 0 15px;
  }

  .partnerships-title {
    font-size: 28px;
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .partners-carousel {
    padding: 0 20px;
  }

  .partner-logo {
    height: 80px;
    padding: 10px;
  }

  .partnerships-progress {
    padding: 0 100px;
  }

  .progress-bar-bg {
    width: 100px;
  }

  .progress-bar-fill {
    width: 33px;
  }

  .decoration-line {
    display: none;
  }

  .benefit-icon img {
    width: 13px !important;
    height: 13px !important;
  }
}

/* Footer Section */
.footer-section {
  background: #231f20;
  padding: 58px 0;
  color: #ffffff;
}

.footer-container {
  max-width: 1256px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr auto;
  gap: 60px;
  padding: 0 20px;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 26.8px;
  width: auto;
}

.footer-tagline {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}

.footer-description {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  text-align: justify;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Footer About */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-title {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0 0 15px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.05;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #db1f1f;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact .footer-title {
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 15px;
  margin-top: 2px;
}

.contact-text {
  font-family: "SVN-Gilroy", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}

/* Footer Images */
.footer-images {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-img {
  max-width: 100%;
  height: auto;
}

.footer-img:first-child {
  width: 74px;
  height: 37px;
}

.footer-img:last-child {
  width: 83px;
  height: 31px;
}

/* Responsive Design for Footer */
@media (max-width: 1199.98px) {
  .footer-container {
    max-width: 95%;
    grid-template-columns: 1fr 1fr 1.5fr auto;
    gap: 40px;
  }

  .footer-description {
    font-size: 16px;
  }

  .footer-links li a,
  .contact-text {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .footer-section {
    padding: 40px 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    order: 3;
  }

  .footer-images {
    grid-column: 1 / -1;
    order: 4;
    flex-direction: row;
    /* justify-content: center; */
    gap: 20px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-tagline,
  .footer-description,
  .footer-links li a,
  .contact-text {
    font-size: 14px;
  }

  .accordion-text, .accordion-body {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 30px 0;
  }

  .footer-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-tagline,
  .footer-description,
  .footer-links li a,
  .contact-text {
    font-size: 13px;
  }
  
.header-icon-mobile{
  display: block;
}
.header-icon .social-networks{
    gap: 2px;
}

  .navbar-brand-logo {
    height: 15px;
  }
}

/* Accordion item base */
.accordion-item {
  border: none;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Collapsed header */
.accordion-button {
  position: relative;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 12px;
  box-shadow: none;
  display: flex;
  align-items: center;
}

.accordion-button::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7' viewBox='0 0 13 7' fill='none'%3E%3Cpath d='M12.0268 1.27703L7.12191 6.48844C6.78472 6.84672 6.21536 6.84672 5.87818 6.48844L0.973276 1.27703C0.604766 0.885445 0.882357 0.24292 1.42007 0.24292H11.5799C12.1177 0.24292 12.3953 0.885445 12.0268 1.27703Z' fill='%23DB1F1F'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  position: absolute;
  right: 16px;
  bottom: 0;
  transform: translateY(-100%);
}

/* Small square icon on the left */
.accordion-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background-color: #f7dede;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #d62828;
  margin-right: 12px;
}

@media (max-width: 991.98px) {
  .feature-cards-column .accordion-icon {
    width: 28px;
    height: 28px;
  }
  .feature-cards-column .accordion-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Icon fill colors - red when collapsed, white when expanded */
.accordion-icon svg path {
  fill: #db1f1f;
  transition: fill 0.3s ease;
}

/* Expanded state */
.accordion-button:not(.collapsed) {
  color: #d62828;
  font-weight: 700;
  background: #fff;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border: 1px solid #d62828;
  box-shadow: none;
  border-radius: 12px;
}

/* Expanded body */
.accordion-body {
  position: relative;
  padding: 12px;
  font-size: 16px;
  text-align: justify;
}

.accordion-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px; /* cách mép trái 12px */
  right: 12px; /* cách mép phải 12px */
  border-top: 1px dashed #555;
}

.accordion-body strong {
  font-weight: 700;
}

.accordion-button:not(.collapsed) .accordion-text {
  font-weight: 700;
  color: #db1f1f; /* optional: same red theme */
}

.accordion-button:not(.collapsed) .accordion-icon {
  background-color: #db1f1f;
  color: #fff;
}

.accordion-button:not(.collapsed) .accordion-icon svg path {
  fill: #ffffff;
}

.method-card-mobile {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(58, 22, 22, 0.1);
}

/* Header */
.method-card-mobile-header {
  padding: 16px 20px;
  cursor: pointer;
  background: #fff;
}

.method-card-mobile-header-img img {
  width: 87px;
  height: 65px;
  object-fit: contain;
}

.method-card-mobile-title {
  font-size: 16px;
  font-weight: 700;
  /* color: #252525; */

  background: linear-gradient(180deg, #db1f1f 0%, #9d0b0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content */
.method-card-mobile-description {
  padding: 16px 20px 24px;
  font-size: 15px;
  line-height: 1.5;
  color: #252525;
  text-align: justify;
}

.method-card-mobile-description p {
  margin-bottom: 12px;
}

/* CTA button */
.btn-method-details {
  background: transparent;
  border: none;
  color: #db1f1f;
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}

/* Toggle icons */
.method-toggle-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  z-index: 1;
  box-shadow: 0 1px 6px 0 hsla(0, 75%, 49%, 0.24);
}

[aria-expanded="true"] .method-toggle-arrow {
  transform: rotate(180deg);
}

.method-toggle-arrow {
  width: 11px;
  height: 6px;
  transition: transform 0.3s ease;
}

.method-cta-mobile {
  justify-content: center;
  padding: 10px;
}

.partners-grid-mobile {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4px; /* gap-x */
  row-gap: 10px; /* gap-y */
}

.partner-logo-mobile {
  width: 100%;
  aspect-ratio: 86 / 36;
}

.partner-logo-mobile > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.search-icon-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background-color: white;
  box-shadow: 0 0 10.8px 0 hsla(0, 75%, 49%, 0.12);
}

.search-icon-mobile.active {
  display: none;
}

.search-icon-mobile button {
  all: unset; /* resets default button styles */
  cursor: pointer; /* keep pointer for UX */
  display: flex; /* keep the flex layout */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Hide popup & overlay by default */
.search-popup-mobile,
.search-overlay {
  display: none;
}

/* Search popup */
.search-popup-mobile {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 100;
  width: 100%;
  background-color: white;
  padding: 12px 16px;
  box-shadow: 0px 8px 17px hsla(0, 0%, 0, 0.25);
  transition: transform 0.3s ease;
}

.search-popup-mobile.active {
  display: block;
}

/* Search bar inside popup */
.search-bar-mobile {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 28px;
  box-shadow: inset 0 0 10.8px 0 hsla(0, 75%, 49%, 0.12);
  background-color: white;
}

.search-bar-mobile > input {
  border: none;
  flex: 1;
}

.search-bar-mobile > input:focus {
  outline: none;
  box-shadow: none;
}

.search-bar-mobile > img {
  width: 26px;
  height: 26px;
  cursor: pointer;
}

/* Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 90;
  cursor: pointer;
}

.search-overlay.active {
  display: block;
}

/* remove default glyph */
.slick-prev:before,
.slick-next:before {
  content: "" !important;
}

/* use SVG as background */
.slick-prev {
  background: url("../assets/images/prev-arrow.svg") center/12px 12px no-repeat
    #db1f1f !important;
}

.slick-next {
  background: url("../assets/images/next-arrow.svg") center/12px 12px no-repeat
    #db1f1f !important;
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal {
  position: relative;
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-content,
#videoIframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.video-modal-close:hover {
  background: #fff;
}


.teachers-section .section-4 {
    background:none;
    background-size: cover;
    margin-top: -1px;
} 

.teachers-section .gv-slide .owl-stage {
    display: flex;
    align-items: stretch;
}

.teachers-section .gv-slide .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 2rem;
    background: transparent;
    border-radius: 1.25rem;
    padding: 1.5rem;
    height: 100%;
}

.teachers-section .gv-slide .item::before {
    content: "";
    position: absolute;
    bottom: 0;
    /* (100% - 75%) / 2 = 12.5%  => canh giữa */
    left: 0;
    width: 100%;
    height: 75%;
    /* nền chỉ cao 75% */
    background: #fff;
    z-index: -1;
    /* nằm dưới nội dung */
    border-radius: 1.25rem;
    box-shadow: 3px 4px 30px 0 rgba(58, 22, 22, 0.10);
}

.teachers-section .gv-slide .item::after {
    content: '';
    height: 0.75rem;
    width: 50%;
    border-radius: 0 0 1.25rem 1.25rem;
    background: var(--Gradient-LMC);
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.teachers-section .gv-slide .item .image {
    position: relative;
    width: 60%;
    margin: auto;
    padding: 0.35rem;
    margin-bottom: 0;
    margin-top: 0;
}

.teachers-section .gv-slide .item .brief {
    width: 100%;
    margin-bottom: auto;
}

.teachers-section .gv-slide .item .image::after {
    content: '';
    position: absolute;
    background: url('../../ocean/images/courses/khoa-hoc-ielts-online/boderava.webp') no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.teachers-section .gv-slide .name {
    text-align: center;
    font-family: var(--font-family-SVN-Gilroy-Bold);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teachers-section .gv-slide .certificate {
    border-radius: 0.625rem;
    background: rgba(219, 31, 31, 0.10);
    text-align: center;
    padding: 0.75rem 2rem;
}

.teachers-section .gv-slide .certificate span {
    font-family: var(--font-family-SVN-Gilroy-Bold);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    background: linear-gradient(180deg, #DB1F1F 0%, #9D0B0F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teachers-section .gv-slide .info ul {
    padding: 0;
    max-width: 100%;
}

.teachers-section .gv-slide .info li {
    position: relative;
    padding-left: 1.5rem;
    text-align: justify;
    margin-bottom: 10px;
    list-style: none;
}

.teachers-section .gv-slide .info li::before {
    content: '';
    width: 1rem;
    height: 1rem;
    background: url('../../ocean/images/courses/khoa-hoc-ielts-online/checkround.webp') no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 3px;
    left: 0;
}

.teachers-section .gv-slide .owl-item {
    padding: 1rem;
}

.teachers-section .gv-slide .owl-nav {
    display: inline-block !important;
}

.teachers-section .gv-slide .owl-nav .owl-next {
    position: absolute;
    right: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.teachers-section .gv-slide .owl-nav .owl-prev {
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  
  .teachers-section .gv-slide .owl-nav .owl-next {
      position: absolute;
      right: -0.5rem;
      top: 50%;
      transform: translateY(-50%);
  }

  .teachers-section .gv-slide .owl-nav .owl-next img{
    height: 24px;
  }

  .teachers-section .gv-slide .owl-nav .owl-prev {
      position: absolute;
      left: -0.5rem;
      top: 50%;
      transform: translateY(-50%);
  }

  .teachers-section .gv-slide .owl-nav .owl-prev img{
    height: 24px;
  }
  
  .teachers-section .gv-slide .item::before {
    height: 83%;
  }
}