/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --text-color: #999999;
  --highlight-color: #ead64b;
  --background-color: #fff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #249bdd;
  --surface-color: #000000;
  --white-color: #ffffff;
  --title-color: #27336c;
  --red-color: #e1195f;
  --bg-gray: #e9edf0;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f8f8f8;
  --nav-hover-color: #249bdd;
  --nav-mobile-background-color: #1b1a1a;
  --nav-dropdown-background-color: #1b1a1a;
  --nav-dropdown-color: #f8f8f8;
  --nav-dropdown-hover-color: #249bdd;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Source Sans Pro", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  font-family: "Source Sans Pro", sans-serif;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "Source Sans Pro", sans-serif;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1220px;
  }
}

/*====== Preloader CSS Start here ======*/
.preloader-wrapper {
  position: fixed;
  inset: 0;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.loader-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  /* background: var(--accent-color); */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
  margin-bottom: 12px;
}
.loader-avatar img {
  height: 50px;
  width: auto;
}
.preloader h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: blink 1.4s infinite ease-in-out both;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Hide animation */
.preloader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
/*====== Preloader CSS End here ======*/

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.nav-two .header {
  color: var(--surface-color);
  background-color: var(--white-color);
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 76px;
  margin-right: 8px;
  filter: brightness(0) saturate(100%) invert(41%) sepia(66%) saturate(545%)
    hue-rotate(169deg) brightness(97%) contrast(92%);
}
.scrolled .header .logo img {
  filter: none;
}
.nav-two .header .logo img {
  filter: none;
}

.btns-area {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.nav-two .header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--surface-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-right: 15px;
}
.header-action-btn {
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--default-color);
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-right: 15px;
}
.scrolled .header-action-btn {
  color: var(--surface-color);
}
.scrolled .header-action-btn:hover {
  color: var(--accent-color);
}
.header-action-btn i {
  font-size: 24px;
}
.header-action-btn .cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--white-color);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-action-btn .cart-badge:hover {
  color: var(--white-color);
}
.get-started {
  margin-top: -4px;
}
.nav-two .header .btn-getstarted {
  color: var(--white-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}
.nav-two .header .btn-getstarted:hover {
  color: var(--white-color);
}
.header .btn-getstarted {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  /* .header .logo {
    order: 1;
  } */

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 8px 17px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 60px;
  }
}
@media screen and (max-width: 475px) {
  .header .logo img {
    max-height: 50px;
  }
  .header-action-btn {
    margin-right: 10px;
  }
  .header .btn-getstarted {
    padding: 8px 14px;
  }
  .nav-two .header .btn-getstarted {
    padding: 8px 14px;
  }
}
@media screen and (max-width: 377px) {
  .header .btn-getstarted {
    padding: 8px 8px;
    margin: 0 5px 0 0;
  }

  .mobile-nav-toggle {
    margin-right: 0 !important;
  }
}
.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* optional border */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .nav-two .navmenu a,
  .nav-two .navmenu a:focus {
    color: var(--surface-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .scrolled .header .navmenu a {
    color: var(--surface-color);
  }
  .header .navmenu .dropdown ul li .active {
    color: var(--nav-hover-color);
  }
  .scrolled .header .navmenu .active {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--surface-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .nav-two .mobile-nav-toggle {
    color: var(--surface-color);
    font-size: 28px;
    line-height: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .scrolled .mobile-nav-toggle {
    color: var(--surface-color);
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--surface-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--white-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-banner {
  padding-top: 120px;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(../img/banner/hero-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 96%) 0%,
    var(--background-color) 40%,
    color-mix(in srgb, var(--accent-color), transparent 98%) 100%
  ); */
  padding-bottom: 60px;
}

.hero-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
    transparent 70%
  ); */
  top: 0;
  left: 0;
  z-index: 1;
}

.sub-banner {
  padding-top: 120px;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(../img/banner/hero-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 60px;
}

.sub-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 85%) 0%,
    transparent 70%
  ); */
  top: 0;
  left: 0;
  z-index: 1;
}

.hero .hero-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.hero-main-content {
  position: relative;
  z-index: 22;
}
.hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.1;
  margin-bottom: 17px;
  letter-spacing: 1px;
}
.hero-subtitle {
  margin-top: 30px;
  margin-bottom: 30px;
}
.hero-subtitle2 {
  margin-top: 30px;
  margin-bottom: 7px;
  text-align: left;
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .hero .hero-title {
    font-size: 28px;
  }
}

.hero .hero-description {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-main-content p {
  margin: 0;
  padding: 0;
  color: var(--text-color);
}
.hero-main-content h6 {
  color: var(--highlight-color);
  font-weight: 400;
}
.hero .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.hero .hero-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero .hero-actions .action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .hero-actions .action-btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), #8b5cf6 30%) 0%,
    var(--accent-color) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero .hero-actions .action-btn.primary span,
.hero .hero-actions .action-btn.primary i {
  position: relative;
  z-index: 1;
}

.hero .hero-actions .action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .action-btn.primary:hover::before {
  opacity: 1;
}

.hero .hero-actions .action-btn.secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero .hero-actions .action-btn.secondary:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-image-showcase {
  position: relative;
}

.hero .hero-image-showcase .image-wrapper {
  position: relative;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 60px
    color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero .hero-image-showcase .image-wrapper img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.hero .hero-image-showcase .floating-card {
  position: absolute;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 30px
    color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.hero .hero-image-showcase .floating-card.card-1 {
  top: 20%;
  left: -60px;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-image-showcase .floating-card.card-2 {
  bottom: 15%;
  right: -60px;
  animation: float 3s ease-in-out infinite reverse;
}

.hero .hero-image-showcase .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.hero .hero-image-showcase .floating-card .card-content .card-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.hero .hero-image-showcase .floating-card .card-content .card-info p {
  margin: 5px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.85rem;
  white-space: nowrap;
}
.hero-list {
  text-align: center;
  margin: 0 auto;
}
.hero-list ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
.hero-list ul li {
  list-style: none;
  margin: 5px 10px;
}

.exam-list ul {
  margin: 0;
  padding: 0;
  text-align: left;
  margin: 0 186px;
}
.exam-list ul li {
  list-style: none;
  margin-left: 25px;
  padding: 4px 0;
}
.exam-list ul li i {
  position: absolute;
  margin-left: -25px;
  font-size: 18px;
}
.arro-img {
  margin-top: 50px;
}
.arro-img span a {
  color: var(--white-color);
}
.arro-img img {
  margin-top: -45px;
  height: 100px;
  width: auto;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }

  .hero .floating-card.card-1 {
    left: -30px;
    top: 10%;
  }

  .hero .floating-card.card-2 {
    right: -30px;
    bottom: 10%;
  }

  .hero .hero-actions {
    margin-bottom: 40px;
  }
  .exam-list ul {
    margin: 0 100px;
  }
}

@media (max-width: 768px) {
  .hero .hero-actions {
    align-items: center;
    gap: 15px;
  }

  .hero .hero-actions .action-btn {
    padding: 8px 25px;
    font-size: 15px;
  }

  .hero .floating-card {
    display: none;
  }
  .hero-list ul li {
    list-style: none;
    display: block;
    margin: 0 10px;
    padding: 3px 0;
  }
  .arro-img {
    margin-top: 30px;
  }
  .arro-img img {
    margin-top: -45px;
    height: 80px;
    width: auto;
  }
  .exam-list ul {
    margin: 0 50px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 130px 0 80px 0;
  }

  .hero .hero-badge {
    margin-bottom: 20px;
  }

  .hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero .hero-actions {
    margin-bottom: 30px;
  }
  .exam-list ul {
    margin: 0 20px;
  }
}
@media screen and (max-width: 425px) {
  .exam-list ul {
    margin: 0;
  }
  .exam-list ul li {
    padding: 2px 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  background-color: #fff;
  padding: 60px 0;
}
.clients .section_title {
  margin-bottom: 50px;
}

.clients .swiper-wrapper {
  height: auto;
}
.clients-slider .swiper-slide {
  flex: 0 0 auto;
}
.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.clients .swiper-slide img {
  height: 50px;
  transition: 0.3s;
  margin: 0 auto;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 50px;
  position: relative;
  text-align: center;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007bff; /* your accent color */
  width: 22px;
}

/* Equal gap look â€” keep JS as-is */
.clients .swiper-slide {
  width: 150px !important; /* fixed slide width makes spacing look even */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tweak widths per breakpoint to match your current spaceBetween setup */
@media (min-width: 640px) {
  .clients .swiper-slide {
    width: 160px !important;
  }
}
@media (min-width: 992px) {
  .clients .swiper-slide {
    width: 180px !important;
    height: none !important;
  }
}
.clients .swiper-slide {
  padding: 40px 10px;
  height: 0 !important;
}
/* Ensure logos donâ€™t stretch oddly */
.clients .swiper-slide img {
  max-width: 100%;
  height: 60px; /* you already use 40px, keep it */
  object-fit: contain;
}
@media screen and (max-width: 991px) {
  .clients .swiper-slide img {
    max-width: 100%;
    height: 50px; /* you already use 40px, keep it */
    object-fit: contain;
  }
}
@media screen and (max-width: 500px) {
  .clients .swiper-slide img {
    max-width: 100%;
    height: 50px; /* you already use 40px, keep it */
    object-fit: contain;
  }
}

@media screen and (max-width: 639px) {
  .clients .swiper-slide {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  .clients .section_title {
    margin-bottom: 0;
  }
  .clients .swiper-pagination {
    margin-top: 0;
  }
}

/*======== Course baner badge =========*/
.compo-package {
  margin-top: 40px;
}
.package-banner {
  width: 520px;
  padding: 20px 100px 20px 20px;
  margin: 0 auto;
  background-color: var(--red-color);
  border-radius: 10px;
  text-align: left;
}
.package-banner p {
  color: var(--white-color);
}
.discount-badge {
  padding: 5px;
  background-color: var(--white-color);
  height: 35px;
  width: 180px;
  border-radius: 5px;
  line-height: 25px;
  position: absolute;
  right: 150px;
  transform: rotate(40deg);
  margin-top: 18px;
  font-size: 14px;
  color: var(--surface-color);
}
@media screen and (max-width: 991px) {
  .discount-badge {
    padding: 5px;
    background-color: var(--white-color);
    height: 35px;
    width: 170px;
    border-radius: 5px;
    position: absolute;
    right: 50px;
    transform: rotate(40deg);
    font-size: 13px;
    color: var(--surface-color);
  }
}
@media screen and (max-width: 768px) {
  .discount-badge {
    padding: 5px;
    background-color: var(--white-color);
    height: 35px;
    width: 155px;
    border-radius: 5px;
    position: absolute;
    transform: rotate(50deg);
    font-size: 12px;
    color: var(--surface-color);
    margin: 0 auto;
    margin-top: 30px;
    right: -20px;
  }

  .package-banner {
    width: 100%;
    padding: 20px 100px 20px 20px;
    margin: 0 auto;
    background-color: var(--red-color);
    border-radius: 10px;
    text-align: left;
  }
}
@media screen and (max-width: 575px) {
}

/*--------------------------------------------------------------
# Topics learn slider Section
--------------------------------------------------------------*/
.topics-section {
  background-color: var(--bg-gray);
}
.section_title {
  text-align: center;
  margin-bottom: 40px;
}

.section_title h2 {
  font-size: 2rem;
  color: var(--surface-color);
  font-weight: 600;
  margin-top: 0.5rem;
}

.section_title small {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 17px;
}

.topics-section .swiper {
  padding-bottom: 2rem;
}
.topics-section .mySwiper {
  overflow: hidden;
  position: relative;
}
.topics-slider-wrapper {
  position: relative;
  z-index: 1;
  pointer-events: none; /* disables click outside */
}
.topics-slider-wrapper .swiper-slide {
  border-radius: 20px;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: 300px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--surface-color);
  position: relative;
}
/* Make default-content align to start */
.topics-slider-wrapper .swiper-slide .default-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* already added but ensure it’s there */
  height: 100%;
  margin-top: 100px; /* adjust if needed for more space below icon */
  /* padding-left: 10px;
  padding-right: 10px; */
}
.topics-slider-wrapper .swiper-slide .default-content h4 .color-blue {
  color: var(--accent-color);
}
.topics-slider-wrapper .swiper-slide .default-content p {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
}
/* Make hover-content vertically centered */
.topics-slider-wrapper .swiper-slide .hover-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  margin-top: -100px !important;
}
.topics-slider-wrapper .swiper-slide:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.topics-slider-wrapper .swiper-slide .card-icon {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  height: auto;
  width: auto;
  line-height: normal;
}
.topics-slider-wrapper .swiper-slide .card-icon img {
  height: 70px;
  width: 70px;
}
.topics-slider-wrapper .swiper-slide .icon {
  font-size: 20px;

  color: var(--accent-color);
  transition: opacity 0.3s ease;
}

.topics-slider-wrapper .swiper-slide:hover .card-icon {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.topics-slider-wrapper .swiper-slide h4,
.topics-slider-wrapper .swiper-slide p {
  transition: opacity 0.3s ease, color 0.3s ease;
  color: var(--surface-color);
}

.topics-slider-wrapper .swiper-slide:hover h4,
.topics-slider-wrapper .swiper-slide:hover p {
  color: var(--contrast-color);
}

.topics-slider-wrapper .swiper-slide .default-content {
  transition: opacity 0.3s ease;
  justify-content: start !important;
}

.topics-slider-wrapper .swiper-slide:hover .default-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.topics-section .swiper-slide .hover-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding-top: 15px;
}
.topics-section .swiper-slide .hover-content p {
  padding: 0;
  margin-bottom: 5px !important;
}
.topics-slider-wrapper .swiper-slide:hover .hover-content {
  opacity: 1;
  height: auto;
}
.topics-slider-wrapper .hover-content a {
  color: var(--highlight-color) !important;
}
.topics-slider-wrapper .topic-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #e50058;
  color: var(--white-color);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  font-weight: 500;
  z-index: 10;
}
.topics-slider-wrapper .topics-btn {
  text-align: center;
  display: flex;
  margin: 0 auto;
}
.topics-slider-wrapper .reserve-arrow {
  background: var(--title-color);
  color: var(--white-color);
  padding: 0.5rem 15px;
  border-radius: 8px;
  bottom: 1.5rem;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  border: none;
  outline: none;
  margin-top: 10px;
}
.reserve-arrow:hover {
  color: var(--white-color);
}
.swiper-slide:hover .reserve-arrow {
  opacity: 1 !important;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
  margin-bottom: 29px;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #a0dcf7;
  opacity: 1;
  height: 12px;
  width: 12px;
  transition: all 0.3s;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 25px;
  /* height: 9px; */
  border-radius: 6px;
}

/* Navigation arrows stay visible AND clickable */
.custom-swiper-prev,
.custom-swiper-next {
  pointer-events: auto; /* re-enable click on arrows */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  cursor: pointer;
  font-size: 18px !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 18px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.custom-swiper-prev {
  left: -30px;
}

.custom-swiper-next {
  right: -30px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .custom-swiper-prev,
  .custom-swiper-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .custom-swiper-prev {
    left: -15px;
  }
  .custom-swiper-next {
    right: -15px;
  }
  .topics-slider-wrapper .default-content h4 {
    font-size: 18px;
    font-weight: 600;
  }
  .topics-slider-wrapper .default-content p {
    font-size: 15px !important;
    font-weight: 600 !important;
  }
}

@media screen and (max-width: 768px) {
  .swiper-slide {
    padding: 15px 10px;

    height: 230px;
  }
  .hover-content p {
    line-height: 18px;
    padding: 0;
    margin: 0;
  }
  .swiper-android .swiper-slide,
  .swiper-ios .swiper-slide,
  .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 420px) {
  .top-course-section .swiper-slide .hover-content {
    margin-top: -23px;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/

.steps-section {
  padding-top: 60px;
}

.steps-section h2 {
  font-weight: 700;
  color: var(--title-color);
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.step-icon {
  background-color: var(--accent-color);
  color: var(--white-color);
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text h5 {
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 5px;
}

.step-text p {
  margin-bottom: 0;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 390px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 120px;
  z-index: 1;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.steps-section .step-play .play-btn {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--title-color);
  color: var(--white-color);
  padding: 18px 25px;
  border-radius: 12px;
  font-size: 30px;
  z-index: 5 !important;
}
.play-btn:hover {
  color: var(--white-color);
}

.steps-section .step-play .pulsating-play-btn2 {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  overflow: hidden;
}
.steps-section .step-play .pulsating-play-btn2:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.steps-section .step-play .pulsating-play-btn2:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Decorative circles - now partially shown like the image */
.circle-yellow {
  position: absolute;
  width: 140px;
  height: 140px;
  background-color: var(--highlight-color);
  border-radius: 50%;
  top: 40px;
  left: 30px;
  z-index: 3;
}

.circle-blue {
  position: absolute;
  width: 180px;
  height: 180px;
  background-color: var(--accent-color);
  border-radius: 50%;
  bottom: -70px;
  right: 100px;
  z-index: 0;
}

@media screen and (max-width: 1399px) {
  .circle-yellow {
    width: 140px;
    height: 140px;
    top: -30px;
    left: 20px;
  }
  .circle-blue {
    width: 150px;
    height: 150px;
    bottom: -70px;
    right: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .circle-yellow {
    width: 140px;
    height: 140px;
    top: -60px;
    left: 40px;
  }
  .circle-blue {
    width: 150px;
    height: 150px;
    bottom: -70px;
    right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .circle-yellow {
    width: 140px;
    height: 140px;
    top: -20px;
    left: 100px;
  }
  .circle-blue {
    width: 150px;
    height: 150px;
    bottom: -70px;
    right: 100px;
  }
  .step-left {
    margin-top: 60px;
  }
  .steps-section h2 {
    margin-bottom: 20px;
  }
  .step {
    margin-bottom: 30px;
  }
  .last-step {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .steps-section h2 {
    font-size: 2rem;
  }
  .step {
    align-items: flex-start;
    gap: 10px;
  }
  .image-container {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
  }
  .circle-yellow {
    width: 120px;
    height: 120px;
    top: -30px;
    left: 20px;
  }
  .circle-blue {
    width: 130px;
    height: 130px;
    bottom: -70px;
    right: 20px;
  }
}
/*--------------------------------------------------------------
# Top Course Section
--------------------------------------------------------------*/
.top-course-section {
  background-color: var(--bg-gray);
}

.topcourse-swiper .swiper-slide {
  height: auto;
  padding: 0;
  text-align: left;
  background-color: none !important;
  box-shadow: none !important;
}
.top-course-section .course-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  height: 410px !important;
  background: var(--default-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}
.topcourse-swiper .swiper-slide .hover-content {
  display: flex;
  flex-direction: column;
  align-items: start !important;
  height: 100%;
  text-align: left !important;
}

.course-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge-course {
  position: absolute;
  bottom: -12px;
  left: 30px;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 10px;
  z-index: 2;
}
.hover-content .badge-course2 {
  position: absolute;
  top: 40px;
  left: 30px;
  background: var(--highlight-color);
  color: var(--white-color);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 10px;
  z-index: 2;
}
.topcourse-slider-wrapper .hover-content .course-title {
  padding-top: 20px;
}
.course-body {
  padding: 30px;
  z-index: 2;
}

.defult-rating-area p.ms-1,
.hover-rating-area p.ms-1 {
  color: var(--red-color);
}

.defult-rating-area p {
  margin: 0;
  padding: 0;
}
.hover-rating-area p {
  margin: 0;
  padding: 0;
}
.hover-rating-area .reserve-now {
  margin-bottom: 20px;
}
.defult-rating-area .course-footer {
  display: flex;
  justify-content: space-between;
}
.defult-rating-area {
  position: absolute;
  bottom: 30px;
}
.hover-rating-area {
  position: absolute;
  bottom: 30px;
}
.defult-rating-area .course-price {
  font-size: 22px;
  font-weight: 600;
}
.defult-rating-area .rating {
  display: flex;
}
.hover-rating-area .rating {
  display: flex;
}
.defult-rating-area .rating .rating-number {
  margin-left: 5px;
  color: var(--surface-color);
  margin-top: 4px;
}
.hover-rating-area .rating .rating-number {
  margin-left: 5px;
  color: var(--white-color);
  margin-top: 4px;
}
.course-body p {
  color: var(--surface-color);
}
.course-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--title-color);
}
.hover-content .course-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--title-color);
  margin-top: 15px;
}
.course-title a {
  color: var(--white-color) !important;
  text-decoration: underline;
}
.course-title a:hover {
  color: var(--highlight-color) !important;
  text-decoration: underline;
}
.course-desc {
  font-size: 16px;
  color: var(--text-color);
}
.hover-content .course-desc {
  font-size: 16px;
  color: var(--white-color);
}
.course-price {
  font-weight: 600;
  color: var(--surface-color);
}
.hover-content .course-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--white-color);
}

.rating i {
  color: var(--highlight-color);
  font-size: 20px;
  padding: 0 1px;
  font-weight: 600;
}

.course-body .course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 10px;
}
.top-course-section .hover-content .course-footer {
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 10px;
}
.topcourse-swiper .hover-content .course-footer .course-price {
  position: absolute;
  right: 60px;
}

.top-course-section .hover-content {
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 30px;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
}
@media screen and (max-width: 420px) {
  .top-course-section .hover-content {
    top: 23px;
  }
}
.hover-content .reserve-now {
  padding: 9px 20px;
  background-color: var(--white-color);
  color: var(--surface-color);
  border: none;
  outline: none;
  margin-top: 20px;
  border-radius: 5px;
}
.hover-content .badge-course {
  background: var(--highlight-color);
  color: var(--surface-color);
}
.hover-content .tutor-icon img {
  height: 35px;
  width: 35px;
}
.hover-content .tutor-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0;
  font-weight: 600;
  font-size: 22px;
}
.hover-content .course-title {
  color: var(--white-color);
  font-size: 28px;
  margin-top: 30px;
}
.hover-content a {
  color: var(--white-color);
  display: block;
}
.hover-content .course-title,
.hover-content .rating i,
.hover-content .course-footer {
  color: var(--highlight-color);
}

.course-card:hover .hover-content {
  opacity: 1;
}

.topcourse-slider-wrapper .swiper {
  padding-bottom: 2rem;
}
.topcourse-slider-wrapper .topcourse-swiper {
  overflow: hidden;
  position: relative;
}
.topcourse-slider-wrapper {
  position: relative;
  z-index: 1;
  pointer-events: none; /* disables click outside */
}

/* Navigation arrows stay visible AND clickable */
.custom-swiper-prev2,
.custom-swiper-next2 {
  pointer-events: auto; /* re-enable click on arrows */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  cursor: pointer;
  font-size: 18px !important;
}
.swiper-button-next2:after,
.swiper-button-prev2:after {
  font-family: swiper-icons;
  font-size: 18px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.custom-swiper-prev {
  left: -30px;
}

.custom-swiper-next {
  right: -30px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .custom-swiper-prev,
  .custom-swiper-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .custom-swiper-prev {
    left: -15px;
  }
  .custom-swiper-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .course-img {
    height: 160px;
  }
  .hover-content .course-title {
    color: var(--white-color);
    font-size: 28px;
    margin-top: 42px;
  }
}

/*--------------------------------------------------------------
# Quaris Academy Section
--------------------------------------------------------------*/
.academy-dec {
  padding: 60px 70px;
  background-color: var(--accent-color);
  border-radius: 10px;
}

.title-dec {
  margin-bottom: 30px;
}
.title-dec h4 {
  font-weight: 600;
}
.bdr {
  height: 4px;
  width: 100px;
  background-color: var(--white-color);
  border-radius: 10px;
}
.academy-dec p {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 27px;
  color: var(--white-color);
}

@media screen and (max-width: 768px) {
  .academy-dec {
    padding: 20px;
  }
  .bdr {
    height: 4px;
    width: 80px;
  }
}

/*--------------------------------------------------------------
# Support contact Section
--------------------------------------------------------------*/

.support-section {
  padding: 60px 0;
}

.support-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.support-image-box {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  z-index: 1;
}

.support-image-wrapper {
  position: relative;
  display: inline-block;
  width: 270px;
  height: auto;
}

.support-image {
  position: relative;
  width: 100%;
  z-index: 1;
  display: block;
}
.square1 {
  height: 240px;
  width: 160px;
  background-color: #9399b5;
  margin-left: -30px;
  margin-bottom: -210px;
}
.square2 {
  height: 240px;
  width: 160px;
  background-color: #9399b5;
  text-align: right;
  margin-right: -30px;
  margin-top: -210px;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 475px) {
  .square1 {
    height: 240px;
    width: 160px;
    background-color: #9399b5;
    margin-left: -25px;
    margin-bottom: -215px;
  }
  .square2 {
    height: 240px;
    width: 160px;
    background-color: #9399b5;
    text-align: right;
    margin-right: -25px;
    margin-top: -215px;
    position: absolute;
    right: 0;
  }
}
.support-text-box {
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
.support-info-area {
  margin-top: 20px;
}
.support-info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.support-icon {
  width: 60px;
  height: 60px;
  background-color: var(--title-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  flex-shrink: 0;
}

.support-info-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--title-color);
}

.support-info-text a {
  color: var(--title-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .support-text-box {
    font-size: 1.3rem;
    margin-left: 10%;
  }

  .support-info-box {
    text-align: left;
    margin-left: 10%;
  }
  .support-info-area {
    margin-top: 0;
  }
  .support-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .support-info-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .support-info-box {
    margin-left: 0;
  }
  .support-text-box {
    margin-left: 0;
  }
}
@media screen and (max-width: 404px) {
  .support-text-box br {
    display: none;
  }
}
/*--------------------------------------------------------------
# Testimonial slider Section
--------------------------------------------------------------*/
.testimonial-section {
  position: relative;
}
.testimonial-section .section_title {
  margin-bottom: -35px;
}
.testimonial-slider .swiper-wrapper {
  margin: 60px 0 60px 0;
}
.testimonial-box {
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--text-color);
  height: 100%;
}
.testimonial-slider .swiper-slide {
  padding: 0 !important;
  height: auto;
  border: none;
  box-shadow: none;
}
.testimonial-slider .swiper-slide:hover {
  background-color: var(--white-color);
}
.testimonial-text {
  color: var(--text-color) !important;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 100px;
  text-align: left;
}
.testimonial-box .perdetails {
  position: absolute;
  bottom: 0;
}
.tshapes-area .shape1 {
  position: absolute;
  right: 10px;
  top: -20px;
  z-index: 11;
}
.tshapes-area .shape1 img {
  position: relative;
  z-index: 2;
}
.tshapes-area .shape2 {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 11;
}
/* Custom Swiper Dots */
/* Swiper Pagination Container */

.testimonial-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

/* Inactive Bullet */
.testimonial-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-color);
  margin: 0 8px !important;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Active Bullet: inner + outer ring */
.testimonial-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--accent-color);
}

.testimonial-slider .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  background-color: transparent;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-img {
  text-align: center;
}
.faq-img img {
  height: 450px;
  width: auto;
}
.faq-title-area {
  text-align: center;
  margin-bottom: 15px;
}
.faq-title-area .faq-top {
  font-size: 14px;
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  padding: 5px 10px;
  border-radius: 50px;
}
.faq-title-area p {
  color: var(--surface-color);
}
.faq-title-area .faq-top i {
  color: var(--accent-color);
  margin-right: 5px;
}
.faq-title-area h3 {
  color: var(--title-color);
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
}
.faq-title-area h3 span {
  color: var(--accent-color);
}
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  color: var(--surface-color);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid var(--text-color);
  cursor: pointer;
}

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

.faq .faq-list .faq-item h3 {
  font-size: 17px;
  line-height: 28px;
  font-weight: 600;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  color: var(--surface-color);
}
.faq .faq-list .faq-item h3 span {
  color: var(--text-color);
  margin-left: -30px;
  position: absolute;
}
/* #faq-two .faq-list .faq-item .faq-content {
  margin-left: 28px;
} */
.faq .faq-list .faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  padding-top: 0;
  color: var(--surface-color);
}
.accordion-content {
  overflow-y: auto;
  max-height: 0;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion-content.open {
  overflow-y: auto;
}
.accordion-content h4 {
  color: var(--surface-color);
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
  margin-left: 7px;
}
.faq .faq-list .faq-item.faq-active .faq-content {
  max-height: 1330px; /* Large enough to fit content */
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}
.faq .faq-list .faq-item .faq-content p {
  font-size: 17px;
  font-weight: 400 !important;
  color: var(--surface-color);
  line-height: 28px;
  margin-left: 7px;
}
.faq .faq-list .faq-item .faq-content ul {
  margin-top: 10px;
  margin: 0;
  padding: 0;
  color: var(--surface-color);
  margin-left: 7px;
}
.faq .faq-list .faq-item .faq-content h4 {
  margin-left: 7px;
}
.faq .faq-list .faq-item .faq-content li {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 28px;
  list-style: disc !important;
}
.btn-area-faq .accordion-content ul {
  padding-left: 20px !important;
}
.accordion-content ul li {
  list-style: disc !important;
  padding-bottom: 5px;
}
.faq .faq-list .faq-item .faq-content h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--surface-color);
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--title-color);
}
.btn-area-faq {
  margin: 20px 0 10px 0;
}
.btn-area-faq .faq-btn {
  padding: 10px 40px;
  border-radius: 30px;
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  outline: none;
}
.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--title-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}
@media screen and (max-width: 991px) {
  .faq-img img {
    height: 100%;
    width: 100%;
  }
  .faq .faq-list .faq-item.faq-active .faq-content {
    max-height: 100%; /* Large enough to fit content */
    visibility: visible;
    opacity: 1;
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px 0;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .faq .faq-list .faq-item .faq-content p {
    padding-right: 20px;
  }
  .faq .faq-list .faq-item .faq-toggle {
    right: 0;
    top: 20px;
    font-size: 20px;
  }

  .faq .faq-list .faq-item h3 span {
    margin-left: -25px;
  }
}

/*--------------------------------------------------------------
# On Demand page CSS Start here ===========================================
--------------------------------------------------------------*/
.info-section {
  padding: 70px 20px;
  background-color: var(--bg-gray);
}

.info-box img {
  width: 100px;
  height: 100px;
}

.info-text {
  color: var(--title-color);
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  margin-top: 15px;
}

@media (max-width: 767.98px) {
  .info-text {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Learn Section
--------------------------------------------------------------*/
.learn-section {
  padding: 60px 0;
  background-color: var(--default-color);
}

.learn-image-wrapper {
  text-align: center;
}
.learn-image-wrapper img {
  height: 450px;
  width: auto;
}

.learn-heading {
  color: var(--title-color);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 20px;
}

.learn-subheading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--surface-color);
}
.learn-heading1 {
  font-size: 25px;
  font-weight: 500;
  color: var(--accent-color);
}
.learn-heading2 {
  margin: 0;
  padding: 0;
  color: var(--title-color);
  margin-bottom: 10px;
}
.learn-section p {
  color: var(--surface-color);
  font-weight: 400;
}
.learn-list {
  list-style: none;
  padding: 0;
}

.learn-list li {
  margin-left: 26px;
  margin-bottom: 12px;
  font-size: 17px;
  color: #000;
  font-weight: 400;
}

.learn-list li i {
  position: absolute;
  margin-left: -26px;
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 10px;
  margin-top: 3px;
}

.learn-highlight {
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 991px) {
  .learn-image-wrapper img {
    height: 100%;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .learn-heading {
    font-size: 28px;
  }

  .learn-subheading {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# On Demand 2 bg Section
--------------------------------------------------------------*/
.on-demand-section {
  padding: 0;
}
.on-demand-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 320px;
  padding-bottom: 0 !important;
}

.on-demand-left,
.on-demand-right {
  flex: 1 1 100%;
  min-height: 300px;
}

@media (min-width: 768px) {
  .on-demand-left,
  .on-demand-right {
    flex: 1 1 50%;
  }
}

.on-demand-left {
  background: var(--title-color);
  background-image: url("../img/bg-line-1.png");
  background-repeat: no-repeat;
  background-size: 95%; /* Decreased background image size */
  background-position-x: right;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--text-color);
  position: relative;
}

.on-demand-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--blue-dark);
  border-top-right-radius: 60% 40%;
  z-index: 0;
}

.on-demand-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.on-demand-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.on-demand-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.on-demand-heading {
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.on-demand-right {
  background: url("../img/demand-bg2.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 100px;
  height: 100px;
  background-color: rgba(36, 155, 221, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px dashed rgba(255, 255, 255, 0.4);
  transition: 0.3s;
}

.play-button:hover {
  background-color: rgba(36, 155, 221, 0.8);
}

.play-button i {
  color: white;
  font-size: 36px;
}
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Course Card Section CSS Start
--------------------------------------------------------------*/

.course-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--bg-gray);
}
.coursecard-swiper .swiper-slide {
  height: auto;
  padding: 0;
  text-align: left;
  background-color: none !important;
  box-shadow: none !important;
}
.coursecard-slider-wrapper .swiper {
  padding-bottom: 2rem;
}
.course-section h2 {
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
}

.course-section .subtitle {
  color: var(--text-color);
  margin-bottom: 40px;
}

.course-card-details {
  background-color: var(--default-color);
  color: #000;
  border-radius: 20px;
  padding: 30px 25px;
  /* height: 100%; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: left;
}

.course-card-details:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.course-card-details.active {
  background-color: var(--accent-color);
  color: var(--white-color);
  transition: all 0.3s ease;
}
.course-card-details.active .text-success {
  color: var(--highlight-color) !important;
}
.card-top-badge {
  display: flex;
  justify-content: space-between;
}
.course-card-details .date-badge {
  display: flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 6px 15px 6px 15px;
  border-radius: 30px;
  font-size: 13px;
  width: fit-content;
  transition: 0.3s;
}
.course-card-img {
  display: none;
}
.course-card-img img {
  height: 40px;
  width: 60px;
}
.badge-icon {
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-right: 8px;
  transition: 0.3s;
}

.course-card-details:hover .date-badge {
  background-color: var(--white-color);
  color: #000;
}

.course-card-details:hover .badge-icon {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.course-card-details.active .date-badge {
  background-color: var(--white-color);
  color: #000;
}

.course-card-details.active .badge-icon {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.course-card-details h5 {
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0;
  color: inherit;
}

.card-info-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  color: inherit;
}

.card-info-box p {
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.card-info-box strong {
  flex: 1;
  font-weight: 500;
}

.card-info-box span {
  text-align: right;
  flex: 1;
}

.text-success {
  color: #28a745;
}
.course-card-details:hover .text-success {
  color: var(--highlight-color) !important;
}

.text-warning {
  color: var(--highlight-color);
}
.module-text {
  text-align: center;
  margin-bottom: 14px;
}
.module-text h6 {
  color: var(--accent-color);
  font-weight: 600;
}
.module-text .parts {
  color: var(--accent-color);
}
.course-card-details.active .module-text h6 {
  color: var(--white-color) !important;
}
.course-card-details:hover .module-text h6 {
  color: var(--white-color) !important;
}
.course-card-details ul {
  padding-left: 0;
  list-style: none;
  font-size: 15px;
  margin-bottom: 20px;
}

.course-card-details ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.course-card-details ul li i {
  color: var(--accent-color);
  margin-right: 10px;
}

.course-card-details:hover ul li i,
.course-card-details.active ul li i {
  color: var(--white-color);
}

.details-row {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  font-weight: 500;
  padding: 0 20px 0 10px;
  margin-bottom: 20px;
}

.course-card-details:hover .details-row,
.course-card-details.active .details-row {
  color: var(--white-color);
}

.btn-reserve {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s ease;
}

.course-card-details:hover .btn-reserve {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.course-card-details.active .btn-reserve {
  background-color: var(--white-color);
  color: var(--accent-color);
}
.course-card-details:hover .table-btn {
  color: var(--white-color) !important;
}
.course-card-details.active .table-btn {
  color: var(--white-color);
}

.table-btn {
  display: flex;
  justify-content: space-between;
}
.table-btn i {
  transition: transform 0.3s ease;
}

.table-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.timetable-header {
  background-color: #f1f3f5;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 1rem;
  color: var(--surface-color);
}
.course-card-details:hover .timetable-header {
  background-color: rgba(241, 243, 245, 0.2);
  color: var(--white-color);
}
.course-card-details.active .timetable-header {
  background-color: rgba(241, 243, 245, 0.2);
  color: var(--white-color);
}

.timetable-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 2px;
  border-bottom: 1px solid #dee2e6;
  flex-wrap: wrap;
}

.timetable-col {
  margin-bottom: 4px;
  font-size: 14px;
}

.timetable-row:last-child {
  border-bottom: none;
}

.timetable-box {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
}

.timetable-box h5 {
  font-size: 1rem;
  margin-bottom: 0;
  color: #334;
}
.course-card-details:hover .timetable-box h5 {
  color: var(--white-color) !important;
}
.course-card-details.active .timetable-box h5 {
  color: var(--white-color) !important;
}
.coursecard-slider-wrapper .custom-swiper-prev {
  top: 300px;
}
.coursecard-slider-wrapper .custom-swiper-next {
  top: 300px;
}

.extra-design .custom-swiper-prev,
.extra-design .custom-swiper-next {
  top: 180px;
}

.extra-design2 .custom-swiper-prev,
.extra-design2 .custom-swiper-next {
  top: 220px;
}

@media (max-width: 768px) {
  .course-card-details {
    padding: 25px;
  }
}
@media (max-width: 430px) {
  .course-card-details {
    padding: 20px 15px;
  }
}

/*--------------------------------------------------------------
# POPUP Modal Start here
--------------------------------------------------------------*/
.modal-content {
  border-radius: 25px;
  padding: 0;
  border: none;
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid #ddd;
  background: #fff;
  display: block !important;
  padding: 30px;
}

.modal-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--title-color);
}

/* Custom Close Button Styling */
/* Custom Close Button */
.modal-close-area {
  position: relative;
  z-index: 999;
}
.custom-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background-color: var(--red-color);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 15px;
  color: var(--white-color);
  z-index: 999999 !important;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.custom-close-btn:hover {
  background-color: var(--highlight-color);
  color: var(--white-color);
}

.custom-close-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}
.product-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-header img {
  width: 90px;
  height: 70px;
  border-radius: 20px;
}

.product-details {
  flex: 1;
}
.modal-top-area {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
}
.product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
}
.modal-top-btn {
  text-align: right;
}
.go-cart-btn {
  padding: 10px 20px;
  color: var(--white-color);
  background-color: var(--accent-color);
  border-radius: 25px;
  border: none;
  outline: none;
}
.go-cart-btn:hover {
  color: var(--white-color);
}
.modal-top-area .courseid {
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
}
.product-subtext {
  font-size: 15px;
  font-weight: 600;
  color: var(--title-color);
  align-items: center;
  gap: 6px;
}
.modal-header .ond-none {
  display: none;
}
.product-subtext i {
  margin-right: 5px;
}
.modal-body {
  padding: 25px 25px 10px 25px;
  background: var(--bg-gray);
}

.modal-body h6 {
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .product-subtext {
    display: block;
    margin-top: 5px;
  }
  .product-subtext span {
    display: none;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 900px;
  }
}
#cartModal .modal-dialog.modal-lg.modal-dialog-centered {
  width: 600px;
}

.modal-body h6 span {
  font-size: 14px;
  font-weight: 500;
}

#courseModal .swiper-slide {
  height: 100%;
  padding: 0 !important;
  margin-bottom: 20px;
  text-align: left;
}

#courseModal .course-card {
  padding: 0 !important;
  height: 350px;
  background-color: var(--white-color);
  border-radius: 20px;
}
#courseModal .course-card .defult-rating-area {
  line-height: 1;
}
#courseModal .course-card .hover-rating-area {
  line-height: 1;
}

#courseModal .course-card h5 {
  margin: 10px 0 5px 0 !important;
}

#courseModal .course-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#courseModal .badge-course {
  position: absolute;
  /* bottom: 10px; */
  left: 10px;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 10px;
  z-index: 2;
}
#courseModal .hover-content .badge-course2 {
  position: absolute;
  top: 20px;
  left: 15px;
  background: var(--highlight-color);
  color: var(--white-color);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 10px;
  z-index: 2;
}
#courseModal .course-body {
  padding: 10px;
  z-index: 2;
}

#courseModal .course-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--title-color);
}

#courseModal .course-desc {
  font-size: 15px;
  color: var(--text-color);
}
#courseModal .hover-content .course-desc {
  font-size: 15px;
  color: var(--white-color);
  margin: 0;
  padding: 0;
}
#courseModal .hover-content .course-price {
  color: var(--white-color);
}
#courseModal .course-price {
  font-weight: 600;
  color: var(--surface-color);
}

#courseModal .rating i {
  color: var(--highlight-color);
  font-size: 15px;
  padding: 0 1px;
  font-weight: 600;
}

#courseModal .course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0 !important;
  color: var(--text-color);
}

#courseModal .hover-content {
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 15px 15px;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}
.hover-top-content {
  margin-bottom: 60px;
  margin-top: -40px;
}
#courseModal .hover-content .reserve-btn {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  padding: 11px 20px;
}

#courseModal .hover-content .badge-course {
  background: var(--highlight-color);
  color: var(--surface-color);
}
#courseModal .hover-content .tutor-icon img {
  height: 25px !important;
  width: 25px !important;
}
#courseModal .hover-content .tutor-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0;
  font-weight: 600;
  font-size: 19px;
}
#courseModal .hover-content .course-title {
  color: var(--white-color);
  font-size: 23px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
#courseModal .hover-content .course-title,
#courseModal .hover-content .rating i,
#courseModal .hover-content .course-footer {
  color: var(--highlight-color);
}

#courseModal .course-card:hover .hover-content {
  opacity: 1;
}

@media (max-width: 768px) {
  #courseModal .course-img {
    height: 160px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color);
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
}
.swiper-button-prev3.custom-swiper-prev {
  top: 40%;
  height: 35px;
  width: 35px;
}
.swiper-button-next3.custom-swiper-next {
  top: 40%;

  height: 35px;
  width: 35px;
}
.swiper-button-prev3.custom-swiper-prev {
  left: 2px;
}

.swiper-button-next3.custom-swiper-next {
  right: 2px;
}
@media screen and (max-width: 991px) {
  .modal-top-area {
    display: block;
    justify-content: space-between;
    justify-items: left;
    align-items: left;
  }
  .modal-top-btn {
    margin-top: 20px;
  }
  .product-title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .modal-dialog {
    max-width: 95%;
  }

  .product-title {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 20px;
  }
  .modal-header {
    border-bottom: 1px solid #ddd;
    background: #fff;
    display: block !important;
    padding: 30px 30px 30px 15px;
  }
}
@media screen and (max-width: 500px) {
  .product-header img {
    margin-bottom: 5px;
  }
  .product-header {
    display: block;
    align-items: center;
    gap: 15px;
  }
  .modal-top-btn {
    margin-top: 20px;
    position: absolute;
    right: 26px;
    top: 34px;
  }
}

/*--------------------------------------------------------------
# Complete course academy DEC Section CSS
--------------------------------------------------------------*/
.complete-academy {
  text-align: center;
  padding: 80px 0;
  background-color: var(--bg-gray);
}

.complete-academy h2 {
  color: var(--title-color);
  font-size: 32px;
  font-weight: 600;
}

.complete-academy h3 {
  color: var(--title-color);
  font-size: 28px;
  font-weight: 500;
}

.academy-box {
  padding: 10px 20px;
}

.academy-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.academy-box p {
  color: var(--surface-color);
}
.text-pink {
  color: var(--red-color);
}

.text-blue {
  color: #5b63e4;
}

.text-green {
  color: #00b960;
}

.text-dark-custom {
  color: #000000;
}

@media (min-width: 768px) {
  .academy-box {
    padding: 10px 30px;
  }
}

/*--------------------------------------------------------------
# Caet Section CSS Start
--------------------------------------------------------------*/
.cart-section {
  margin-top: 50px;
  padding-top: 90px;
  background-color: var(--bg-gray);
}
.order-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 25px;
}

.cart-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
}
.cart-img-info {
  display: flex;
  align-items: center;
}
.delete-cart button {
  color: var(--red-color);
  margin-top: -53px;
  margin-left: -30px;
  position: absolute;
  border: none;
  outline: none;
  background-color: transparent;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 68px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex-grow: 1;
  margin-left: 10px;
  width: 265px;
}

.cart-item-title {
  color: var(--title-color);
  font-weight: 600;
  font-size: 15px;
}

.cart-item-subtitle {
  color: var(--text-color);
  font-size: 13px;
  margin-top: 3px;
}

.cart-item-details button.added-cart-view {
  color: green !important;
  font-size: 14px;
  /* margin-top: 10px; */
  border: none;
  outline: none;
  background-color: transparent !important;
  padding: 0;
}
.cart-info p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 18px;
}
.cart-info h6 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 4px !important;
}
.cart-item-price {
  min-width: 90px;
  display: flex;
  gap: 40px;
}
.cart-price-current {
  color: var(--red-color);
  font-weight: 600;
  font-size: 16px;
}
.cart-item-price .price-table {
  display: flex;
  align-content: flex-start;
  gap: 40px;
}
.cart-item-price .price-table .cart-price-current {
  width: 85px !important;
  text-align: -webkit-left;
}
.cart-price-old {
  text-decoration: line-through;
  color: #aaa;
  font-size: 14px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  max-width: 140px;
}
.quantity-selector {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.quantity-selector .quantity-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--surface-color), transparent 85%);
}

.quantity-selector .quantity-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.quantity-selector .quantity-btn.decrease {
  border-radius: 4px 0 0 4px;
}

.quantity-selector .quantity-btn.increase {
  border-radius: 0 4px 4px 0;
}

.quantity-selector .quantity-input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: none;
  outline: none;
  border-left: none;
  border-right: none;
  color: var(--surface-color);
  background-color: var(--white-color);
  border: 1px solid color-mix(in srgb, var(--surface-color), transparent 85%);
  border-left: 0;
  border-right: 0;
  font-size: 14px;
  border-radius: 0 !important;
}

.quantity-selector .quantity-input:focus {
  outline: none;
}
.quantity-selector .quantity-input::-webkit-inner-spin-button,
.quantity-selector .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-summary {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
}

.cart-summary-title {
  background-color: #cde5f7;
  text-align: center;
  font-weight: 600;
  color: var(--title-color);
  font-size: 18px;
  padding: 6px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin: 10px 0;
}

.summary-label {
  color: var(--text-color);
}

.summary-value {
  color: var(--title-color);
  font-weight: 600;
}

.cart-coupon {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.cart-coupon input {
  flex: 1;
  font-size: 13px;
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.cart-coupon button {
  background-color: #cde5f7;
  color: var(--accent-color);
  border: none;
  border-radius: 4px;
  padding: 4px 32px;
  font-size: 13px;
}
.summary-top {
  /*padding-bottom: 15px;*/
  /*border-bottom: dotted var(--surface-color);*/
}
.summary-bottom {
  padding-top: 10px;
}

/* EXISTING STYLES REMAIN UNCHANGED ABOVE */

/* Tablet adjustments */
@media screen and (max-width: 991px) {
  .cart-item-price {
    gap: 30px;
  }
}

/* Mobile & Small Tablet adjustments */
@media screen and (max-width: 768px) {
  .cart-box {
    padding: 10px;
  }
  .cart-section {
    margin-top: 50px;
    padding-top: 80px;
  }
  .delete-cart button {
    color: var(--red-color);
    margin-top: -61px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cart-item img {
    width: 50px;
    height: 60px;
  }

  .cart-item-details {
    margin-left: 10px;
    width: 100%;
  }

  .cart-item-price {
    gap: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .cart-select {
    margin-left: 0 !important;
    margin-top: 10px;
  }

  .cart-summary {
    padding: 20px;
  }

  .cart-summary-title {
    font-size: 16px;
  }

  .summary-row {
    font-size: 13px;
  }

  .cart-coupon {
    flex-direction: column;
    gap: 5px;
  }

  .cart-coupon input {
    width: 100%;
  }

  .cart-coupon button {
    width: 100%;
  }
}

/* Extra small devices (phones) */
@media screen and (max-width: 576px) {
  .order-title {
    font-size: 22px;
    text-align: center;
  }
  .cart-section {
    margin-top: 50px;
    padding-top: 70px;
  }
  .cart-item {
    padding: 10px 0;
  }

  .cart-item-title {
    font-size: 14px;
  }

  .cart-item-subtitle,
  .cart-item-stock {
    font-size: 12px;
  }

  .cart-price-current {
    font-size: 14px;
  }

  .cart-price-old {
    font-size: 12px;
  }

  .cart-summary {
    padding: 15px;
  }

  .cart-summary-title {
    font-size: 15px;
    padding: 5px;
  }

  .summary-row {
    font-size: 12px;
  }

  .cart-coupon button {
    font-size: 12px;
    padding: 4px;
  }
}

/*--------------------------------------------------------------
# Checkout Section
--------------------------------------------------------------*/
.checkout-section {
  background-color: var(--bg-gray);
  padding-top: 120px !important;
  margin-top: 30px;
}

.reservation-box {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.cart-summary-box {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.cart-summary-title {
  background-color: #cde5f7;
  color: var(--title-color);
  border-radius: 4px;
  font-size: 18px;
}

.book-btn {
  background-color: var(--accent-color);
  border-radius: 50px;
  font-size: 16px;
  padding: 12px 20px;
  font-weight: 400;
  border: none;
  outline: none;
  margin-top: 10px;
}
.book-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.book-btn.enabled {
  opacity: 1;
  cursor: pointer;
}
.is-invalid {
  border-color: red !important;
}
/* cart proced button  */
.proceed-btn {
  background-color: var(--accent-color);
  border-radius: 50px;
  font-size: 16px;
  padding: 12px 20px;
  font-weight: 400;
  border: none;
  outline: none;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  cursor: not-allowed;
}

/* .proceed-btn.enabled {
  opacity: 1;
  cursor: pointer;
}

.proceed-btn i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.proceed-btn.enabled:hover i {
  transform: translateX(5px);
} */
/* Floating Label */
.floating-label {
  position: relative;
  margin-bottom: 20px;
}

.floating-label input {
  width: 100%;
  padding: 12px 38px 12px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: transparent;
}

.floating-label input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.floating-label input::placeholder {
  color: transparent;
}

.floating-label label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.2s ease;
  background: var(--white-color);
  padding: 0 4px;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
  top: 0;
  left: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.floating-label i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--accent-color);
}

.reservation-banner {
  background-color: var(--red-color);
  color: var(--white-color);
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}
.check-amount {
  display: flex;
  justify-content: space-between;
  color: var(--surface-color);
  margin-top: 20px;
}
.checkout-top .checkout-title {
  width: 230px;
}
.checkout-top .checkout-title h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--title-color);
}
.checkout-desc p {
  font-size: 13px;
  color: var(--surface-color);
  line-height: 16px;
  margin: 0 !important;
  padding: 0 !important;
}
.checkout-schedule h6 {
  color: var(--surface-color);
  font-size: 13px;
  font-weight: 600;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 5px !important;
}
.checkout-module h6 {
  color: var(--surface-color);
  font-size: 13px;
  font-weight: 600;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 3px !important;
}
.check-amount h5 {
  color: var(--surface-color);
  font-weight: 600;
}
.check-amount h6 {
  color: var(--text-color);
}
.checkout-top {
  color: var(--title-color);
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--surface-color);
}
.form-check-label {
  color: var(--text-color);
}
@media (max-width: 768px) {
  .cart-summary-box {
    margin-top: 20px;
  }
  .checkout-section {
    background-color: var(--bg-gray);
    padding-top: 100px !important;
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Repeat Section
--------------------------------------------------------------*/
.repeat-section {
  position: relative;
  background-color: var(--title-color);
  color: var(--white-color);
  overflow: hidden;
}

.repeat-section .content {
  position: relative;
  z-index: 2;
}

.repeat-section .bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 240px;
  width: auto;
  background-image: url("../img/bg-line-1.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  opacity: 0.3;
  z-index: 1;
}

/* Specific typography matching the image */
.repeat-section .repeat-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 0;
}

.repeat-section .repeat-subtitle {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 20px;
}

.repeat-section .repeat-text {
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Terms Of Use Section
--------------------------------------------------------------*/
.terms-of-use-section {
  margin-top: 50px;
  padding-top: 90px;
  color: var(--surface-color);
  background-color: var(--bg-gray);
}
.terms-privacy-title {
  color: var(--surface-color);
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 30px;
  letter-spacing: 1;
  font-size: 40px;
}
.terms-privacy-title a {
  color: var(--accent-color);
  transition: 0.3s;
}
.terms-privacy-title a:hover {
  color: var(--nav-dropdown-hover-color);
}
.terms-privacy-content p {
  font-size: 18px;
  font-weight: 400 !important;
  line-height: 2;
  color: #333;
  padding: 0;
  margin: 0;
}
.content-title {
  color: var(--surface-color);
  font-weight: 600;
  margin-top: 25px;
  font-size: 30px;
}
.terms-privacy-content ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}
.terms-privacy-content ul li span {
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  .terms-privacy-title h1 {
    font-size: 35px;
  }
  .content-title {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
  color: var(--text-color);
  padding: 60px 0 30px;
  background-color: var(--title-color);
}

.footer h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer a {
  color: var(--heading-color);
}

.footer small,
.footer p {
  color: #fffefe;
  margin: 0;
  font-weight: 400;
}

.footer .contact-info i {
  font-size: 24px;
  color: var(--highlight-color);
  margin-right: 15px;
}

.footer .contact-block {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.footer .contact-text h6 {
  margin: 0;
  color: #fffefe;
  font-size: 16px;
}
.footer .contact-text p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--white-color);
}

.footer hr {
  border-top: 1px solid var(--text-color);
  margin: 25px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 30px;
}

.footer .map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}
.footer-bottom a {
  letter-spacing: 1px;
  text-decoration: none;
}
.ft-right {
  text-align: right;
}
.ft-right a {
  margin-left: 20px;
}
.ft-left a {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .footer .map-container {
    margin-top: 30px;
  }

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .footer-bottom .text-right {
    text-align: center !important;
    margin-top: 10px;
  }
  .ft-right {
    text-align: center;
  }
  .ft-right a {
    margin: 0 10px;
  }
}
