@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #262F2E;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
}

.container-fluid {
  max-width: 100%;
}
@media (max-width: 768px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(70, 45, 134, 0.2);
}
.btn i {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.btn i:not(.fa-arrow-right):not(.fa-arrow-left) {
  transition: none;
}
.btn:hover i.fa-arrow-right {
  transform: translateX(2px);
}
.btn:hover i.fa-arrow-left {
  transform: translateX(-2px);
}

.btn-primary-custom {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-custom:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(70, 45, 134, 0.2);
}
.btn-primary-custom {
  color: #FFFFFF;
  background-color: #462D86;
}
.btn-primary-custom:hover {
  background-color: rgb(54.0446927374, 34.7430167598, 103.4569832402);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-primary-custom:active {
  transform: translateY(0);
}
.btn-primary-custom {
  width: fit-content;
  max-width: 100%;
}

.btn-text-only {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-text-only:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(70, 45, 134, 0.2);
}
.btn-text-only {
  color: #979797;
  background: transparent;
  padding: 0px 4px;
}
.btn-text-only:hover {
  color: #462D86;
}

.btn-read {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-read:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(70, 45, 134, 0.2);
}
.btn-read {
  color: #979797;
  background: transparent;
  padding: 0px 4px;
}
.btn-read:hover {
  color: #462D86;
}
.btn-read {
  color: #000000;
}
.btn-read:hover {
  color: #462D86;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 16px;
}

.navbar {
  padding: 5px 100px;
  background-color: #FFFFFF !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .navbar {
    padding: 20px 50px;
  }
}
@media (max-width: 767px) {
  .navbar {
    padding: 15px 20px;
  }
}
.navbar .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.navbar .navbar-brand img {
  height: 70px;
}
@media (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 50px;
  }
}
.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.navbar .nav-menu .nav-item {
  margin: 0;
  padding: 0;
}
.navbar .nav-menu .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #979797;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  border-radius: 8px;
  white-space: nowrap;
  padding: 10px 4px;
}
.navbar .nav-menu .nav-link.active {
  color: #462D86;
  border-color: #462D86;
  padding: 10px 24px;
}
.navbar .nav-menu .nav-link:hover {
  color: #462D86;
}
.navbar .nav-menu .nav-link .nav-icon {
  font-size: 18px;
  height: 20px;
}
@media (max-width: 1199px) {
  .navbar .nav-menu {
    gap: 40px;
  }
  .navbar .nav-menu .nav-link {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .navbar .nav-menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
  }
  .navbar .nav-menu .nav-link {
    padding: 12px 14px;
    border-radius: 12px;
    width: 100%;
  }
  .navbar .nav-menu .nav-link.active {
    padding: 12px 14px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(70, 45, 134, 0.12);
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  }
}
.navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .navbar .navbar-actions {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
}
.navbar .navbar-actions-mobile {
  display: none;
}
@media (max-width: 991px) {
  .navbar .navbar-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(70, 45, 134, 0.08);
    width: 100%;
  }
  .navbar .navbar-actions-mobile .btn {
    width: 100%;
    justify-content: center;
  }
}

.section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 60px 20px;
    max-width: 100%;
  }
}

.feature-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px 48px;
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #462D86;
}
.feature-card .feature-icon img {
  width: 70px;
  height: 70px;
}
.feature-card .feature-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.208em;
  color: #462D86;
  margin: 18px 0;
}
.feature-card .feature-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1875;
  color: #979797;
}

.service-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px 48px;
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #462D86;
}
.service-card .service-icon img {
  width: 70px;
  height: 70px;
}
.service-card .service-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.208em;
  color: #462D86;
  margin: 18px 0;
}
.service-card .service-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1875;
  color: #979797;
}

.highlight-point {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.highlight-point .dot {
  width: 15px;
  height: 15px;
  background-color: #462D86;
  border-radius: 50%;
  flex-shrink: 0;
}
.highlight-point span {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.366em;
  color: #462D86;
}

.section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 84px;
  line-height: 1.125;
  letter-spacing: -0.03em;
  color: #462D86;
  margin-bottom: 30px;
}

.footer {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .footer {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .footer {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.footer {
  padding-bottom: 20px;
  background-color: #FFFFFF;
}
.footer .footer-content .footer-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1875;
  color: #979797;
  margin-bottom: 27px;
}
.footer .footer-content .footer-social {
  margin-top: 20px;
}
.footer .footer-content .footer-social .social-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
  color: #462D86;
  margin-bottom: 16px;
}
.footer .footer-content .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer .footer-content .social-icons img {
  height: 28px;
}
.footer .footer-content .social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(70, 45, 134, 0.1);
  color: #462D86;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer .footer-content .social-icons .social-icon:hover {
  background-color: #462D86;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.footer .footer-content .social-icons .social-icon i {
  font-size: 18px;
}
.footer .footer-content .footer-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.125;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
  color: #462D86;
  margin-bottom: 24px;
}
.footer .footer-content .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links li {
  margin-bottom: 10px;
}
.footer .footer-content .footer-links li a {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.571em;
  color: #979797;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-links li a:hover {
  color: #462D86;
}
.footer .footer-content .footer-divider {
  border-top: 1px solid #979797;
  margin: 50px 0 23px;
}
.footer .footer-content .footer-bottom {
  text-align: center;
}
.footer .footer-content .footer-bottom p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625em;
  color: #979797;
}

.text-purple {
  color: #462D86;
}

.text-gray {
  color: #979797;
}

.bg-white {
  background-color: #FFFFFF;
}

.rounded-custom {
  border-radius: 35px;
}

.shadow-custom {
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
}

.user-menu,
.user-menu-mobile {
  position: relative;
}
.user-menu .user-menu-btn,
.user-menu-mobile .user-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(70, 45, 134, 0.08);
  border: 1px solid rgba(70, 45, 134, 0.15);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #462D86;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.user-menu .user-menu-btn:hover,
.user-menu-mobile .user-menu-btn:hover {
  background: rgba(70, 45, 134, 0.12);
  border-color: #462D86;
}
.user-menu .user-menu-btn.active,
.user-menu-mobile .user-menu-btn.active {
  background: #462D86;
  color: #FFFFFF;
}
.user-menu .user-menu-btn i.fa-user-circle,
.user-menu-mobile .user-menu-btn i.fa-user-circle {
  font-size: 20px;
}
.user-menu .user-menu-btn i.fa-chevron-down,
.user-menu-mobile .user-menu-btn i.fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.user-menu .user-dropdown,
.user-menu-mobile .user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid #D4D4D8;
  border-radius: 25px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.user-menu .user-dropdown.show,
.user-menu-mobile .user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-menu .user-dropdown .user-option,
.user-menu-mobile .user-dropdown .user-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
.user-menu .user-dropdown .user-option i,
.user-menu-mobile .user-dropdown .user-option i {
  font-size: 16px;
  width: 18px;
  color: #462D86;
}
.user-menu .user-dropdown .user-option:hover,
.user-menu-mobile .user-dropdown .user-option:hover {
  background: rgba(70, 45, 134, 0.06);
  color: #462D86;
}
.user-menu .user-dropdown .user-option.logout-btn,
.user-menu-mobile .user-dropdown .user-option.logout-btn {
  color: #ef4444;
}
.user-menu .user-dropdown .user-option.logout-btn i,
.user-menu-mobile .user-dropdown .user-option.logout-btn i {
  color: #ef4444;
}
.user-menu .user-dropdown .user-option.logout-btn:hover,
.user-menu-mobile .user-dropdown .user-option.logout-btn:hover {
  background: rgba(239, 68, 68, 0.06);
}
.user-menu .user-dropdown .user-dropdown-divider,
.user-menu-mobile .user-dropdown .user-dropdown-divider {
  height: 1px;
  background: #D4D4D8;
  margin: 8px 0;
}

.logout-form {
  margin: 0;
  padding: 0;
}

.language-switcher {
  position: relative;
  display: inline-block;
}
.language-switcher .language-switcher-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid #D4D4D8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  white-space: nowrap;
}
.language-switcher .language-switcher-btn:hover {
  border-color: #462D86;
  color: #462D86;
  background: rgba(70, 45, 134, 0.05);
}
.language-switcher .language-switcher-btn .language-flag {
  font-size: 18px;
  line-height: 1;
}
.language-switcher .language-switcher-btn .language-code {
  font-weight: 500;
  min-width: 30px;
}
.language-switcher .language-switcher-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.language-switcher .language-switcher-btn[aria-expanded=true] i {
  transform: rotate(180deg);
}
.language-switcher .language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #FFFFFF;
  border: 1px solid #D4D4D8;
  border-radius: 12px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.language-switcher .language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-switcher .language-dropdown .language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #979797;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 212, 216, 0.5);
}
.language-switcher .language-dropdown .language-option:last-child {
  border-bottom: none;
}
.language-switcher .language-dropdown .language-option:hover {
  background: rgba(70, 45, 134, 0.05);
  color: #462D86;
}
.language-switcher .language-dropdown .language-option .language-flag {
  font-size: 20px;
  line-height: 1;
}
.language-switcher .language-dropdown .language-option .language-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.language-switcher.language-switcher-mobile {
  width: 100%;
}
.language-switcher.language-switcher-mobile .language-switcher-btn {
  width: 100%;
  justify-content: space-between;
}
.language-switcher.language-switcher-mobile .language-dropdown {
  width: 100%;
  right: 0;
  left: 0;
}

body.rtl .language-switcher .language-dropdown,
html[dir=rtl] .language-switcher .language-dropdown {
  right: auto;
  left: 0;
}
body.rtl .language-switcher .language-switcher-btn .language-flag,
html[dir=rtl] .language-switcher .language-switcher-btn .language-flag {
  order: 1;
}
body.rtl .language-switcher .language-switcher-btn .language-code,
html[dir=rtl] .language-switcher .language-switcher-btn .language-code {
  order: 2;
}
body.rtl .language-switcher .language-switcher-btn i,
html[dir=rtl] .language-switcher .language-switcher-btn i {
  order: 0;
}

@media (max-width: 991px) {
  .navbar-actions .language-switcher {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.hero-section {
  padding: 120px 200px 80px;
  background-color: #FFFFFF;
  overflow-x: hidden;
}
@media (max-width: 1399px) {
  .hero-section {
    padding: 120px 100px 80px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding: 100px 50px 60px;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 80px 20px 40px;
  }
}
.hero-section .row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 991px) {
  .hero-section .row {
    gap: 40px;
  }
}
.hero-section .hero-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.hero-section .hero-image-container {
  position: relative;
  isolation: isolate;
}
.hero-section .hero-image-container .badge-overlay-top {
  position: absolute;
  top: 20px;
  right: 24px;
  left: auto;
  transform: none;
  background-color: #462D86;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(70, 45, 134, 0.3);
}
.hero-section .hero-image-container .hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 44px 160px 44px 44px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  display: block;
}
.hero-section .hero-image-container::before, .hero-section .hero-image-container::after {
  content: "";
  position: absolute;
  right: -70px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 991px) {
  .hero-section .hero-image-container::before, .hero-section .hero-image-container::after {
    display: none;
  }
}
.hero-section .hero-image-container::before {
  top: -62px;
  width: 150px;
  height: 150px;
}
.hero-section .hero-image-container .hero-image-link {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  color: #462D86;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-section .hero-image-container .hero-image-link span {
  font-size: 22px;
  line-height: 1;
  transform: rotate(-10deg);
}
.hero-section .hero-image-container .hero-image-link:hover {
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero-section .hero-bottom {
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
  gap: 28px;
}
@media (max-width: 767px) {
  .hero-section .hero-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.hero-section .hero-bottom .hero-bottom-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #462D86;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-section .hero-bottom p {
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #979797;
}
.hero-section .hero-bottom .hero-bottom-center {
  display: flex;
  justify-content: center;
}
.hero-section .hero-bottom .hero-circle-arrow {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(70, 45, 134, 0.15);
  color: #462D86;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.05);
}
.hero-section .hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-top: 40px;
}
.hero-section .hero-content-wrapper .hero-actions-top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-section .hero-content-wrapper .hero-actions-top .icons-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(70, 45, 134, 0.08);
  border-radius: 12px;
}
.hero-section .hero-content-wrapper .hero-actions-top .icons-decoration i {
  font-size: 22px;
  color: #462D86;
  transition: all 0.3s ease;
}
.hero-section .hero-content-wrapper .hero-actions-top .icons-decoration:hover i {
  transform: scale(1.1);
}
.hero-section .hero-content-wrapper .hero-actions-top .btn-primary-custom {
  padding: 10px 18px;
  font-size: 14px;
}
.hero-section .hero-content-wrapper .hero-actions-top .btn-primary-custom i {
  font-size: 16px;
  margin: 0 4px;
}
.hero-section .hero-content-wrapper .hero-mini-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.2;
  color: #462D86;
}
@media (max-width: 991px) {
  .hero-section .hero-content-wrapper .hero-mini-title {
    font-size: 34px;
  }
}
.hero-section .hero-content-wrapper .hero-main-title {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 1.13;
  color: #462D86;
  margin: 0;
}
.hero-section .hero-content-wrapper .hero-main-title .em {
  font-weight: 700;
}
@media (max-width: 1199px) {
  .hero-section .hero-content-wrapper .hero-main-title {
    font-size: 62px;
  }
}
@media (max-width: 991px) {
  .hero-section .hero-content-wrapper .hero-main-title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-content-wrapper .hero-main-title {
    font-size: 38px;
  }
}
.hero-section .hero-content-wrapper .hero-kpi {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .hero-section .hero-content-wrapper .hero-kpi {
    flex-direction: column;
    gap: 10px;
  }
}
.hero-section .hero-content-wrapper .hero-kpi .hero-kpi-number {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  color: #462D86;
}
.hero-section .hero-content-wrapper .hero-kpi .hero-kpi-body {
  padding-top: 10px;
}
.hero-section .hero-content-wrapper .hero-kpi .hero-kpi-body .hero-kpi-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  color: #462D86;
  margin-bottom: 10px;
}
.hero-section .hero-content-wrapper .hero-kpi .hero-kpi-body p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1;
  color: #979797;
  margin: 0;
  max-width: 520px;
}
@media (max-width: 991px) {
  .hero-section .hero-image-container .badge-overlay-top {
    font-size: 12px;
    padding: 8px 20px;
  }
  .hero-section .hero-content-wrapper {
    gap: 25px;
  }
}

.features-with-image-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .features-with-image-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .features-with-image-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .features-with-image-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.features-with-image-section {
  background-color: #FFFFFF;
  overflow-x: hidden;
}
.features-with-image-section .row {
  align-items: stretch;
}
@media (max-width: 991px) {
  .features-with-image-section .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.features-with-image-section .features-image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .features-with-image-section .features-image-container {
    flex-direction: column;
    height: auto;
  }
}
.features-with-image-section .features-image-container .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .features-with-image-section .features-image-container .img-fluid {
    height: auto;
    min-height: 300px;
  }
}
.features-with-image-section .features-image-container .floating-card {
  position: absolute;
  top: 90px;
  right: -30px;
  left: auto;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.features-with-image-section .features-image-container .floating-card .feature-icon i {
  font-size: 28px;
  color: #462D86;
}
@media (max-width: 991px) {
  .features-with-image-section .features-image-container .floating-card .feature-icon i {
    font-size: 40px;
  }
}
.features-with-image-section .features-image-container .floating-card .feature-title {
  font-size: 14px;
  margin: 10px 0 6px;
}
.features-with-image-section .features-image-container .floating-card .feature-description {
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .features-with-image-section .features-image-container .floating-card {
    right: 10px;
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 991px) {
  .features-with-image-section .features-image-container .floating-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  }
}
.features-with-image-section .features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}
.features-with-image-section .features-list .section-title {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .features-with-image-section .features-list .section-title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .features-with-image-section .features-list .section-title {
    font-size: 36px;
  }
}
.features-with-image-section .features-list .feature-item .feature-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.features-with-image-section .features-list .feature-item .feature-header i {
  font-size: 48px;
  color: #462D86;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.features-with-image-section .features-list .feature-item .feature-header h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.208em;
  color: #462D86;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}
.features-with-image-section .features-list .feature-item p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1875;
  color: #979797;
  margin-left: 72px;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .features-with-image-section .features-list .feature-item p {
    margin-left: 0;
  }
}
.features-with-image-section .features-list .btn-primary-custom {
  width: fit-content;
  max-width: 300px;
}

.stats-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .stats-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .stats-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .stats-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.stats-section {
  background-color: #F9FAFB;
}
.stats-section .section-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .stats-section .section-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .stats-section .section-title {
    font-size: 32px;
  }
}
.stats-section .stats-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.stats-section .stats-content .stat-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.stats-section .stats-content .stat-item .stat-number {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.125;
  letter-spacing: -0.03em;
  color: #462D86;
  font-size: 48px;
}
@media (max-width: 991px) {
  .stats-section .stats-content .stat-item .stat-number {
    font-size: 40px;
  }
}
.stats-section .stats-content .stat-item .stat-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.944em;
  color: #462D86;
}
.stats-section .stats-content .stat-item .stat-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1875;
  color: #979797;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.9;
}
.stats-section .service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 992px) {
  .stats-section .service-cards-grid {
    grid-template-columns: 1fr;
  }
}
.stats-section .service-card {
  padding: 28px 26px;
  border-radius: 18px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.stats-section .service-card .service-icon i {
  font-size: 48px;
  color: #462D86;
}
.stats-section .service-card .service-title {
  font-size: 20px;
  margin: 16px 0 10px;
  font-weight: 600;
}
.stats-section .service-card .service-description {
  font-size: 15px;
  line-height: 1.7;
}

.featured-course-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .featured-course-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .featured-course-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .featured-course-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.featured-course-section {
  padding-bottom: 120px;
  background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}
.featured-course-section .section-header-courses {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.featured-course-section .section-header-courses .section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  color: #462D86;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .featured-course-section .section-header-courses .section-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .featured-course-section .section-header-courses .section-title {
    font-size: 32px;
  }
}
.featured-course-section .section-header-courses .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #979797;
}
@media (max-width: 767px) {
  .featured-course-section .section-header-courses .section-subtitle {
    font-size: 16px;
  }
}
.featured-course-section .course-carousel-wrapper {
  width: 100%;
  max-width: 100%;
}
.featured-course-section .course-carousel-wrapper .row {
  align-items: stretch;
}
.featured-course-section .course-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
@media (max-width: 767px) {
  .featured-course-section .course-cards-row {
    grid-template-columns: 1fr;
  }
}
.featured-course-section .instructor-card-overlay {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .featured-course-section .instructor-card-overlay {
    min-height: 400px;
  }
}
.featured-course-section .instructor-card-overlay:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.featured-course-section .instructor-card-overlay .instructor-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.featured-course-section .instructor-card-overlay .instructor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(70, 45, 134, 0.85) 100%);
}
.featured-course-section .instructor-card-overlay .instructor-name-section {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 90%;
}
.featured-course-section .instructor-card-overlay .instructor-name-section h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.featured-course-section .instructor-card-overlay .instructor-name-section p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #FFFFFF;
  opacity: 0.95;
}
.featured-course-section .course-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(70, 45, 134, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.featured-course-section .course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(70, 45, 134, 0.15);
  border-color: rgba(70, 45, 134, 0.2);
}
.featured-course-section .course-card .card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 16px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(70, 45, 134, 0.4);
  text-transform: uppercase;
}
.featured-course-section .course-card .card-badge.new {
  background: linear-gradient(135deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(70, 45, 134, 0.4);
}
.featured-course-section .course-card .card-img-top {
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-course-section .course-card:hover .card-img-top {
  transform: scale(1.05);
}
.featured-course-section .course-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.featured-course-section .course-card .card-body .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.featured-course-section .course-card .card-body .card-meta .card-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #979797;
}
.featured-course-section .course-card .card-body .card-meta .card-duration svg {
  color: #462D86;
  width: 14px;
  height: 14px;
}
.featured-course-section .course-card .card-body .card-meta .card-level {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(70, 45, 134, 0.08);
  color: #462D86;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  border-radius: 10px;
}
.featured-course-section .course-card .card-body .card-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #462D86;
  margin-bottom: 6px;
}
.featured-course-section .course-card .card-body .card-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #979797;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.featured-course-section .course-card .card-body .card-text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #979797;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-course-section .course-card .card-body .card-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  margin-bottom: 14px;
  border-top: 1px solid rgba(70, 45, 134, 0.08);
}
.featured-course-section .course-card .card-body .card-stats .stat-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
}
.featured-course-section .course-card .card-body .card-stats .stat-item .stat-number {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #462D86;
}
.featured-course-section .course-card .card-body .card-stats .stat-item .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #979797;
}
.featured-course-section .course-card .card-body .btn-group-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.featured-course-section .course-card .card-body .btn-group-custom .btn-primary {
  flex: 1;
  background: #462D86;
  color: #FFFFFF;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(70, 45, 134, 0.25);
}
.featured-course-section .course-card .card-body .btn-group-custom .btn-primary:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
  box-shadow: 0 5px 16px rgba(70, 45, 134, 0.35);
  transform: translateY(-2px);
}
.featured-course-section .course-card .card-body .btn-group-custom .btn-link {
  color: #462D86;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.featured-course-section .course-card .card-body .btn-group-custom .btn-link:hover {
  color: rgb(50.0558659218, 32.1787709497, 95.8212290503);
  transform: translateX(3px);
}
.featured-course-section .carousel-container {
  position: relative;
  overflow: visible;
  padding: 10px;
}
@media (max-width: 991px) {
  .featured-course-section .carousel-container {
    padding: 0 50px 90px;
  }
}
@media (max-width: 767px) {
  .featured-course-section .carousel-container {
    padding: 0 0px 10px;
  }
}
.featured-course-section .carousel-inner-custom {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .featured-course-section .carousel-inner-custom {
    gap: 20px;
  }
}
.featured-course-section .carousel-wrapper {
  overflow: hidden;
  position: relative;
}
.featured-course-section .carousel-card-item {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
}
@media (max-width: 991px) {
  .featured-course-section .carousel-card-item {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .featured-course-section .carousel-card-item {
    flex: 0 0 100%;
  }
}
.featured-course-section .carousel-card-item .course-card {
  height: 100%;
}
.featured-course-section .carousel-control-prev,
.featured-course-section .carousel-control-next {
  position: absolute;
  width: 56px;
  height: 56px;
  top: auto;
  bottom: -80px;
  opacity: 1;
  background: #FFFFFF;
  border: 2px solid rgba(70, 45, 134, 0.12);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.featured-course-section .carousel-control-prev:hover,
.featured-course-section .carousel-control-next:hover {
  background: #462D86;
  border-color: #462D86;
  box-shadow: 0 8px 24px rgba(70, 45, 134, 0.35);
}
.featured-course-section .carousel-control-prev:hover .carousel-control-prev-icon,
.featured-course-section .carousel-control-prev:hover .carousel-control-next-icon,
.featured-course-section .carousel-control-next:hover .carousel-control-prev-icon,
.featured-course-section .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .featured-course-section .carousel-control-prev,
  .featured-course-section .carousel-control-next {
    bottom: -70px;
    width: 48px;
    height: 48px;
  }
}
.featured-course-section .carousel-control-prev {
  left: 50%;
  margin-left: -70px;
}
@media (max-width: 767px) {
  .featured-course-section .carousel-control-prev {
    margin-left: -60px;
  }
}
.featured-course-section .carousel-control-next {
  left: 50%;
  margin-left: 14px;
}
@media (max-width: 767px) {
  .featured-course-section .carousel-control-next {
    margin-left: 12px;
  }
}
.featured-course-section .carousel-control-prev-icon,
.featured-course-section .carousel-control-next-icon {
  filter: none;
  width: 22px;
  height: 22px;
  transition: filter 0.3s ease;
  background-size: 100% 100%;
  display: inline-block;
}
.featured-course-section .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23462D86'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.featured-course-section .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23462D86'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.topics-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .topics-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .topics-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .topics-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.topics-section .topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}
@media (max-width: 991px) {
  .topics-section .topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .topics-section .topics-grid {
    grid-template-columns: 1fr;
  }
}
.topics-section .topic-card {
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  border-radius: 30px;
  overflow: hidden;
}
.topics-section .topic-card:hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topics-section .topic-card:hover:hover {
  transform: translateY(-4px);
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
}
.topics-section .topic-card .topic-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.topics-section .topic-card .topic-content {
  padding: 35px 28px;
  background-color: #FFFFFF;
}
.topics-section .topic-card .topic-content .topic-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.topics-section .topic-card .topic-content .topic-meta .dot {
  width: 15px;
  height: 15px;
  background-color: #462D86;
  border-radius: 50%;
}
.topics-section .topic-card .topic-content .topic-meta span {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #462D86;
}
.topics-section .topic-card .topic-content .topic-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.208em;
  color: #462D86;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topics-section .topic-card .topic-content .topic-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1875;
  color: #979797;
  margin-bottom: 25px;
  min-height: 120px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-image-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .content-image-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .content-image-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .content-image-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.content-image-section.bg-light {
  background-color: #F9FAFB;
}
.content-image-section .content-side {
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: center;
}
.content-image-section .section-title {
  font-size: 64px;
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .content-image-section .section-title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .content-image-section .section-title {
    font-size: 36px;
  }
}
.content-image-section .feature-item .feature-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.content-image-section .feature-item .feature-header i {
  font-size: 52px;
  color: #462D86;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}
.content-image-section .feature-item .feature-header h5 {
  font-size: 22px;
  font-weight: 600;
  color: #462D86;
  margin: 0;
}
.content-image-section .feature-item p {
  margin-left: 76px;
  font-size: 15px;
  line-height: 1.8;
  color: #979797;
}
@media (max-width: 767px) {
  .content-image-section .feature-item p {
    margin-left: 0;
  }
}
.content-image-section .btn-primary-custom {
  width: fit-content;
  max-width: 300px;
}
.content-image-section .image-side img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
}

.cta-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .cta-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .cta-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .cta-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.cta-section {
  background: linear-gradient(135deg, #462D86 0%, rgb(100.0251396648, 64.4804469274, 191.0195530726) 100%);
  text-align: center;
}
.cta-section .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 84px;
  line-height: 1.125;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cta-section .cta-content h2 {
    font-size: 48px;
  }
}
.cta-section .cta-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.1875;
  color: #FFFFFF;
  opacity: 0.9;
}
.cta-section .cta-content .btn-primary-custom {
  background-color: #FFFFFF;
  color: #462D86;
}
.cta-section .cta-content .btn-primary-custom:hover {
  background-color: rgb(242.25, 242.25, 242.25);
}

.courses-hero-section {
  padding: 140px 200px 80px;
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .courses-hero-section {
    padding: 140px 100px 80px;
  }
}
@media (max-width: 991px) {
  .courses-hero-section {
    padding: 120px 50px 60px;
  }
}
@media (max-width: 767px) {
  .courses-hero-section {
    padding: 100px 20px 50px;
  }
}
.courses-hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(70, 45, 134, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.courses-hero-section .courses-hero-content {
  position: relative;
  z-index: 2;
}
.courses-hero-section .courses-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(70, 45, 134, 0.08);
  border-radius: 999px;
  margin-bottom: 25px;
}
.courses-hero-section .courses-hero-content .hero-badge .dot {
  width: 12px;
  height: 12px;
  background: #462D86;
  border-radius: 50%;
}
.courses-hero-section .courses-hero-content .hero-badge span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #462D86;
}
.courses-hero-section .courses-hero-content .courses-hero-title {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.15;
  color: #462D86;
  margin-bottom: 20px;
}
.courses-hero-section .courses-hero-content .courses-hero-title .em {
  font-weight: 700;
}
@media (max-width: 1199px) {
  .courses-hero-section .courses-hero-content .courses-hero-title {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .courses-hero-section .courses-hero-content .courses-hero-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .courses-hero-section .courses-hero-content .courses-hero-title {
    font-size: 34px;
  }
}
.courses-hero-section .courses-hero-content .courses-hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #979797;
  margin-bottom: 35px;
  max-width: 550px;
}
@media (max-width: 767px) {
  .courses-hero-section .courses-hero-content .courses-hero-description {
    font-size: 16px;
  }
}
.courses-hero-section .courses-hero-content .courses-hero-stats {
  display: flex;
  gap: 35px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.courses-hero-section .courses-hero-content .courses-hero-stats .stat-box h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #462D86;
  margin-bottom: 6px;
  line-height: 1;
}
@media (max-width: 767px) {
  .courses-hero-section .courses-hero-content .courses-hero-stats .stat-box h3 {
    font-size: 34px;
  }
}
.courses-hero-section .courses-hero-content .courses-hero-stats .stat-box p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}
.courses-hero-section .courses-hero-image {
  position: relative;
}
.courses-hero-section .courses-hero-image .hero-main-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.courses-hero-section .courses-hero-image .floating-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.courses-hero-section .courses-hero-image .floating-badge i {
  font-size: 24px;
  color: #462D86;
}
.courses-hero-section .courses-hero-image .floating-badge span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #462D86;
  white-space: nowrap;
}
.courses-hero-section .courses-hero-image .floating-badge.badge-1 {
  top: 25px;
  right: -15px;
}
.courses-hero-section .courses-hero-image .floating-badge.badge-2 {
  bottom: 35px;
  left: -15px;
}
@media (max-width: 991px) {
  .courses-hero-section .courses-hero-image .floating-badge.badge-1, .courses-hero-section .courses-hero-image .floating-badge.badge-2 {
    position: static;
    margin-top: 15px;
  }
}

.courses-listing-section {
  margin-top: 40px;
  padding: 80px 200px;
  padding-top: 100px;
  background: #FFFFFF;
}
@media (max-width: 1399px) {
  .courses-listing-section {
    padding: 80px 100px;
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .courses-listing-section {
    padding: 60px 50px;
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .courses-listing-section {
    padding: 50px 20px;
    padding-top: 60px;
  }
}
.courses-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .courses-sidebar {
    position: static;
    margin-bottom: 30px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .courses-sidebar {
    margin-bottom: 25px;
  }
}
.courses-sidebar .sidebar-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D4D4D8;
}
.courses-sidebar .sidebar-section.sidebar-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: none;
}
.courses-sidebar .sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.courses-sidebar .sidebar-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #462D86;
  margin: 0;
}
.courses-sidebar .clear-filters {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #462D86;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.courses-sidebar .clear-filters i {
  font-size: 16px;
}
.courses-sidebar .clear-filters:hover {
  color: rgb(50.0558659218, 32.1787709497, 95.8212290503);
  transform: translateX(-2px);
}
.courses-sidebar .search-field-wrapper {
  position: relative;
}
.courses-sidebar .search-field-wrapper .course-search-input {
  width: 100%;
  padding: 12px 45px 12px 16px;
  border: 1px solid #D4D4D8;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  background: #FFFFFF;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.courses-sidebar .search-field-wrapper .course-search-input:focus {
  outline: none;
  border-color: #462D86;
  box-shadow: 0 0 0 3px rgba(70, 45, 134, 0.08);
}
.courses-sidebar .search-field-wrapper .course-search-input::placeholder {
  color: #6B7280;
}
.courses-sidebar .search-field-wrapper .search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #6B7280;
  font-size: 14px;
  pointer-events: none;
}
.courses-sidebar .filter-actions {
  margin-top: 10px;
  padding-top: 0;
  border-top: none;
}
.courses-sidebar .filter-actions .btn {
  margin-bottom: 0;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.courses-sidebar .filter-actions .btn i {
  font-size: 16px;
}
.courses-sidebar .filter-actions .btn-primary-custom {
  background: #462D86;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(70, 45, 134, 0.3);
}
.courses-sidebar .filter-actions .btn-primary-custom:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
  box-shadow: 0 6px 18px rgba(70, 45, 134, 0.4);
  transform: translateY(-2px);
}
.courses-sidebar .filter-actions .btn-primary-custom:active {
  transform: translateY(0);
}
.courses-sidebar .filter-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #462D86;
  margin-bottom: 16px;
}
.courses-sidebar .filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.courses-sidebar .filter-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  transition: all 0.3s ease;
  padding: 4px 0;
}
.courses-sidebar .filter-checkbox:hover {
  color: #462D86;
}
.courses-sidebar .filter-checkbox:hover input[type=checkbox] {
  border-color: #462D86;
}
.courses-sidebar .filter-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #462D86;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.courses-sidebar .filter-checkbox span:first-of-type {
  flex: 1;
}
.courses-sidebar .filter-checkbox .count {
  font-size: 13px;
  color: #979797;
  font-weight: 500;
}
.courses-sidebar .filter-checkbox .stars {
  color: #FFC107;
  font-size: 14px;
}

.courses-main-content {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .courses-main-content {
    padding-left: 0;
  }
}
.courses-main-content .courses-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
  gap: 20px;
}
@media (max-width: 767px) {
  .courses-main-content .courses-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.courses-main-content .courses-header .results-info h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #462D86;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .courses-main-content .courses-header .results-info h2 {
    font-size: 28px;
  }
}
.courses-main-content .courses-header .results-info p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #979797;
  margin: 0;
}
.courses-main-content .courses-header .results-info p .results-count {
  font-weight: 600;
  color: #462D86;
}
.courses-main-content .courses-header .sort-dropdown select {
  padding: 10px 16px;
  border: 2px solid rgba(70, 45, 134, 0.15);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #462D86;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.courses-main-content .courses-header .sort-dropdown select:hover {
  border-color: #462D86;
}
.courses-main-content .courses-header .sort-dropdown select:focus {
  outline: none;
  border-color: #462D86;
}
.courses-main-content .courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1199px) {
  .courses-main-content .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .courses-main-content .courses-grid {
    grid-template-columns: 1fr;
  }
}

.course-card-link {
  text-decoration: none;
  color: inherit;
}
.course-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.course-card-compact {
  background: #FFFFFF;
  border: 1px solid rgba(70, 45, 134, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.course-card-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(70, 45, 134, 0.15);
  border-color: #462D86;
}
.course-card-compact:hover .course-image img {
  transform: scale(1.05);
}
.course-card-compact .course-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.course-card-compact .course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card-compact .course-image .card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
}
.course-card-compact .course-image .card-badge.bestseller {
  background: linear-gradient(135deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(70, 45, 134, 0.4);
}
.course-card-compact .course-image .card-badge.new {
  background: linear-gradient(135deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(70, 45, 134, 0.4);
}
.course-card-compact .course-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card-compact .course-body .course-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: #462D86;
  margin-bottom: 10px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-card-compact .course-body .course-description {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #979797;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}
.course-card-compact .course-body .course-meta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.course-card-compact .course-body .course-meta-row .course-level {
  padding: 4px 10px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
}
.course-card-compact .course-body .course-meta-row .course-level.beginner {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
}
.course-card-compact .course-body .course-meta-row .course-level.intermediate {
  background: rgba(249, 115, 22, 0.1);
  color: #EA580C;
}
.course-card-compact .course-body .course-meta-row .course-level.advanced {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}
.course-card-compact .course-body .course-meta-row .course-duration {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #979797;
  display: flex;
  align-items: center;
  gap: 5px;
}
.course-card-compact .course-body .course-meta-row .course-duration i {
  font-size: 13px;
  color: #979797;
}
.course-card-compact .course-body .course-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin-bottom: 14px;
  border-top: 1px solid rgba(70, 45, 134, 0.08);
  border-bottom: 1px solid rgba(70, 45, 134, 0.08);
}
.course-card-compact .course-body .course-stats .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.course-card-compact .course-body .course-stats .rating .stars {
  color: #FFC107;
  font-size: 14px;
}
.course-card-compact .course-body .course-stats .rating .rating-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #979797;
}
.course-card-compact .course-body .course-stats .students {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #979797;
}
.course-card-compact .course-body .course-footer {
  margin-top: auto;
}
.course-card-compact .course-body .course-footer .price-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.course-card-compact .course-body .course-footer .price-section .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.course-card-compact .course-body .course-footer .price-section .price .price-current {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #462D86;
  line-height: 1;
}
.course-card-compact .course-body .course-footer .price-section .price .price-old {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #979797;
  text-decoration: line-through;
  line-height: 1;
}
.course-card-compact .course-body .course-footer .price-section .btn-enroll {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #462D86;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(70, 45, 134, 0.25);
  text-decoration: none;
}
.course-card-compact .course-body .course-footer .price-section .btn-enroll:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
  box-shadow: 0 5px 15px rgba(70, 45, 134, 0.35);
  transform: translateY(-2px);
}
.course-card-compact .course-body .course-footer .price-section .btn-enroll:active {
  transform: translateY(0);
}

.no-courses-found {
  text-align: center;
  padding: 80px 40px;
  background: #F9FAFB;
  border-radius: 20px;
  margin: 20px 0;
}
.no-courses-found .no-courses-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.1) 0%, rgba(70, 45, 134, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.no-courses-found .no-courses-icon i {
  font-size: 42px;
  color: #462D86;
  opacity: 0.6;
}
.no-courses-found h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #462D86;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .no-courses-found h3 {
    font-size: 24px;
  }
}
.no-courses-found p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #979797;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.no-courses-found .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
}
.no-courses-found .btn i {
  font-size: 14px;
}

.instructor-spotlight-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .instructor-spotlight-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .instructor-spotlight-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .instructor-spotlight-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.instructor-spotlight-section {
  background: #F9FAFB;
}
.instructor-spotlight-section .instructor-spotlight-image {
  position: relative;
}
.instructor-spotlight-section .instructor-spotlight-image .main-instructor-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.instructor-spotlight-section .instructor-spotlight-image .experience-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: #FFFFFF;
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.instructor-spotlight-section .instructor-spotlight-image .experience-badge h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #462D86;
  margin-bottom: 6px;
  line-height: 1;
}
.instructor-spotlight-section .instructor-spotlight-image .experience-badge p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
  margin: 0;
}
@media (max-width: 767px) {
  .instructor-spotlight-section .instructor-spotlight-image .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 16px 22px;
  }
  .instructor-spotlight-section .instructor-spotlight-image .experience-badge h3 {
    font-size: 32px;
  }
}
.instructor-spotlight-section .instructor-spotlight-content .instructor-bio {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #979797;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .instructor-spotlight-section .instructor-spotlight-content .instructor-bio {
    font-size: 16px;
  }
}
.instructor-spotlight-section .instructor-spotlight-content .instructor-achievements {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 35px;
}
.instructor-spotlight-section .instructor-spotlight-content .instructor-achievements .achievement-item {
  display: flex;
  gap: 18px;
}
.instructor-spotlight-section .instructor-spotlight-content .instructor-achievements .achievement-item .achievement-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.1) 0%, rgba(70, 45, 134, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.instructor-spotlight-section .instructor-spotlight-content .instructor-achievements .achievement-item .achievement-icon i {
  font-size: 26px;
  color: #462D86;
}
.instructor-spotlight-section .instructor-spotlight-content .instructor-achievements .achievement-item .achievement-content h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #462D86;
  margin-bottom: 5px;
}
.instructor-spotlight-section .instructor-spotlight-content .instructor-achievements .achievement-item .achievement-content p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}

.testimonials-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .testimonials-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .testimonials-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.testimonials-section {
  background: #FFFFFF;
}
.testimonials-section .section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.testimonials-section .section-header-center .section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.2;
  color: #462D86;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .testimonials-section .section-header-center .section-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .testimonials-section .section-header-center .section-title {
    font-size: 30px;
  }
}
.testimonials-section .section-header-center .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #979797;
}
@media (max-width: 767px) {
  .testimonials-section .section-header-center .section-subtitle {
    font-size: 16px;
  }
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-section .testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(70, 45, 134, 0.1);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(70, 45, 134, 0.12);
  border-color: #462D86;
}
.testimonials-section .testimonial-card .testimonial-rating {
  margin-bottom: 18px;
}
.testimonials-section .testimonial-card .testimonial-rating span {
  font-size: 18px;
  color: #FFC107;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #979797;
  margin-bottom: 22px;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(70, 45, 134, 0.1);
}
.testimonials-section .testimonial-card .testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials-section .testimonial-card .testimonial-author .author-info h5 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #462D86;
  margin-bottom: 3px;
}
.testimonials-section .testimonial-card .testimonial-author .author-info p {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #979797;
  margin: 0;
}

.course-detail-hero {
  padding: 140px 200px 80px;
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  position: relative;
}
@media (max-width: 1399px) {
  .course-detail-hero {
    padding: 140px 100px 80px;
  }
}
@media (max-width: 991px) {
  .course-detail-hero {
    padding: 120px 50px 60px;
  }
}
@media (max-width: 767px) {
  .course-detail-hero {
    padding: 100px 20px 50px;
  }
}
.course-detail-hero .course-hero-content .course-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.course-detail-hero .course-hero-content .course-badge.bestseller {
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.1) 0%, rgba(70, 45, 134, 0.05) 100%);
  color: #462D86;
}
.course-detail-hero .course-hero-content .course-badge.new {
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.15) 0%, rgba(70, 45, 134, 0.1) 100%);
  color: #462D86;
}
.course-detail-hero .course-hero-content .course-badge .dot {
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 50%;
}
.course-detail-hero .course-hero-content .course-detail-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #462D86;
  margin-bottom: 16px;
}
@media (max-width: 1199px) {
  .course-detail-hero .course-hero-content .course-detail-title {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .course-detail-hero .course-hero-content .course-detail-title {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .course-detail-hero .course-hero-content .course-detail-title {
    font-size: 28px;
  }
}
.course-detail-hero .course-hero-content .course-detail-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #979797;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .course-detail-hero .course-hero-content .course-detail-subtitle {
    font-size: 16px;
  }
}
.course-detail-hero .course-hero-content .course-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #262F2E;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item img {
  width: 18px;
  height: 18px;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item .rating-stars {
  color: #FFC107;
  font-size: 16px;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item .rating-text {
  font-weight: 600;
  color: #462D86;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item .level-badge {
  padding: 6px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item .level-badge.beginner {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item .level-badge.intermediate {
  background: rgba(249, 115, 22, 0.1);
  color: #EA580C;
}
.course-detail-hero .course-hero-content .course-meta-info .meta-item .level-badge.advanced {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
}
.course-detail-hero .course-hero-content .course-tabs {
  margin-top: 40px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-nav {
  display: flex;
  gap: 30px;
  border-bottom: 2px solid rgba(70, 45, 134, 0.1);
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-nav .tab-item {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #979797;
  padding: 14px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-nav .tab-item:hover {
  color: #462D86;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-nav .tab-item.active {
  color: #462D86;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-nav .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #462D86;
  border-radius: 2px 2px 0 0;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane {
  display: none;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane.active {
  display: block;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #462D86;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane h2 {
    font-size: 24px;
  }
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #462D86;
  margin: 30px 0 16px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #979797;
  margin-bottom: 16px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .learning-outcomes {
    grid-template-columns: 1fr;
  }
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .learning-outcomes .outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(70, 45, 134, 0.03);
  border-radius: 10px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .learning-outcomes .outcome-item i {
  flex-shrink: 0;
  margin-top: 2px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .learning-outcomes .outcome-item span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  line-height: 1.5;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .requirements-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .requirements-list li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .requirements-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #462D86;
  font-size: 18px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .target-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .target-audience {
    grid-template-columns: 1fr;
  }
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .target-audience .audience-card {
  text-align: center;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(70, 45, 134, 0.1);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .target-audience .audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(70, 45, 134, 0.12);
  border-color: #462D86;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .target-audience .audience-card i {
  margin-bottom: 14px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .target-audience .audience-card h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #462D86;
  margin-bottom: 6px;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .target-audience .audience-card p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
  margin: 0;
}
.course-detail-hero .course-hero-content .course-tabs .tabs-content .tab-pane .curriculum-intro {
  font-size: 14px !important;
  color: #979797 !important;
  margin-bottom: 25px !important;
}

.course-card-sticky {
  position: sticky;
  top: 120px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
@media (max-width: 991px) {
  .course-card-sticky {
    position: static;
    margin-top: 30px;
  }
}
.course-card-sticky .course-preview-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000;
}
.course-card-sticky .course-preview-image #vimeo-preview-player {
  display: none;
  width: 100%;
  height: 100%;
}
.course-card-sticky .course-preview-image #vimeo-preview-player iframe {
  width: 100%;
  height: 100%;
}
.course-card-sticky .course-preview-image .video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
}
.course-card-sticky .course-preview-image .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-card-sticky .course-preview-image .video-thumbnail .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(70, 45, 134, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.course-card-sticky .course-preview-image .video-thumbnail .play-overlay:hover {
  opacity: 1;
}
.course-card-sticky .course-preview-image .video-thumbnail .play-overlay .play-button {
  width: 70px;
  height: 70px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #462D86;
  padding-left: 4px;
}
.course-card-sticky .course-preview-image .video-thumbnail .play-overlay .play-button svg {
  width: 30px;
  height: 30px;
}
.course-card-sticky .course-preview-image .video-thumbnail .play-overlay .play-button:hover {
  transform: scale(1.1);
}
.course-card-sticky .course-preview-image .video-thumbnail .play-overlay p {
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}
.course-card-sticky .course-card-body {
  padding: 28px;
}
.course-card-sticky .course-card-body .price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.course-card-sticky .course-card-body .price-section .price-main {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #462D86;
}
.course-card-sticky .course-card-body .price-section .price-old {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #979797;
  text-decoration: line-through;
}
.course-card-sticky .course-card-body .price-section .discount-badge {
  padding: 6px 12px;
  background: linear-gradient(135deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  color: #FFFFFF;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
}
.course-card-sticky .course-card-body .btn-enroll-main {
  width: 100%;
  padding: 16px 24px;
  background: #462D86;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(70, 45, 134, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.course-card-sticky .course-card-body .btn-enroll-main img {
  width: 20px;
  height: 20px;
}
.course-card-sticky .course-card-body .btn-enroll-main:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
  box-shadow: 0 6px 20px rgba(70, 45, 134, 0.4);
  transform: translateY(-2px);
}
.course-card-sticky .course-card-body .course-includes {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(70, 45, 134, 0.1);
}
.course-card-sticky .course-card-body .course-includes h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #462D86;
  margin-bottom: 16px;
}
.course-card-sticky .course-card-body .course-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.course-card-sticky .course-card-body .course-includes ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
}
.course-card-sticky .course-card-body .course-includes ul li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .course-card-sticky .course-card-body .price-section {
    gap: 8px;
  }
  .course-card-sticky .course-card-body .price-section .price-main {
    font-size: 34px;
  }
  .course-card-sticky .course-card-body .price-section .price-old {
    font-size: 16px;
  }
  .course-card-sticky .course-card-body .price-section .discount-badge {
    padding: 4px 8px;
    font-size: 10px;
  }
}
.course-content-section {
  padding: 60px 200px;
  background: #FFFFFF;
}
@media (max-width: 1399px) {
  .course-content-section {
    padding: 60px 100px;
  }
}
@media (max-width: 991px) {
  .course-content-section {
    padding: 50px 50px;
  }
}
@media (max-width: 767px) {
  .course-content-section {
    padding: 40px 20px;
  }
}
.course-content-section .course-tabs .tabs-nav {
  display: flex;
  gap: 30px;
  border-bottom: 2px solid rgba(70, 45, 134, 0.1);
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.course-content-section .course-tabs .tabs-nav .tab-item {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #979797;
  padding: 14px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.course-content-section .course-tabs .tabs-nav .tab-item:hover {
  color: #462D86;
}
.course-content-section .course-tabs .tabs-nav .tab-item.active {
  color: #462D86;
}
.course-content-section .course-tabs .tabs-nav .tab-item.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #462D86;
  border-radius: 2px 2px 0 0;
}
.course-content-section .course-tabs .tabs-content .tab-pane {
  display: none;
}
.course-content-section .course-tabs .tabs-content .tab-pane.active {
  display: block;
}
.course-content-section .course-tabs .tabs-content .tab-pane h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #462D86;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .course-content-section .course-tabs .tabs-content .tab-pane h2 {
    font-size: 26px;
  }
}
.course-content-section .course-tabs .tabs-content .tab-pane h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #462D86;
  margin: 35px 0 20px;
}
.course-content-section .course-tabs .tabs-content .tab-pane p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #979797;
  margin-bottom: 20px;
}
.course-content-section .course-tabs .tabs-content .tab-pane .learning-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .course-content-section .course-tabs .tabs-content .tab-pane .learning-outcomes {
    grid-template-columns: 1fr;
  }
}
.course-content-section .course-tabs .tabs-content .tab-pane .learning-outcomes .outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(70, 45, 134, 0.03);
  border-radius: 12px;
}
.course-content-section .course-tabs .tabs-content .tab-pane .learning-outcomes .outcome-item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.course-content-section .course-tabs .tabs-content .tab-pane .learning-outcomes .outcome-item span {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  line-height: 1.5;
}
.course-content-section .course-tabs .tabs-content .tab-pane .requirements-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}
.course-content-section .course-tabs .tabs-content .tab-pane .requirements-list li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}
.course-content-section .course-tabs .tabs-content .tab-pane .requirements-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #462D86;
  font-size: 20px;
}
.course-content-section .course-tabs .tabs-content .tab-pane .target-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .course-content-section .course-tabs .tabs-content .tab-pane .target-audience {
    grid-template-columns: 1fr;
  }
}
.course-content-section .course-tabs .tabs-content .tab-pane .target-audience .audience-card {
  text-align: center;
  padding: 28px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(70, 45, 134, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.course-content-section .course-tabs .tabs-content .tab-pane .target-audience .audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(70, 45, 134, 0.12);
  border-color: #462D86;
}
.course-content-section .course-tabs .tabs-content .tab-pane .target-audience .audience-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}
.course-content-section .course-tabs .tabs-content .tab-pane .target-audience .audience-card h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #462D86;
  margin-bottom: 8px;
}
.course-content-section .course-tabs .tabs-content .tab-pane .target-audience .audience-card p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}

.curriculum-intro {
  font-size: 15px !important;
  color: #979797 !important;
  margin-bottom: 30px !important;
}

.curriculum-accordion .curriculum-module {
  background: #FFFFFF;
  border: 1px solid rgba(70, 45, 134, 0.1);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}
.curriculum-accordion .curriculum-module .module-header {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.curriculum-accordion .curriculum-module .module-header:hover {
  background: rgba(70, 45, 134, 0.03);
}
.curriculum-accordion .curriculum-module .module-header .module-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.curriculum-accordion .curriculum-module .module-header .module-title .module-number {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #462D86;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.curriculum-accordion .curriculum-module .module-header .module-title h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #462D86;
  margin: 0;
}
.curriculum-accordion .curriculum-module .module-header .module-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.curriculum-accordion .curriculum-module .module-header .module-meta span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
}
.curriculum-accordion .curriculum-module .module-header .module-meta .expand-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: #462D86;
  font-size: 16px;
}
.curriculum-accordion .curriculum-module .module-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.curriculum-accordion .curriculum-module .module-content .lesson-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px;
  border-top: 1px solid rgba(70, 45, 134, 0.05);
  transition: background 0.3s ease;
}
.curriculum-accordion .curriculum-module .module-content .lesson-item.preview {
  background: rgba(70, 45, 134, 0.02);
  cursor: pointer;
}
.curriculum-accordion .curriculum-module .module-content .lesson-item.preview:hover {
  background: rgba(70, 45, 134, 0.05);
}
.curriculum-accordion .curriculum-module .module-content .lesson-item .lesson-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.curriculum-accordion .curriculum-module .module-content .lesson-item .lesson-info img {
  width: 18px;
  height: 18px;
}
.curriculum-accordion .curriculum-module .module-content .lesson-item .lesson-info span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
}
.curriculum-accordion .curriculum-module .module-content .lesson-item .lesson-info .preview-badge {
  padding: 4px 10px;
  background: #462D86;
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 8px;
}
.curriculum-accordion .curriculum-module .module-content .lesson-item .lesson-duration {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #979797;
}
.curriculum-accordion .curriculum-module.active .module-header .expand-icon {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .curriculum-accordion .curriculum-module .module-header {
    padding: 18px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .curriculum-accordion .curriculum-module .module-title h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  .curriculum-accordion .curriculum-module .module-meta {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .curriculum-accordion .curriculum-module .module-meta span {
    font-size: 12px;
  }
  .curriculum-accordion .module-content .lesson-item {
    padding: 12px 18px;
    display: grid;
    grid-template-columns: 18px 1fr;
    column-gap: 10px;
    row-gap: 6px;
    align-items: start;
  }
  .curriculum-accordion .module-content .lesson-info {
    display: contents;
  }
  .curriculum-accordion .module-content .lesson-info i {
    margin-top: 2px;
    grid-column: 1;
  }
  .curriculum-accordion .module-content .lesson-info span:not(.preview-badge) {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    line-height: 1.35;
  }
  .curriculum-accordion .module-content .lesson-info .preview-badge {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-left: 0;
    margin-top: 2px;
  }
  .curriculum-accordion .module-content .lesson-duration {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    margin-top: 2px;
    font-size: 12px;
  }
}
.instructor-detail .instructor-header {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .instructor-detail .instructor-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.instructor-detail .instructor-header img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.instructor-detail .instructor-header .instructor-header-info {
  flex: 1;
}
.instructor-detail .instructor-header .instructor-header-info h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #462D86;
  margin-bottom: 8px;
}
.instructor-detail .instructor-header .instructor-header-info .instructor-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #979797;
  margin-bottom: 20px;
}
.instructor-detail .instructor-header .instructor-header-info .instructor-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.instructor-detail .instructor-header .instructor-header-info .instructor-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.instructor-detail .instructor-header .instructor-header-info .instructor-stats .stat img {
  width: 20px;
  height: 20px;
  box-shadow: none;
}
.instructor-detail .instructor-header .instructor-header-info .instructor-stats .stat span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #262F2E;
}
.instructor-detail .instructor-bio h3 {
  margin-top: 0 !important;
}

.reviews-summary {
  display: flex;
  gap: 50px;
  padding: 35px;
  background: rgba(70, 45, 134, 0.03);
  border-radius: 16px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .reviews-summary {
    flex-direction: column;
    gap: 30px;
  }
}
.reviews-summary .rating-overview {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews-summary .rating-overview .rating-big {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #462D86;
  line-height: 1;
}
.reviews-summary .rating-overview .rating-details .stars-big {
  color: #FFC107;
  font-size: 24px;
  margin-bottom: 8px;
}
.reviews-summary .rating-overview .rating-details p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}
.reviews-summary .rating-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews-summary .rating-breakdown .rating-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-summary .rating-breakdown .rating-bar-item .stars {
  color: #FFC107;
  font-size: 14px;
  width: 80px;
}
.reviews-summary .rating-breakdown .rating-bar-item .bar {
  flex: 1;
  height: 8px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.reviews-summary .rating-breakdown .rating-bar-item .bar .bar-fill {
  height: 100%;
  background: #462D86;
  transition: width 0.5s ease;
}
.reviews-summary .rating-breakdown .rating-bar-item .percentage {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #979797;
  width: 40px;
  text-align: right;
}

.reviews-list .review-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(70, 45, 134, 0.1);
}
.reviews-list .review-item:last-child {
  border-bottom: none;
}
.reviews-list .review-item .review-header {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}
.reviews-list .review-item .review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.reviews-list .review-item .review-header .reviewer-info h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #462D86;
  margin-bottom: 6px;
}
.reviews-list .review-item .review-header .reviewer-info .review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-list .review-item .review-header .reviewer-info .review-meta .stars {
  color: #FFC107;
  font-size: 14px;
}
.reviews-list .review-item .review-header .reviewer-info .review-meta .date {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
}
.reviews-list .review-item .review-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #262F2E;
  margin: 0;
}

.related-courses-section {
  padding: 80px 200px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1399px) {
  .related-courses-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .related-courses-section {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .related-courses-section {
    padding: 60px 20px;
    max-width: 100%;
  }
}
.related-courses-section {
  background: #F9FAFB;
}
.related-courses-section .section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #462D86;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .related-courses-section .section-title {
    font-size: 28px;
  }
}
.related-courses-section .courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1199px) {
  .related-courses-section .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .related-courses-section .courses-grid {
    grid-template-columns: 1fr;
  }
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.video-modal .video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.video-modal .video-modal-content #modal-vimeo-player {
  width: 100%;
  aspect-ratio: 16/9;
}
.video-modal .video-modal-content #modal-vimeo-player iframe {
  width: 100%;
  height: 100%;
}
.video-modal .video-modal-content .close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: #462D86;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}
.video-modal .video-modal-content .close-modal:hover {
  background: #462D86;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.learning-platform {
  display: flex;
  min-height: calc(100vh - 100px);
  margin-top: 100px;
}
@media (max-width: 991px) {
  .learning-platform {
    flex-direction: column;
    margin-top: 90px;
  }
}

.learning-sidebar {
  width: 380px;
  background: #FFFFFF;
  border-right: 1px solid rgba(70, 45, 134, 0.1);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 100px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .learning-sidebar {
    width: 100%;
    position: static;
    height: auto;
    max-height: 500px;
    border-right: none;
    border-bottom: 1px solid rgba(70, 45, 134, 0.1);
  }
}
@media (max-width: 767px) {
  .learning-sidebar {
    max-height: 400px;
  }
}
.learning-sidebar::-webkit-scrollbar {
  width: 6px;
}
.learning-sidebar::-webkit-scrollbar-track {
  background: rgba(70, 45, 134, 0.05);
}
.learning-sidebar::-webkit-scrollbar-thumb {
  background: rgba(70, 45, 134, 0.2);
  border-radius: 3px;
}
.learning-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(70, 45, 134, 0.3);
}
.learning-sidebar .sidebar-header {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(70, 45, 134, 0.1);
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 10;
}
.learning-sidebar .sidebar-header .back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #462D86;
  text-decoration: none;
  margin-bottom: 16px;
  transition: gap 0.3s ease;
}
.learning-sidebar .sidebar-header .back-link:hover {
  gap: 12px;
}
.learning-sidebar .sidebar-header .back-link i {
  font-size: 16px;
}
.learning-sidebar .sidebar-header h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #462D86;
  margin-bottom: 16px;
  line-height: 1.3;
}
.learning-sidebar .sidebar-header .course-progress-sidebar .progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.learning-sidebar .sidebar-header .course-progress-sidebar .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #462D86 0%, rgb(89.9441340782, 57.8212290503, 172.1787709497) 100%);
  transition: width 0.5s ease;
}
.learning-sidebar .sidebar-header .course-progress-sidebar .progress-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #462D86;
}
.learning-sidebar .sidebar-content {
  padding: 16px;
  flex: 1;
}

.module-item {
  margin-bottom: 12px;
  background: #FFFFFF;
  border: 1px solid rgba(70, 45, 134, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.module-item.completed .module-icon {
  background: rgba(34, 197, 94, 0.1);
}
.module-item.completed .module-icon i {
  color: #22c55e;
}
.module-item .module-header-learn {
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.module-item .module-header-learn:hover {
  background: rgba(70, 45, 134, 0.03);
}
.module-item .module-header-learn .module-title-learn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.module-item .module-header-learn .module-title-learn .module-icon {
  width: 36px;
  height: 36px;
  background: rgba(70, 45, 134, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.module-item .module-header-learn .module-title-learn .module-icon i {
  font-size: 18px;
  color: #462D86;
}
.module-item .module-header-learn .module-title-learn h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #462D86;
  margin: 0;
  line-height: 1.3;
}
.module-item .module-header-learn .expand-icon {
  font-size: 16px;
  color: #462D86;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.module-item .module-lessons {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: rgba(70, 45, 134, 0.02);
}
.module-item.active .module-header-learn .expand-icon {
  transform: rotate(180deg);
}

.lesson-item-learn {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.lesson-item-learn:hover {
  background: rgba(70, 45, 134, 0.05);
}
.lesson-item-learn.current {
  background: rgba(70, 45, 134, 0.08);
  border-left-color: #462D86;
}
.lesson-item-learn.current .lesson-title {
  color: #462D86;
  font-weight: 600;
}
.lesson-item-learn.completed .lesson-icon i {
  color: #22c55e;
}
.lesson-item-learn.completed .lesson-title {
  color: #979797;
}
.lesson-item-learn .lesson-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lesson-item-learn .lesson-icon i {
  font-size: 16px;
  color: #462D86;
}
.lesson-item-learn .lesson-info-learn {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.lesson-item-learn .lesson-info-learn .lesson-title {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #262F2E;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lesson-item-learn .lesson-info-learn .lesson-duration {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #979797;
}
.lesson-item-learn .check-mark {
  color: #16A34A;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

.learning-main {
  flex: 1;
  background: #F9FAFB;
  padding: 40px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .learning-main {
    padding: 30px 20px;
  }
}
.learning-main .video-container {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.learning-main .video-container .video-player {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
}
.learning-main .video-container .video-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.learning-main .video-container .video-player .video-progress-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.learning-main .video-container .video-player .video-progress-indicator .progress-ring {
  position: relative;
  width: 60px;
  height: 60px;
}
.learning-main .video-container .video-player .video-progress-indicator .progress-ring svg {
  transform: rotate(-90deg);
}
.learning-main .video-container .video-player .video-progress-indicator .progress-ring #progressPercent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #462D86;
}
.learning-main .video-container .video-player .video-progress-indicator p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #262F2E;
  white-space: nowrap;
}
.learning-main .video-container .video-controls {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(70, 45, 134, 0.1);
}
@media (max-width: 767px) {
  .learning-main .video-container .video-controls {
    flex-direction: column;
    padding: 16px 20px;
  }
}
.learning-main .video-container .video-controls .control-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(70, 45, 134, 0.2);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #462D86;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .learning-main .video-container .video-controls .control-btn {
    width: 100%;
    justify-content: center;
  }
}
.learning-main .video-container .video-controls .control-btn i {
  font-size: 16px;
}
.learning-main .video-container .video-controls .control-btn:hover {
  background: rgba(70, 45, 134, 0.05);
  border-color: #462D86;
}
.learning-main .video-container .video-controls .control-btn.primary {
  background: #462D86;
  color: #FFFFFF;
  border-color: #462D86;
}
.learning-main .video-container .video-controls .control-btn.primary:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
}
.learning-main .video-container .video-controls .control-btn.mark-complete.completed {
  background: rgba(34, 197, 94, 0.1);
  border-color: #16A34A;
  color: #16A34A;
  cursor: not-allowed;
}
.learning-main .lesson-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .learning-main .lesson-content {
    padding: 24px 20px;
  }
}
.learning-main .lesson-content .course-overview-card .overview-header {
  margin-bottom: 30px;
}
.learning-main .lesson-content .course-overview-card .overview-header .welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 999px;
  margin-bottom: 20px;
}
.learning-main .lesson-content .course-overview-card .overview-header .welcome-badge .dot {
  width: 10px;
  height: 10px;
  background: #462D86;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.learning-main .lesson-content .course-overview-card .overview-header .welcome-badge span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #462D86;
}
.learning-main .lesson-content .course-overview-card .overview-header .overview-title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #462D86;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .learning-main .lesson-content .course-overview-card .overview-header .overview-title {
    font-size: 24px;
  }
}
.learning-main .lesson-content .course-overview-card .overview-content .course-overview-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #262F2E;
  margin-bottom: 30px;
}
.learning-main .lesson-content .course-overview-card .overview-content .course-overview-description h2, .learning-main .lesson-content .course-overview-card .overview-content .course-overview-description h3, .learning-main .lesson-content .course-overview-card .overview-content .course-overview-description h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #462D86;
  margin: 25px 0 15px;
}
.learning-main .lesson-content .course-overview-card .overview-content .course-overview-description h2:first-child, .learning-main .lesson-content .course-overview-card .overview-content .course-overview-description h3:first-child, .learning-main .lesson-content .course-overview-card .overview-content .course-overview-description h4:first-child {
  margin-top: 0;
}
.learning-main .lesson-content .course-overview-card .overview-content .course-overview-description p {
  margin-bottom: 16px;
}
.learning-main .lesson-content .course-overview-card .overview-content .course-overview-description ul, .learning-main .lesson-content .course-overview-card .overview-content .course-overview-description ol {
  margin: 16px 0;
  padding-left: 25px;
}
.learning-main .lesson-content .course-overview-card .overview-content .course-overview-description ul li, .learning-main .lesson-content .course-overview-card .overview-content .course-overview-description ol li {
  margin-bottom: 10px;
}
.learning-main .lesson-content .course-overview-card .overview-content .course-overview-description strong {
  font-weight: 700;
  color: #000000;
}
.learning-main .lesson-content .course-overview-card .overview-content .key-takeaways-section {
  margin: 35px 0;
  padding: 25px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, rgba(70, 45, 134, 0.02) 100%);
  border-radius: 20px;
  border-left: 4px solid #462D86;
}
.learning-main .lesson-content .course-overview-card .overview-content .key-takeaways-section .takeaways-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #462D86;
  margin-bottom: 20px;
}
.learning-main .lesson-content .course-overview-card .overview-content .key-takeaways-section .takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.learning-main .lesson-content .course-overview-card .overview-content .key-takeaways-section .takeaways-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #262F2E;
}
.learning-main .lesson-content .course-overview-card .overview-content .key-takeaways-section .takeaways-list li i {
  color: #16A34A;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.learning-main .lesson-content .course-overview-card .overview-content .key-takeaways-section .takeaways-list li span {
  flex: 1;
}
.learning-main .lesson-content .course-overview-card .overview-content .lesson-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(70, 45, 134, 0.1);
}
.learning-main .lesson-content .course-overview-card .overview-content .lesson-details .detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}
@media (max-width: 767px) {
  .learning-main .lesson-content .course-overview-card .overview-content .lesson-details .detail-item {
    min-width: 100%;
  }
}
.learning-main .lesson-content .course-overview-card .overview-content .lesson-details .detail-item .detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.learning-main .lesson-content .course-overview-card .overview-content .lesson-details .detail-item .detail-icon i {
  font-size: 20px;
  color: #462D86;
}
.learning-main .lesson-content .course-overview-card .overview-content .lesson-details .detail-item .detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.learning-main .lesson-content .course-overview-card .overview-content .lesson-details .detail-item .detail-content .detail-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #979797;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.learning-main .lesson-content .course-overview-card .overview-content .lesson-details .detail-item .detail-content .detail-value {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #462D86;
}
.learning-main .lesson-content .lesson-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 2px solid rgba(70, 45, 134, 0.1);
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.learning-main .lesson-content .lesson-tabs .lesson-tab {
  padding: 12px 0;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #979797;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.learning-main .lesson-content .lesson-tabs .lesson-tab:hover {
  color: #462D86;
}
.learning-main .lesson-content .lesson-tabs .lesson-tab.active {
  color: #462D86;
}
.learning-main .lesson-content .lesson-tabs .lesson-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #462D86;
  border-radius: 2px 2px 0 0;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane {
  display: none;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane.active {
  display: block;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #462D86;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .learning-main .lesson-content .lesson-tab-content .tab-content-pane h2 {
    font-size: 24px;
  }
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #462D86;
  margin: 28px 0 16px;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #979797;
  margin-bottom: 16px;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .lesson-description {
  font-size: 16px;
  color: #262F2E;
  margin-bottom: 24px;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .takeaways-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .takeaways-list li {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .takeaways-list li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  color: #16A34A;
  font-weight: bold;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .lesson-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .lesson-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .lesson-stats .stat-item img {
  width: 20px;
  height: 20px;
}
.learning-main .lesson-content .lesson-tab-content .tab-content-pane .lesson-stats .stat-item span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #262F2E;
}

.notes-section .note-editor {
  margin-bottom: 30px;
}
.notes-section .note-editor textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  border: 2px solid rgba(70, 45, 134, 0.15);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  resize: vertical;
  margin-bottom: 12px;
}
.notes-section .note-editor textarea:focus {
  outline: none;
  border-color: #462D86;
}
.notes-section .note-editor .btn-save-note {
  padding: 10px 24px;
  background: #462D86;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.notes-section .note-editor .btn-save-note:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
}
.notes-section .saved-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.notes-section .saved-notes .note-item {
  padding: 18px;
  background: rgba(70, 45, 134, 0.03);
  border-left: 3px solid #462D86;
  border-radius: 8px;
}
.notes-section .saved-notes .note-item .note-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.notes-section .saved-notes .note-item .note-header .note-time {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #462D86;
}
.notes-section .saved-notes .note-item .note-header .btn-delete-note {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #979797;
  cursor: pointer;
  transition: color 0.3s ease;
}
.notes-section .saved-notes .note-item .note-header .btn-delete-note:hover {
  color: #DC2626;
}
.notes-section .saved-notes .note-item .note-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  margin: 0;
  line-height: 1.6;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.resources-list .resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(70, 45, 134, 0.03);
  border: 1px solid rgba(70, 45, 134, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.resources-list .resource-item:hover {
  background: rgba(70, 45, 134, 0.05);
  border-color: #462D86;
}
.resources-list .resource-item .resource-icon {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resources-list .resource-item .resource-icon img {
  width: 24px;
  height: 24px;
}
.resources-list .resource-item .resource-info {
  flex: 1;
}
.resources-list .resource-item .resource-info h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #462D86;
  margin-bottom: 4px;
}
.resources-list .resource-item .resource-info p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
  margin: 0;
}
.resources-list .resource-item .btn-download {
  padding: 10px 20px;
  background: #462D86;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.resources-list .resource-item .btn-download img {
  width: 16px;
  height: 16px;
}
.resources-list .resource-item .btn-download:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
}

.qa-section .qa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .qa-section .qa-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.qa-section .qa-header h3 {
  margin: 0 !important;
}
.qa-section .qa-header .btn-ask-question {
  padding: 10px 20px;
  background: #462D86;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.qa-section .qa-header .btn-ask-question:hover {
  background: rgb(54.0446927374, 34.7430167598, 103.4569832402);
}
.qa-section .qa-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.qa-section .qa-list .qa-item {
  padding: 24px;
  background: rgba(70, 45, 134, 0.02);
  border-radius: 14px;
  border: 1px solid rgba(70, 45, 134, 0.1);
}
.qa-section .qa-list .qa-item .question {
  margin-bottom: 20px;
}
.qa-section .qa-list .qa-item .question .question-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.qa-section .qa-list .qa-item .question .question-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.qa-section .qa-list .qa-item .question .question-header .question-info h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #462D86;
  margin-bottom: 4px;
}
.qa-section .qa-list .qa-item .question .question-header .question-info .question-time {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #979797;
}
.qa-section .qa-list .qa-item .question .question-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #262F2E;
  margin: 0;
  padding-left: 56px;
}
.qa-section .qa-list .qa-item .answer {
  padding-left: 28px;
  border-left: 3px solid #462D86;
}
.qa-section .qa-list .qa-item .answer .answer-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.qa-section .qa-list .qa-item .answer .answer-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.qa-section .qa-list .qa-item .answer .answer-header .answer-info h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #462D86;
  margin-bottom: 4px;
}
.qa-section .qa-list .qa-item .answer .answer-header .answer-info h4 .instructor-badge {
  display: inline-block;
  padding: 3px 8px;
  background: #462D86;
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 10px;
  margin-left: 8px;
}
.qa-section .qa-list .qa-item .answer .answer-header .answer-info .answer-time {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #979797;
}
.qa-section .qa-list .qa-item .answer .answer-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #262F2E;
  margin: 0;
  padding-left: 56px;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, rgba(70, 45, 134, 0.02) 50%, rgba(237, 214, 127, 0.03) 100%);
  background-color: #F9FAFB;
}

.auth-container {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.auth-content-wrapper {
  position: relative;
}

.auth-card {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 48px 40px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 1px solid #D4D4D8;
}
.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #462D86, rgb(89.9441340782, 57.8212290503, 172.1787709497), rgb(115.5530726257, 83.5698324022, 197.4301675978));
}
.auth-card.auth-card-narrow {
  max-width: 450px;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.auth-logo {
  display: inline-block;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.auth-logo:hover {
  transform: scale(1.05);
}

.auth-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 16px;
  color: #6B7280;
  margin: 0;
}

.auth-form {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-group {
  margin-bottom: 24px;
  position: relative;
  animation: fadeInUp 0.6s ease-out both;
}
.form-group:nth-child(1) {
  animation-delay: 0.1s;
}
.form-group:nth-child(2) {
  animation-delay: 0.2s;
}
.form-group:nth-child(3) {
  animation-delay: 0.3s;
}
.form-group:nth-child(4) {
  animation-delay: 0.4s;
}
.form-group:nth-child(5) {
  animation-delay: 0.5s;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #262F2E;
  margin-bottom: 8px;
}
.form-label i {
  color: #462D86;
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #262F2E;
  background: #FFFFFF;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus {
  border-color: #462D86;
  box-shadow: 0 0 0 4px rgba(70, 45, 134, 0.1);
  transform: translateY(-2px);
}
.form-input::placeholder {
  color: #979797;
}

.password-input-wrapper {
  position: relative;
}
.password-input-wrapper .form-input {
  padding-right: 48px;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #979797;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}
.password-toggle:hover {
  color: #462D86;
}
.password-toggle i {
  font-size: 18px;
}

.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #462D86;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.form-input:focus ~ .input-focus-line {
  width: 100%;
}

.password-strength {
  margin-top: 12px;
}

.strength-bar {
  width: 100%;
  height: 4px;
  background: #D4D4D8;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  background: #ef4444;
  border-radius: 999px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.strength-text {
  font-size: 13px;
  color: #979797;
  margin: 0;
  font-weight: 500;
}

.password-match {
  display: block;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}
.password-match.match {
  color: #22c55e;
}
.password-match.no-match {
  color: #ef4444;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input[type=checkbox] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #D4D4D8;
  border-radius: 4px;
  background: #FFFFFF;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background: #462D86;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.checkbox-wrapper input[type=checkbox]:checked + .checkbox-custom {
  border-color: #462D86;
  background: #462D86;
}
.checkbox-wrapper input[type=checkbox]:checked + .checkbox-custom::after {
  content: "✓";
  color: white;
  font-size: 12px;
  font-weight: bold;
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-label {
  font-size: 14px;
  color: #262F2E;
  line-height: 1.5;
}
.checkbox-label .link-inline {
  color: #462D86;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.checkbox-label .link-inline:hover {
  color: #764ba2;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.forgot-link {
  font-size: 14px;
  color: #462D86;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.forgot-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

.btn-auth-primary {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  background: #462D86;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.btn-auth-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn-auth-primary:hover {
  background: rgb(60.0279329609, 38.5893854749, 114.9106145251);
  transform: translateY(-2px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
}
.btn-auth-primary:hover::before {
  left: 100%;
}
.btn-auth-primary:active {
  transform: translateY(0);
}
.btn-auth-primary.loading {
  pointer-events: none;
}
.btn-auth-primary.loading .btn-text {
  opacity: 0;
}
.btn-auth-primary.loading .btn-loader {
  opacity: 1;
}

.btn-text {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn-loader i {
  font-size: 20px;
}

.btn-auth-secondary {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #462D86;
  background: #FFFFFF;
  border: 2px solid #462D86;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-auth-secondary:hover {
  background: #462D86;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(70, 45, 134, 0.3);
}

.btn-google {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #262F2E;
  background: #FFFFFF;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}
.btn-google:hover {
  border-color: #db4437;
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.btn-google:active {
  transform: translateY(0);
}

.google-icon {
  width: 20px;
  height: 20px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  position: relative;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4D4D8, transparent);
}

.divider-text {
  font-size: 14px;
  color: #979797;
  font-weight: 500;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
}
.auth-footer p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.auth-link {
  color: #462D86;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.auth-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #462D86;
  transition: width 0.3s ease;
}
.auth-link:hover {
  color: rgb(50.0558659218, 32.1787709497, 95.8212290503);
}
.auth-link:hover::after {
  width: 100%;
}

.auth-message {
  text-align: center;
  padding: 32px 24px;
  animation: fadeInUp 0.6s ease-out;
}

.auth-message-success .message-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #462D86;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.5s ease-out;
}
.auth-message-success .message-icon i {
  font-size: 32px;
  color: white;
}
.auth-message-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #262F2E;
  margin-bottom: 12px;
}
.auth-message-success p {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .auth-page {
    padding: 100px 16px 40px;
  }
  .auth-card {
    padding: 32px 24px;
    border-radius: 25px;
  }
  .auth-title {
    font-size: 40px;
  }
  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .auth-card {
    padding: 24px 20px;
  }
  .auth-title {
    font-size: 24px;
  }
  .auth-subtitle {
    font-size: 14px;
  }
}
.blog-hero-section {
  padding: 140px 200px 80px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.03) 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .blog-hero-section {
    padding: 140px 100px 80px;
  }
}
@media (max-width: 991px) {
  .blog-hero-section {
    padding: 120px 50px 60px;
  }
}
@media (max-width: 767px) {
  .blog-hero-section {
    padding: 100px 20px 50px;
  }
}
.blog-hero-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(70, 45, 134, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.blog-hero-section .blog-hero-content {
  position: relative;
  z-index: 2;
}
.blog-hero-section .blog-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 999px;
  margin-bottom: 25px;
  animation: fadeInDown 0.6s ease-out;
}
.blog-hero-section .blog-hero-content .hero-badge .dot {
  width: 12px;
  height: 12px;
  background: #462D86;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.blog-hero-section .blog-hero-content .hero-badge span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #462D86;
}
.blog-hero-section .blog-hero-content .blog-hero-title {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.15;
  color: #462D86;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.blog-hero-section .blog-hero-content .blog-hero-title .em {
  font-weight: 700;
  background: linear-gradient(135deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1199px) {
  .blog-hero-section .blog-hero-content .blog-hero-title {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .blog-hero-section .blog-hero-content .blog-hero-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .blog-hero-section .blog-hero-content .blog-hero-title {
    font-size: 34px;
  }
}
.blog-hero-section .blog-hero-content .blog-hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #979797;
  margin-bottom: 35px;
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.blog-hero-section .blog-hero-content .blog-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
@media (max-width: 767px) {
  .blog-hero-section .blog-hero-content .blog-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.blog-hero-section .blog-hero-content .blog-hero-stats .stat-box h3 {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero-section .blog-hero-content .blog-hero-stats .stat-box p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}
.blog-hero-section .blog-hero-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
}
.blog-hero-section .blog-hero-image .hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.blog-hero-section .blog-hero-image:hover .hero-main-image {
  transform: scale(1.05);
}
.blog-hero-section .blog-hero-image .floating-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #462D86;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}
.blog-hero-section .blog-hero-image .floating-badge i {
  color: #462D86;
  font-size: 16px;
}
.blog-hero-section .blog-hero-image .floating-badge.badge-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}
.blog-hero-section .blog-hero-image .floating-badge.badge-2 {
  bottom: 20px;
  right: 20px;
  animation-delay: 1.5s;
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .section-header .section-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .section-header .section-title {
    font-size: 32px;
  }
}
.section-header .section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #979797;
  margin: 0;
}

.featured-posts-section {
  padding: 80px 200px;
  background: #FFFFFF;
}
@media (max-width: 1399px) {
  .featured-posts-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .featured-posts-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .featured-posts-section {
    padding: 50px 20px;
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #D4D4D8;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border-color: #462D86;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}
.blog-card:hover .blog-card-overlay {
  opacity: 1;
}
.blog-card:hover .blog-read-btn {
  transform: scale(1);
}
.blog-card.blog-card-featured {
  border: 2px solid #462D86;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.blog-card.blog-card-featured .blog-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #462D86, rgb(89.9441340782, 57.8212290503, 172.1787709497));
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  animation: pulse 2s infinite;
}
.blog-card .blog-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
@media (max-width: 767px) {
  .blog-card .blog-card-image {
    height: 220px;
  }
}
.blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card .blog-card-image .blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.9), rgba(70, 45, 134, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-card .blog-card-image .blog-read-btn {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #462D86;
  font-size: 20px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.blog-card .blog-card-image .blog-read-btn:hover {
  transform: scale(1.1);
  background: #462D86;
}
.blog-card .blog-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-card-content .blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-card .blog-card-content .blog-card-meta .blog-category {
  background: rgba(70, 45, 134, 0.1);
  color: #462D86;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card .blog-card-content .blog-card-meta .blog-read-time {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
}
.blog-card .blog-card-content .blog-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .blog-card .blog-card-content .blog-card-title {
    font-size: 20px;
  }
}
.blog-card .blog-card-content .blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card .blog-card-content .blog-card-title a:hover {
  color: #462D86;
}
.blog-card .blog-card-content .blog-card-excerpt {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card .blog-card-content .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #D4D4D8;
}
.blog-card .blog-card-content .blog-card-footer .blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card .blog-card-content .blog-card-footer .blog-author .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-card .blog-card-content .blog-card-footer .blog-author .author-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #262F2E;
}
.blog-card .blog-card-content .blog-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.blog-card .blog-card-content .blog-tags .blog-tag {
  background: rgba(70, 45, 134, 0.1);
  color: #462D86;
  padding: 4px 12px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.all-posts-section {
  padding: 80px 200px;
  margin-top: 60px;
  background: #F9FAFB;
}
@media (max-width: 1399px) {
  .all-posts-section {
    padding: 80px 100px;
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .all-posts-section {
    padding: 60px 50px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .all-posts-section {
    padding: 50px 20px;
    margin-top: 30px;
  }
}

.blog-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.blog-filters .filter-btn {
  padding: 10px 24px;
  background: #FFFFFF;
  border: 2px solid #D4D4D8;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #262F2E;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.blog-filters .filter-btn:hover {
  border-color: #462D86;
  color: #462D86;
  transform: translateY(-2px);
  text-decoration: none;
}
.blog-filters .filter-btn.active {
  background: #462D86;
  border-color: #462D86;
  color: #FFFFFF;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}

.blog-filters-form {
  width: 100%;
}

.blog-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .blog-pagination {
    margin-top: 40px;
  }
}
.blog-pagination .pagination {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination .pagination .page-item .page-link {
  padding: 10px 16px;
  background: #FFFFFF;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #262F2E;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.blog-pagination .pagination .page-item .page-link:hover {
  border-color: #462D86;
  color: #462D86;
  transform: translateY(-2px);
}
.blog-pagination .pagination .page-item.active .page-link {
  background: #462D86;
  border-color: #462D86;
  color: #FFFFFF;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.blog-pagination .pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.blog-newsletter-section {
  padding: 80px 200px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
}
@media (max-width: 1399px) {
  .blog-newsletter-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .blog-newsletter-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .blog-newsletter-section {
    padding: 50px 20px;
  }
}
.blog-newsletter-section .newsletter-card {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  border: 2px solid #462D86;
}
@media (max-width: 767px) {
  .blog-newsletter-section .newsletter-card {
    padding: 40px 30px;
  }
}
.blog-newsletter-section .newsletter-card .newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.blog-newsletter-section .newsletter-card .newsletter-content .newsletter-title {
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .blog-newsletter-section .newsletter-card .newsletter-content .newsletter-title {
    font-size: 32px;
  }
}
.blog-newsletter-section .newsletter-card .newsletter-content .newsletter-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #979797;
  margin-bottom: 35px;
}
.blog-newsletter-section .newsletter-card .newsletter-content .newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .blog-newsletter-section .newsletter-card .newsletter-content .newsletter-form {
    flex-direction: column;
  }
}
.blog-newsletter-section .newsletter-card .newsletter-content .newsletter-form .newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.blog-newsletter-section .newsletter-card .newsletter-content .newsletter-form .newsletter-input:focus {
  outline: none;
  border-color: #462D86;
}
.blog-newsletter-section .newsletter-card .newsletter-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.blog-newsletter-section .newsletter-card .newsletter-decoration .decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(70, 45, 134, 0.05);
  animation: float 6s ease-in-out infinite;
}
.blog-newsletter-section .newsletter-card .newsletter-decoration .decoration-circle.circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}
.blog-newsletter-section .newsletter-card .newsletter-decoration .decoration-circle.circle-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
  animation-delay: 2s;
}
.blog-newsletter-section .newsletter-card .newsletter-decoration .decoration-circle.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

.blog-detail-hero {
  padding: 140px 200px 60px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.03) 0%, #FFFFFF 100%);
}
@media (max-width: 1399px) {
  .blog-detail-hero {
    padding: 140px 100px 60px;
  }
}
@media (max-width: 991px) {
  .blog-detail-hero {
    padding: 120px 50px 50px;
  }
}
@media (max-width: 767px) {
  .blog-detail-hero {
    padding: 100px 20px 40px;
  }
}
.blog-detail-hero .blog-detail-header {
  max-width: 900px;
  margin: 0 auto 40px;
}
.blog-detail-hero .blog-detail-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #462D86;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}
.blog-detail-hero .blog-detail-header .back-link:hover {
  gap: 12px;
  color: rgb(50.0558659218, 32.1787709497, 95.8212290503);
}
.blog-detail-hero .blog-detail-header .blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.blog-detail-hero .blog-detail-header .blog-detail-meta .blog-category-badge {
  background: #462D86;
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-detail-hero .blog-detail-header .blog-detail-meta .blog-date,
.blog-detail-hero .blog-detail-header .blog-detail-meta .blog-read-time {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
}
.blog-detail-hero .blog-detail-header .blog-detail-title {
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #462D86;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .blog-detail-hero .blog-detail-header .blog-detail-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .blog-detail-hero .blog-detail-header .blog-detail-title {
    font-size: 32px;
  }
}
.blog-detail-hero .blog-detail-header .blog-detail-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-detail-hero .blog-detail-header .blog-detail-subtitle {
    font-size: 18px;
  }
}
.blog-detail-hero .blog-detail-header .blog-detail-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-detail-hero .blog-detail-header .blog-detail-author .author-avatar-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #462D86;
}
.blog-detail-hero .blog-detail-header .blog-detail-author .author-info .author-name {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.blog-detail-hero .blog-detail-header .blog-detail-author .author-info .author-role {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
}
.blog-detail-hero .blog-detail-image {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  max-height: 500px;
}
@media (max-width: 767px) {
  .blog-detail-hero .blog-detail-image {
    max-height: 350px;
  }
}
.blog-detail-hero .blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 500px;
}
@media (max-width: 767px) {
  .blog-detail-hero .blog-detail-image img {
    max-height: 350px;
  }
}
.blog-detail-hero .blog-detail-image .image-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, rgba(70, 45, 134, 0.3), transparent);
  pointer-events: none;
}

.blog-content-section {
  padding: 10px 200px;
}
@media (max-width: 1399px) {
  .blog-content-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .blog-content-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .blog-content-section {
    padding: 50px 20px;
  }
}

.blog-article .blog-share-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 2px solid #D4D4D8;
  margin-bottom: 40px;
  position: sticky;
  top: 100px;
  background: #FFFFFF;
  z-index: 10;
}
.blog-article .blog-share-bar .share-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #262F2E;
}
.blog-article .blog-share-bar .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F9FAFB;
  border: 2px solid #D4D4D8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #462D86;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-article .blog-share-bar .share-btn:hover {
  background: #462D86;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.blog-article .article-content {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #262F2E;
}
.blog-article .article-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #462D86;
  margin: 50px 0 25px;
}
@media (max-width: 767px) {
  .blog-article .article-content h2 {
    font-size: 28px;
  }
}
.blog-article .article-content p {
  margin-bottom: 25px;
}
.blog-article .article-content ol, .blog-article .article-content ul {
  margin: 25px 0;
  padding-left: 30px;
}
.blog-article .article-content ol li, .blog-article .article-content ul li {
  margin-bottom: 15px;
}
.blog-article .article-content ol li strong, .blog-article .article-content ul li strong {
  color: #462D86;
  font-weight: 600;
}
.blog-article .article-content .article-highlight-box {
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.08), rgba(70, 45, 134, 0.03));
  border-left: 4px solid #462D86;
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  display: flex;
  gap: 20px;
}
.blog-article .article-content .article-highlight-box .highlight-icon {
  width: 50px;
  height: 50px;
  background: #462D86;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
  flex-shrink: 0;
}
.blog-article .article-content .article-highlight-box .highlight-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 10px;
}
.blog-article .article-content .article-highlight-box .highlight-content p {
  margin: 0;
  font-size: 16px;
}
.blog-article .article-content .article-image-box {
  margin: 40px 0;
}
.blog-article .article-content .article-image-box img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.blog-article .article-content .article-image-box .image-caption {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}
.blog-article .article-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 30px 0;
  border-top: 2px solid #D4D4D8;
  margin-top: 50px;
  flex-wrap: wrap;
}
.blog-article .article-tags .tags-label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #262F2E;
}
.blog-article .article-tags .article-tag {
  background: rgba(70, 45, 134, 0.1);
  color: #462D86;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-article .article-tags .article-tag:hover {
  background: #462D86;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.blog-article .author-bio-card {
  background: #F9FAFB;
  border-radius: 25px;
  padding: 40px;
  margin-top: 50px;
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .blog-article .author-bio-card {
    flex-direction: column;
    text-align: center;
  }
}
.blog-article .author-bio-card .author-bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #462D86;
  flex-shrink: 0;
}
.blog-article .author-bio-card .author-bio-content {
  flex: 1;
}
.blog-article .author-bio-card .author-bio-content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 5px;
}
.blog-article .author-bio-card .author-bio-content .author-bio-role {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #979797;
  margin-bottom: 15px;
}
.blog-article .author-bio-card .author-bio-content .author-bio-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #262F2E;
  margin-bottom: 20px;
}
.blog-article .author-bio-card .author-bio-content .author-social {
  display: flex;
  gap: 12px;
}
.blog-article .author-bio-card .author-bio-content .author-social .social-link {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 2px solid #D4D4D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #462D86;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-article .author-bio-card .author-bio-content .author-social .social-link:hover {
  background: #462D86;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}

.blog-sidebar {
  position: sticky;
  top: 120px;
}
.blog-sidebar .sidebar-widget {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D4D4D8;
}
.blog-sidebar .sidebar-widget .widget-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 20px;
}
.blog-sidebar .sidebar-widget .widget-description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin-bottom: 20px;
}
.blog-sidebar .sidebar-widget .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar .sidebar-widget .toc-list li {
  margin-bottom: 12px;
}
.blog-sidebar .sidebar-widget .toc-list li a {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.blog-sidebar .sidebar-widget .toc-list li a:hover {
  background: rgba(70, 45, 134, 0.1);
  color: #462D86;
  padding-left: 20px;
}
.blog-sidebar .sidebar-widget .sidebar-post {
  margin-bottom: 20px;
}
.blog-sidebar .sidebar-widget .sidebar-post:last-child {
  margin-bottom: 0;
}
.blog-sidebar .sidebar-widget .sidebar-post .sidebar-post-link {
  display: flex;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.blog-sidebar .sidebar-widget .sidebar-post .sidebar-post-link:hover {
  transform: translateX(5px);
}
.blog-sidebar .sidebar-widget .sidebar-post .sidebar-post-link .sidebar-post-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-sidebar .sidebar-widget .sidebar-post .sidebar-post-link .sidebar-post-content {
  flex: 1;
}
.blog-sidebar .sidebar-widget .sidebar-post .sidebar-post-link .sidebar-post-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-sidebar .sidebar-widget .sidebar-post .sidebar-post-link .sidebar-post-content .sidebar-post-date {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #979797;
}
.blog-sidebar .sidebar-widget .sidebar-newsletter-form .sidebar-newsletter-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}
.blog-sidebar .sidebar-widget .sidebar-newsletter-form .sidebar-newsletter-input:focus {
  outline: none;
  border-color: #462D86;
}
.blog-sidebar .sidebar-widget .sidebar-newsletter-form .btn-block {
  width: 100%;
}
.blog-sidebar .sidebar-widget.newsletter-widget {
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05), rgba(70, 45, 134, 0.02));
  border: 2px solid #462D86;
}

.related-posts-section {
  padding: 80px 200px;
  background: #F9FAFB;
}
@media (max-width: 1399px) {
  .related-posts-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .related-posts-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .related-posts-section {
    padding: 50px 20px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dashboard-hero {
  padding: 140px 200px 60px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
}
@media (max-width: 1399px) {
  .dashboard-hero {
    padding: 140px 100px 60px;
  }
}
@media (max-width: 991px) {
  .dashboard-hero {
    padding: 120px 50px 50px;
  }
}
@media (max-width: 767px) {
  .dashboard-hero {
    padding: 100px 20px 40px;
  }
}
.dashboard-hero .dashboard-header .dashboard-welcome {
  margin-bottom: 40px;
}
.dashboard-hero .dashboard-header .dashboard-welcome .dashboard-title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .dashboard-hero .dashboard-header .dashboard-welcome .dashboard-title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .dashboard-hero .dashboard-header .dashboard-welcome .dashboard-title {
    font-size: 32px;
  }
}
.dashboard-hero .dashboard-header .dashboard-welcome .dashboard-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #979797;
}
.dashboard-hero .dashboard-header .dashboard-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.dashboard-hero .dashboard-header .dashboard-stats .stat-card {
  flex: 1;
  min-width: 200px;
  background: #FFFFFF;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  border: 2px solid #D4D4D8;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}
.dashboard-hero .dashboard-header .dashboard-stats .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border-color: #462D86;
}
.dashboard-hero .dashboard-header .dashboard-stats .stat-card .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #462D86, rgb(89.9441340782, 57.8212290503, 172.1787709497));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
}
.dashboard-hero .dashboard-header .dashboard-stats .stat-card .stat-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 5px;
}
.dashboard-hero .dashboard-header .dashboard-stats .stat-card .stat-content p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}

.my-courses-section {
  padding: 80px 200px;
  background: #FFFFFF;
}
@media (max-width: 1399px) {
  .my-courses-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .my-courses-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .my-courses-section {
    padding: 50px 20px;
  }
}
.my-courses-section .course-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.my-courses-section .course-filters .filter-btn {
  padding: 10px 24px;
  background: #FFFFFF;
  border: 2px solid #D4D4D8;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #262F2E;
  cursor: pointer;
  transition: all 0.3s ease;
}
.my-courses-section .course-filters .filter-btn:hover {
  border-color: #462D86;
  color: #462D86;
  transform: translateY(-2px);
}
.my-courses-section .course-filters .filter-btn.active {
  background: #462D86;
  border-color: #462D86;
  color: #FFFFFF;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}

.dashboard-course-card {
  background: #FFFFFF;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid #D4D4D8;
}
.dashboard-course-card:hover {
  transform: translateY(-8px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border-color: #462D86;
}
.dashboard-course-card .course-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dashboard-course-card .course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dashboard-course-card .course-card-image:hover img {
  transform: scale(1.1);
}
.dashboard-course-card .course-card-image .course-progress-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.85), rgba(70, 45, 134, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dashboard-course-card .course-card-image:hover .course-progress-overlay {
  opacity: 1;
}
.dashboard-course-card .course-card-image .progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
}
.dashboard-course-card .course-card-image .progress-circle .progress-ring {
  transform: rotate(-90deg);
}
.dashboard-course-card .course-card-image .progress-circle .progress-ring .progress-ring-progress {
  stroke-dasharray: 219.91;
  transition: stroke-dashoffset 0.5s ease;
}
.dashboard-course-card .course-card-image .progress-circle .progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}
.dashboard-course-card .course-card-image .course-completed-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FFFFFF;
  color: #462D86;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.dashboard-course-card .course-card-image .course-completed-badge i {
  color: #462D86;
}
.dashboard-course-card .course-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dashboard-course-card .course-card-content .course-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.dashboard-course-card .course-card-content .course-card-header .course-level {
  background: rgba(70, 45, 134, 0.1);
  color: #462D86;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.dashboard-course-card .course-card-content .course-card-header .course-duration {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-course-card .course-card-content .course-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.4;
}
.dashboard-course-card .course-card-content .course-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.dashboard-course-card .course-card-content .course-card-title a:hover {
  color: #462D86;
}
.dashboard-course-card .course-card-content .course-progress-info {
  margin-bottom: 20px;
}
.dashboard-course-card .course-card-content .course-progress-info .progress-bar {
  width: 100%;
  height: 6px;
  background: #D4D4D8;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.dashboard-course-card .course-card-content .course-progress-info .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #462D86, rgb(100.0251396648, 64.4804469274, 191.0195530726));
  border-radius: 999px;
  transition: width 0.5s ease;
}
.dashboard-course-card .course-card-content .course-progress-info .progress-text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #979797;
}
.dashboard-course-card .course-card-content .course-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #D4D4D8;
}
.dashboard-course-card .course-card-content .course-card-footer .last-accessed {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #979797;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-course-card .course-card-content .course-card-footer .continue-btn {
  background: #462D86;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.dashboard-course-card .course-card-content .course-card-footer .continue-btn:hover {
  background: rgb(60.0279329609, 38.5893854749, 114.9106145251);
  transform: translateX(5px);
}

.quick-actions-section {
  padding: 80px 200px;
  background: #F9FAFB;
}
@media (max-width: 1399px) {
  .quick-actions-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .quick-actions-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .quick-actions-section {
    padding: 50px 20px;
  }
}
.quick-actions-section .quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.quick-actions-section .quick-actions-grid .quick-action-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 2px solid #D4D4D8;
  text-decoration: none;
  transition: all 0.3s ease;
}
.quick-actions-section .quick-actions-grid .quick-action-card:hover {
  transform: translateY(-8px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border-color: #462D86;
}
.quick-actions-section .quick-actions-grid .quick-action-card:hover .action-icon {
  transform: scale(1.1) rotate(5deg);
}
.quick-actions-section .quick-actions-grid .quick-action-card .action-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #462D86, rgb(89.9441340782, 57.8212290503, 172.1787709497));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 32px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}
.quick-actions-section .quick-actions-grid .quick-action-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.quick-actions-section .quick-actions-grid .quick-action-card p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}

.profile-hero {
  padding: 140px 200px 60px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
}
@media (max-width: 1399px) {
  .profile-hero {
    padding: 140px 100px 60px;
  }
}
@media (max-width: 991px) {
  .profile-hero {
    padding: 120px 50px 50px;
  }
}
@media (max-width: 767px) {
  .profile-hero {
    padding: 100px 20px 40px;
  }
}
.profile-hero .profile-header {
  text-align: center;
}
.profile-hero .profile-header .profile-avatar-section .avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.profile-hero .profile-header .profile-avatar-section .avatar-wrapper .profile-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #462D86;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
}
.profile-hero .profile-header .profile-avatar-section .avatar-wrapper .avatar-edit-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  background: #462D86;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.profile-hero .profile-header .profile-avatar-section .avatar-wrapper .avatar-edit-btn:hover {
  background: rgb(60.0279329609, 38.5893854749, 114.9106145251);
  transform: scale(1.1);
}
.profile-hero .profile-header .profile-avatar-section .profile-name {
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 8px;
}
.profile-hero .profile-header .profile-avatar-section .profile-email {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #979797;
  margin-bottom: 5px;
}
.profile-hero .profile-header .profile-avatar-section .profile-joined {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #6B7280;
}

.profile-content-section {
  padding: 60px 200px 80px;
}
@media (max-width: 1399px) {
  .profile-content-section {
    padding: 60px 100px 80px;
  }
}
@media (max-width: 991px) {
  .profile-content-section {
    padding: 50px 50px 60px;
  }
}
@media (max-width: 767px) {
  .profile-content-section {
    padding: 40px 20px 50px;
  }
}

.profile-nav {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D4D4D8;
  position: sticky;
  top: 120px;
}
.profile-nav .profile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #262F2E;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.profile-nav .profile-nav-item:last-child {
  margin-bottom: 0;
}
.profile-nav .profile-nav-item i {
  width: 20px;
  color: #462D86;
}
.profile-nav .profile-nav-item:hover {
  background: rgba(70, 45, 134, 0.1);
  color: #462D86;
  transform: translateX(5px);
}
.profile-nav .profile-nav-item.active {
  background: #462D86;
  color: #FFFFFF;
}
.profile-nav .profile-nav-item.active i {
  color: #FFFFFF;
}
.profile-nav .profile-nav-item.logout-item {
  color: #ef4444;
  border-top: 1px solid #D4D4D8;
  margin-top: 10px;
  padding-top: 15px;
}
.profile-nav .profile-nav-item.logout-item i {
  color: #ef4444;
}
.profile-nav .profile-nav-item.logout-item:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.profile-nav .profile-nav-item.logout-item:hover i {
  color: #dc2626;
}

.settings-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #D4D4D8;
}
.settings-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.settings-section .settings-section-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 24px;
}

.profile-tab-content {
  display: none;
}
.profile-tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.profile-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D4D4D8;
}
@media (max-width: 767px) {
  .profile-card {
    padding: 30px 20px;
  }
}
.profile-card .profile-card-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #D4D4D8;
}
.profile-card .profile-card-header .profile-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 8px;
}
.profile-card .profile-card-header .profile-card-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #979797;
}

.profile-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .profile-form .form-row {
    grid-template-columns: 1fr;
  }
}
.profile-form .form-group {
  margin-bottom: 24px;
}
.profile-form .form-group .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #262F2E;
  margin-bottom: 8px;
}
.profile-form .form-group .form-label i {
  color: #462D86;
}
.profile-form .form-group .form-input,
.profile-form .form-group .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  transition: all 0.3s ease;
}
.profile-form .form-group .form-input:focus,
.profile-form .form-group .form-textarea:focus {
  outline: none;
  border-color: #462D86;
  box-shadow: 0 0 0 4px rgba(70, 45, 134, 0.1);
}
.profile-form .form-group .form-textarea {
  resize: vertical;
}

.settings-list .setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #D4D4D8;
}
.settings-list .setting-item:last-child {
  border-bottom: none;
}
.settings-list .setting-item .setting-info {
  flex: 1;
}
.settings-list .setting-item .setting-info h3 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}
.settings-list .setting-item .setting-info p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}
.settings-list .setting-item .setting-select {
  padding: 10px 16px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
.settings-list .setting-item .setting-select:focus {
  outline: none;
  border-color: #462D86;
}
.settings-list .setting-item .theme-switch {
  display: flex;
  gap: 10px;
}
.settings-list .setting-item .theme-switch .theme-btn {
  padding: 10px 20px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #262F2E;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
}
.settings-list .setting-item .theme-switch .theme-btn.active {
  background: #462D86;
  border-color: #462D86;
  color: #FFFFFF;
}
.settings-list .setting-item .theme-switch .theme-btn:hover:not(.active) {
  border-color: #462D86;
  color: #462D86;
}

.notifications-list .notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #D4D4D8;
}
.notifications-list .notification-item:last-child {
  border-bottom: none;
}
.notifications-list .notification-item .notification-info {
  flex: 1;
}
.notifications-list .notification-item .notification-info h3 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}
.notifications-list .notification-item .notification-info p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch input:checked + .toggle-slider {
  background: #462D86;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}
.toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E5E7EB;
  transition: 0.3s ease;
  border-radius: 999px;
}
.toggle-switch .toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #FFFFFF;
  transition: 0.3s ease;
  border-radius: 50%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.billing-section {
  margin-bottom: 40px;
}
.billing-section:last-child {
  margin-bottom: 0;
}
.billing-section h3 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 20px;
}
.billing-section .payment-methods {
  margin-bottom: 20px;
}
.billing-section .payment-methods .payment-method-card {
  background: #F9FAFB;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.billing-section .payment-methods .payment-method-card .payment-method-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.billing-section .payment-methods .payment-method-card .payment-method-info i {
  font-size: 32px;
  color: #462D86;
}
.billing-section .payment-methods .payment-method-card .payment-method-info h4 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.billing-section .payment-methods .payment-method-card .payment-method-info p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
  margin: 0;
}
.billing-section .payment-methods .payment-method-card .btn-remove {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #ef4444;
  border-radius: 12px;
  color: #ef4444;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.billing-section .payment-methods .payment-method-card .btn-remove:hover {
  background: #ef4444;
  color: #FFFFFF;
}
.billing-section .transactions-list .transaction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #F9FAFB;
  border-radius: 12px;
  margin-bottom: 12px;
}
.billing-section .transactions-list .transaction-item .transaction-info h4 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}
.billing-section .transactions-list .transaction-item .transaction-info p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
  margin: 0;
}
.billing-section .transactions-list .transaction-item .transaction-amount {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #462D86;
}

.btn-secondary {
  background: #FFFFFF;
  border: 2px solid #462D86;
  color: #462D86;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #462D86;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.checkout-header {
  padding: 140px 200px 60px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
}
@media (max-width: 1399px) {
  .checkout-header {
    padding: 140px 100px 60px;
  }
}
@media (max-width: 991px) {
  .checkout-header {
    padding: 120px 50px 50px;
  }
}
@media (max-width: 767px) {
  .checkout-header {
    padding: 100px 20px 40px;
  }
}
.checkout-header .checkout-title-section {
  text-align: center;
}
.checkout-header .checkout-title-section .checkout-main-title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .checkout-header .checkout-title-section .checkout-main-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .checkout-header .checkout-title-section .checkout-breadcrumb-steps {
    gap: 10px;
  }
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-circle.completed {
  background: #22c55e;
  color: #FFFFFF;
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-circle.completed i {
  font-size: 22px;
}
@media (max-width: 767px) {
  .checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-circle.completed i {
    font-size: 18px;
  }
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-circle.active {
  background: #462D86;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(70, 45, 134, 0.3);
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #262F2E;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .checkout-header .checkout-title-section .checkout-breadcrumb-steps .checkout-step .step-label {
    font-size: 12px;
  }
}
.checkout-header .checkout-title-section .checkout-breadcrumb-steps .step-line {
  width: 80px;
  height: 2px;
  background: #e5e7eb;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .checkout-header .checkout-title-section .checkout-breadcrumb-steps .step-line {
    width: 40px;
    margin-bottom: 20px;
  }
}
.checkout-header .checkout-breadcrumb .breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #462D86;
  text-decoration: none;
  margin-bottom: 30px;
  transition: all 0.2s ease;
}
.checkout-header .checkout-breadcrumb .breadcrumb-link:hover {
  gap: 12px;
  color: rgb(50.0558659218, 32.1787709497, 95.8212290503);
}
.checkout-header .checkout-breadcrumb .breadcrumb-steps {
  display: flex;
  align-items: center;
  gap: 15px;
}
.checkout-header .checkout-breadcrumb .breadcrumb-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.checkout-header .checkout-breadcrumb .breadcrumb-steps .step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D4D4D8;
  color: #979797;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.checkout-header .checkout-breadcrumb .breadcrumb-steps .step .step-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
}
.checkout-header .checkout-breadcrumb .breadcrumb-steps .step.active .step-number {
  background: #462D86;
  color: #FFFFFF;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.checkout-header .checkout-breadcrumb .breadcrumb-steps .step.active .step-label {
  color: #462D86;
  font-weight: 600;
}
.checkout-header .checkout-breadcrumb .breadcrumb-steps .step-line {
  width: 60px;
  height: 2px;
  background: #D4D4D8;
}
@media (max-width: 767px) {
  .checkout-header .checkout-breadcrumb .breadcrumb-steps .step-line {
    width: 30px;
  }
}

.checkout-content-section {
  padding: 60px 200px 80px;
}
@media (max-width: 1399px) {
  .checkout-content-section {
    padding: 60px 100px 80px;
  }
}
@media (max-width: 991px) {
  .checkout-content-section {
    padding: 50px 50px 60px;
  }
}
@media (max-width: 767px) {
  .checkout-content-section {
    padding: 40px 20px 50px;
  }
}

.checkout-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D4D4D8;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .checkout-card {
    padding: 30px 20px;
  }
}
.checkout-card .checkout-card-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #D4D4D8;
}
.checkout-card .checkout-card-header .checkout-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #462D86;
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-card .checkout-card-header .checkout-card-title i {
  color: #462D86;
}

.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .checkout-form .form-row {
    grid-template-columns: 1fr;
  }
}
.checkout-form .form-group {
  margin-bottom: 24px;
}
.checkout-form .form-group .form-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #262F2E;
  margin-bottom: 8px;
  display: block;
}
.checkout-form .form-group .form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  transition: all 0.3s ease;
}
.checkout-form .form-group .form-input:focus {
  outline: none;
  border-color: #462D86;
  box-shadow: 0 0 0 4px rgba(70, 45, 134, 0.1);
}
.checkout-form .form-group select.form-input {
  cursor: pointer;
}

.payment-methods-selection {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.payment-methods-selection .payment-method-option {
  flex: 1;
  min-width: 200px;
  background: #F9FAFB;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.payment-methods-selection .payment-method-option:hover {
  border-color: #462D86;
  transform: translateY(-2px);
}
.payment-methods-selection .payment-method-option.active {
  background: rgba(70, 45, 134, 0.05);
  border-color: #462D86;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}
.payment-methods-selection .payment-method-option .payment-method-radio input[type=radio] {
  display: none;
}
.payment-methods-selection .payment-method-option .payment-method-radio label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #262F2E;
  cursor: pointer;
}
.payment-methods-selection .payment-method-option .payment-method-radio label i {
  font-size: 24px;
  color: #462D86;
}

.payment-form .secure-payment-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(70, 45, 134, 0.05);
  border-radius: 12px;
  margin-top: 20px;
}
.payment-form .secure-payment-badge i {
  color: #462D86;
  font-size: 18px;
}
.payment-form .secure-payment-badge span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #262F2E;
}

.order-summary-wrapper {
  position: sticky;
  top: 120px;
}
@media (max-width: 767px) {
  .order-summary-wrapper {
    margin-top: 30px;
  }
}

.order-summary-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border: 2px solid #462D86;
}
.order-summary-card .order-summary-title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #D4D4D8;
}
.order-summary-card .order-item {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #D4D4D8;
}
.order-summary-card .order-item .order-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.order-summary-card .order-item .order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-summary-card .order-item .order-item-content {
  flex: 1;
}
.order-summary-card .order-item .order-item-content .order-item-title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
  line-height: 1.4;
}
.order-summary-card .order-item .order-item-content .order-item-level {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #979797;
}
.order-summary-card .order-summary-breakdown {
  margin-bottom: 24px;
}
.order-summary-card .order-summary-breakdown .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
.order-summary-card .order-summary-breakdown .summary-row.discount {
  color: #22c55e;
  font-weight: 600;
}
.order-summary-card .order-summary-breakdown .summary-row.total {
  padding-top: 20px;
  border-top: 2px solid #D4D4D8;
  font-size: 20px;
  font-weight: 700;
  color: #462D86;
}
.order-summary-card .promo-code-section {
  margin-bottom: 24px;
}
.order-summary-card .promo-code-section .promo-code-toggle {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px dashed #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #462D86;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.order-summary-card .promo-code-section .promo-code-toggle:hover {
  border-color: #462D86;
  background: rgba(70, 45, 134, 0.05);
}
.order-summary-card .promo-code-section .promo-code-form {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.order-summary-card .promo-code-section .promo-code-form .promo-code-input {
  flex: 1;
  padding: 12px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.order-summary-card .promo-code-section .promo-code-form .btn-apply-promo {
  padding: 12px 20px;
  background: #462D86;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.order-summary-card .promo-code-section .promo-code-form .btn-apply-promo:hover {
  background: rgb(60.0279329609, 38.5893854749, 114.9106145251);
}
.order-summary-card .checkout-terms {
  margin-bottom: 24px;
}
.order-summary-card .btn-complete-order {
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.order-summary-card .btn-complete-order:hover {
  transform: translateY(-2px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
}
.order-summary-card .btn-complete-order:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.order-summary-card .payment-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: rgba(70, 45, 134, 0.05);
  border-radius: 12px;
}
.order-summary-card .payment-security i {
  color: #462D86;
}
.order-summary-card .payment-security span {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #979797;
}

.checkout-form-wrapper .btn-complete-order {
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.checkout-form-wrapper .btn-complete-order:hover {
  transform: translateY(-2px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
}
.checkout-form-wrapper .btn-complete-order:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.checkout-success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
}
.checkout-success-section .success-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.checkout-success-section .success-content .success-icon {
  margin-bottom: 30px;
}
.checkout-success-section .success-content .success-icon .success-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  animation: scaleIn 0.5s ease-out;
}
.checkout-success-section .success-content .success-icon .success-circle i {
  font-size: 60px;
  color: #FFFFFF;
}
.checkout-success-section .success-content .success-title {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .checkout-success-section .success-content .success-title {
    font-size: 36px;
  }
}
.checkout-success-section .success-content .success-message {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #979797;
  margin-bottom: 40px;
  line-height: 1.7;
}
.checkout-success-section .success-content .order-details-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  text-align: left;
}
.checkout-success-section .success-content .order-details-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}
.checkout-success-section .success-content .order-details-card .order-info {
  margin-bottom: 30px;
}
.checkout-success-section .success-content .order-details-card .order-info .info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #D4D4D8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
.checkout-success-section .success-content .order-details-card .order-info .info-row:last-child {
  border-bottom: none;
}
.checkout-success-section .success-content .order-details-card .order-info .info-row span {
  color: #979797;
}
.checkout-success-section .success-content .order-details-card .order-info .info-row strong {
  color: #000000;
  font-weight: 600;
}
.checkout-success-section .success-content .order-details-card .enrolled-courses h4 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #F9FAFB;
  border-radius: 12px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item:hover {
  background: rgba(70, 45, 134, 0.05);
  transform: translateY(-2px);
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item:hover .start-learning-btn {
  background: rgb(60.0279329609, 38.5893854749, 114.9106145251);
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item .enrolled-course-info {
  flex: 1;
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item .enrolled-course-info h5 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item .enrolled-course-info p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #462D86;
  font-weight: 600;
  margin: 0;
}
.checkout-success-section .success-content .order-details-card .enrolled-courses .enrolled-course-item .start-learning-btn {
  padding: 10px 20px;
  background: #462D86;
  color: #FFFFFF;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.checkout-success-section .success-content .success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.checkout-success-section .success-content .success-actions .btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.checkout-success-section .success-content .success-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.about-hero-section {
  padding: 140px 200px 80px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
}
@media (max-width: 1399px) {
  .about-hero-section {
    padding: 140px 100px 80px;
  }
}
@media (max-width: 991px) {
  .about-hero-section {
    padding: 120px 50px 60px;
  }
}
@media (max-width: 767px) {
  .about-hero-section {
    padding: 100px 20px 50px;
  }
}
.about-hero-section .about-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 999px;
  margin-bottom: 25px;
  animation: fadeInDown 0.6s ease-out;
}
.about-hero-section .about-hero-content .hero-badge .dot {
  width: 12px;
  height: 12px;
  background: #462D86;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.about-hero-section .about-hero-content .hero-badge span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #462D86;
}
.about-hero-section .about-hero-content .about-hero-title {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.15;
  color: #462D86;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.about-hero-section .about-hero-content .about-hero-title .em {
  font-weight: 700;
}
@media (max-width: 1199px) {
  .about-hero-section .about-hero-content .about-hero-title {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .about-hero-section .about-hero-content .about-hero-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .about-hero-section .about-hero-content .about-hero-title {
    font-size: 34px;
  }
}
.about-hero-section .about-hero-content .about-hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #979797;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.about-hero-section .about-hero-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
}
.about-hero-section .about-hero-image .hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about-hero-section .about-hero-image:hover .hero-main-image {
  transform: scale(1.05);
}
.about-hero-section .about-hero-image .floating-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #462D86;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}
.about-hero-section .about-hero-image .floating-badge i {
  color: #462D86;
  font-size: 16px;
}
.about-hero-section .about-hero-image .floating-badge.badge-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}
.about-hero-section .about-hero-image .floating-badge.badge-2 {
  bottom: 20px;
  right: 20px;
  animation-delay: 1.5s;
}
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.mission-vision-section {
  padding: 80px 200px;
  background: #FFFFFF;
}
@media (max-width: 1399px) {
  .mission-vision-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .mission-vision-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .mission-vision-section {
    padding: 50px 20px;
  }
}
.mission-vision-section .mission-card,
.mission-vision-section .vision-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  border: 2px solid #D4D4D8;
  height: 100%;
  transition: all 0.3s ease;
}
.mission-vision-section .mission-card:hover,
.mission-vision-section .vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border-color: #462D86;
}
.mission-vision-section .mission-card .mission-icon,
.mission-vision-section .mission-card .vision-icon,
.mission-vision-section .vision-card .mission-icon,
.mission-vision-section .vision-card .vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #462D86, rgb(89.9441340782, 57.8212290503, 172.1787709497));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 30px;
}
.mission-vision-section .mission-card .mission-title,
.mission-vision-section .mission-card .vision-title,
.mission-vision-section .vision-card .mission-title,
.mission-vision-section .vision-card .vision-title {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 20px;
}
.mission-vision-section .mission-card .mission-text,
.mission-vision-section .mission-card .vision-text,
.mission-vision-section .vision-card .mission-text,
.mission-vision-section .vision-card .vision-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #262F2E;
}

.values-section {
  padding: 80px 200px;
  background: #F9FAFB;
}
@media (max-width: 1399px) {
  .values-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .values-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .values-section {
    padding: 50px 20px;
  }
}
.values-section .value-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 2px solid #D4D4D8;
  height: 100%;
  transition: all 0.3s ease;
}
.values-section .value-card:hover {
  transform: translateY(-8px);
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border-color: #462D86;
}
.values-section .value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}
.values-section .value-card .value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #462D86, rgb(89.9441340782, 57.8212290503, 172.1787709497));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}
.values-section .value-card .value-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 15px;
}
.values-section .value-card .value-description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #979797;
  margin: 0;
}

.founder-section {
  padding: 80px 200px;
  background: #FFFFFF;
}
@media (max-width: 1399px) {
  .founder-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .founder-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .founder-section {
    padding: 50px 20px;
  }
}
.founder-section .founder-card {
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05), rgba(70, 45, 134, 0.02));
  border-radius: 30px;
  padding: 60px;
  box-shadow: 20px 30px 40px 0px rgba(0, 0, 0, 0.05);
  border: 2px solid #462D86;
}
@media (max-width: 767px) {
  .founder-section .founder-card {
    padding: 40px 30px;
  }
}
.founder-section .founder-card .founder-image-wrapper {
  position: relative;
}
.founder-section .founder-card .founder-image-wrapper .founder-image {
  width: 100%;
  border-radius: 25px;
  box-shadow: 22px 40px 40px 0px rgba(0, 0, 0, 0.05);
}
.founder-section .founder-card .founder-image-wrapper .founder-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #FFFFFF;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #462D86;
}
.founder-section .founder-card .founder-image-wrapper .founder-badge i {
  color: #462D86;
}
.founder-section .founder-card .founder-content {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .founder-section .founder-card .founder-content {
    padding-left: 0;
    padding-top: 40px;
  }
}
.founder-section .founder-card .founder-content .founder-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 999px;
  margin-bottom: 20px;
}
.founder-section .founder-card .founder-content .founder-badge-top .dot {
  width: 10px;
  height: 10px;
  background: #462D86;
  border-radius: 50%;
}
.founder-section .founder-card .founder-content .founder-badge-top span {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #462D86;
}
.founder-section .founder-card .founder-content .founder-name {
  font-family: "Manrope", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 10px;
}
.founder-section .founder-card .founder-content .founder-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #979797;
  margin-bottom: 25px;
}
.founder-section .founder-card .founder-content .founder-bio {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #262F2E;
  margin-bottom: 20px;
}
.founder-section .founder-card .founder-content .founder-achievements {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.founder-section .founder-card .founder-content .founder-achievements .achievement-item {
  text-align: center;
}
.founder-section .founder-card .founder-content .founder-achievements .achievement-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 5px;
}
.founder-section .founder-card .founder-content .founder-achievements .achievement-item p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
  margin: 0;
}

.about-stats-section {
  padding: 80px 200px;
  background: linear-gradient(135deg, #462D86, rgb(89.9441340782, 57.8212290503, 172.1787709497));
}
@media (max-width: 1399px) {
  .about-stats-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .about-stats-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .about-stats-section {
    padding: 50px 20px;
  }
}
.about-stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.about-stats-section .stats-grid .stat-item {
  text-align: center;
  color: #FFFFFF;
}
.about-stats-section .stats-grid .stat-item .stat-number {
  font-family: "Manrope", sans-serif;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FFFFFF, rgb(131.0810055866, 102.6592178771, 203.8407821229));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .about-stats-section .stats-grid .stat-item .stat-number {
    font-size: 48px;
  }
}
.about-stats-section .stats-grid .stat-item .stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  opacity: 0.9;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-hero-section {
  padding: 140px 200px 60px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
  text-align: center;
}
@media (max-width: 1399px) {
  .contact-hero-section {
    padding: 140px 100px 60px;
  }
}
@media (max-width: 991px) {
  .contact-hero-section {
    padding: 120px 50px 50px;
  }
}
@media (max-width: 767px) {
  .contact-hero-section {
    padding: 100px 20px 40px;
  }
}
.contact-hero-section .contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-hero-section .contact-hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(70, 45, 134, 0.1);
  border-radius: 999px;
  margin-bottom: 25px;
}
.contact-hero-section .contact-hero-content .hero-badge .dot {
  width: 12px;
  height: 12px;
  background: #462D86;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.contact-hero-section .contact-hero-content .hero-badge span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #462D86;
}
.contact-hero-section .contact-hero-content .contact-hero-title {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1.15;
  color: #462D86;
  margin-bottom: 20px;
}
.contact-hero-section .contact-hero-content .contact-hero-title .em {
  font-weight: 700;
}
@media (max-width: 1199px) {
  .contact-hero-section .contact-hero-content .contact-hero-title {
    font-size: 52px;
  }
}
@media (max-width: 991px) {
  .contact-hero-section .contact-hero-content .contact-hero-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .contact-hero-section .contact-hero-content .contact-hero-title {
    font-size: 34px;
  }
}
.contact-hero-section .contact-hero-content .contact-hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #979797;
}

.contact-content-section {
  padding: 80px 200px;
}
@media (max-width: 1399px) {
  .contact-content-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .contact-content-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .contact-content-section {
    padding: 50px 20px;
  }
}

.contact-form-wrapper .contact-form-card {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D4D4D8;
}
@media (max-width: 767px) {
  .contact-form-wrapper .contact-form-card {
    padding: 40px 30px;
  }
}
.contact-form-wrapper .contact-form-card .contact-form-title {
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 10px;
}
.contact-form-wrapper .contact-form-card .contact-form-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #979797;
  margin-bottom: 35px;
}
.contact-form-wrapper .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .contact-form-wrapper .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form-wrapper .contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form-wrapper .contact-form .form-group .form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #262F2E;
  margin-bottom: 8px;
}
.contact-form-wrapper .contact-form .form-group .form-label i {
  color: #462D86;
}
.contact-form-wrapper .contact-form .form-group .form-input,
.contact-form-wrapper .contact-form .form-group .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #D4D4D8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262F2E;
  transition: all 0.3s ease;
}
.contact-form-wrapper .contact-form .form-group .form-input:focus,
.contact-form-wrapper .contact-form .form-group .form-textarea:focus {
  outline: none;
  border-color: #462D86;
  box-shadow: 0 0 0 4px rgba(70, 45, 134, 0.1);
}
.contact-form-wrapper .contact-form .form-group .form-textarea {
  resize: vertical;
}
.contact-form-wrapper .contact-form .form-group select.form-input {
  cursor: pointer;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-wrapper .contact-info-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D4D4D8;
  transition: all 0.3s ease;
}
.contact-info-wrapper .contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
  border-color: #462D86;
}
.contact-info-wrapper .contact-info-card .contact-info-title {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-wrapper .contact-info-card .contact-info-title i {
  color: #462D86;
  font-size: 18px;
  width: 24px;
  text-align: center;
}
.contact-info-wrapper .contact-info-card .contact-info-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #262F2E;
  margin: 0;
  padding-left: 34px;
}
.contact-info-wrapper .contact-info-card .contact-info-text a {
  color: #462D86;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info-wrapper .contact-info-card .contact-info-text a:hover {
  color: rgb(50.0558659218, 32.1787709497, 95.8212290503);
  text-decoration: underline;
}
.contact-info-wrapper .contact-social-card {
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05), rgba(70, 45, 134, 0.02));
  border-radius: 25px;
  padding: 30px;
  border: 2px solid #462D86;
}
.contact-info-wrapper .contact-social-card .contact-social-title {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 20px;
}
.contact-info-wrapper .contact-social-card .social-links {
  display: flex;
  gap: 15px;
}
.contact-info-wrapper .contact-social-card .social-links .social-link {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: 2px solid #D4D4D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #462D86;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-info-wrapper .contact-social-card .social-links .social-link:hover {
  background: #462D86;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.contact-info-wrapper .contact-social-card .social-links .social-link i {
  font-size: 20px;
}

.contact-faq-section {
  padding: 80px 200px;
  background: #F9FAFB;
}
@media (max-width: 1399px) {
  .contact-faq-section {
    padding: 80px 100px;
  }
}
@media (max-width: 991px) {
  .contact-faq-section {
    padding: 60px 50px;
  }
}
@media (max-width: 767px) {
  .contact-faq-section {
    padding: 50px 20px;
  }
}
.contact-faq-section .faq-accordion .faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 2px solid #D4D4D8;
  overflow: hidden;
  transition: all 0.3s ease;
}
.contact-faq-section .faq-accordion .faq-item:hover {
  border-color: #462D86;
}
.contact-faq-section .faq-accordion .faq-item.active {
  border-color: #462D86;
  box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.contact-faq-section .faq-accordion .faq-item .faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-faq-section .faq-accordion .faq-item .faq-question:hover {
  background: rgba(70, 45, 134, 0.05);
}
.contact-faq-section .faq-accordion .faq-item .faq-question h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.contact-faq-section .faq-accordion .faq-item .faq-question i {
  color: #462D86;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.contact-faq-section .faq-accordion .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.contact-faq-section .faq-accordion .faq-item .faq-answer p {
  padding: 0 30px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #262F2E;
  margin: 0;
}

.static-page-hero {
  padding: 140px 200px 60px;
  background: linear-gradient(135deg, rgba(70, 45, 134, 0.05) 0%, #FFFFFF 100%);
  text-align: center;
}
@media (max-width: 1399px) {
  .static-page-hero {
    padding: 140px 100px 60px;
  }
}
@media (max-width: 991px) {
  .static-page-hero {
    padding: 120px 50px 50px;
  }
}
@media (max-width: 767px) {
  .static-page-hero {
    padding: 100px 20px 40px;
  }
}
.static-page-hero .static-page-header {
  max-width: 900px;
  margin: 0 auto;
}
.static-page-hero .static-page-header .static-page-title {
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #462D86;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .static-page-hero .static-page-header .static-page-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .static-page-hero .static-page-header .static-page-title {
    font-size: 32px;
  }
}
.static-page-hero .static-page-header .static-page-meta {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #979797;
}

.static-page-content-section {
  padding: 60px 200px 80px;
}
@media (max-width: 1399px) {
  .static-page-content-section {
    padding: 60px 100px 80px;
  }
}
@media (max-width: 991px) {
  .static-page-content-section {
    padding: 50px 50px 60px;
  }
}
@media (max-width: 767px) {
  .static-page-content-section {
    padding: 40px 20px 50px;
  }
}

.static-page-content .static-content-wrapper {
  background: #FFFFFF;
  border-radius: 25px;
  padding: 60px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #D4D4D8;
}
@media (max-width: 767px) {
  .static-page-content .static-content-wrapper {
    padding: 40px 30px;
  }
}
.static-page-content .static-content-wrapper h2 {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #462D86;
  margin: 40px 0 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #D4D4D8;
}
.static-page-content .static-content-wrapper h2:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .static-page-content .static-content-wrapper h2 {
    font-size: 24px;
  }
}
.static-page-content .static-content-wrapper h3 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 30px 0 15px;
}
@media (max-width: 767px) {
  .static-page-content .static-content-wrapper h3 {
    font-size: 20px;
  }
}
.static-page-content .static-content-wrapper p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #262F2E;
  margin-bottom: 20px;
}
.static-page-content .static-content-wrapper ul, .static-page-content .static-content-wrapper ol {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #262F2E;
  margin: 20px 0;
  padding-left: 30px;
}
.static-page-content .static-content-wrapper ul li, .static-page-content .static-content-wrapper ol li {
  margin-bottom: 12px;
}
.static-page-content .static-content-wrapper ul li::marker, .static-page-content .static-content-wrapper ol li::marker {
  color: #462D86;
}
.static-page-content .static-content-wrapper a {
  color: #462D86;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.static-page-content .static-content-wrapper a:hover {
  color: rgb(50.0558659218, 32.1787709497, 95.8212290503);
  text-decoration: underline;
}
.static-page-content .static-content-wrapper strong {
  font-weight: 700;
  color: #000000;
}
.static-page-content .static-content-wrapper em {
  font-style: italic;
}
.static-page-content .static-content-wrapper blockquote {
  border-left: 4px solid #462D86;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #6B7280;
}
.static-page-content .static-content-wrapper code {
  background: #F9FAFB;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: #462D86;
}
.static-page-content .static-content-wrapper pre {
  background: #F9FAFB;
  padding: 20px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 20px 0;
}
.static-page-content .static-content-wrapper pre code {
  background: none;
  padding: 0;
}
.static-page-content .static-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}
.static-page-content .static-content-wrapper table th, .static-page-content .static-content-wrapper table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #D4D4D8;
}
.static-page-content .static-content-wrapper table th {
  background: rgba(70, 45, 134, 0.05);
  font-weight: 700;
  color: #462D86;
}
.static-page-content .static-content-wrapper hr {
  border: none;
  border-top: 2px solid #D4D4D8;
  margin: 40px 0;
}

body.rtl,
html[dir=rtl] {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", "Tajawal", "Poppins", sans-serif !important;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl h5, body.rtl h6,
body.rtl .hero-main-title,
body.rtl .section-title,
body.rtl .hero-kpi-title, body.rtl .price-main, body.rtl .price-old, body.rtl .discount-badge,
html[dir=rtl] h1,
html[dir=rtl] h2,
html[dir=rtl] h3,
html[dir=rtl] h4,
html[dir=rtl] h5,
html[dir=rtl] h6,
html[dir=rtl] .hero-main-title,
html[dir=rtl] .section-title,
html[dir=rtl] .hero-kpi-title,
html[dir=rtl] .price-main,
html[dir=rtl] .price-old,
html[dir=rtl] .discount-badge {
  font-family: "Cairo", "Tajawal", sans-serif !important;
}
body.rtl .btn, body.rtl .btn-primary-custom, body.rtl .navbar .nav-menu .nav-link,
html[dir=rtl] .btn,
html[dir=rtl] .btn-primary-custom,
html[dir=rtl] .navbar .nav-menu .nav-link {
  font-family: "Cairo", "Tajawal", sans-serif !important;
}
body.rtl .btn-text-only,
html[dir=rtl] .btn-text-only {
  font-size: 15px;
}
body.rtl .btn-primary-custom,
html[dir=rtl] .btn-primary-custom {
  font-size: 13px;
  padding: 14px 16px;
  font-weight: 700;
}
body.rtl .navbar .nav-menu,
html[dir=rtl] .navbar .nav-menu {
  gap: 18px;
}
body.rtl .featured-course-section .carousel-control-prev,
html[dir=rtl] .featured-course-section .carousel-control-prev {
  right: 50%;
  left: auto;
  margin-left: 0;
  margin-right: -70px;
}
body.rtl .featured-course-section .carousel-control-prev .carousel-control-prev-icon,
html[dir=rtl] .featured-course-section .carousel-control-prev .carousel-control-prev-icon {
  transform: scaleX(-1);
}
body.rtl .featured-course-section .carousel-control-next,
html[dir=rtl] .featured-course-section .carousel-control-next {
  right: 50%;
  left: auto;
  margin-left: 0;
  margin-right: 14px;
}
body.rtl .featured-course-section .carousel-control-next .carousel-control-next-icon,
html[dir=rtl] .featured-course-section .carousel-control-next .carousel-control-next-icon {
  transform: scaleX(-1);
}
body.rtl .courses-sidebar .sidebar-section.sidebar-header,
html[dir=rtl] .courses-sidebar .sidebar-section.sidebar-header {
  justify-content: flex-start;
}

body.rtl .navbar,
html[dir=rtl] .navbar {
  direction: rtl;
}
body.rtl .navbar .container-fluid,
html[dir=rtl] .navbar .container-fluid {
  direction: rtl;
  flex-direction: row-reverse;
}
body.rtl .navbar .container-fluid > .navbar-brand,
html[dir=rtl] .navbar .container-fluid > .navbar-brand {
  order: 4;
  margin-left: auto;
  margin-right: 0;
}
body.rtl .navbar .container-fluid > .navbar-toggler,
html[dir=rtl] .navbar .container-fluid > .navbar-toggler {
  order: 1;
  margin-left: 0;
  margin-right: auto;
}
body.rtl .navbar .container-fluid > .navbar-collapse,
html[dir=rtl] .navbar .container-fluid > .navbar-collapse {
  order: 3;
}
body.rtl .navbar .container-fluid > .navbar-actions,
html[dir=rtl] .navbar .container-fluid > .navbar-actions {
  order: 2;
}
body.rtl .navbar .navbar-collapse,
html[dir=rtl] .navbar .navbar-collapse {
  direction: rtl;
  text-align: right;
}
body.rtl .navbar .navbar-actions,
html[dir=rtl] .navbar .navbar-actions {
  margin-left: 0;
  margin-right: auto;
}
body.rtl .navbar .nav-menu,
html[dir=rtl] .navbar .nav-menu {
  direction: rtl;
  justify-content: center;
}
body.rtl .navbar .nav-menu .nav-item,
html[dir=rtl] .navbar .nav-menu .nav-item {
  direction: rtl;
}
body.rtl .navbar .nav-menu .nav-link,
html[dir=rtl] .navbar .nav-menu .nav-link {
  direction: rtl;
  text-align: right;
}
body.rtl .navbar .nav-menu .cta-content h2,
html[dir=rtl] .navbar .nav-menu .cta-content h2 {
  font-size: 70px;
}

body.rtl .btn img,
html[dir=rtl] .btn img {
  transform: scaleX(-1);
}
body.rtl .btn i.fa-arrow-right,
html[dir=rtl] .btn i.fa-arrow-right {
  transform: scaleX(-1);
}
body.rtl .btn i.fa-arrow-left,
html[dir=rtl] .btn i.fa-arrow-left {
  transform: scaleX(-1);
}

body.rtl .form-group label,
html[dir=rtl] .form-group label {
  text-align: right;
}
body.rtl .form-group label i,
html[dir=rtl] .form-group label i {
  margin-left: 8px;
  margin-right: 0;
}
body.rtl .form-group input,
body.rtl .form-group textarea,
body.rtl .form-group select,
html[dir=rtl] .form-group input,
html[dir=rtl] .form-group textarea,
html[dir=rtl] .form-group select {
  text-align: right;
}

body.rtl .card,
html[dir=rtl] .card {
  text-align: right;
}

body.rtl .d-flex.justify-content-start,
html[dir=rtl] .d-flex.justify-content-start {
  justify-content: flex-end;
}
body.rtl .d-flex.justify-content-end,
html[dir=rtl] .d-flex.justify-content-end {
  justify-content: flex-start;
}
body.rtl .text-left,
html[dir=rtl] .text-left {
  text-align: right !important;
}
body.rtl .text-right,
html[dir=rtl] .text-right {
  text-align: left !important;
}

body.rtl .ms-auto,
html[dir=rtl] .ms-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}
body.rtl .me-auto,
html[dir=rtl] .me-auto {
  margin-right: 0 !important;
  margin-left: auto !important;
}
body.rtl .ps-3,
html[dir=rtl] .ps-3 {
  padding-left: 0 !important;
  padding-right: 1rem !important;
}
body.rtl .pe-3,
html[dir=rtl] .pe-3 {
  padding-right: 0 !important;
  padding-left: 1rem !important;
}

body.rtl .profile-nav .profile-nav-item,
html[dir=rtl] .profile-nav .profile-nav-item {
  text-align: right;
}
body.rtl .profile-nav .profile-nav-item i,
html[dir=rtl] .profile-nav .profile-nav-item i {
  margin-left: 10px;
  margin-right: 0;
}

body.rtl .course-card-content,
html[dir=rtl] .course-card-content {
  text-align: right;
}
body.rtl .course-card-content .course-card-footer .continue-btn i,
html[dir=rtl] .course-card-content .course-card-footer .continue-btn i {
  transform: scaleX(-1);
}

body.rtl .dashboard-course-card,
html[dir=rtl] .dashboard-course-card {
  text-align: right;
}

body.rtl .dropdown-menu,
html[dir=rtl] .dropdown-menu {
  text-align: right;
  left: auto;
  right: 0;
}

body.rtl .modal .modal-header .btn-close,
html[dir=rtl] .modal .modal-header .btn-close {
  margin-left: 0;
  margin-right: auto;
}

body.rtl .footer,
html[dir=rtl] .footer {
  text-align: right;
}
body.rtl .footer .footer-links,
html[dir=rtl] .footer .footer-links {
  text-align: right;
}

body.rtl .icon-arrow-right,
body.rtl .fa-arrow-right,
html[dir=rtl] .icon-arrow-right,
html[dir=rtl] .fa-arrow-right {
  transform: scaleX(-1);
}
body.rtl .icon-arrow-left,
body.rtl .fa-arrow-left,
html[dir=rtl] .icon-arrow-left,
html[dir=rtl] .fa-arrow-left {
  transform: scaleX(-1);
}

/*# sourceMappingURL=styles.css.map */
