:root {
  /* --primary-color: #4f5de4;
  --secondary-color: #ff7200; */
  --primary-color: #7539cd;
  --secondary-color: #ff1493;
  --light-purple: #ddceee;
  --medium-pink: #f7cdea;
  --light-pink: #ffcff1;
  --text-color: #333;
  --text-white: #fff;
  --text-red: #ff4d4d;
  --text-green: #008000;
  --text-disabled: #d3d3d3;
  --background-color: #f5f5f5;
  --bg-pink: #faf2f8;
  --gray-border: #ccc;
}
@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'poppins-bold';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body, html {
    height: 100%;
}
.section-seperator {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.section-seperator:after {
    content: "";
    border-bottom: 6px solid var(--primary-color);
    width: 300px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "poppins", sans-serif;
}
/* width */
*::-webkit-scrollbar {
  width: 5px;
  border-radius: 4px;
  height: 5px;
}

/* Track */
*::-webkit-scrollbar-track {
  background: var(--background-color);
  border-radius: 4px;
}

/* Handle */
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
  background: #555;
}
img {
  width: 100%;
}
.body-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/****************** header css ****************************/
mg {
  width: 100%;
}
.body-layout {
  background-color: var(--background-color);
}
header {
  width: 100%;
  display: flex;
  background-color: var(--primary-color);
  position: fixed;
  padding: 8px 10%;
  z-index: 1;
  /* transform: translateY(-100%); */
  /* opacity: 0; */
  transition: all 0.6s ease;
}
/* header.show {
  transform: translateY(0);
  opacity: 1;
} */
.header-layout {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
a.logo-link {
  width: 52px;
  text-decoration: none;
}
a.logo-link img {
  width: 100%;
}
nav {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.nav-ul {
  list-style: none;
  display: flex;
}
li.nav-li {
  margin: 0 25px;
}
li.nav-li a {
  text-decoration: none;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: var(--text-white);
}
.left-nav {
  width: auto;
  display: flex;
}
.left-nav-ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.left-nav-li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.language-select select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray-border);
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.language-select select:focus {
  outline: none;
  border-color: var(--primary-color);
}
button.search-btn {
  width: 26px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  /*margin-right: 20px;*/
}
button.search-btn img {
  width: 100%;
}
button.login-btn {
  width: 100px;
  /* background-color: var(--secondary-color); */
  background-image: radial-gradient(at bottom center, #e83a5a 0%, #7a0792 100%);
  border: 0;
  cursor: pointer;
  color: var(--text-white);
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  border-radius: 4px;
  padding: 10px 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Glossy overlay */
button.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top center,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none; /* So it doesn't block button clicks */
  border-radius: inherit; /* Match button shape */
  z-index: 1; /* Overlay on top of background */
}
/* Optional: Add a subtle shadow for depth */
button.login-btn:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Optional depth */
}
.mobile-nav {
  display: none;
}
.mobile-nav.active span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
  margin: 6px;
}

.mobile-nav.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav.active span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
  margin: 6px;
}
.website-layout-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

@media (max-width: 1112px) {
  header {
    padding: 8px 2%;
  }
  button.login-btn {
    width: 70px;
    font-size: 14px;
    padding: 4px 0;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    background-color: transparent;
    border: 0;
    margin-right: 20px;
  }
  .ham-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    margin: 6px 0 0;
    transition: all 0.4s ease-in-out;
  }
  /* header {
    position: relative;
  } */
  .header-layout {
    justify-content: flex-start;
  }
  .left-nav {
    margin-left: auto;
  }
  .homepage-menu .navbar {
    width: 50%;
    position: fixed;
    top: 60px;
    left: -100%;
    height: 100vh;
    flex-direction: column;
    z-index: 4;
    background-color: var(--background-color);
  }
  nav.active {
    left: 0; /* Slides in */
  }
  a.logo-link {
    width: 55px;
  }
  ul.nav-ul {
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px;
  }
  li.nav-li {
    margin-left: 0;
  }
  li.nav-li a {
    color: var(--primary-color);
  }

  .header-layout .menu-popup-overlay {
    top: 60px;
  }
}

@media (max-width: 600px) {
  nav {
    width: 73%;
    top: 55px;
  }
  .table-container nav {
	  width: auto;
  }
  .top-navbar .text-logo {
    font-size: 16px;
  }
  .language-select select {
    padding: 10px 3px;
    font-size: 12px;
  }
  .language-select {
    margin-right: 10px;
    margin-left: 5px;
  }
  .top-navbar .notification-plot {
    margin: 0 5px;
  }
}
@media (min-width: 600px) {
  .language-select {
    width: 200px;
    margin-right: 15px;
  }
}

.right-side-wrapper {
  width: calc(100% - 450px);
  /* width: 77%; */
  /* width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--text-white);
  margin-left: 250px; */
  /* width: 100%; */
  /* width: calc(100% - 250px);
  min-height: 100vh; */
  flex-grow: 1;
  /* padding: 20px; */
  min-height: 100vh;
  transition: margin-left 0.3s ease-in-out;
  /* margin-left: 250px; */
  transition: 0.3s;
  background: var(--background-color);
}
.right-side-wrapper.full-width {
  /* width: 100%; */
  margin-left: 0;
  width: 100%;
}
@media (max-width: 1112px) {
  .right-side-wrapper {
    width: 100%;
    margin-left: 0;
  }
}

/****************** top navbar **********************************/
.top-navbar {
  width: 100%;
  height: 65px;
  display: flex;
  background-color: var(--text-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 10px 2%;
  margin-bottom: 8px;
}
@media (max-width: 1112px) {
  .top-navbar {
    position: fixed;
    z-index: 3;
    padding: 10px 5%;
  }
}
.hamburger-icon {
  width: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  border: 0;
}
.text-logo {
  width: auto;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}
.collapse-icon {
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: var(--primary-color);
  margin-bottom: 3px;
}

.right-content {
  width: auto;
  display: flex;
  margin-left: auto;
}

.search-plot {
  display: flex;
  /*width: 270px;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 5px;*/
  /* margin-right: 10px; */
}

.search-input {
  width: 100%;
  background-color: var(--text-white);
  color: var(--text-color);
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  border: 0;
  padding: 10px;
  margin-right: 20px;
  border-radius: 5px;
}
.mob-search-input {
  display: none;
}
@media (max-width: 600px) {
  .search-input {
    display: none;
  }
  .mob-search-input {
    width: 100%;
    background-color: var(--text-white);
    color: var(--text-color);
    font-family: "Poppins", serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    border: 0;
    padding: 10px;
    margin-right: 20px;
    border-radius: 5px;
    display: flex;
  }
}

.profile-plot {
  position: relative;
  width: auto;
  background-color: var(--medium-pink);
  display: flex;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
}
.avtar-plot {
  width: 30px;
  margin-right: 10px;
}
.profile-name {
  font-family: "poppins", sans-serif;
  color: var(--text-color);
  padding-right: 20px;
}

.profile-plot .arrow {
  width: 20px;
}
.profile-popup {
  position: absolute;
  width: 250px;
  right: 0;
  top: 56px;
  background: var(--text-white);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.5s ease-out;
}
.show-profile-items {
  opacity: 1;
  z-index: 2;
  animation: fadeIn 0.5s ease-out;
}

@media (max-width: 1112px) {
  .profile-popup {
    display: none;
  }
  .show-profile-items {
    display: flex;
    flex-direction: column;
  }
}

.popup-arrow {
  position: absolute;
  top: -11px;
  right: 1px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ccc;
}
.popup-arrow::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--text-white);
}
.profile-desc {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.profile-name {
  width: 100%;
  font-family: "poppins", sans-serif;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
}
.profile-email {
  width: 100%;
  font-family: "poppins", sans-serif;
  color: var(--primary-color);
  font-size: 14px;
}
.setting-ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.setting-li {
  width: 100%;
  display: flex;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: background-color 0.6s ease;
  padding: 5px;
}
.setting-li:hover {
  background-color: var(--light-purple);
}
.setting-icon {
  width: 14px;
  margin-right: 5px;
}
.setting-link {
  width: auto;
  font-family: "poppins", sans-serif;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.logout-block {
  width: 100%;
  display: flex;
  font-family: "poppins", sans-serif;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  border-top: 1px solid #ccc;
  padding-top: 11px;
}
.logout-icon {
  width: 20px;
  margin-right: 10px;
}
@media (max-width: 600px) {
  .profile-plot {
    padding: 4px;
  }
  .profile-name {
    display: none;
  }
}
/**************** search pop up  *************************************/
.search-popup {
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  /* z-index: 2; */
}
.search-popup.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.5s ease-out;
  z-index: 2;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.search-popup-plot {
  width: 70%;
  position: absolute;
  display: flex;
  margin-top: 3%;
}
.search-input-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search-input:focus {
  outline: 0;
}
.search-button {
  width: auto;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding: 3px 32px;
  border-radius: 3px;
  cursor: pointer;
  border: 0;
}
.popup-overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
}
@media (max-width: 1112px) {
  .search-popup-plot {
    width: 95%;
    margin-top: 10%;
  }
  .search-popup.active {
    z-index: 3;
  }
}

/* @media (orientation: landscape) {
  .search-popup-plot {
    width: 95%;
    margin-top: 10%;
  }
} */
@media only screen and (min-device-width: 768px) and (max-device-width: 1112px) and (orientation: landscape) {
  .search-popup-plot {
    width: 95%;
    margin-top: 10%;
  }
}
@media (max-width: 600px) {
  .search-popup-plot {
    width: 90%;
    margin-top: 15%;
  }
  .search-button {
    padding: 3px 7px;
  }
}

/*************************Subject layout********************************************/
.subject-page {
  width: 100%;
  display: flex;
  flex: 1;
  /* align-items: stretch; */
  /* flex-direction: row; */
  /* flex-wrap: wrap; */
}
.subject-layout {
  width: 100%;
  /* width: calc(100% - 450px); */
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  padding: 0 2% 30px;
}
.breadcrumb {
  display: flex;
  padding: 5px 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 5px 10px;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  color: var(--text-color);
}
.subject-header {
	text-align: center;
	margin-bottom: 20px;
}
@media (max-width: 1112px) {
  .subject-layout {
    margin-top: 60px;
  }
}
.subject-grid-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  /* background-color: var(--bg-pink); */
  margin: 0px 0 10px;
  padding: 0% 0% 1%;
}
.subject-title {
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "poppins-bold", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.subject-title::after {
  content: "";
  width: 45px;
  height: 3px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -3px;
  left: 0;
  border-radius: 13px;
}
.subject-grid-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 50px;
}
.subject-block {
  /* width: calc((100% - 60px) / 4); */
  width: 120px !important;
  height: 100px !important;
  /* margin: 0 20px 20px 0; */
  margin-right: 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--light-purple);
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 7px;
  padding: 4px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px 0;
  /* background-image: linear-gradient(
    135deg,
    rgb(198 165 238),
    rgb(233 188 247),
    rgb(236 127 187)
  ); */
}
.subject-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.subject-block:nth-child(4n) {
  margin-right: 0;
}
.subject-icon {
  width: 30px;
}
.subject-name {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  /* color: var(--primary-color); */
  color: var(--text-white);
  padding: 9px 0 0;
}
.subject-updates {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  /* padding: 25px 10%; */
}
.subject-accordion-box {
	margin-top: 15px;
}
.subject-accordion-box .flex-box {
	margin-bottom: 0;
}
.subject-right-wrapper {
	width: 40%;
	text-align: center;
}
.subject-right-wrapper img {
	width: 150px;
	height: 150px;
}
.updates-wrapper {
  width: 60%;
  display: flex;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: var(--text-white);
  border-radius: 5px;
}
.updates-pannel {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
  border-radius: 5px;
  /* padding: 10px 0px; */
  border: 1px solid #ccc;
}
.updates-ul,
.updates-li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  background-color: var(--text-white);
}
*/ .updates-ul {
  border-bottom: 1px solid #ccc;
}
.updates-li {
  padding: 10px;
}
.updates-li.active {
  background-color: var(--bg-pink);
}
.updates-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "poppins", sans-serif;
  font-size: 14px;
  color: #666065;
  font-weight: 400;
  text-transform: capitalize;
  text-decoration: none;
  /* background: transparent url("../images/bottom-chevron.png") 98% no-repeat;
  background-size: 20px; */
  cursor: pointer;
  padding: 8px 20px 8px;
}
.acc-icon {
  width: 20px;
  margin-right: 4px;
}
.subject-acc .drop-arrow {
  margin-left: auto;
}
.drop-arrow {
  width: 20px;
  /* margin-left: auto; */
}
.updates-links.active {
  font-weight: 600;
  background-color: var(--light-purple);
}
.updates-links.active .drop-arrow {
  transform: rotate(180deg);
}
.pannel-block.active {
  display: flex;
  flex-direction: column;
}
.pannel-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* margin-bottom: 20px; */
}
.pannel-section:not(:last-child) {
  border-bottom: 1px solid #ccc;
  /* margin-bottom: 15px; */
}
.pannel-block {
  width: 100%;
  display: none;
  padding: 15px;
  border-top: 1px solid #ccc;
  position: relative;
}
.pannel-block.active {
  /* display: flex; */
  /* opacity: 1;
  background-color: var(--bg-pink); */
  /* opacity: 1; */
  /* transform: translateY(0); */
  /* background-color: var(--bg-pink); */
  /* visibility: visible;
  position: relative; */
}
.pannel-title {
  width: 100%;
  display: flex;
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.pannel-desc {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-family: "poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
}
.activities-section {
  width: 100%;
  display: flex;
  gap: 30px;
  /*justify-content: center;*/
  align-items: baseline;
  /* background-color: var(--bg-pink); */
  padding: 25px 0%;
}
.recent-activities-section {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: var(--text-white);
  padding: 15px;
  border-radius: 15px;
  /*margin-left: 30px;*/
}
.upcoming-section {
  width: 30%;
  display: flex;
  flex-direction: column;
  background-color: var(--text-white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 15px;
  border-radius: 15px;
}
.upcoming-section-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
.upcoming-section-row {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 15px;
  cursor: pointer;
  transition: background-color 0.6s ease, transform 0.6s ease;
  border-radius: 4px;
}
.upcoming-section-row:hover {
  background-color: var(--light-pink);
  transform: scale(1.02); /* Slight zoom */
}
.upcoming-section-row:last-child {
  margin-bottom: 0;
  padding-bottom: 12px;
}
/* .upcoming-section-row:not(:last-child) {
  border-bottom: 1px solid #ccc;
} */
.upcoming-icon-block {
  width: 40px;
  height: 35px;
  background-color: var(--light-pink);
  display: flex;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}
.upcoming-icon {
  width: 17px;
}
.deadline-desc-block {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.deadline-title {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}
.deadline-desc {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
}
.deadline-desc span {
  border-left: 1px solid var(--text-color);
  margin-left: 5px;
  padding-left: 5px;
}
.activities-table {
  width: 100%;
  /*display: flex;*/
  flex-direction: column;
  border-collapse: collapse;
  white-space: nowrap;
}
.table-container:hover {
  transform: scale(1.02);
}
thead {
  width: 100%;
  /*display: flex;*/
  background-color: var(--light-purple);
  font-family: "poppins", sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
th {
  font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding: 10px 20px;
}
tr {
  width: 100%;
  /*display: flex;*/
  justify-content: space-around;
  font-family: "poppins", sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  font-size: 14px;
}
td {
	border-bottom: 1px solid #ccc;
    padding: 10px 20px;
}
.activities-row {
  color: var(--text-color);
  padding: 10px 0;
  transition: background-color 0.6s ease, transform 0.6s ease;
  cursor: pointer;
}
.activities-row:last-child td {
	border-bottom: 0;
}
.activities-row:hover {
  background-color: var(--light-purple);
  /* transform: scale(1.02); */
  /* transform: scale(1); */
}
.activities-row:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
/* .activities-row:nth-child(even) {
  background-color: var(--light-purple);
} */
.table-container {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	transition: transform 0.6s ease;
	border: 1px solid #ccc;
    border-radius: 6px;
	overflow-y: auto;
    height: 340px;
}
.swiper-horizontal .swiper-pagination {
  bottom: 3px;
}
.swiper-button-next,
.swiper-button-prev {
  width: 25px;
  height: 25px;
  background-color: var(--text-white);
  padding: 8px;
  border-radius: 50%;
}
.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  width: 35px;
  height: 26px;
  font-size: 12px;
  color: var(--primary-color);
  background-color: var(--text-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-family: "poppins", sans-serif; */
}
.swiper-pagination-bullet-active {
  /* width: 10px;
  height: 10px; */
  background-color: var(--primary-color);
}
.web-link {
  display: flex;
}
.mob-link {
  display: none;
}
.activities-section {
  overflow: hidden;
}
@media (min-width: 1113px) and (max-width: 1300px) {
	.upcoming-section {
		width: 36%;
	}
	.recent-activities-section {
		width: 64%;
	}
}
@media (max-width: 1112px) {
  .web-link {
    display: none;
  }
  .mob-link {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid #ccc;
  }
  .mob-link.active {
    background-color: var(--bg-pink);
  }
  .mobile-topics-header {
    display: flex;
    width: 100%;
    left: 0;
  }
  .topics-wrapper {
    /* margin-top: 35px; */
  }
  .chapter-topics-layout {
    max-width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    left: -100%;
    background-color: var(--background-color);
    padding: 20px 0;
    z-index: 1;
  }
  .mobile-topic-close {
    position: absolute;
    right: 0;
    top: -8px;
    width: 47px;
  }

  .chapter-right-section {
    width: 40%;
    margin-top: 20px;
  }
  .topics-list {
    padding: 0 20px;
  }
  .menu-popup-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: width 0.5s ease-in-out;
    padding: 18px 0;
  }
  .collapse-topic-icon {
    width: 28px;
  }
  .topics-title {
    font-size: 22px;
    padding: 10px 0;
  }
  .subject-grid-section {
    padding: 3%;
  }
  .activities-section {
    flex-direction: column;
    padding: 3%;
  }
  .recent-activities-section,
  .upcoming-section {
    width: 100%;
    margin: 0 0 40px;
  }
  .table-container {
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  }
  .activities-table {
    min-width: 600px; /* Ensure table doesn't shrink */
    border-collapse: collapse; /* Optional: collapse borders */
  }
  .subject-updates {
    padding: 0 3%;
  }

  .pannel-section {
    flex-direction: column;
  }
  .updates-ul {
    display: none;
  }
}
.author-detail {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.author-section {
  width: auto;
  display: flex;
}
@media (min-width: 600px) {
  .chapter-right-section {
    padding-left: 3%;
  }
}
@media (max-width: 600px) {
  .chapter-feature-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .author-section .author-detail {
    border-bottom: 0px;
    width: auto;
    padding: 0;
    margin-left: 8px;
  }
  .author-section,
  .author-detail {
    width: 100%;
    justify-content: center;
    border-bottom: 0.5px solid #ccc;
    padding: 10px 0 10px 0;
    margin: 0;
  }
  .author-detail:last-child {
    border-bottom: 0;
  }
  .topics-title {
    display: none;
  }
  a.logo-link {
    width: 45px;
  }
  .header-layout .menu-popup-overlay,
  .chapter-top-bar {
    top: 54px;
  }
  .activities-section {
    flex-direction: column;
    padding: 0 3%;
  }
  .recent-activities-section,
  .upcoming-section {
    width: 100%;
    margin: 0 0 30px;
  }
}
@keyframes shimmer {
  from {
    background-position: -200% 0;
  }
  to {
    background-position: 200% 0;
  }
}

/******************* grid section *************************/
.grid-section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
  gap: 10px;
}

.grid-block {
  min-width: 205px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-purple);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light box shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
.grid-block:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.grid-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  cursor: pointer;
}
.grid-icon {
  width: 150px;
}
@media (max-width: 1112px) {
  .grid-section {
    padding: 0 3%;
  }
  .grid-block {
    min-width: 160px;
    /* height: 150px; */
	margin-bottom: 20px;
  }
  .grid-icon {
    width: 150px;
    height: 140px;
  }
}
@media (max-width: 600px) {
  .grid-block {
    min-width: 185px;
    margin-bottom: 20px;
  }
  .search-plot {
    width: auto;
    border: 0;
  }
  button.search-btn {
    margin-right: 0;
  }
}
@media (max-width: 420px) {
  .grid-block {
    min-width: 175px;
    margin-bottom: 20px;
  }
}
@media (max-width: 390px) {
  .grid-block {
    /* min-width: 155px; */
    min-width: calc((100% - 15px) / 2);
    margin-bottom: 20px;
    margin-right: 15px;
  }
  .grid-block:nth-child(2n + 2) {
    /* min-width: 155px; */
    margin-right: 0;
  }
}

.notification-plot {
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: relative;
  margin: 0 10px;
}
.notification-btn {
  width: 25px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.notification-buttble {
  position: absolute;
  top: 1px;
  right: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e83a5a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--text-white);
  font-family: "poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.notification-popup {
  position: absolute;
  width: 300px;
  right: 0;
  top: 56px;
  background: var(--text-white);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  z-index: -4;
  transition: opacity 0.5s ease-out;
}
.notification-row {
  width: 100%;
  display: flex;
  margin-bottom: 4px;
  transition: background-color 0.6s ease;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}
.notification-row:hover {
  background-color: var(--light-pink);
}
.notification-icon {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-pink);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  padding: 0 10px;
}
.notification-icon svg {
  width: 20px;
}
.notification-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.notification-title {
  width: 100%;
  font-family: "poppins", sans-serif;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}
.notification-time {
  width: 100%;
  font-family: "poppins", sans-serif;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
}
.show-noti-items {
  opacity: 1;
  z-index: 2;
  animation: fadeIn 0.5s ease-out;
}
@media (max-width: 1112px) {
  .notification-popup {
    right: -38px;
    display: none;
  }
  .notification-popup .popup-arrow {
    right: 42px;
  }
  .show-noti-items {
    display: flex;
    flex-direction: column;
  }
}
/*.slide-1 {
  background-color: #d2691e;
}
.slide-2 {
  background-color: #00ff00;
}
.slide-3 {
  background-color: #ff6347;
}
.slide-4 {
  background-color: #dc5aa7;
}
.slide-5 {
  background-color: #ffd700;
}
.slide-6 {
  background-color: #1e90ff;
}
.slide-7 {
  background-color: #ff8c00;
}
.slide-8 {
  background-color: var(--primary-color);
}
.slide-9 {
  background-color: #3cb371;
}
*/


.slide-1 {
    background-color: var(--primary-color);
}

.slide-2 {
    background-color: #b290a7 ;
}

.slide-3 {
    background-color: #f7cdea;
}

.slide-4 {
    background-color: #dc5aa7;
}

.slide-5 {
    background-color: #c29bcd;
}

.slide-6 {
    background-color: #666065;
}

.slide-7 {
    background-color: #4c3b4c;
}

.slide-8 {
    background-color: #7752de;
}

.slide-9 {
    background-color: #bfbde3;
}

.subject-block svg {
  width: 30px;
}

/******************* welcome popup *****************************************/
.welcome-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.welcome-popup-plot {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  /* top: 30%;
  left: calc((100% - 40%) / 2); */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto 0;
  background-color: var(--light-pink);
  border-radius: 5px;
  padding: 20px;
}
.welcome-popup-plot .close-popup {
  width: 40px;
  position: absolute;
  right: 6px;
  top: 5px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.popup-title {
  width: 100%;
  font-family: "poppins-bold", sans-serif;
  font-size: 25px;
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
}
.popup-image {
  width: 52%;
}

@media (max-width: 1112px) {
  .welcome-popup-plot {
    width: 80%;
    /* left: calc((100% - 80%) / 2); */
  }
  .welcome-popup-plot .close-popup {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .welcome-popup-plot .close-popup {
    width: 30px;
    right: 2px;
    top: 2px;
  }
  .popup-title {
    font-size: 18px;
  }
}

/*************** footer css *******************************/
.elcass-footer {
  width: 100%;
  display: flex;
  background-color: var(--primary-color);
  /* background-color: var(--background-color); */
  position: relative;
  bottom: 0;
  padding: 20px;
}
.footer-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-links-section {
  width: 70%;
  display: flex;
}
.footer-anchor {
  font-family: "poppins", sans-serif;
  color: var(--text-white);
  font-size: 16px;
  /* text-decoration: none; */
  text-underline-offset: 6px;
  margin-right: 30px;
}
.footer-social-media {
  width: 21%;
  display: flex;
  justify-content: space-between;
}
.social-media-icon {
  width: 35px;
  height: 35px;
  padding: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--text-white);
  border-radius: 50%;
}
.social-media-icon:not(:last-child) {
  margin-right: 20px;
}
.footer-coarse-links {
  width: 100%;
  display: flex;
}
.footer-ul {
  width: auto;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.footer-ul:not(:last-child) {
  margin-right: 30px;
}
.footer-title-li {
  width: 100%;
  display: flex;
  font-family: "poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 20px;
}
.footer-li {
  width: 100%;
  display: flex;
  list-style: none;
  font-size: 14px;
  font-family: "poppins", sans-serif;
  color: var(--text-white);
}
.footer-li a {
  font-size: 14px;
  font-family: "poppins", sans-serif;
  color: var(--text-white);
  text-decoration: none;
}

@media (max-width: 1112px) {
  .footer-links-section {
    width: 100%;
  }
  .footer-social-media {
    width: 100%;
    justify-content: flex-start;
    margin: 20px 0;
  }
  .footer-coarse-links {
    flex-wrap: wrap;
  }
  .footer-ul {
    width: 47%;
  }
}

@media (max-width: 600px) {
  .footer-links-section {
    flex-wrap: wrap;
  }
  .footer-anchor {
    width: 44%;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .footer-anchor:nth-child(2n) {
    margin-right: 0;
  }
  .footer-ul {
    width: 100%;
  }
}

/************************  chapter page css ***********************************************/
.chapter-page {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.main-logo-plot {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--light-pink);
  padding: 10px 27px;
}
.logo-icon {
  width: 59px;
}
.chapter-topics-layout {
  min-width: 300px;
  max-width: 300px;
  height: 100vh;
  /* position: fixed; */
  /* position: sticky; */
  top: 0;
  left: -100%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
  background-color: var(--primary-color);
  border-right: 1px solid rgb(229, 231, 235);
  transition: 0.3s;
  margin-left: 0;
  overflow-y: auto;
  transition: width 0.3s ease-in-out;
  position: fixed;
  margin-left: -250px;
  /* margin-left: -250px; */
}
.chapter-topics-layout.open {
  /* margin-left: 0; */
  position: sticky;
  left: -100%;
  margin-left: 0;
}
.mobile-close {
  display: none;
}
.chapter-updates {
  flex-direction: row;
}
.chapter-pannel {
  flex: 1;
  overflow: auto;
  padding: 10px;
}
.chapter-right-section {
  top: 20px;
}
.pannel-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin: 20px 0;
}
.pannel-btn {
  width: auto;
  background-color: var(--light-purple);
  font-family: "poppins", sans-serif;
  font-weight: 500;
  color: var(--primary-color);
  border-radius: 3px;
  cursor: pointer;
  padding: 10px 10px 5px;
  border: 0;
  overflow: hidden;
  transition: color 0.3s ease;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light box shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}
.pannel-btn:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.pannel-button-wrapper svg {
  width: 20px;
}
.pannel-links-wrapper {
  width: auto;
  display: flex;
  justify-content: space-around;
  margin-left: auto;
}
.pannel-link {
  padding: 5px 15px;
  border: 0;
  /* border: 2px solid #dc5aa7; */
  background: transparent;
  color: #dc5aa7;
  font-family: "poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: color 0.6s ease-in-out;
  text-decoration: underline;
  z-index: 1;
}
/* .pannel-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--light-pink), #dc5aa7);
  transition: left 0.6s ease-in-out;
  color: var(--text-white);
  z-index: -1;
}
.pannel-link:hover::before {
  left: 0; 
}

.pannel-link:hover {
  color: white; 
} */
@media (max-width: 1112px) {
  .chapter-updates {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .chapter-topics-layout.open {
    /* margin-left: 0; */
    /* position: sticky;
    margin-left: 0; */
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 4;
  }

  .mobile-close {
    display: flex;
    width: 20px;
    background: transparent;
    border: 0;
  }
  .main-logo-plot {
    justify-content: space-between;
  }
  .chapter-pannel {
    width: 100%;
  }
  .chapter-right-section {
    width: 100%;
	padding-left: 0;
  }
}
@media (max-width: 600px) {
  .chapter-topics-layout.open {
    width: 85%;
    height: 100vh;
  }
}
.topics-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.topics-title {
  display: block;
  color: var(--primary-color);
}
.close {
  position: absolute;
  top: 11px;
  right: 7px;
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  border: 0;
  cursor: pointer;
}
.topics-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 0 7px;
}
.topic-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
  background-color: var(--primary-color);
  border-radius: 4px;
  margin-bottom: 10px;
}
/* li.topic-item.active .sub-topic-link {
  display: flex;
} */
.topic-link.active .drop-icon {
  transform: rotate(90deg);
}
.topic-item a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  color: var(--text-white);
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding: 8px 10px;
  border-radius: 4px;
}
.topic-item a:focus {
  outline: unset;
}
.topic-item a.active {
  background-color: var(--secondary-color);
}
.chapter-topics-layout.topic-aside .topic-item a.active {
  /*background-color: var(--primary-color);*/
}
.topic-icon {
  width: 16px;
  margin-right: 8px;
}

.drop-icon {
  width: 16px;
  margin-left: auto;
}
ul.sub-topic-link {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--light-purple);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  padding: 0 10px 15px;
}

li.sub-topic-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* border-bottom: 1px solid var(--primary-color); */
}
a.sub-topic-link {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  /* background-color: var(--background-color); */
  color: var(--primary-color);
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  font-style: normal;
  padding: 15px 0 0;
}
.time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Poppins", serif;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 400;
  font-style: normal;
}
.collapse-topic-layout {
  width: 65px;
  height: 100vh;
}
.collapse-topic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--primary-color);
  cursor: pointer;
  padding: 20px 0;
}
.collapse-topic-icon {
  width: 22px;
  margin-right: 10px;
}
.topic-icon svg {
  width: 100%;
}
.chapter-desc-wrap {
  margin-bottom: 15px;
  color: var(--text-color);
  background-color: var(--light-pink);
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.chapter-desc-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.full-width {
  width: 100%;
}
.desc-title {
  font-size: 14px;
}
.desc-para {
  font-size: 12px;
}
.chapter-layout,
.topic-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2% 3%;
}
.chapter-heading {
  width: 100%;
  text-align: center;
  display: block;
  font-family: "Poppins", serif;
  font-size: 22px;
  color: var(--text-color);
  font-weight: 600;
  font-style: normal;
}
.chapter-subtitle {
  width: 100%;
  text-align: center;
  display: block;
  font-family: "Poppins", serif;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  font-style: normal;
}

/************************ topic page css *********************************************/
.chapter-video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 20px 0 10px;
}
.video-plot {
  width: 100%;
  height: 350px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", serif;
  font-size: 22px;
  color: var(--text-color);
  font-weight: 400;
  font-style: normal;
  margin: 20px 0 0;
}
.chapter-feature-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: 4px;
  padding: 10px;
}
.feature-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.play-btn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent url("../images/play-button.png") center no-repeat;
  background-size: 100%;
  border: 0;
  cursor: pointer;
}
.pause-btn {
  background: transparent url("../images/pause.png") center no-repeat;
  background-size: 100%;
}
.mute-btn {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent url("../images/microphone.png") center no-repeat;
  background-size: 100%;
  border: 0;
  cursor: pointer;
}
.unmute-btn {
  background: transparent url("../images/unmute-microphone.png") center
    no-repeat;
  background-size: 100%;
}
.author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  /* margin: 10px 0; */
}

.go-to-quiz {
  display: flex;
  font-family: "poppins", sans-serif;
  font-size: 16px;
  color: var(--text-white);
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.go-to-quiz::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px; /* Border thickness */
  background-color: var(--text-white);
  transition: width 0.4s ease-in-out;
}
.go-to-quiz:hover::after {
  width: 100%;
}
.author-name {
  font-family: "Poppins", serif;
  font-size: 16px;
  color: var(--text-white);
  font-weight: 500;
  font-style: normal;
}
.author-description {
  font-family: "Poppins", serif;
  font-size: 14px;
  color: var(--text-white);
  font-weight: 400;
  font-style: normal;
}
.rating-section {
  /* display: block; */
  font-family: "Poppins", serif;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  font-style: normal;
}
.rating {
  direction: rtl;
  display: inline-flex;
}
.rating input {
  display: none;
}
.rating label {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}
.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: var(--secondary-color);
}
.add-note,
.bookmark {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.bookmark:hover svg {
  fill: var(--secondary-color);
  stroke: var(--secondary-color);
}

.chapter-detail-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.paragraph-title,
.ul-title {
  width: 100%;
  font-family: "Poppins-bold", serif;
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
  font-style: normal;
  text-align: left;
  margin: 10px 0;
}
.paragraph {
  font-family: "Poppins", serif;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
}
ul {
  width: 100%;
  font-family: "Poppins", serif;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
  padding-left: 20px;
}
.menu-popup-overlay {
  display: none;
}
.menu-popup-overlay.open {
  display: block;
}
.chapter-top-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0;
  background-color: var(--background-color);
  padding: 3px 0;
  box-shadow: 4px 4px 9px 0px #8089e1;
  z-index: 1;
}
.chapter-top-bar.zindex {
  z-index: -1;
}

.illustration-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.illustration-popup-plot {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto 0;
  background-color: var(--text-white);
  border-radius: 5px;
  padding: 20px;
}
.illustration-popup-title {
  width: 100%;
  font-family: "poppins", sans-serif;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.illustration-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.illustration-popup-plot .popup-close {
  width: 30px;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  cursor: pointer;
}
.section-image {
  width: 30%;
}
.editor {
  width: 100%;
}
.submit-note {
  width: auto;
  background-color: var(--primary-color);
  font-size: 16px;
  font-family: "poppins", sans-serif;
  color: var(--text-white);
  margin: 10px 0;
  padding: 11px 12px;
  text-transform: capitalize;
  cursor: pointer;
  border-radius: 3px;
  border: 0;
}
@media (min-width: 1113px) {
	.chapter-right-section {
	  width: 40%;
	}
}
@media (max-width: 1112px) {
  .illustration-popup-plot {
    width: 80%;
  }
  .section-image {
    width: 75%;
  }
}

@media (max-width: 600px) {
  .pannel-button-wrapper {
    flex-wrap: wrap;
  }
  .illustration-popup-plot {
    width: 92%;
  }
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  width: 100%;
}
/************** topic page aside *******************/
.back-chapter {
  width: 20px;
  margin-right: 5px;
}
.topic-topbar-title {
	font-family: "poppins-bold", sans-serif;
  text-align: center;
  color: var(--primary-color);
  font-size: 18px;
}
.topic-topbar-subtitle {
  font-size: 14px;
  color: var(--primary-color);
  text-align: center;
}
.topic-top-wrapper {
  font-family: "Poppins", serif;
  font-size: 16px;
  color: var(--text-white);
  font-weight: 400;
  font-style: normal;
  line-height: 27px;
}
.topics-clickable {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10px;
  font-family: "Poppins", serif;
  font-size: 14px;
  color: var(--text-white);
  font-weight: 500;
  font-style: normal;
  line-height: 27px;
  cursor: pointer;
}
.mobile-topics-header {
  display: none;
}
.video-js {
  width: 100%;
  height: 100%;
}

.topic-aside {
  background-color: var(--background-color);
}
.topic-aside .main-logo-plot {
  background-color: var(--primary-color);
}
.topic-aside .topics-wrapper {
  background-color: var(--background-color);
}

@media (max-width: 1112px) {
  .topic-layout {
    margin-top: 75px;
  }
  .topic-aside {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .video-plot {
    height: 190px;
  }
}

.chart-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chart-container svg {
  transform: rotate(-90deg); /* Start from the top */
}
.chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  /* font-weight: bold; */
  color: var(--primary-color);
}

/*quiz page css*/
#quiz-page .chapter-feature-section {
  padding: 0;
}
#quiz-page .chapter-topics-layout.open {
  overflow-x: hidden;
}
.quiz-header {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  color: var(--text-white);
  border: 0;
}
.quiz-subject-wrapper {
  padding-left: 20px;
}
.timer-wrapper {
  background: var(--medium-pink);
  color: var(--primary-color);
  padding: 10px 40px;
  font-weight: 500;
}
.quiz-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 2%;
  padding-bottom: 30px;
}
.quiz-name-header {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  color: var(--text-color);
}
.quiz-name-header h3 {
	font-family: "Poppins-bold", serif;
}
.quiz-container {
  margin-top: 15px;
}
.question-hamburger-wrapper .topics-list {
  margin: 0;
  padding: 0;
  counter-reset: list-counter;
}
.question-hamburger-wrapper .topic-item {
  position: relative;
  counter-increment: list-counter;
  background: var(--background-color);
  border-radius: 0;
  margin: 0;
  cursor: pointer;
}
.question-hamburger-wrapper .topic-item.active a::before {
  background: var(--primary-color);
  border: 0;
  color: var(--text-white);
}
.question-hamburger-wrapper .topic-item a::before {
  content: counter(list-counter);
  font-weight: bold;
  width: 20px;
  height: 16px;
  padding: 0 8px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px dashed var(--text-color);
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
  margin-right: 10px;
}
.quiz-container .question {
  display: none;
}
.quiz-container .question.active {
  display: block;
}
.question-hamburger-wrapper .topic-item.active {
  background-color: var(--text-white);
}
.question-hamburger-wrapper .topic-item.active:after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-left: 4px solid var(--primary-color);
}
.question-hamburger-wrapper .topic-item a {
  color: var(--text-color);
  border-radius: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  align-items: flex-start;
  border-bottom: 1px solid var(--text-color);
}
.question-hamburger-wrapper .topic-item:last-child a {
  border-bottom: 0;
}
#quiz-page .question-hamburger-wrapper .topic-item a.active {
  background-color: transparent;
}
.question-hamburger-wrapper .topic-item .que-link-wrap {
  padding: 0 20px 0 24px;
}
.pagination-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  border-top: 1px solid var(--text-color);
  padding-top: 30px;
  margin-top: 30px;
}
.pagination-btn-wrapper button {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid var(--text-color);
  font-size: 14px;
}
.question-counter {
  margin: 0 15px;
}
.options-wrapper {
  margin: 15px 0;
}
.answer-radio-btn {
  margin-bottom: 10px;
}
.enabled {
  background-color: var(--primary-color);
  color: var(--text-white);
  cursor: pointer;
}
.quiz-hint-wrapper {
  border-left: 4px solid var(--medium-pink);
  padding: 10px;
  margin-top: 30px;
  flex-basis: 100%;
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(255, 182, 193, 0.5);
}
.hint-text {
  color: var(--text-red);
  font-weight: 500;
}
.pagination-btn-wrapper .next {
  background-color: var(--primary-color);
  color: var(--text-white);
}
.pagination-btn-wrapper .next:disabled {
  background-color: transparent;
  color: var(--text-disabled);
}
.question-item {
  font-size: 18px;
}
.answer-box {
  border: 1px solid;
  display: inline-block;
  padding: 10px;
  text-align: center;
  margin-right: 10px;
  border-radius: 4px;
  min-width: 100px;
  background-color: var(--background-color);
}
.drag-answer-box {
  padding: 15px;
  margin: 10px 0;
  border: 2px dashed #ccc;
  background: #f8f8f8;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-left: auto;
  font-size: 14px;
}
.question-box {
  display: flex;
  width: 100%;
  min-height: 59px;
  padding: 0 15px;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #dbe0e9;
  background: #eef1f7;
  margin-bottom: 15px;
  font-size: 18px;
}
.drag-question-box,
.drag-answer-box {
  flex: 1;
}
.drag-answer-box .answer-box {
  display: flex;
  flex: 1;
  text-align: left;
}
.radio-box {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
}
/* Hide default radio button */
.radio-box input {
  display: none;
}
.radio-box span {
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  border: 1px solid var(--gray-border);
  font-size: 14px;
}
/* When radio button is checked */
.radio-box input:checked + span {
  outline: 2px solid var(--secondary-color);
  background-color: var(--medium-pink);
  border: 0;
}
/* Custom Checkbox Container */
.checkbox-box {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
}
/* Hide default checkbox */
.checkbox-box input {
  display: none;
}
/* Custom checkbox style */
.checkbox-box span {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  border: 1px solid var(--gray-border);
  font-size: 14px;
}
.checkbox-box span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-border);
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  background: var(--text-white);
}
/* Checked state */
.checkbox-box input:checked + span::before {
  -webkit-appearance: none;
  appearance: none;
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.5);
  content: "✔"; /* Checkmark */
  color: var(--text-white) !important;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
}
.checkbox-box input:checked + span {
  outline: 3px solid var(--light-pink);
  border: 0;
}
@media (max-width: 600px) {
  .quiz-header {
    width: 100%;
    border-bottom: 0.5px solid var(--gray-border);
    padding: 10px 0 10px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #timer {
    flex-basis: 100%;
  }
  .pagination-btn-wrapper {
    justify-content: center;
  }
  .quiz-submit-btn {
    margin-top: 15px;
  }
  .answers .answer-box {
    margin-top: 15px;
  }
  .question-box,
  .question-item {
    font-size: 16px;
  }
  .submit-btn-wrapper {
    flex-basis: 100%;
    text-align: center;
  }
}
@media (max-width: 1112px) {
  .quiz-layout {
    margin-top: 75px;
  }
}
@media (min-width: 600px) {
  .submit-btn-wrapper {
    margin-left: auto;
  }
}
/********************** Quiz popup *********************************************/
a {
  display: inline-block;
}
.quiz-popup-modal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}
.quiz-popup {
  width: 60%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding-bottom: 15px;
}

.quiz-popup-title {
  width: 100%;
  background-color: var(--medium-pink);
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary-color);
  text-align: center;
  border-radius: 5px;
  padding: 10px 15px;
  position: relative;
}
.quiz-popup-title .close-popup {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  cursor: pointer;
}
.quiz-desc-section {
  width: 100%;
  font-family: "poppins", sans-serif;
  font-size: 14px;
  color: var(--text-color);
  text-align: left;
  padding: 10px 15px;
}
.quiz-desc-section ul {
  width: 100%;
  margin: 10px 0;
}
.quiz-desc-section ul li {
  width: 100%;
  font-size: 14px;
}
.quiz-button {
  width: auto;
  background-color: var(--medium-pink);
  color: var(--secondary-color);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}

/******************* Loader css ***********************/
.loader-wrapper {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 3;
}
.loader-content {
  width: 10%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-text {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 7px;
}
.loader-img img {
  width: 100%;
}
.bouncing-loader {
  display: flex;
  justify-content: space-between;
  width: 80px;
	  margin: 50px 0 40px;
}

.bouncing-loader > div {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
  animation-delay: 0.2s;
}

.bouncing-loader > div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  to {
	transform: translateY(-15px);
	opacity: 0.5;
  }
}
	
/* Homepage CSS */
.homepage-layout {
	padding: 0 30px;
}

/* Power features CSS */
.our-work-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}
.section-header {
	font-family: "poppins-bold", sans-serif;
    width: 100%;
	color: var(--primary-color);
	text-transform: uppercase;
}
.work-box {
	position: relative;
	height: 300px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}
.work-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/*.work-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4); 
	transition: background 0.3s ease-in-out;
}*/
.tile-title {
	position: absolute;
	bottom: 0;
	width: calc(100% - 40px);
	background: var(--text-white);
	color: var(--primary-color);
	padding: 12px;
	font-size: 18px;
	transition: transform 0.3s ease-in-out;
	margin: 20px;
	border-radius: 8px;
}
.tile-desc {
	position: absolute;
	bottom: -100%;
	width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: var(--text-white);
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    transition: bottom 0.3s ease-in-out;
    margin: 20px;
    border-radius: 10px;
    flex-direction: column;
}
.work-box:hover::before {
	background: rgba(0, 0, 0, 0.6); 
}
.work-box:hover .tile-desc {
	bottom: 0;
}
.work-box:hover .tile-title {
	transform: translateY(-100%);
}
.overlay-title {
	color: var(--primary-color);
}
.overlay-desc {
	margin: 15px 0;
	font-size: 14px;
}
.hover-text-wrap {
	position: relative;
	height: calc(100% - 50px);
    overflow: auto;
}
.btn-work {
    color: var(--primary-color);
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--primary-color);
	position: absolute;
    bottom: 19px;
}
.btn-work:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Our journey CSS */
.flex-box-container {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.primary-btn {
    background: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: inline-block;
    color: var(--text-white);
    text-decoration: none;
	border: 0;
}
.primary-btn:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.secondary-btn {
    background: var(--light-pink);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
	border: 0;
}
.secondary-btn:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.gray-btn {
    background: var(--background-color);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
	border: 0;
}
.gray-btn:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.journey-container {
	margin-bottom: 30px;
}
.journey-desc-title {
    margin-bottom: 5px;
}
.journey-border-box {
	padding: 20px;
    border-radius: 10px;
	margin-top: 20px;
	align-items: center;
	border: 1px solid var(--gray-border);
}
.journey-svg-icon {
	background-color: var(--medium-pink);
    border-radius: 10px;
    width: 10%;
    justify-content: center;
    display: flex;
	height: 60px;
}
.journey-desc-box svg {
	width: 30px;
}

/* Full width carousel CSS */
.full-width-carousel .owl-item img {
    height: 250px;
}

/* Our video CSS */
.eclass-video-container,
.school-onboaring-container {
    background: radial-gradient(circle, #7539cd, #f7cdea);
    padding: 50px 30px;
}
.video-desc-title {
    margin-bottom: 10px;
}
.video-box {
	position: relative;
	width: 100%;
	height: 376px;
	overflow: hidden;
	border-radius: 10px; 
	transition: transform 0.7s ease-in-out;;
}
.video-box:hover iframe {
	transform: scale(1.1);
}
.video-box iframe {
	width: 100%;
	height: 100%;
	border: none;
	transform-origin: center;
	transition: transform 0.7s ease-in-out; 
}

/* Vertical Tab CSS */
.course-header {
    margin-bottom: 10px;
}
.tab-flex-container {
    display: flex;
	margin-top: 40px;
	gap: 40px;
}
.tab-container {
	background: var(--background-color);
	padding: 50px 30px;
	text-align: center;
}
.tab-buttons {
	display: flex;
    flex-direction: column;
    width: 30%;
}
.tab-buttons .tab-link {
	padding: 15px;
    text-align: left;
    text-decoration: none;
    color: var(--text-color);
    transition: 0.3s;
    display: flex;
	gap: 20px;
	margin-bottom: 20px;
}
.tab-buttons a.active {
	background: var(--text-white);
    border-radius: 8px;
	box-shadow: 0px 4px 25px rgba(117, 57, 205, 0.2);
}
.tab-content-container {
	flex: 1;
	text-align: left;
}
.tab-content-container img {
	border-radius: 10px;
}
.tab-content-container .tab-desc {
	margin-bottom: 20px;
}
.tab-content {
	display: none;
}
.tab-content:first-child {
	display: block;
}
.nav-tab-icon svg {
	width: 25px;
    margin-top: 5px;
}
.nav-tab-title {
    margin-bottom: 5px;
	font-weight: 500;
}
.nav-tab-description {
    font-size: 14px;
}
.nav-tab-description {
	display: none;
}
.tab-buttons a.active .nav-tab-description {
	display: block;
}
.tab-buttons a:hover .nav-tab-icon svg path, 
.tab-buttons a:hover .nav-tab-icon svg .cls-1, 
.tab-buttons a.active .nav-tab-icon svg path,
.tab-buttons a.active .nav-tab-icon svg .cls-1,
.tab-buttons a:hover .nav-tab-icon svg circle,
.tab-buttons a.active .nav-tab-icon svg circle {
	stroke: var(--primary-color);
}
.tab-buttons a:last-child:hover .nav-tab-icon svg,
.tab-buttons a:last-child.active .nav-tab-icon svg {
	fill: var(--primary-color);
}
.margin-bottm-10px {
	margin-bottom: 10px;
}

/* LOGO Slider CSS*/
.logo-slider-container {
	display: flex;
	/*padding: 50px 0;*/
	flex-wrap: wrap;
}
.logo-slider-header {
	text-align: center;
    width: 100%;
    margin-bottom: 30px;
    color: var(--text-color);
}
.logo-slider-container .swiper {
	width: 100%;
	padding: 0 70px;
}
.logo-block {
    margin-right: 30px;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 120px !important;
}
.logo-img-box {
	
	max-height: 130px;
}
.logo-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 9px 0 0;
}
.logo-slider-container .swiper-button-prev, 
.logo-slider-container .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
	background-color: var(--medium-pink);
}
.logo-slider-container .swiper-button-next {
	background-color: var(--medium-pink);
}
.logo-slider-container .swiper-horizontal .swiper-pagination {
    display: none;
}
/*.logo-slider-container .swiper-wrapper {
	overflow: hidden;
}*/

/* School Onboarding CSS */
.school-onboaring-container .journey-border-box {
    background-color: rgba(255, 252, 252, 0.12);
	border: 0;
}

/* Main banner slider CSS */
.owl-nav,
.owl-dots {
	display: none;
}
.owl-carousel {
	width: 100%;
	margin: auto;
	position: relative;	
}
.owl-carousel .slide {
    position: relative;
}
.owl-carousel .caption {
	position: absolute;
    top: 15%;
    left: 5%;
    color: white;
	width: 38%;
}
.owl-carousel img {
	width: 100%;
    height: 500px;
    object-fit: cover;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
.typing-container {
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
}
.banner-heading {
	margin-bottom: 10px;
    font-size: 40px;
    display: inline-block;
    width: 0;
    overflow: hidden;
    animation: typing 3s steps(30, end) forwards;
}
.fullwidth-slider-btn {
	margin-top: 15px;
}

/* Main text section CSS */
.main-text-wrapper {
    /*padding: 30px 0;*/
}

/* Contact us form section */
.contact-us-container {
	background-color: var(--background-color);
	padding: 50px 30px;
}
.contact-us-container form {
    width: 90%;
    color: var(--text-color);
}
.input-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
	text-transform: capitalize;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
}

/* Chatbox section CSS */
.chatbox-container {
    position: fixed;
    height: 56px;
    width: 56px;
    right: 20px;
    bottom: 30px;
    background: var(--primary-color);
    z-index: 1;
    outline: none;
    display: block;
    cursor: pointer;
    -webkit-box-shadow: 0 0 8px 4px rgba(0, 0, 0, .16);
    -moz-box-shadow: 0 0 8px 4px rgba(0, 0, 0, .16);
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, .16);
    border: none;
    border-radius: 7px;
    padding: 14px;
}

/* Homepage header CSS*/
.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
	font-size: 18px;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    margin: 0;
}
.dropbtn::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fff;
    display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.dropdown:hover .dropbtn {
  color: white;
}
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}
.dropdown:hover .dropdown-content {
  display: block;
    z-index: 999;
    background: var(--primary-color);
}
.homepage-menu .navbar {
	position: static;
    height: auto;
    width: 100%;
	flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    padding: 15px 20px;
    color: var(--text-white);
}
.homepage-menu .logo {
    font-size: 24px;
    font-weight: bold;
}
.homepage-menu .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
	justify-content: flex-end;
}
.homepage-menu .nav-links li {
    display: inline;
}
.homepage-menu .nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 18px;
    transition: 0.3s;
}
.homepage-menu .nav-links a:hover {
    text-decoration: underline;
}
.homepage-menu .hamburger {
    font-size: 30px;
    cursor: pointer;
    display: none;
}
.homepage-menu .side-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: 0.4s;
    padding: 75px 20px 0;
}
.homepage-menu .side-menu ul {
    list-style: none;
    padding: 0;
	border-top: 1px solid var(--text-white);
}
.homepage-menu .side-menu ul li {
    padding: 15px;
    text-align: center;
	border-bottom: 1px solid var(--text-white);
}
.homepage-menu .side-menu ul li a {
    text-decoration: none;
    color: var(--text-white);
    display: block;
    transition: 0.3s;
}
.homepage-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-white);
}
.homepage-menu .side-menu.active {
    left: 0; 
	z-index: 9;
}
.common-carousel .owl-dots {
	display: block;
    position: absolute;
    bottom: 20px;
	z-index: 7;
    left: 50%;
    transform: translateX(-50%);
}
.common-carousel .owl-dot {
    width: 12px;
    height: 4px;
    background: var(--gray-border) !important;
    margin: 0 5px;
}
.common-carousel .owl-dot.active {
    background: var(--secondary-color) !important;
}

/* Report page css*/
.reportspage-layout {
    padding: 30px 0;
	color: var(--text-color);
	background-color: var(--background-color);
}
.reportspage-layout .table-container {
	height: 571px;
}
.report-chart-box {
    flex-basis: calc(32.8% - 10px);
	background-color: var(--text-white);
	padding: 20px;
	border-radius: 10px;
	justify-content: center;
    display: flex;
	flex-wrap: wrap;
	height: 100%;
}
.bar-chart-box {
    flex-basis: calc(50% - 10px);
}
.reports-chart-container {
	margin-bottom: 30px;
}
.chart-title {
	font-family: "Poppins-bold", serif;
	width: 100%;
    text-align: center;
	text-transform: capitalize;
}
.pie-chart-img {
	width: 60% !important;
    height: 90% !important;
}
.bar-chart-img {
	width: 100% !important;
}
.font-bold {
    font-weight: 600;
    margin: 20px 0 10px;
}
.report-question-box {
    border: 1px solid var(--gray-border);
    padding: 20px;
	border-radius: 10px;
	background-color: var(--text-white);
}
.question-flex-box {
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 12px;
}
.wrong-answer {
	color: var(--text-red);
	margin-bottom: 5px;
}
.correct-answer {
	color: var(--text-green);
}
.wrong-answer span,
.correct-answer span {
	display: inline-block;
    width: 135px;
    position: relative;
	color: var(--text-color);
}
.wrong-answer span::after,
.correct-answer span::after {
	content: ":";
    position: absolute;
    left: 125px;
}
.numbered-list {
  list-style-type: none;
  counter-reset: list-counter;
  padding-left: 0;
  margin-bottom: 12px;
}
.numbered-list li {
  counter-increment: list-counter;
}
.numbered-list li::before {
  content: counter(list-counter) ") ";
}

/* Registartion/ Login Form CSS */
.register-login-container {
	background-color: var(--primary-color);
	color: var(--text-color);
	min-height: 100%;
}
.register-login-container .flex-box-container {
	align-items: center;
	justify-content: center;
    height: 100%;
}
.login-page-carousel .owl-dots {
	display: block;
	position: absolute;
    bottom: 30px;
    z-index: 7;
    left: 50%;
    transform: translateX(-50%);
}
.login-page-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-border) !important;
    margin: 0 5px;
    border-radius: 50%;
}
.login-page-carousel .owl-dot.active {
    background: var(--primary-color) !important;
}
.login-page-carousel .slide {
	background: var(--text-white);
    height: 100vh;
	position: relative;
}
.login-form-text {
	font-size: 13px;
	margin-bottom: 15px;
}
.line-text-wrapper {
  text-align: center;
  position: relative;
  margin: 20px 0;
}
.line-text-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gray-border);
  z-index: 0;
}
.text {
  position: relative;
  display: inline-block;
  background: var(--background-color);
  padding: 0 15px;
}
.primary-link {
	color: var(--primary-color);
}
.register-login-container form button {
	margin-top: 10px;
	width: 100%;
}
.form-acc-link {
	margin-top: 10px;
	text-align: center;
}
.login-page-carousel img {
	object-fit: contain;
    position: absolute;
    top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	width: 500px !important;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.google-btn {
	display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--text-white);
    color: var(--text-color);
    border: 1px solid var(--gray-border);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 100%
}
.google-btn:hover {
  background-color: #f7f7f7;
}
.google-icon {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.remember-checkbox {
	width: auto;
    vertical-align: middle;
}
.reg-login-form {
	display: flex;
    justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 0 20px;
}
.reg-login-form .text-logo {
	background-color: var(--background-color);
	align-self: flex-start;
	padding: 5px 10px;
	margin: 0;
}
.common-reg-container {
    width: 60%;
	background-color: var(--background-color);
	padding: 15px 20px;
}
.registartion-container {
	background-color: var(--background-color);
	padding: 15px 20px;
}
.remember-box {
	display: flex;
    justify-content: space-between;
	font-size: 14px;
}
.display-flex {
	display: flex;
}
.registration-container .otp-field {
	margin-top: 15px;
}
.registration-container,
.verify-otp-container,
.forgot-password-container {
    display: none;
}

/* My profile page CSS */
.reportspage-layout .profile-name {
	margin-bottom: 10px;
}
.profile-pic-section {
  flex: 1;
}
.profile-pic-wrap {
	height: 230px;
	object-fit: fill;
	border: 1px solid var(--gray-border);
}
.profile-pic-wrap img {
	height: 100%;
}
input[type="file"] {
  display: none;
}
.custom-file-upload {
  cursor: pointer;
}
.file-name {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}
.profile-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.profile-form-wrapper {
  flex: 3;
}
.profile-form-section {
  background: #fff;
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.profile-form-section .form-group {
    flex-basis: calc(33.3% - 15px);
}
.profile-form-section .hobbies-form-group {
	flex-basis: 100%;
}
select {
	width: 100%;
    padding: 10px;
    border-radius: 8px;
    border-color: var(--gray-border);
}
#profile-form .submit-btn {
	float: right;
}
.form-header {
	font-family: "Poppins-bold", serif;
    color: var(--primary-color);
    border-bottom: 1px solid var(--gray-border);
    margin-bottom: 15px;
	font-weight: 500;
}
.profile-right-img {
	margin-top: 15px;
}

/* Report page CSS */
.final-report-container .recent-activities-section {
	width: 100%;
	margin-right: 0;
}
.parameter-section {
    margin-bottom: 30px;
	background-color: var(--text-white);
    padding: 20px;
    border-radius: 10px;
    justify-content: center;
    display: flex;
}
.parameter-section .form-group {
	width: 19%;
}
#report-parameter-form {
	width: 100%;
    justify-content: center;
	align-items: center;
}
.custom-date {
	appearance: none;
	-webkit-appearance: none;
    background-color: var(--text-white);
    color: var(--text-color);
    padding: 9px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
	height: 41px;
	text-align: left;
}
.report-pie-chart {
	height: 200px !important;
	width: 200px !important;
}
.no-wrap {
	flex-wrap: nowrap;
}
.dt-container .dt-layout-row:first-child,
.dt-container .dt-layout-row:nth-child(3) {
    padding: 0 15px;
}

/* Fullpage and inside page loader CSS */
.main-content,
.content {
	display: none;
}
.full-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8); 
    display: none;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.main-content {
    display: none;
    padding: 20px;
    text-align: center;
}
.content-container {
    position: relative;
    padding: 30px;
    border: 1px solid var(--gray-border);
    margin-top: 50px;
}
.content-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 0.8); 
	width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.content {
    display: none;
    text-align: center;
}

@media (min-width: 1200px) {
	.work-box {
		flex: 1;
	}
}
.page-heading {
	font-family: "Poppins-bold", serif;
	text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

/* Slider popup CSS */
.slider-popup {
    z-index: 3;
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.slider-popup-plot {
    width: 66%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto 0;
    border-radius: 5px;
}
.slider-popup-plot .close-popup {
	width: 20px;
    position: absolute;
    border: 0;
    cursor: pointer;
	background: var(--text-white);
    z-index: 2;
    border-radius: 50%;
    line-height: 6px;
    top: 7px;
    right: 7px;
}
.slide-popup-content {
	position: absolute;
    top: 50%;
    left: 5%;
    color: var(--text-white);
    width: 60%;
    transform: translateY(-50%);
}
.slide-popup-content a {
	margin-right: 16px;
}
.slide-popup-content p {
	margin-top: 20px;
}
.slider-popup .owl-carousel .slide {
    height: calc(100vh - 130px);
}
.slide1 {
    background-color: var(--primary-color);
}
.slide2 {
    background-color: var(--light-pink);
}
.slide3 {
    background-color: var(--text-red);
}
.slide4 {
    background-color: var(--text-green);
}
.slider-popup .owl-dots {
	display: block;
	position: absolute;
    bottom: 10px;
    z-index: 22;
    left: 50%;
    transform: translateX(-50%);
}
.slider-popup .owl-dot {
	height: 4px;
    width: 15px;
    background: var(--background-color) !important;
    margin-right: 8px;
}
.slider-popup .owl-dot.active {
    background: var(--secondary-color) !important;
}

/* Global Search Page CSS */
#search-container {
	text-align: center;
    background: var(--primary-color);
	color: var(--text-white);
    padding: 30px 15px 40px;
	margin-top: 15px;
}
.search-wrapper {
  position: relative;
  width: 600px;
  margin: 0 auto;
}
.ui-autocomplete {
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
  z-index: 1; 
}
.ui-autocomplete {
  width: 600px; 
}
.mic-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  cursor: pointer;
  color: #333;
}
.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  height: 20px;
  width: 20px;
}
#search-container .section-header {
	color: var(--text-white);
	margin-bottom: 5px;
}
#search-box {
  padding: 10px 40px 10px 35px;
  font-size: 16px;
}
#search-box:focus {
  outline: 0;
}
.search-flex-container {
	display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    justify-content: space-between;
}
.search-content-box {
	position: relative;
    flex-basis: 28%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    min-height: 250px;
}
.search-content-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease-in-out;
	border-radius: 8px;
}
.search-content-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.search-content-box .tile-title {
	font-size: 14px;
	padding: 10px 5px;
	border-radius: 0;
	width: auto;
}
.search-content-box img {
    height: 100%;
	object-fit: cover;
}

/* Chat Bot page CSS */
.chatAI-layout-wrapper .subject-page {
	flex: auto;
}
.chatbot-layout {
  position: relative; 
  height: 100%; 
}
.chatbot-layout .section-header {
	text-align: center;
	margin-top: 10px;
}
.chat-container {
	position: absolute;
    top: 50px;
    bottom: 105px;
    left: 2%;
    right: 2%;
    background-color: var(--text-white);
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.chat-box {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-border);
}
.input-container {
	position: relative;
  display: flex;
  padding: 10px;
  border-top: 1px solid var(--gray-border);
  align-items: center;
}
#chat-input {
  flex: 1;
  padding: 8px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  font-size: 16px;
}
#chat-input:focus {
  outline: 1px solid var(--primary-color);
}
#send-button {
    position: absolute;
    right: 20px;
    background: var(--primary-color);
	color: var(--text-white);
    height: 30px;
    width: 30px;
    border: 0;
    border-radius: 50%;
}
#send-button::after{
    content: '\2191';
    font-size: 22px;
    position: absolute;
    top: -3px;
    left: 10px;  
}
.input-container #mic-icon {
	right: 60px;
	width: 25px;
}
.message {
    display: flex;
    margin: 10px 0;
    transition: ease-in-out 0.6s;
}
.message.user {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}
.message.user:not(:first-child) {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-border);
}
.message .content {
    width: auto;
    display: inline-block;
    background-color: var(--medium-pink);
    color: var(--text-white);
    padding: 7px 10px;
    border-radius: 5px;
    position: relative;
    text-align: left;
    font-size: 12px;
}
.message.user .content::after{
    content: '';
    width: 16px;
    height: 21px;
    background-color: var(--primary-color);
    position: absolute;
    right: 0px;
    top: 20px;
    border-radius: 0 0 0 20px;
    clip-path: polygon(100% 0, 0% 0, 100% 100%);
    z-index: -1;
}   
.message.user .content {
    min-width: 50px;
    background-color: var(--primary-color);
    color: var(--text-white);
}
.message.bot {
    position: relative;
    flex-direction: column;
}
.message.bot .content {
    max-width: 85%;
    min-width: 75%;
    background-color: var(--medium-pink);
    color: var(--text-color);
}
.message.bot.typing-loader{
    flex-direction: row;
}
.bot-wrapper {
    display: flex;
	flex-direction: column;
}
.related-queries ul {
	list-style: none;
    padding: 0;
    font-size: 14px;
}
.queries-header {
	font-size: 16px;
    margin-bottom: 10px;
	text-transform: capitalize;
}
.related-queries {
    border-top: 1px solid var(--gray-border);
    padding-top: 15px;
    margin-top: 25px;
}
.related-queries ul li {
	border: 1px solid var(--gray-border);
    padding: 5px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
	cursor: pointer;
}
.query-img-box {
    display: flex;
    gap: 20px;
	flex-wrap: wrap;
	margin-top: 10px;
}
.query-image {
	min-width: 100px;
    border-radius: 8px;
    border: 1px solid var(--gray-border);
    background: var(--primary-color);
	color: var(--text-white);
    padding: 10px 15px;
	text-align: center;
}
.query-image svg,
.query-image img {
    height: 60px;
}
.typing-loader {
    display: flex;
    align-items: center;
    margin: 5px 0;
}
.typing-loader span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    background-color: var(--medium-pink);
    border-radius: 50%;
    animation: loader-typing 0.6s infinite alternate;
}
.typing-loader span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing-loader span:nth-child(3) {
    animation-delay: 0.4s;
}
.content ul{
    list-style-type: disc; /* Bullets for unordered lists */
    padding-left: 20px; /* Indentation for the list items */
    margin: 0;
}
.content ul li{
    margin-bottom: 10px;
}
@keyframes loader-typing {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-8px);
    }
}
@keyframes mic-pulse {
  0% { transform: scale(1); fill: var(--text-color); }
  50% { transform: scale(1.3); fill: var(--secondary-color); }
  100% { transform: scale(1); fill: var(--text-color); }
}
.recording {
  animation: mic-pulse 1s infinite;
  top: 15px;
}
.chat-container .recording {
	top: 20px;
}

/* Content page CSS */
.common-datatable-wrapper {
	width: 100%;
}
.contentpage-layout {
	padding-bottom: 30px;
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background: var(--light-pink);
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}
.marquee-container:hover .marquee {
	animation-play-state: paused;
}
.marquee {
  display: inline-flex;
    width: fit-content;
    animation: marquee 15s linear infinite;
}
.marquee a {
	display: inline-block;
	padding: 0 1rem;
	color: var(--text-color);
	text-decoration: none;
	white-space: nowrap;
}
@keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
.banner-wrap {
	position: relative;
}
.banner-wrap img {
	max-height: 250px;
	object-fit: cover;
}
.fullwidth-banner-content {
	position: absolute;
	top: 50px;
	left: 5%;
	color: var(--text-white);
}
.banner-breadcrumb li a {
	color: var(--text-white);
}
.banner-breadcrumb li:first-child a {
	padding-left: 0;
}
.banner-breadcrumb li:not(:last-child)::after {
    color: var(--text-white);
}
.common-accordion-box,
.common-table-box{
	padding: 0;
}

@media (max-width: 1200px) {
	.login-page-carousel img {
		width: 420px !important;
	}
}
@media (min-width: 768px) {
	.flex-box {
		flex: 1;
	}
	.report-question-box {
		flex-basis: calc(50% - 10px);
	}
	.wrong-answer span, .correct-answer span {
		width: 135px;
	}
	.wrong-answer span::after, .correct-answer span::after {
		left: 125px;
	}
	.login-page-carousel.flex-box {
		width: 48%;
	}
	.login-page-carousel .owl-carousel .owl-stage {
		width: max-content !important;
	}
	.profile-pic-section {
		margin-top: 55px;
	}
	.subject-accordion-box .flex-box {
		flex: 0 1 calc(51% - 26px);
	}
	.common-table-box .table-container {
		height: 578px;
	}
}
@media (min-width: 1024px) and (max-width: 1200px) {
	.work-box {
		width: calc(33.3% - 14px);
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.work-box {
		width: calc(50% - 10px);
	}
	.journey-border-box {
		gap: 15px;
		padding: 15px;
	}
	.journey-svg-icon {
		width: 15%;
		padding: 10px;
	}
	.journey-svg-icon {
		height: 10%;
		padding: 10px;
	}
	.report-chart-box {
		padding: 20px 10px;
	}
	.chart-title {
		font-size: 14px;
	}
	.slider-popup-plot,
	.slide-popup-content	{
		width: 95%;
	}
}
@media (min-width: 993px) and (max-width: 1200px) {
	.common-reg-container {
		width: 85%;
	}
}
@media (min-width: 768px) and (max-width: 992px) {
	.profile-form-section .form-group {
		flex-basis: calc(50% - 15px);
	}
	.profile-pic-wrap {
		height: 200px;
	}
	.common-reg-container {
		width: 400px;
	}
	.parameter-section .form-group {
		width: calc(32.8% - 10px);
	}
	.search-content-box {
		flex-basis: 32%;
	}
}
@media (max-width: 992px) {
	.login-page-carousel {
		display: none;
	}
	.register-login-container {
		padding: 5rem 0;
		display: flex;
        align-items: center;
		justify-content: center;
	}
	.search-content-box .tile-title {
		font-size: 12px;
	}
	.reg-login-form {
		flex-direction: column;
	}
	.slider-popup .owl-dots {
		bottom: 0;
	}
}
@media (max-width: 767px) {
	.our-work-container {
		flex-direction: column;
	}
	.work-box {
		width: 100%;
	}
	.tile-desc {
		overflow-y: scroll;
	}
	.journey-svg-icon {
		width: 45px;
		height: 45px;
	}
	.journey-desc-box {
		flex: 1;
		font-size: 14px;
	}
	.eclass-video-container .video-desc-box {
		order: 2;
	}
	.eclass-video-container .video-box {
		order: 1;
	}
	.tab-buttons {
		width: 100%;
	}
	.tab-flex-container {
		flex-direction: column;
		gap: 10px;
		margin-top: 20px;
	}
	.course-header {
		font-size: 18px;
	}
	.course-desc {
		font-size: 14px;
	}
	.logo-img-box {
		width: 60px;
	}
	.logo-slider-container .swiper {
		padding: 0 40px;
	}
	.school-onboaring-container .journey-desc-title {
		font-size: 22px;
	}
	.banner-heading,
	.fullwidth-banner-heading	{
		font-size: 18px;
	}
	.owl-carousel .caption {
		width: 90%;
	}
	.owl-carousel img {
		height: 400px;
	}
	.contact-us-container {
		flex-direction: column;
	}
	.contact-us-container form {
		width: 100%;
	}
	.homepage-menu .nav-links {
        display: none; 
    }
    .homepage-menu .hamburger {
        display: block; 
    }
	.report-question-box,
	.numbered-list{
		font-size: 14px;
	}
	.wrong-answer span, .correct-answer span {
		width: 119px;
	}
	.wrong-answer span::after, .correct-answer span::after {
		left: 111px;
	}
	.font-bold {
		margin: 10px 0 10px;
	}
	.reports-question-container {
		flex-direction: column;
	}
	.reportspage-layout {
		padding: 30px 10px;
	}
	.dropdown {float: none;}
	.dropdown-content {
		position: relative;
		margin-top: 15px;
	}
	.dropdown .dropbtn {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 16px;
	}
	.dropdown-content a {
		text-align: center;
		border-top: 1px solid;
	}
	.dropdown-content a:last-child {
        margin-bottom: 0;
    }
	.section-seperator:after {
		width: 200px;
	}
	.profile-form-container {
        flex-direction: column;
    }
	.profile-form-section .form-group {
		flex-basis: 100%;
	}
	.profile-form-wrapper {
		order: 2;
	}
	.profile-pic-section {
		order: 1;
	}
	.profile-right-img {
		display: none;
	}
	.updates-wrapper,
	.subject-right-wrapper	{
		width: 100%;
	}
	.reportspage-layout .table-container {
		height: 664px;
	}
	.slider-popup-plot {
		width: 80%;
	}
	.slide-popup-content {
		width: 85%;
	}
	.slider-popup-header {
		font-size: 22px;
	}
	.search-wrapper,
	.ui-autocomplete {
		width: 75%;
	}
	.global-search-layout {
		padding: 0 5%;
	}
	.reg-login-form .text-logo {
		margin-left: 0.5%;
	}
	.common-table-box .table-container {
		height: 675px;
	}
}
@media (min-width: 600px) and (max-width: 767px) {
	.report-chart-box {
		flex-basis: calc(50% - 10px);
	}
	.parameter-section .form-group {
		width: calc(50% - 10px);
	}
	#report-parameter-form {
		justify-content: center;
	}
	.search-content-box	{
		flex-basis: calc(50% - 10px);
	}
	.common-reg-container {
		width: 400px;
	}
}
@media (max-width: 600px) {
	.reports-chart-container {
		flex-direction: column;
	}
	#report-parameter-form {
		width: 80%;
		flex-direction: column;
	}
	.parameter-section .form-group {
		width: 100%;
	}
	#login-form {
		font-size: 12px;
	}
	.login-welcome-text {
		font-size: 14px;
	}
	.text-logo {
		font-size: 18px;
	}
	.registration-container .input-group {
		width: 100%;
	}
	.search-content-box	{
		flex-basis: 100%;
	}
	.common-reg-container {
		width: 300px;
	}
	.remember-box {
		font-size: 12px;
	}
}

/******************* Alter popup *****************************************/
.alert-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.alert-popup-plot {
    width: 40%;
      display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    /* top: 30%;
  left: calc((100% - 40%) / 2); */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto 0;
    background-color: var(--light-pink);
    border-radius: 5px;
    padding: 20px;
}

   /* .alert-popup-plot .close-popup {
        width: 40px;
        position: absolute;
        right: 6px;
        top: 5px;
        background-color: transparent;
        border: 0;
        cursor: pointer;
    }*/

.popup-title {
    width: 100%;
    font-family: "poppins-bold", sans-serif;
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

.popup-image {
    width: 52%;
}
.alert-popup-plot .close-popup {
    width: 20px;
    position: absolute;
    border: 0;
    cursor: pointer;
    background: var(--text-white);
    z-index: 2;
    border-radius: 50%;
    line-height: 6px;
    top: 7px;
    right: 7px;
}

@media (max-width: 1112px) {
    .alert-popup-plot {
        width: 80%;
        /* left: calc((100% - 80%) / 2); */
    }
}




