:root {
  --blue: #3a65c7;
  --light-bg: #e8f2ff;
  --orange: #df6f1a;
  --dark: #242328;
  --text-color: #5e6670;
  --white: #fff;
  --noto: "Noto Sans Bengali", sans-serif;
  --balooda: "Baloo Da 2", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baloo Da 2", sans-serif;
}

p,
span,
small,
a {
  font-family: "Noto Sans Bengali", sans-serif;
  font-size: 16px;
}

.o-hidden {
  overflow: hidden;
}

.m-lf-10 {
  margin: 0 10px;
}

.section-title {
  padding: 20px;
  font-size: 30px;
  font-weight: 800;
  line-height: 35px;
  color: var(--dark);
  width: 500px;
  max-width: 100%;
  height: 75px;
  margin-bottom: 0;
}

/* Header start */
.main-header {
  padding-top: 10px;
  background-color: var(--white);
}

.header-items {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.header-left {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.header-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67%;
}

.header-middle nav {
  background-image: url("../../../../assets/images/img/nav-bg.png");
  padding: 21px 30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav .nav-item {
  padding: 4px 0;
}

.header-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.header-nav .nav-link.active,
.header-nav .nav-link:hover {
  color: var(--orange);
}

.header-nav .nav-link.active svg path,
.header-nav .nav-link:hover svg path {
  stroke: var(--orange);
}

.header-middle .sub-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background-color: var(--white);
  width: 265px;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  z-index: 9999;
  padding: 20px 10px 20px 20px;
  border-radius: 5px;
  box-shadow: 0px 6px 25px -5px rgb(58 101 199 / 10%);
  transition: all 0.3s ease-in-out;
}

.header-nav .nav-item:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 40px;
}

.header-nav .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-nav .sub-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 22px;
  transition: all 0.3s ease-in-out;
}

.header-nav .sub-menu li a.active,
.header-nav .sub-menu li a:hover {
  color: var(--orange);
}

.header-nav .mega-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background-color: var(--white);
  left: 0;
  right: 0;
  top: 110%;
  z-index: 9999;
  padding: 20px 10px 20px 20px;
  border-radius: 5px;
  box-shadow: 0px 6px 25px -5px rgb(58 101 199 / 10%);
  transition: all 0.3s ease-in-out;
}

.header-nav .nav-item:hover .mega-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.mega-menu-items .mega-menu-card {
  transition: all 0.3s ease-in-out;
}

.mega-menu-items .mega-menu-card:hover {
  box-shadow: 0px 10px 25px 2px rgb(58 101 199 / 10%);
}

.mega-menu .category-card:hover h5 {
  color: var(--blue);
}



.mega-menu-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 20px;
}


.mega-menu-items .mega-menu-card {
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
}

.mega-menu-items .mega-menu-card h5 {
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
}

.mega-menu-items .mega-menu-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.header-right {
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Mobile Menu style  */
.header-mobile-menus {
  width: 280px;
  height: 100vh !important;
  background-color: var(--white);

  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  transition: right 0.4s ease-in-out;
  z-index: 999;
}

.mobile-wrapper {
  padding: 20px;
  position: relative;
}

.mobile-wrapper .header-action {
  position: absolute;
  bottom: 0;
}

.header-mobile-menus.show {
  right: 0;
}

.toggle {
  display: none;
  font-size: 22px;
  color: #242328;
  cursor: pointer;
}

.header-mobile-menus .close {
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
}

.header-mobile-menus .header-nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.header-mobile-menus .header-nav .nav-item {
  position: relative;
}

.header-mobile-menus .sub-menu-items {
  height: 0;
  opacity: 0;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 10px;
  padding-top: 10px;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.header-mobile-menus .header-nav .nav-item.active .sub-menu-items {
  height: auto;
  opacity: 1;
  display: flex;
}

.header-mobile-menus .header-nav .nav-item svg {
  transition: transform 0.3s ease-in-out;
}

.header-mobile-menus .header-nav .nav-item.active svg {
  transform: rotate(180deg);
}

.header-mobile-menus .sub-menu-items li {
  border-bottom: 1px solid #e8f2ff;
  padding-bottom: 10px;
}

.header-mobile-menus .sub-menu-items li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
}

/* Mobile Menu style  */

.header-section .navbar .header-nav-btns {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Header end */
/* Hero section start */
.hero-section {
  padding: 70px 0 35px 0;
  background-color: var(--light-bg);
  margin: 0 10px;
  border-radius: 20px;
}

.hero-content .hero-title {
  font-size: 55px;
  font-weight: 800;
  line-height: 80px;
  color: var(--dark);
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-color);
  width: 100%;
  max-width: 600px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-cards .hero-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.hero-card .card-icon {
  background-color: var(--light-bg);
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.hero-card .card-icon svg {
  height: 30px;
  width: 30px;
}

.hero-card h6 {
  font-size: 22px;
  color: var(--dark);
}

.hero-card span {
  font-size: 16px;
  color: var(--text-color);
}

.hero-card:hover {
  transform: translateY(-8px);
}

.hero-card:hover .card-icon {
  background-color: var(--blue);
}

.hero-card:hover .card-icon svg path {
  stroke: var(--white);
  transition: all 0.3s ease-in-out;
}

/* Hero section end */

/* Job section start */
.job-section {
  padding: 0px 0 50px 0;
  background-color: var(--white);
  overflow: hidden;
}

.job-title-middle {
  background-color: var(--light-bg);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.job-section-title h2 {
  font-size: 35px;
  font-weight: 800;
  line-height: 45px;
}

.job-section-btn {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1px solid var(--light-bg);
  cursor: pointer;
}

.job-section-btn span {
  color: var(--blue);
  font-size: 16px;
  font-family: var(--noto);
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}

.job-section-btn i {
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.job-ol {
  padding-left: 1rem !important;
}

.job-head {
  font-size: 20px;
}

.job-card {
  border-radius: 10px;
  border: 1px solid var(--light-bg);
  background: var(--white);
  padding: 15px 15px 20px;
  /* min-width: 360px; */
}

.job-card .card-top {
  padding: 15px;
  border-radius: 10px;
  background: var(--light-bg);
}

.job-card .date {
  padding: 8px 15px;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  border-radius: 50px;
}

.job-card .bookmark svg {
  background-color: var(--white);
  padding: 10px;
  border-radius: 50px;
  height: 40px;
  width: 40px;
}

.job-card .job-title {
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
}

.job-card .company {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 400;
}

.job-card .company-logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.job-info span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-color);
}

.job-card .job-require-btns .rq-btn {
  display: flex;
  padding: 4px 7px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-size: 12px;
  border: 1px solid var(--dark);
  color: var(--dark);
}

.card-top > p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}

.all_job_short_description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-bottom p {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}

.card-bottom span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

.dark-btn a {
  color: var(--white);
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  background: var(--dark);
}

.all-jobs-category {
  padding-top: 50px;
}

.all-jobs-category .nav-pills .nav-link.active,
.all-jobs-category .nav-pills .show > .nav-link {
  background-color: var(--white);
}
.all-jobs-category .nav-item {
  margin-bottom: -1px;
}
.all-jobs-category .nav-link {
  padding: 12px 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.all-jobs-category .nav-link span {
  font-size: 18px;
  color: var(--text-color) !important;
  font-weight: 400 !important;
  padding: 0;
  border-radius: 0;
}

.all-jobs-category .nav-pills .nav-link.active {
  color: var(--dark);
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
}
.all-jobs-category .nav-pills .nav-link.active span {
  color: var(--dark) !important;
  font-weight: 600 !important;
}
.all-jobs-category .nav-link img {
  width: 22px;
  height: auto;
  object-fit: contain;
}

.all-jobs-category .job-category-list a {
  display: flex;
  gap: 5px;
  padding: 8px 0px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.all-jobs-category .job-category-list a span {
  font-size: 16px;
  font-weight: 400;
}

.all-jobs-category .job-category-list a:hover :is(span) {
  color: var(--dark);
  text-decoration: underline;
}

/* Job section end */
/* mcq section start */
.mcq-section {
  padding: 0 0 120px;
  margin: 0 10px;
  background-color: var(--light-bg);
  border-radius: 20px;
}

.mcq-section .section-top .s-middle {
  background-color: var(--white);
}

.mcq-section .s-middle::before {
  box-shadow: 6px -12px var(--white);
}

.mcq-section .s-middle::after {
  box-shadow: -3px -8px var(--white);
}

.mcq-section .job-section-btn {
  border: 1px solid var(--white);
}

.mcq-section .mcq-middle {
  background-color: var(--white);
}

.mcq-middle .nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.mcq-middle .nav-pills .nav-link.active,
.mcq-middle .nav-pills .show > .nav-link {
  border-radius: 10px;
  background: var(--blue) !important;
  box-shadow: 0px 5px 7px 0px rgba(58, 101, 199, 0.23);
  color: var(--white);
}

.mcq-middle .nav-pills .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.mcq-middle .nav-pills .nav-link {
  flex: 1;
  padding: 10px 15px;
  color: var(--dark);
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
}

.category-cards .category-card {
  padding: 20px;
  border-radius: 12px;
  background: var(--white);
}

.category-cards .category-card h5 {
  color: var(--dark);
  font-size: 18px;
  font-weight: 500;
}

.category-cards .category-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* mcq section end */
/* Guidline section end */
.guidline-section {
  padding: 0 0px 120px 0;
  background-color: var(--white);
}

.guidline-section .section-title {
  background-color: var(--white);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: -75px;
  display: inline-block;
  position: relative;
}

.guidline-section .section-title::before {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  right: 100%;
  border-bottom-right-radius: 20px;
  box-shadow: 10px 2px var(--white);
}

.guidline-section .section-title::after {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  left: 100%;
  border-bottom-left-radius: 20px;
  box-shadow: -2px 10px var(--white);
}

.guidline-card {
  padding: 20px 20px 30px;
  transition: all 0.3s ease-in-out;
}

.popular {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.833px;
  padding: 10px 15px 6px;
  line-height: 10px;
  text-transform: uppercase;
  border-radius: 50px;
}

.guidline-card .price {
  color: var(--dark);
  font-size: 45px;
  font-weight: 600;
  line-height: 46px;
}

.guidline-card .price span {
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
}

.g-title {
  color: var(--dark);
  font-size: 35px;
  font-weight: 600;
  line-height: 42px;
}

.guidline-card p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.g-info span {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 400;
}

.g-btn {
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  color: var(--blue);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  background: var(--light-bg);
  margin-top: 25px;
}

.g-btn:hover {
  color: var(--blue);
}

.guidline-card:hover {
  border-radius: 10px;
  background: var(--blue);
  box-shadow: 0px 42px 34px 0px #f1f1f1;
  transform: translateY(-30px);
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: rgba(58, 101, 199, 0.1) 0 42px 60px 0px,
    rgba(58, 101, 199, 0.1) 0px 7px 29px 0px;
}

.guidline-card.active {
  border-radius: 10px;
  background: var(--blue);
  box-shadow: 0px 42px 34px 0px #f1f1f1;
  transform: translateY(-30px);
  background-image: url("../../../../assets/images/img/premium.png") !important;
  background-repeat: no-repeat;
  background-size: cover;
}

.guidline-card.active:hover {
  box-shadow: rgba(58, 101, 199, 0.1) 0 42px 60px 0px,
    rgba(58, 101, 199, 0.1) 0px 7px 29px 0px;
}

.guidline-card:hover .g-btn {
  background-color: var(--orange);
  color: var(--white);
}

.guidline-card.active .g-btn {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.guidline-card.active:hover .g-btn {
  background-color: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}

.guidline-card.active .g-info span,
.guidline-card.active .price,
.guidline-card.active .price span,
.guidline-card.active .g-title,
.guidline-card.active p {
  color: var(--white);
}

.guidline-card.active svg path {
  fill: var(--white);
}

/* Guidline section end */
/* Features section start */
.features-section {
  margin: 0 10px;
  background-color: var(--light-bg);
  padding-bottom: 120px;
  border-radius: 20px;
}

.features-section .section-title {
  background-color: var(--light-bg);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: -75px;
  display: inline-block;
  position: relative;
}

.features-section .section-title::before {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  right: 100%;
  border-bottom-right-radius: 20px;
  box-shadow: 10px 2px var(--light-bg);
}

.features-section .section-title::after {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  left: 100%;
  border-bottom-left-radius: 20px;
  box-shadow: -2px 10px var(--light-bg);
}

.feature-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.feature-card:hover {
  background-color: var(--blue);
  transform: translateY(-10px);
  box-shadow: 0px 42px 34px 0px rgba(58, 101, 199, 0.2);
}

.feature-card h4 {
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.feature-card p {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.feature-card:hover h4,
.feature-card:hover p {
  color: var(--white);
}

/* Features section end */
/* Advisor section start */
.advisor-section {
  padding: 0 0px 120px 0;
  background-color: var(--white);
}

.advisor-section .section-title {
  background-color: var(--white);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: -75px;
  display: inline-block;
  position: relative;
}

.advisor-section .section-title::before {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  right: 100%;
  border-bottom-right-radius: 20px;
  box-shadow: 10px 2px var(--white);
}

.advisor-section .section-title::after {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  left: 100%;
  border-bottom-left-radius: 20px;
  box-shadow: -2px 10px var(--white);
}

.advisor-item img {
  border-radius: 10px;
}

.advisor-list {
  padding-top: 50px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  animation: SlideRightToLeft 35s linear 0s infinite;
  -webkit-animation: SlideRightToLeft 35s linear 0s infinite;
}

.advisor-list:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

.advisor-list .advisor-item {
  border-radius: 10px;
  border: 1px solid var(--light-bg);
  background: var(--white);
  padding: 15px 15px 20px;
  min-width: 360px;
}

.advisor-item h5 {
  color: var(--dark);
  font-size: 17px;
  font-weight: 700;
}

.advisor-item span {
  font-size: 16px;
  color: var(--text-color);
}

/* Teacher Panel start */

.teacher-panel {
  overflow: hidden;
  padding-top: 10px;
}
.teacher-panel .advisor-list .advisor-item {
  min-width: 185px !important;
}

.teacher-panel .advisor-item span {
  font-size: 12px !important;
}

.teacher-panel .advisor-list {
  padding-top: 0px;
}

.teacher-search {
  padding: 0px !important;
}

/* Teacher Panel end */

/* Teacher details page start */
.cover {
  background: url("https://media.istockphoto.com/id/672781504/photo/airplane-with-banner.jpg?s=2048x2048&w=is&k=20&c=abXzQr-u677OX96Pcdo4LWosihuJNaSqLZyPRAHxKpc=");
  /* background: linear-gradient(135deg, #007bff, #00c6ff); */
  height: 200px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  position: relative;
  z-index: -1;
}
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  border: 1px solid #0c0a0a;
  position: absolute;
  bottom: -50px;
  left: 30px;
  object-fit: cover;
}
.card {
  border-radius: 12px;
}
.skills span {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 5px 12px;
  margin: 5px;
  display: inline-block;
}

/* Teacher details page end */

/* Advisor section end */
/* Blog section start */
.new-blog-section {
  padding: 0 0 60px;
  background-color: var(--light-bg);
  margin: 0 10px;
  border-radius: 20px;
}

.new-blog-section .section-title {
  background-color: var(--light-bg);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: -75px;
  display: inline-block;
  position: relative;
}

.new-blog-section .section-title::before {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  right: 100%;
  border-bottom-right-radius: 20px;
  box-shadow: 10px 2px var(--light-bg);
}

.new-blog-section .section-title::after {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  bottom: 0;
  left: 100%;
  border-bottom-left-radius: 20px;
  box-shadow: -2px 10px var(--light-bg);
}

.blog-items {
  padding-top: 50px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  animation: SlideRightToLeft 35s linear 0s infinite;
  -webkit-animation: SlideRightToLeft 35s linear 0s infinite;
}

.blog-items:hover {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

.blog-card {
  border-radius: 10px;
  border: 1px solid var(--light-bg);
  background: var(--white);
  padding: 15px 15px 20px;
  min-width: 360px;
}

.blog-card .blog-title {
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  height: 45px;
  overflow: hidden;
}

.blog-card span {
  font-size: 16px;
  color: var(--text-color);
}

.blog-card img {
  border-radius: 10px;
  border: 5px solid var(--light-bg);
}

.blog-card .blog-desc {
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog section end */

/* Section To start  */
.s-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 35px;
  color: var(--dark);
  max-width: 100%;
}

.section-top .s-middle {
  width: 500px;
  max-width: 100%;
  background-color: var(--light-bg);
  padding: 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 75px;
  position: relative;
}

.s-middle::before {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  top: 0;
  right: 100%;
  border-top-right-radius: 20px;
  box-shadow: 6px -12px var(--light-bg);
}

.s-middle::after {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: transparent;
  top: 0;
  left: 100%;
  border-top-left-radius: 20px;
  box-shadow: -3px -8px var(--light-bg);
}

.section-top .nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.section-top .nav-pills .nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.section-top .nav-pills .nav-link.active,
.section-top .nav-pills .show > .nav-link {
  border-radius: 10px;
  background: var(--blue) !important;
  box-shadow: 0px 5px 7px 0px rgba(58, 101, 199, 0.23);
  color: var(--white);
}

.section-top .nav-pills .nav-link {
  width: 100%;
  padding: 10px 15px;
  color: var(--dark);
}

.section-top .section-both-side {
  margin-top: -55px;
}

/* Section To end  */

/* FAQS Section start  */
.faqs-section {
  padding: 0 0 50px;
}

.contact-form-area h5 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 700;
}

.contact-form-area span {
  color: var(--text-color);
  font-size: 16px;
}

.faqs-section textarea {
  height: 70px;
}

.faqs-section .submit-btn {
  font-family: var(--noto);
}

.faqs-section .contact-form-area {
  box-shadow: 0px 6px 30px 5px rgb(58 101 199 / 10%);
}

.faqs-section .contact-form-area :is(input, textarea) {
  border: 1px solid var(--light-bg);
}

/* FAQS Section end  */
/* Animation name   */
@keyframes SlideRightToLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Animation name   */

/* Footer section start  */
.copyright p {
  color: var(--white);
  font-weight: 400;
}

.copyright p a {
  color: var(--orange);
  font-weight: 700;
}

/* Footer section end  */

/* Auth Page style start  */
.auth-section {
  min-height: 100vh;
  background-image: url("../../../../assets/images/img/auth-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.auth-slides {
  overflow: hidden;
}

.auth-slide {
  position: relative;
}

.swiper-slide img {
  border-radius: 20px;
}

.swiper-slide .overlay {
  padding: 30px;
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(70, 95, 241, 0.37) 0%, #fe7000 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-slides .overlay-top {
  padding-top: 75px;
}

.auth-slides .overlay-bottom {
  padding-bottom: 75px;
}

.auth-slides .overlay :is(h2, p) {
  color: var(--white);
}

.auth-slides .overlay h2 {
  font-size: 30px;
  font-weight: 700;
}

.auth-slides .overlay p {
  font-size: 16px;
  font-weight: 500;
}

.auth-slides .swiper-pagination {
  margin-top: 0px;
  position: absolute !important;
  bottom: 50px;
}

.auth-logo {
  width: 170px;
  height: auto;
}

.auth-tabs .nav {
  background-color: #ecf0ff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.auth-tabs .nav-item .nav-link {
  padding: 10px;
  color: var(--text-color);
  font-family: var(--balooda);
  font-size: 16px;
  font-weight: 600;
}

.auth-tabs .nav-link.active {
  color: var(--white);
  background-color: var(--blue);
}

.auth-tab-content .form--label {
  font-size: 15px;
  color: var(--dark);
  font-family: var(--noto);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.auth-tab-content .form--control {
  color: var(--text-color);
  border-radius: 8px;
  border: 1px solid rgba(70, 95, 241, 0.4);
  background: var(--white) !important;
  box-shadow: 0px 4px 8px 0px rgba(70, 95, 241, 0.1);
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

.auth-tab-content .form--control:focus {
  color: var(--text-color);
}

.auth-tab-content .form-label {
  font-family: var(--noto);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 2px;
}

.auth-tab-content .form-label span {
  color: #e45270;
  font-size: 20px;
}

.auth-tab-content .forgot-pass a {
  color: #5e6670;
  font-family: var(--noto);
  font-size: 14px;
  font-weight: 400;
  text-decoration-line: underline;
}

.auth-tab-content .forgot-pass a:hover {
  color: var(--orange);
}

.auth-tab-content .submit-btn {
  padding: 10px 20px;
  color: var(--white);
  background-color: var(--blue);
  font-family: var(--balooda);
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 10px;
}

.auth-tab-content .pass-require span {
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
}

.auth-tab-content .social-auth a {
  border-radius: 8px;
  border: 1px solid rgba(70, 95, 241, 0.4);
  background: var(--white);
  padding: 10px 20px;
}

.auth-tab-content .or {
  height: 1px;
  width: 250px;
  max-width: 100%;
  background-color: rgba(156, 154, 165, 0.3);
  position: relative;
  margin: 25px auto;
}

.auth-tab-content .or span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 5px 3px;
  font-size: 16px;
  line-height: 15px;
  font-weight: 700;
  background-color: var(--orange);
  color: #000;
  text-transform: uppercase;
}

.auth-bottom p {
  font-size: 14px;
  color: var(--text-color);
}

/* Auth Page style end  */

/* All job page  */
.job-span {
  display: inline;
}

.job-filter .accordion-item {
  border: none;
}

.job-filter .accordion-button {
  font-size: 18px;
  font-family: var(--balooda);
  font-weight: 400;
  padding: 5px !important;
  box-shadow: none !important;
}
.job-filter .accordion-button:not(.collapsed) {
  background-color: var(--white);
  box-shadow: none !important;
  color: var(--blue) !important;
}

.jobfilter-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job-filter .accordion-header img {
  width: 18px;
  height: auto;
  object-fit: contain;
  margin-right: 10px;
}
.jobfilter-content .form--check .form-check-label {
  color: var(--text-color);
  font-weight: 400;
}
.jobfilter-content .form--check .form-check-input {
  border: 1px solid var(--text-color) !important;
}
.jobfilter-content .form--check .form-check-input:checked {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.jobfilter-content .jobfilter-items {
  padding: 10px;
  border: 1px solid oklch(87.2% 0.01 258.338);
  border-radius: 4px;
  height: 170px;
  overflow-y: scroll;
}
.jobfilter-content .jobfilter-search {
  font-size: 15px;
  line-height: 22px;
  border: 1px solid oklch(87.2% 0.01 258.338);
  padding: 5px 10px;
  border-radius: 4px;
}

.jobfilter-content .jobfilter-items label {
  margin-top: -1px;
  font-size: 15px;
  line-height: 18px;
}
/* All job page  */

/* job details page start */
.job-dt-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
}

.job-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-color);
  padding: 12px 20px;
  border: 1px solid var(--light-bg);
  border-radius: 8px;
}

.company-dt span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

.company-dt img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.job-rqs span {
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 400;
  font-size: 15px;
  background-color: var(--light-bg);
}

.job-sidebar .widget-title {
  font-size: 24px;
  font-weight: 600;
}

.job-desc {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.job-desc h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 5px 0;
}

.job-desc p {
  padding-bottom: 5px;
}

.job-details-page .job-card .job-require-btns .rq-btn {
  font-size: 14px;
  padding: 6px 10px 2px 10px;
  /* padding-top: 7px; */

  line-height: 16px !important;
}

/* job details page end */

/* top scroll-bar css start */
.scrolling-bar {
  overflow: hidden;
  /* background-color: #f8f9fa;
      border-top: 2px solid #dee2e6;
      border-bottom: 2px solid #dee2e6; */
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
}

.scrolling-track {
  display: inline-flex;
  gap: 20px;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-left 25s linear infinite;
}

.scrolling-message {
  font-weight: bold;
  color: #0a65cc;
  white-space: nowrap;
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
/* top scroll-bar css end */

/* job search page start */

.search-wrapper {
  background-color: #0a65cc; /* Dark blue background */
  padding: 15px;
  border-radius: 8px;
}

/* .form-control,
    .form-select {
      border: none;
      border-radius: 0.25rem;
    } */

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

.input-group-text {
  background-color: white;
  border: none;
  border-right: 1px solid #ccc;
}

/* Region Filter Pills */
.region-filters {
  margin-top: 0.75rem;
}

.region-pill {
  background-color: #e8f2ff;
  color: black;
  border: none;
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-weight: 500;
  font-size: 16px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.region-pill:hover {
  background-color: #0a65cc;
  color: white;
}

.job-form {
  padding: 9px !important;
}

.job-search-pill .region-pill {
  background-color: white !important;
  color: black;
}
.job-search-pill .region-pill:hover {
  background-color: #0a65cc !important;
  color: white;
}

/* job search page end */

/* highlighted jobs start */
.highlighed-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.category-text h6 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.category-text span {
  font-size: 14px;
  color: #0a65cc;
}

.category-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* highlighted jobs end */

/* tuition khujun start */
.search-box {
  background: #0a65cc; /* dark background like image */
  padding: 15px;
  border-radius: 8px;
}
.form-select,
.btn {
  padding: 9px;
  font-size: 15px;
}
.btn-search {
  color: #fff;
  font-weight: 600;
  border: none;
}
.btn-search:hover {
  background: #242328;
}
.btn-tutor {
  padding: 9px 30px !important;
}

/* tuition khujun end */

/* all teacher start */

.all-teacher .advisor-item {
  border-radius: 10px;
  border: 1px solid var(--light-bg);
}

.all-teacher {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.all-teacher .advisor-item {
  padding: 10px;
  width: 100%;
}

/* all teacher end */

/* cv start */

.cv-element .nav-tabs {
  border-bottom: none;
}
.cv-element .nav-tabs .nav-link {
  border: none;
  color: #555;
  font-weight: 500;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cv-element .nav-tabs .nav-link.active {
  background-color: #0a65cc;
  color: #fff;
  position: relative;
  border-radius: 10;
}
.cv-element .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0a65cc;
}

.cv-element .card ul {
  gap: 10px;
}

.cv-element .card a {
  background-color: #b8d9ff33;
}

.cv-element .profile-img {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  object-fit: cover;
}
.cv-element .change-photo-btn {
  display: block;
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  margin-top: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}
.cv-element .card-header {
  font-weight: 600;
  font-size: 1.1rem;
}
.cv-element .edit-btn {
  color: #0d6efd;
  font-size: 0.9rem;
  cursor: pointer;
}
.cv-element .submit-cv {
  border-radius: 5px !important;
}

/* profile pics section cv */

.photo-upload-box {
  width: 140px;
  height: 140px;
  background-color: #aaa;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.signature-tab .photo-upload-box {
  width: 300px;
  height: 125px;
}

.photo-upload-box img {
  width: 60px;
  margin-top: 20px;
  opacity: 0.8;
}

.upload-btn {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #007bff;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  cursor: pointer;
}

.upload-btn:hover {
  background-color: #0056b3;
}

.photo-upload-box input[type="file"] {
  display: none;
}

/* cv end */

/* teacher checkbox info start  */

.teacher_tuition {
  background-color: white;
  margin-top: 40px;
  padding: 20px;
  border-radius: 10px;
}

.teacher_box {
  background-color: #0a65cc;
  padding: 40px;
  /* margin-top: 40px; */
  color: white;
  border-radius: 10px;
}
.teacher_box h3 {
  color: white;
}
.submit-teacher {
  border-radius: 5px;
}

/* teacher checkbox info end  */

/* mcq sub test start */
.sub-category-test {
  background-color: #f0f6ff !important;
}
/* mcq sub test end */

/* mcq details start */
.sub-tab {
  border-top: 1px solid #dee2e6;
  border-bottom: none;
}

.sub-tab button {
  color: #495057 !important;
  border: none !important;
}

.sub-tab button:hover,
.sub-tab button.active {
  color: #df6f1a !important;
}

.main-tab button {
  color: #495057 !important;
}
.main-tab button:hover,
.main-tab button.active {
  color: #df6f1a !important;
}

.questions p {
  font-size: 18px;
  color: #242328;
  margin-bottom: 5px;
}

.ques {
  padding-bottom: 20px;
}

.details-answer {
  display: none;
  margin-top: 10px;
}

.details-answer p {
  font-size: 12px;
}

.details-answer .wrng-sec {
  min-width: 95px;
}

.details-answer .wrng {
  background-color: rgb(244, 225, 225);
  border-radius: 4px;
  color: red;
  font-size: 12px;
  width: fit-content;
}

.details-answer .rght {
  background-color: rgb(228, 250, 236);
  border-radius: 4px;
  color: green;
  font-size: 12px;
  width: fit-content;
}

.details-answer .ans {
  background-color: rgb(228, 250, 236);
  border-radius: 4px;
  color: green;
  font-size: 12px;
  width: fit-content;
}

/* Hide the default radio button */
.mcq-page-container input[type="radio"] {
  display: none;
}

/* Custom option style */
.mcq-page-container .option-label {
  display: block;
  height: 26px;
  width: 26px;
  padding: 2px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

/* Hover effect */
.mcq-page-container .option-label:hover {
  background: #3a65c7;
  color: #fff;
}

/* When selected */
.mcq-page-container input[type="radio"]:checked + .option-div .option-label {
  background: #3a65c7;
  color: #fff;
  font-size: 14px;
  border-color: #3a65c7;
}
.question-block:has(input[type="radio"]:checked) .details-answer {
  display: block !important;
}

/* mcq details end */

/* Media Quaries  */

@media screen and (max-width: 512px) {
  .flex-phn {
    display: block !important;
  }

  .flex-phn p {
    margin-top: 10px;
  }

  .sub-tab {
    padding-bottom: 10px !important;
  }

  .tab-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-bottom: 20px;
  }

  .tab-scroll-wrapper .nav-tabs {
    flex-wrap: nowrap;
  }

  .tab-scroll-wrapper.nav-tabs .nav-link {
    display: inline-block;
  }

  .all-jobs-category {
    padding-top: 30px;
  }

  .category-card {
    padding: 10px;
  }

  .region-pill {
    font-size: 12px;
    padding: 1px 6px;
  }

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

@media screen and (max-width: 1366px) {
  .header-action a {
    padding: 10px 18px;
    margin: 0px;
  }

  .mega-menu-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-middle {
    display: none;
  }

  .header-left,
  .header-right {
    width: 50%;
  }

  .main-header {
    padding: 0;
  }

  .header-items {
    padding: 15px 0;
  }

  .main-header .header-action {
    display: none;
  }

  .toggle {
    display: block;
  }

  .header-mobile-menus .header-action {
    display: flex;
    margin-left: 10px;
    margin-bottom: 0px;
    bottom: 32px;
  }

  .mobile-wrapper {
    height: 100vh;
  }

  .mobile-wrapper .header-action a {
    padding: 10px 25px;
    margin: 0px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 70px 0 35px 0;
  }

  .hero-content .hero-title {
    font-size: 30px;
    line-height: 48px;
  }

  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hero-cards .hero-card {
    padding: 10px;
  }

  .hero-card .card-icon {
    padding: 6px 10px;
  }

  .section-top .s-middle {
    width: 300px;
  }

  .section-title {
    font-size: 25px;
    line-height: 30px;
    width: 300px;
  }

  .s-title {
    font-size: 25px;
    line-height: 30px;
  }

  .header-section .navbar .logo-area {
    width: auto;
  }

  .swiper-slide .overlay {
    padding: 30px;
  }

  .auth-slides .overlay h2 {
    font-size: 25px;
  }
  .highlighed-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .category-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .highlighed-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }

  .guidline-card {
    margin-bottom: 10px;
  }

  .job-section .s-middle {
    display: none;
  }

  .job-section .section-top .section-both-side {
    margin-top: 0px;
    padding-top: 35px;
  }

  .mcq-section .section-top .s-middle {
    margin-top: 100px;
  }

  .job-cards {
    padding-top: 30px;
  }

  .blog-items,
  .advisor-list {
    animation: SlideRightToLeft 7s linear 0s infinite;
  }

  .mcq-section .section-top .section-both-side {
    margin-top: -150px;
    padding-bottom: 100px;
  }

  .mcq-section .s-middle::after,
  .mcq-section .s-middle::before {
    display: none;
  }

  .mcq-section .s-middle {
    border-radius: 20px;
  }

  .faqs-section .section-both-side {
    margin-top: -120px;
    padding-bottom: 55px;
  }

  .faqs-section .section-top .s-middle {
    margin-top: 70px;
    border-radius: 20px;
  }

  .faqs-section .s-middle::after,
  .faqs-section .s-middle::before {
    display: none;
  }

  .m-visible {
    display: block !important;
  }

  .m-hide {
    display: none;
  }

  .w-full {
    width: 100%;
  }

  .guidline-section {
    padding: 0px;
  }

  .advisor-section {
    padding: 0 0px 70px 0;
  }

  .job-rqs span {
    padding: 5px 6px;
  }

  .job-dt-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 512px) {
  .features-section .section-title {
    margin-top: 0;
    padding-top: 35px;
  }

  .new-blog-section .section-title {
    margin-top: 0;
    padding-top: 35px;
  }

  .blog-items {
    padding-top: 30px;
  }
}

@media screen and (max-width: 375px) {
  .hero-content .hero-title {
    font-size: 28px;
    line-height: 45px;
  }
}
