@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Colors */
/* border */
/* Box Shadow */
/* Utility: visually hidden (for accessibility) */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* prevent line breaks */
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 999;
  padding: 1rem;
  background: #0eb582;
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* Form feedback */
.form-feedback {
  margin-top: 0.8rem;
  color: #0eb582;
  font-size: 1.4rem;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: #0eb582;
}

section {
  padding: 5rem 7%;
  padding-bottom: 2rem;
}

.heading-link {
  text-align: center;
  margin-top: -1.5rem;
  margin-bottom: -4rem;
  padding: 3rem 0;
}
.heading-link h3 {
  font-size: 4rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-weight: 800;
  letter-spacing: 1px;
}
.heading-link p {
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.heading-link p a {
  color: #0eb582;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.heading-link p a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.heading {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #0eb582 0%, #06a86d 50%, #a8fae1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  padding-bottom: 2.5rem;
  letter-spacing: 1px;
}
.heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 5px;
  background: linear-gradient(90deg, transparent, #0eb582, transparent);
  border-radius: 3px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 25px rgba(14, 181, 130, 0.1);
  padding: 0.8rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header:hover {
  box-shadow: 0 6px 30px rgba(14, 181, 130, 0.15);
}

/* When header is fixed to top while scrolling */
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 130;
  animation: slideDown 0.35s ease-out forwards;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5%;
  background: linear-gradient(135deg, #0eb582 0%, #06a86d 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(14, 181, 130, 0.15);
  z-index: 120;
  font-weight: 500;
}
.topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 70%;
  flex-wrap: wrap;
}
.topbar .contact-info .adress, .topbar .contact-info .email, .topbar .contact-info .phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.3px;
}
.topbar .contact-info i {
  color: #1A4CF4;
  padding: 0.7rem;
  border-radius: 50%;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
}
.topbar .contact-info p {
  margin: 0;
}
.topbar .social-media {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 30%;
  justify-content: flex-end;
}
.topbar .social-media a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.7rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
}
.topbar .social-media a:hover {
  transform: translateY(-4px) scale(1.05);
  background: #fff;
  color: #0eb582;
  box-shadow: 0 12px 30px rgba(14, 181, 130, 0.3);
  border-color: #0eb582;
}
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.8rem 4%;
  }
  .topbar .contact-info, .topbar .social-media {
    width: 100%;
    justify-content: flex-start;
  }
  .topbar .social-media {
    order: 2;
  }
  .topbar .contact-info p {
    display: none;
  }
  .topbar .contact-info i, .topbar .social-media a {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.logo img {
  width: 150px;
}

.navbar #close {
  display: none;
}

.navbar a {
  margin: 0 3rem;
  text-decoration: none;
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-weight: 650;
}
.navbar a:hover {
  color: #0eb582;
}

.navbar-link.active {
  color: #0eb582;
  font-weight: 700;
  padding: 14% 0;
  margin: 0 3rem;
  position: relative;
}

/* Dropdown menu for Pages */
.navbar-dropdown {
  position: relative;
  display: inline-block;
}

.navbar-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar-dropdown-toggle:hover {
  color: #0eb582;
}
.navbar-dropdown-toggle i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.navbar-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.navbar-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0eb582;
  color: #fff;
  min-width: 180px;
  max-height: 0;
  border-top: #444 3px solid;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(14, 181, 130, 0.15);
  transition: max-height 0.3s ease, padding 0.3s ease;
  z-index: 100;
}
.navbar-dropdown-menu.show {
  max-height: 350px;
  padding: 0.5rem 0 0;
  display: block;
}
.navbar-dropdown-menu.show .dropdown-link {
  font-size: 1.7rem;
  border-bottom: 0.01px solid #c9c9c9;
  color: #fff;
}
.navbar-dropdown-menu.show .dropdown-link:hover {
  color: #444;
  padding-left: 2rem;
}

.dropdown-link {
  display: block;
  padding: 0.8rem 1.5rem;
  margin: 1rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
  border-bottom: 0.01px solid #c9c9c9;
  transition: all 0.2s ease;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* Active user icon (when on authentication page) */
}
.icons a {
  color: #444;
  font-size: 2.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.icons i {
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icons i:hover {
  color: #0eb582;
}
.icons #user-btn.active-user,
.icons .icons i.active-user {
  color: #0eb582;
  transform: scale(1.08);
}
.icons h3 a {
  text-decoration: none;
  color: #000;
}

.icons #menu-btn {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
  pointer-events: all;
}

.account-form {
  background-image: url(../images/bg-auth-2.jpg);
  background-size: cover;
  background-position: center;
  z-index: 1000;
  padding-bottom: 5rem;
  padding-top: 8rem;
  margin-bottom: -3rem;
}
.account-form .fullForm {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-top: 2rem;
  border-radius: 12px;
  padding: 2rem;
  width: 42rem;
  max-width: 100%;
  margin: auto;
  background: rgba(255, 255, 255, 0.5);
}
.account-form .fullForm form #togglePassword {
  position: absolute;
  right: 6rem;
  top: 39.5%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #444;
}
.account-form .fullForm form #toggleConfirm {
  position: absolute;
  right: 6rem;
  top: 54%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #444;
}
.account-form .fullForm form #togglePasswordSup {
  position: absolute;
  right: 6rem;
  top: 38.5%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #444;
}
.account-form .fullForm form .orSignUp span {
  font-size: 1.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.account-form .fullForm form .orSignUp .icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.account-form .fullForm form .orSignUp .icons a i {
  color: #0eb582;
}
.account-form .fullForm form .orSignUp .icons a i:hover {
  color: #a8fae1;
}
.account-form #close-form {
  padding: 0;
  margin: 0;
}
.account-form #close-form i {
  margin-left: 90%;
  font-size: 2.9rem;
  color: #0eb582;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}
.account-form #close-form i:hover {
  color: #a8fae1;
  transform: rotate(180deg);
}
.account-form form {
  position: relative;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.account-form form h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
  color: #0eb582;
  font-weight: 700;
}
.account-form form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 2px solid #a8fae1;
  font-size: 1.6rem;
  margin: 1.2rem 0;
  border-radius: 8px;
  outline: none;
  background: rgba(14, 181, 130, 0.05);
  transition: all 0.3s ease;
}
.account-form form .box:focus {
  border-color: #0eb582;
  background: rgba(14, 181, 130, 0.1);
  box-shadow: 0 0 0 3px rgba(14, 181, 130, 0.1);
}
.account-form form .flex {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.account-form form .flex input[type=checkbox] {
  accent-color: #0eb582;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.account-form form .flex label {
  font-size: 1.5rem;
  color: #777;
  cursor: pointer;
}
.account-form form .flex a {
  font-size: 1.5rem;
  color: #0eb582;
  text-decoration: none;
  margin-left: auto;
  transition: all 0.3s ease;
}
.account-form form .flex a:hover {
  text-decoration: underline;
  color: #0a8a6a;
}
.account-form form .btnSub {
  width: 100%;
  padding: 1.3rem 2.2rem;
  border: none;
  font-size: 1.7rem;
  margin: 1.5rem 0;
  border-radius: 10px;
  text-transform: capitalize;
  background: linear-gradient(135deg, #0eb582 0%, #06a86d 50%, #a8fae1 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(14, 181, 130, 0.25);
  letter-spacing: 0.5px;
}
.account-form form .btnSub:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(14, 181, 130, 0.4);
}
.account-form form .btnSub:active {
  transform: translateY(-1px);
}
.account-form form .sIn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.account-form form .sIn span {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
}
.account-form form .sIn .togLink {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #0eb582;
  margin-left: 5px;
}
.account-form form .sIn .togLink:hover {
  cursor: pointer;
  text-decoration: underline;
}
.account-form form #message {
  background: #f44336;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  transition: opacity 0.5s;
}

.home {
  padding: 0;
}
.home .swiper-wrapper .swiper-slide.slide {
  display: flex;
  align-items: center;
  height: 53rem;
  background-color: teal;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home .swiper-wrapper .swiper-slide.slide.n1 {
  background-image: url(../images/home-bg1.png);
}
.home .swiper-wrapper .swiper-slide.slide.n2 {
  background-image: url(../images/home-bg-4.QAAHhw);
}
.home .swiper-wrapper .swiper-slide.slide.n3 {
  background-image: url(../images/home-bg1.png);
}
.home .swiper-wrapper .content {
  width: 55rem;
}
.home .swiper-wrapper .content h3 {
  font-size: 5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  letter-spacing: 1px;
}
.home .swiper-wrapper .content p {
  font-size: 2.2rem;
  line-height: 1.8;
  color: #777;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 4rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.home .swiper-wrapper .content .btn {
  padding: 1.4rem 3rem;
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  text-transform: capitalize;
  background: linear-gradient(135deg, #0eb582 0%, #06a86d 50%, #a8fae1 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(14, 181, 130, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.home .swiper-wrapper .content .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(14, 181, 130, 0.45);
}
.home .swiper-wrapper .content .btn:active {
  transform: translateY(-2px);
}

.swiper-pagination-bullet-active {
  background: #0eb582;
}

.subjects {
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.5) 0%, rgb(255, 255, 255) 100%);
}
.subjects .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.subjects .box-container .box {
  padding: 3rem 1rem;
  text-align: center;
  border: 2px solid #a8fae1;
  background: #fff;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 181, 130, 0.08);
  position: relative;
  overflow: hidden;
}
.subjects .box-container .box::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 ease;
}
.subjects .box-container .box:hover {
  background: linear-gradient(135deg, #f0fdfa 0%, #a8fae1 100%);
  border-color: #0eb582;
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(14, 181, 130, 0.2);
}
.subjects .box-container .box:hover::before {
  left: 100%;
}
.subjects .box-container .box img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.subjects .box-container .box h3 {
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1rem 0;
  margin-top: 1rem;
}
.subjects .box-container .box p {
  font-size: 1.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.home-courses .slide {
  text-align: center;
  position: relative;
  background: #a8fae1;
  border-radius: 8px;
  overflow: hidden;
}
.home-courses .slide:hover .content {
  bottom: 0;
}
.home-courses .slide .image {
  padding: 2rem;
}
.home-courses .slide .image img {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}
.home-courses .slide .image h3 {
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.home-courses .slide .content {
  position: absolute;
  bottom: -100%;
  right: 0;
  left: 0;
  background: #0eb582;
  padding: 2rem 3rem;
}
.home-courses .slide .content h3 {
  font-size: 2.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}
.home-courses .slide .content p {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1rem 0;
  color: #eee;
  margin-bottom: 2rem;
}
.home-courses .slide .content .btn {
  padding: 1rem 2.4rem;
  border: 1px solid #0eb582;
  font-size: 2rem;
  margin: 0.7rem 0;
  border-radius: 12px;
  text-transform: capitalize;
  background: #a8fae1;
  color: #444;
  font-weight: 600;
}
.home-courses .slide .content .btn:hover {
  background: #fff;
  color: #0eb582;
  transform: scale(1.05);
}

.about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.about .image {
  flex: 1 1 40rem;
}
.about .image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(14, 181, 130, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about .image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(14, 181, 130, 0.25);
}
.about .content {
  flex: 1 1 40rem;
}
.about .content .about-title {
  font-size: 3.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.about .content p {
  font-size: 1.8rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1rem 0;
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.8;
}
.about .content .icons-container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 2rem;
  gap: 1.5rem;
}
.about .content .icons-container .icons {
  flex: 1 1 12rem;
  text-align: center;
  padding: 2rem 1.5rem;
  display: block;
  border: 2px solid #a8fae1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(14, 181, 130, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about .content .icons-container .icons:hover {
  border-color: #0eb582;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(14, 181, 130, 0.2);
  background: linear-gradient(135deg, #f0fdfa 0%, #a8fae1 100%);
}
.about .content .icons-container .icons img {
  height: 10rem;
  margin-bottom: 1.7rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.about .content .icons-container .icons img:hover {
  transform: scale(1.05);
}
.about .content .icons-container .icons h3 {
  font-size: 2.3rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.about .content .icons-container .icons span {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.teachers .slide {
  text-align: center;
  width: 30rem;
  background: #f0fdfa;
  border-radius: 8px;
}
.teachers .slide:hover .image img {
  background: #0eb582;
}
.teachers .slide:hover .image .share {
  bottom: 0;
}
.teachers .slide .image {
  position: relative;
  overflow: hidden;
  margin: 1rem;
  border-bottom: 1px solid #0eb582;
}
.teachers .slide .image img {
  background: #f0fdfa;
  width: 100%;
  border-radius: 4px;
}
.teachers .slide .image .share {
  position: absolute;
  bottom: -15rem;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 2rem;
}
.teachers .slide .image .share a {
  font-size: 2rem;
  margin: 0 2rem;
  color: #fff;
}
.teachers .slide .image .share a:hover {
  color: #0eb582;
}
.teachers .slide .content {
  display: flex;
  padding-top: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
  background: #a8fae1;
  padding: 0.2rem 1rem;
  border-radius: 4px;
}
.teachers .slide .content h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.teachers .slide .content span {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.reviews {
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
}
.reviews .heading {
  text-align: center;
  margin-bottom: 3rem;
  color: #0eb582;
  position: relative;
  padding-bottom: 2rem;
}
.reviews .heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0eb582, transparent);
  border-radius: 2px;
}
.reviews .slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 2px solid #a8fae1;
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 1.5rem;
  min-height: 380px;
  box-shadow: 0 8px 20px rgba(14, 181, 130, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.reviews .slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(14, 181, 130, 0.2);
  border-color: #0eb582;
}
.reviews .slide img {
  height: 8rem;
  width: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0eb582;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(14, 181, 130, 0.15);
}
.reviews .slide p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #777;
  letter-spacing: 0.3px;
  order: -1;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #444;
  padding: 1.5rem;
  background: #f0fdfa;
  border-left: 4px solid #0eb582;
  border-radius: 8px;
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews .slide p::before {
  content: "❝";
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  font-size: 3rem;
  color: #0eb582;
  opacity: 0.3;
}
.reviews .slide h3 {
  font-size: 1.8rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 1rem 0;
  font-weight: 600;
}
.reviews .slide .stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: #0eb582;
  margin-top: auto;
}
.reviews .slide .stars i {
  transition: all 0.2s ease;
}
.reviews .slide .stars i:hover {
  transform: scale(1.15);
}

.courses {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(240, 253, 250, 0.5) 100%);
}
.courses .course-controls {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.courses .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
  gap: 4rem;
}
.courses .box-container .box {
  border: 2px solid #a8fae1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}
.courses .box-container .box:hover {
  box-shadow: 0 12px 35px rgba(14, 181, 130, 0.2);
  border-color: #0eb582;
  transform: translateY(-4px) scale(1.005);
  transition: all 0.3s ease;
}
.courses .box-container .box.hide {
  display: none;
}
.courses .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  position: relative;
}
.courses .box-container .box .image img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.courses .box-container .box .image h3 {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1.5rem;
  background: #a8fae1;
  border-radius: 4px;
}
.courses .box-container .box:hover .image img {
  transform: scale(1.05) translateY(-8px);
}
.courses .box-container .box .content {
  padding: 2rem;
  text-align: center;
}
.courses .box-container .box h3 {
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.courses .box-container .box p {
  padding: 1rem 0;
  font-size: 1.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.courses .box-container .box .btn {
  padding: 0.8rem 1.8rem;
  border: none;
  font-size: 1.8rem;
  margin: 1rem 0;
  margin-top: 2rem;
  border-radius: 10px;
  text-transform: capitalize;
  background: linear-gradient(135deg, #0eb582 0%, #06a86d 50%, #a8fae1 100%);
  color: #fff;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 18px rgba(14, 181, 130, 0.2);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.courses .box-container .box .btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(14, 181, 130, 0.3);
}
.courses .box-container .box .icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #0eb582;
}
.courses .box-container .box span {
  font-size: 1.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.courses .box-container .box span i {
  color: #0eb582;
  padding: 0.5rem;
  margin: 0 1rem;
}
.courses .box-container .box .course-meta {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
  margin: 1.5rem 0;
  border-bottom: 1px solid #a8fae1;
}
.courses .box-container .box .course-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.courses .box-container .box .course-footer {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #0eb582;
}
.courses .box-container .box .course-footer .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0eb582;
}
.courses .box-container .box .course-footer .price.free {
  color: #ff6b6b;
  font-size: 1.8rem;
}
.courses .box-container .box .course-footer .price.free::before {
  content: "FREE";
  display: block;
  font-size: 1rem;
  color: #777;
  font-weight: 500;
  letter-spacing: 1px;
}
.courses .box-container .box .course-footer .btn {
  flex: 1;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 1.5rem;
}
.courses .box-container .box .course-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(14, 181, 130, 0.85);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  z-index: 1;
}
.courses .courses-slider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.courses .courses-slider #courseContainer {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: #0eb582 #f0fdfa;
  flex: 1;
  height: auto;
}
.courses .courses-slider #courseContainer::-webkit-scrollbar {
  height: 8px;
}
.courses .courses-slider #courseContainer::-webkit-scrollbar-track {
  background: #f0fdfa;
  border-radius: 4px;
}
.courses .courses-slider #courseContainer::-webkit-scrollbar-thumb {
  background: #0eb582;
  border-radius: 4px;
}
.courses .courses-slider #courseContainer .box {
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 28rem;
}
@media (max-width: 991px) {
  .courses .courses-slider #courseContainer .box {
    flex: 0 0 calc(50% - 1rem);
    min-width: 24rem;
  }
}
@media (max-width: 768px) {
  .courses .courses-slider #courseContainer .box {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
.courses .courses-slider .scroll-btn {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #0eb582 0%, #a8fae1 100%);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(14, 181, 130, 0.25);
}
.courses .courses-slider .scroll-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(14, 181, 130, 0.35);
}
.courses .courses-slider .scroll-btn:active {
  transform: scale(0.95);
}
.courses .courses-slider .scroll-btn i {
  font-size: 1.6rem;
}
.courses .courses-slider .scroll-left, .courses .courses-slider .scroll-right {
  position: static;
}
.courses .courses-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.courses .courses-pagination .pagination-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  border: 2px solid #0eb582;
  background: #fff;
  color: #0eb582;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.courses .courses-pagination .pagination-btn:hover {
  background: #f0fdfa;
  transform: translateY(-2px);
}
.courses .courses-pagination .pagination-btn.active {
  background: linear-gradient(135deg, #0eb582 0%, #a8fae1 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 181, 130, 0.3);
}
.courses .courses-pagination .pagination-btn:active {
  transform: scale(0.95);
}
.courses .load-more {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 1.5rem;
}
.courses .load-more .btn {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #0eb582;
  font-size: 1.8rem;
  margin: 0.7rem 0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-transform: capitalize;
  background: #f0fdfa;
  color: #0eb582;
  font-weight: 600;
  text-align: center;
}
.courses .load-more .btn img {
  display: block;
  height: 3;
  width: 3rem;
}
.courses .load-more .btn:hover {
  color: white;
  background: #a8fae1;
  transform: scale(1.05);
}

.courses-slider {
  display: flex;
  align-items: center;
  gap: 10px;
}

#courseContainer {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: #0eb582 #f0fdfa;
  flex: 1;
  height: auto;
}
#courseContainer::-webkit-scrollbar {
  height: 8px;
}
#courseContainer::-webkit-scrollbar-track {
  background: #f0fdfa;
  border-radius: 4px;
}
#courseContainer::-webkit-scrollbar-thumb {
  background: #0eb582;
  border-radius: 4px;
}
#courseContainer::-webkit-scrollbar-thumb:hover {
  background: #06a86d;
}
#courseContainer .box {
  flex: 0 0 calc(33.333% - 1.35rem);
  min-width: 28rem;
}
@media (max-width: 991px) {
  #courseContainer .box {
    flex: 0 0 calc(50% - 1rem);
    min-width: 24rem;
  }
}
@media (max-width: 768px) {
  #courseContainer .box {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Mobile: stack vertically and allow vertical scroll of exactly 3 items */
@media (max-width: 768px) {
  #courseContainer {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: none; /* JS will set exact height to show 3 items */
    padding: 1rem;
  }
  #courseContainer::-webkit-scrollbar {
    width: 6px;
  }
  #courseContainer::-webkit-scrollbar-track {
    background: #f0fdfa;
    border-radius: 4px;
  }
  #courseContainer::-webkit-scrollbar-thumb {
    background: #0eb582;
    border-radius: 4px;
  }
  /* Ensure scroll buttons are visible and aligned for mobile */
  .courses-slider {
    align-items: flex-start;
  }
  .courses-slider .scroll-left, .courses-slider .scroll-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.8rem;
    height: 3.8rem;
    margin: 0.4rem 0.5rem;
  }
  /* Pagination styling (mobile) */
  .courses-pagination {
    margin-top: 0.8rem;
  }
}
.university-logos {
  text-align: center;
  padding: 5rem 2rem;
  background: #f0fdfa;
  border-radius: 8px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.university-logos h2 {
  font-size: 2.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 3rem;
  color: #0eb582;
}
.university-logos .universities-swiper {
  max-width: 100%;
}
.university-logos .universities-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.university-logos .universities-swiper .swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1.5rem rgba(14, 181, 130, 0.2);
}
.university-logos .universities-swiper .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.university-logos .swiper-pagination {
  margin-top: 2rem;
}
.university-logos .swiper-pagination .swiper-pagination-bullet {
  background: #0eb582;
  opacity: 0.5;
  cursor: pointer;
}
.university-logos .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.scroll-btn {
  padding: 10px 15px;
  margin: 0 10px;
  background-color: #0eb582;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.scroll-btn:hover {
  background-color: #09966c;
  transform: scale(1.05);
}

.contact .icons-container {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.contact .icons-container .icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-align: center;
  padding: 3rem 2rem;
  border: 2px solid #a8fae1;
  background: #fff;
  box-shadow: 0 6px 20px rgba(14, 181, 130, 0.08);
  transition: all 0.3s ease;
}
.contact .icons-container .icons:hover {
  background: linear-gradient(135deg, #f0fdfa 0%, #a8fae1 100%);
  border-color: #0eb582;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(14, 181, 130, 0.2);
}
.contact .icons-container .icons h3 {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.contact .icons-container .icons h3 a {
  font-size: 1.7rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #0eb582;
}
.contact .icons-container .icons h3 a:hover {
  text-decoration: underline;
  color: #0a8a6a;
}
.contact .icons-container .icons h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.contact .icons-container .icons i {
  height: 5rem;
  width: 5rem;
  line-height: 3rem;
  font-size: 2rem;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #0eb582 0%, #a8fae1 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(14, 181, 130, 0.2);
  transition: all 0.3s ease;
}
.contact .icons-container .icons i:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(14, 181, 130, 0.3);
}
.contact .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact .row .image {
  flex: 1 1 40rem;
}
.contact .row .image img {
  width: 100%;
}
.contact .row form {
  flex: 1 1 40rem;
  border: 1px solid #0eb582;
  border-radius: 4px;
  padding: 2rem;
}
.contact .row form h3 {
  font-size: 2.5rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-bottom: 1rem;
}
.contact .row form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 1px solid #0eb582;
  border-radius: 8px;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}
.contact .row form .box:focus {
  background: #f0fdfa;
}
.contact .row form .box textarea {
  height: 15rem;
  resize: none;
}
.contact .row form .btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid #0eb582;
  font-size: 1.7rem;
  margin: 0.7rem 0;
  border-radius: 8px;
  text-transform: capitalize;
  background: #f0fdfa;
  color: #0eb582;
  font-weight: 600;
  align-items: center;
}
.contact .row form .btn:hover {
  color: white;
  background: #0eb582;
  transform: scale(1.05);
}

.faq .accordion-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.faq .accordion-container .accordion {
  flex: 1 1 40rem;
  border: 1px solid #0eb582;
}
.faq .accordion-container .accordion.active .accordion-heading {
  background: #0eb582;
}
.faq .accordion-container .accordion.active .accordion-heading h3 {
  color: #fff;
}
.faq .accordion-container .accordion.active .accordion-heading i {
  color: #fff;
  transform: rotate(180deg);
}
.faq .accordion-container .accordion.active .accordion-content {
  display: block;
}
.faq .accordion-container .accordion .accordion-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.5rem;
}
.faq .accordion-container .accordion .accordion-heading h3 {
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.faq .accordion-container .accordion .accordion-heading i {
  font-size: 2rem;
  color: #0eb582;
}
.faq .accordion-container .accordion .accordion-content {
  padding: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #777;
  letter-spacing: 0.3px;
  border-top: 1px solid #0eb582;
  display: none;
}

.scrollTopBtn {
  text-decoration: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0eb582 0%, #ffffff 40%, #a8fae1 100%);
  color: #fff;
  width: 55px;
  height: 55px;
  text-align: center;
  border: none;
  border-radius: 50%;
  z-index: 10;
  display: none;
  box-shadow: 0 10px 35px rgba(14, 181, 130, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  animation: floatUp 3s ease-in-out infinite;
}
.scrollTopBtn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 16px 50px rgba(14, 181, 130, 0.5);
}
.scrollTopBtn:active {
  transform: translateY(-4px) scale(1.05);
}
.scrollTopBtn img {
  text-align: center;
  margin-top: 8px;
  width: 28px;
  height: 28px;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* Loading overlay with spinner */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}
.loading-overlay.active {
  display: flex;
}
.loading-overlay .spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(14, 181, 130, 0.3);
  border-top-color: #0eb582;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Footer section */
.footer {
  background: linear-gradient(135deg, #444 0%, #2a2a2a 100%);
  margin-top: 25px;
  color: #fff;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.footer .container .box .logo {
  margin-bottom: 2rem;
  display: inline-block;
}
.footer .container .box .logo img {
  width: 150px;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}
.footer .container .box .logo:hover img {
  filter: brightness(1.3);
}
.footer .container .box .footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.footer .container .box .social-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.footer .container .box .social-list a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14, 181, 130, 0.15);
  color: #0eb582;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.footer .container .box .social-list a:hover {
  background: #0eb582;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 181, 130, 0.3);
}
.footer .container .box h3 {
  font-size: 2.2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1rem 0;
  color: #fff;
  font-weight: 600;
}
.footer .container .box .link {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #777;
  letter-spacing: 0.3px;
  padding: 0.5rem 0;
  text-decoration: none;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.footer .container .box .link:hover {
  color: #0eb582;
  padding-left: 0.8rem;
}
.footer .container .box p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #777;
  letter-spacing: 0.3px;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer .container .box form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer .container .box form .email {
  flex: 1;
  padding: 1.2rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}
.footer .container .box form .email::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer .container .box form .email::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer .container .box form .email:focus {
  border-color: #0eb582;
  background: rgba(14, 181, 130, 0.1);
}
.footer .container .box form .btn {
  padding: 0.8rem 1.4rem;
  border: none;
  font-size: 1.6rem;
  border-radius: 6px;
  text-transform: capitalize;
  background: linear-gradient(135deg, #0eb582 0%, #a8fae1 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer .container .box form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 181, 130, 0.3);
}
.footer .copyright {
  text-align: center;
  font-size: 2rem;
  text-transform: capitalize;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 2px solid rgba(14, 181, 130, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1200px) {
  html {
    font-size: 60%;
    scroll-behavior: smooth;
  }
  .header {
    width: 100%;
    padding: 0.4rem 4%;
  }
  section {
    padding: 3.5rem 5%;
    padding-bottom: 1.5rem;
  }
  .heading {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
  .home-courses .slide .content .btn,
  .courses .box .btn,
  .contact form .btn {
    font-size: 1.5rem;
    min-height: 44px;
  }
  .btn {
    transition: all 0.3s ease;
  }
  .btn:active {
    transform: scale(0.98);
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
    scroll-behavior: smooth;
  }
  * {
    -webkit-tap-highlight-color: rgba(14, 181, 130, 0.1);
  }
  section {
    padding: 3rem 3%;
    padding-bottom: 1.5rem;
  }
  .header {
    width: 100%;
    padding: 0.4rem 3%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .heading {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .topbar .contact-info {
    width: 100%;
  }
  .topbar .social-media {
    width: 100%;
  }
  .navbar a {
    margin: 0 2rem;
    font-size: 1.8rem;
    padding: 0.5rem;
  }
  .home .slide .content {
    min-height: auto;
  }
  .home .slide .content .btn {
    min-height: 44px;
  }
  .about {
    gap: 3rem;
  }
  .about .image, .about .content {
    flex: 1 1 30rem;
  }
  .contact .row {
    flex-direction: column;
    gap: 2rem;
  }
  .contact .row .image, .contact .row form {
    flex: 1 1 100%;
  }
  .university-logos {
    padding: 4rem 1.5rem;
  }
  button, .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
         user-select: none;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
  }
  * {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
  .topbar {
    display: none;
  }
  .header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 3%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header .logo img {
    width: 120px;
    height: auto;
  }
  .header .icons #menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    padding: 0.5rem;
    cursor: pointer;
    min-height: 48px;
    min-width: 48px;
  }
  .header .icons a {
    margin-left: 1rem;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .topbar {
    padding: 0.6rem 3%;
  }
  .topbar .contact-info {
    gap: 0.8rem;
  }
  .topbar .contact-info .adress, .topbar .contact-info .email, .topbar .contact-info .phone {
    gap: 0.5rem;
    font-size: 1.4rem;
  }
  .topbar .contact-info p {
    display: none;
  }
  .topbar .social-media {
    justify-content: flex-start;
  }
  .topbar .social-media a {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
    min-height: 44px;
    min-width: 44px;
  }
  .navbar {
    position: fixed;
    top: 0;
    right: -105%;
    width: 50vw;
    background: #fff;
    height: 90vh;
    overflow-y: auto;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .navbar #close {
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
  }
  .navbar.active {
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8), -2px 0 10px rgba(0, 0, 0, 0.2);
    right: 0;
  }
  .navbar a {
    display: block;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 4rem;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
  }
  .navbar a:hover {
    background: #f0fdfa;
    color: #0eb582;
  }
  .navbar a:active {
    background: #a8fae1;
  }
  .navbar #close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3rem;
    color: #444;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
  }
  .navbar #close:hover {
    color: #0eb582;
  }
  .navbar-dropdown {
    display: block;
    width: 100%;
  }
  .navbar-dropdown .navbar-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    color: #444;
  }
  .navbar-dropdown .navbar-dropdown-toggle.active {
    background: #0eb582;
    color: #fff;
  }
  .navbar-dropdown .navbar-dropdown-menu {
    position: static;
    background: #fff;
    width: 100%;
    top: 100%;
    box-shadow: none;
    padding: 1rem;
    margin: 1rem 3rem;
    border: #444 0.1px solid;
  }
  .navbar-dropdown .navbar-dropdown-menu .dropdown-link {
    display: block;
    font-size: 2.5rem;
    padding: 0.75rem 1rem;
    color: #444;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar-dropdown .navbar-dropdown-menu .dropdown-link:hover {
    background: #f0fdfa;
    color: #0eb582;
  }
  section {
    padding: 3rem 2.5%;
  }
  .heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .heading-link {
    margin-top: 0;
    margin-bottom: -2rem;
  }
  .heading-link h3 {
    font-size: 3rem;
  }
  .heading-link p {
    font-size: 1.6rem;
  }
  .home .swiper-slide.slide {
    height: 40rem;
  }
  .home .slide .content {
    width: 100%;
    padding: 2rem;
  }
  .home .slide .content h3 {
    font-size: 2.5rem;
  }
  .home .slide .content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .home .slide .content .btn {
    padding: 1rem 2rem;
    font-size: 1.6rem;
    min-height: 50px;
    border-radius: 8px;
  }
  .subjects .box-container {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1.2rem;
  }
  .subjects .box-container .box {
    padding: 2rem 1rem;
    border-radius: 8px;
  }
  .subjects .box-container .box img {
    height: 90px;
    width: 90px;
  }
  .subjects .box-container .box h3 {
    font-size: 1.6rem;
  }
  .home-courses .slide {
    border-radius: 8px;
  }
  .home-courses .slide .image {
    padding: 1rem;
  }
  .home-courses .slide .content {
    padding: 1.5rem 2rem;
  }
  .home-courses .slide .content .btn {
    padding: 0.8rem 1.6rem;
    min-height: 44px;
  }
  .courses .box-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .courses .box {
    border-radius: 10px;
    overflow: hidden;
  }
  .courses .box:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: none scale(1);
    animation: none;
  }
  .courses .box .image {
    height: 18rem;
  }
  .courses .box .content {
    padding: 1.2rem;
    text-align: left;
  }
  .courses .box h3 {
    font-size: 1.8rem;
    text-transform: capitalize;
    color: #444;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .courses .box p {
    font-size: 1.4rem;
    text-transform: capitalize;
    color: #444;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
  }
  .courses .box .btn {
    font-size: 1.6rem;
    padding: 0.6rem 1rem;
    margin-top: 1rem;
  }
  .courses .box .course-meta {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.6rem;
  }
  .courses .box .course-footer {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .courses .box .course-footer .btn {
    width: 100%;
    padding: 0.6rem 1rem;
  }
  .courses .box .course-footer .price {
    font-size: 2rem;
  }
  .courses .box .course-category {
    font-size: 1.2rem;
    padding: 0.35rem 0.9rem;
  }
  .courses .courses-slider #courseContainer .box {
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }
  .courses .courses-slider .scroll-btn {
    display: none;
  }
  .about {
    flex-direction: column;
    gap: 2rem;
  }
  .about .image, .about .content {
    flex: 1 1 100%;
  }
  .teachers .slide {
    width: 100%;
    border-radius: 8px;
  }
  .contact .icons-container {
    gap: 1.5rem;
  }
  .contact .icons-container .icons {
    padding: 2rem 1.5rem;
    border-radius: 8px;
  }
  .contact .icons-container .icons i {
    min-height: 44px;
    min-width: 44px;
  }
  .contact .row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact .row form {
    order: 1;
    padding: 1.5rem;
    border-radius: 8px;
  }
  .contact .row form .box {
    padding: 1rem;
    min-height: 44px;
    border-radius: 6px;
  }
  .contact .row form .btn {
    min-height: 48px;
    font-size: 1.6rem;
  }
  .faq .accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .faq .accordion-container .accordion {
    border: 1px solid #0eb582;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    height: auto;
  }
  .faq .accordion-container .accordion .accordion-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    min-height: 52px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: background 0.25s ease;
  }
  .faq .accordion-container .accordion .accordion-heading h3 {
    font-size: 1.5rem;
    margin: 0;
  }
  .faq .accordion-container .accordion .accordion-heading i {
    font-size: 1.4rem;
    color: #0eb582;
    transition: transform 0.25s ease;
  }
  .faq .accordion-container .accordion .accordion-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    font-size: 1.4rem;
    line-height: 1.6;
    border-top: 1px solid #0eb582;
    transition: max-height 0.32s ease, padding 0.32s ease;
  }
  .faq .accordion-container .accordion.active {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .faq .accordion-container .accordion.active .accordion-heading i {
    transform: rotate(180deg);
  }
  .faq .accordion-container .accordion.active .accordion-content {
    display: block;
    padding: 0.9rem 1rem;
    max-height: 700px; /* allow adequate expansion on mobile */
  }
  .university-logos {
    padding: 2rem 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
  }
  .university-logos h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .university-logos .universities-swiper .swiper-slide {
    height: 85px;
    padding: 0.8rem;
    border-radius: 6px;
  }
  .university-logos .universities-swiper .swiper-slide img {
    max-height: 90%;
    max-width: 90%;
  }
  .university-logos .swiper-pagination {
    margin-top: 1.5rem;
  }
  .university-logos .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .footer .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer .container .box {
    text-align: center;
  }
  .footer .container .box h3 {
    font-size: 1.8rem;
  }
  .footer .container .box .link {
    font-size: 1.4rem;
  }
  .footer .container .box p {
    font-size: 1.4rem;
  }
  .footer .copyright {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
  .scrollTopBtn {
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    min-height: 40px;
    min-width: 40px;
  }
  .scrollTopBtn img {
    width: 24px;
    height: 24px;
    margin-top: 1px;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 48%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
  }
  * {
    -webkit-tap-highlight-color: transparent;
  }
  section {
    padding: 2rem 1rem;
  }
  .heading {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .header {
    padding: 0.25rem 1%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  }
  .header .logo img {
    width: 90px;
  }
  .header .icons {
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
  .header .icons i {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .icons a {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .topbar {
    padding: 0.4rem 1%;
  }
  .topbar .contact-info .adress, .topbar .contact-info .email, .topbar .contact-info .phone {
    font-size: 1rem;
  }
  .topbar .contact-info i {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
    min-height: 40px;
    min-width: 40px;
  }
  .topbar .social-media a {
    width: 32px;
    height: 32px;
    min-height: 40px;
    min-width: 40px;
  }
  .navbar {
    width: 55%;
  }
  .home .swiper-slide.slide {
    height: 30rem;
  }
  .home .slide .content {
    padding: 1rem;
    max-width: 60%;
    margin-bottom: 1.5rem;
  }
  .home .slide .content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .home .slide .content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .home .slide .content .btn {
    font-size: 1.4rem;
    display: inline-block;
    text-align: center;
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .subjects .box-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .subjects .box-container .box {
    padding: 1rem 0.3rem;
    border-radius: 4px;
  }
  .subjects .box-container .box img {
    height: 70px;
    width: 70px;
  }
  .subjects .box-container .box h3 {
    font-size: 1.2rem;
  }
  .home-courses .slide {
    border-radius: 4px;
  }
  .courses .box {
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  .courses .box .image {
    height: 16rem;
  }
  .courses .box .btn {
    min-height: 40px;
  }
  .courses .box .icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .courses .box .image {
    height: 14rem;
  }
  .courses .box .content {
    padding: 1rem;
  }
  .courses .box .btn {
    font-size: 1.4rem;
    padding: 0.5rem 0.8rem;
  }
  .courses .box .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .courses .box .course-footer .price {
    font-size: 1.8rem;
  }
  .courses .box .course-category {
    top: 0.8rem;
    left: 0.8rem;
    font-size: 1.1rem;
  }
  .about .icons-container {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .reviews .slide {
    padding: 2rem 1.2rem;
    min-height: 340px;
    margin: 0.8rem 0;
    border-radius: 8px;
  }
  .reviews .slide p {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
  }
  .reviews .slide img {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
  }
  .reviews .slide h3 {
    font-size: 1.4rem;
    margin: 0.8rem 0;
  }
  .reviews .slide .stars {
    gap: 0.3rem;
    font-size: 1.1rem;
  }
  .contact .icons-container {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .contact .icons-container .icons {
    padding: 1.2rem 0.8rem;
    border-radius: 4px;
  }
  .contact .icons-container .icons i {
    height: 3.5rem;
    width: 3.5rem;
    font-size: 1.6rem;
    min-height: 40px;
    min-width: 40px;
  }
  .contact .row {
    flex-direction: column;
    gap: 1rem;
  }
  .contact .row form {
    order: 1;
    padding: 1.5rem;
    border-radius: 6px;
  }
  .contact .row form h3 {
    font-size: 2rem;
  }
  .contact .row form .box {
    padding: 0.9rem 1rem;
    font-size: 1.4rem;
    margin: 0.8rem 0;
    min-height: 44px;
    border-radius: 6px;
  }
  .contact .row form .box:focus {
    background: #f0fdfa;
    border: 1px solid #0eb582;
  }
  .contact .row form textarea {
    height: 12rem;
    resize: none;
  }
  .contact .row form .btn {
    padding: 0.9rem;
    font-size: 1.5rem;
    min-height: 48px;
    width: 100%;
    border-radius: 6px;
  }
  .faq {
    padding: 2rem 7%;
    padding-bottom: 2rem;
    max-width: 768px;
    margin: 0 auto;
  }
  .faq .accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .faq .accordion-container .accordion {
    border: 1px solid #0eb582;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 1rem;
  }
  .faq .accordion-container .accordion .accordion-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.2rem;
    min-height: 56px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    transition: background 0.3s ease;
  }
  .faq .accordion-container .accordion .accordion-heading h3 {
    font-size: 1.6rem;
    margin: 0;
  }
  .faq .accordion-container .accordion .accordion-heading i {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
    color: #0eb582;
  }
  .faq .accordion-container .accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.2rem;
    font-size: 1.45rem;
    line-height: 1.6;
    border-top: 1px solid #0eb582;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .faq .accordion-container .accordion.active {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  .faq .accordion-container .accordion.active .accordion-content {
    padding: 1rem 1.2rem;
    max-height: 800px; /* large enough for content */
  }
  .faq .accordion-container .accordion.active .accordion-heading i {
    transform: rotate(180deg);
  }
  .university-logos {
    padding: 2rem 1rem;
    margin-top: 1.5rem;
    border-radius: 8px;
  }
  .university-logos h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .university-logos .universities-swiper .swiper-slide {
    height: 85px;
    padding: 0.8rem;
    border-radius: 6px;
  }
  .university-logos .universities-swiper .swiper-slide img {
    max-height: 90%;
    max-width: 90%;
  }
  .university-logos .swiper-pagination {
    margin-top: 1.5rem;
  }
  .university-logos .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .footer .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer .container .box {
    text-align: center;
  }
  .footer .container .box h3 {
    font-size: 1.8rem;
  }
  .footer .container .box .link {
    font-size: 1.4rem;
  }
  .footer .container .box p {
    font-size: 1.4rem;
  }
  .footer .copyright {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
  .scrollTopBtn {
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    min-height: 40px;
    min-width: 40px;
  }
  .scrollTopBtn img {
    width: 24px;
    height: 24px;
    margin-top: 1px;
  }
}/*# sourceMappingURL=style.css.map */