/* Font import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
/* Body and Font Styling */
body {
  /* font-family: "Rubik", sans-serif; */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* Header Styling */
header {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 80px;
  padding-top: 25px;
  padding-left: 60px;
  padding-right: 60px;
  position: fixed; /* Keeps the header fixed at the top */
  top: 0;
  left: 0;
  background-color: white; /* Ensures background color is set */
  z-index: 1000; /* Ensures the header is above other elements */
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
nav span {
  display: flex;
  flex-direction: row;
}
header nav ul {
  font-weight: 600;
  list-style: none;
  display: flex;
  font-size: 16px;
  gap: 28px;
  line-height: 133%;
}

header nav ul li a {
  color: #18181b;
  text-decoration: none;
}
header nav ul li a:active {
  color: #fe3604;
}
.active-link {
  color: #fe3604 !important;
  font-size: 18px !important;
}

header nav ul li a:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 5;
}

/* Sidebar Menu */
.sidebar-menu {
  position: fixed;
  top: -100vh;
  left: 0%;
  width: 100%;
  height: 131px;
  background-color: #f5b3b3; /* Light pink color */
  border-bottom-right-radius: 100px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: top 0.3s ease;
  opacity: 0.8;
  z-index: 1001;
  gap: 24px;
}

.stem-logo{
  margin-top: 30px;
height: 100%;
}

.sidebar-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.sidebar-menu li {
  list-style: none;
}

.sidebar-menu li a {
  text-decoration: none;
  font-family: Inter;
  color: #363535;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* .sidebar-menu li:first-child a {
  color: #fe3604; /* Change the text color of the first list item to red */
  font-weight: bold; /* Make the first list item bold */
} */

.sidebar-menu li a:hover {
  color: #ff5722; /* Bright orange color on hover */
}

/* Active and Visible Classes */
.sidebar-menu.visible {
  top: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar-btns {
  display: flex;
  flex-direction: row;
}

/* Main Content Styling */
main {
  display: flex;
  align-items: center;
  flex-direction: column;
}

section {
  margin: 3rem 0;
  text-align: center;
  width: 100%;
}

button {
  cursor: pointer;
}
/* Header elements */
.aptcoder-logo {
  margin-left: 1rem;
  width: 151px;
  height: 38px;
}
.sign-in {
  font-weight: 500;
  width: 131px;
  height: 38px;
  color: #18181b;
  line-height: 150%;
  margin-right: 1rem;
  border: none;
  background-color: white;
  font-size: 16px;
  text-align: right;
}
.mobile-sidebar-signin {
  background: none;
  width: 109px;
  text-align: center;
  color: #fe2803;
  border-radius: 7px;
  border: 1px solid;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
/* Common classes */
.center-text {
  text-align: center;
  margin-bottom: 20px;
}
.button1 {
  border: 2px solid #fe2803;
  border-radius: 8px;
  width: 131px;
  height: 38px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(90deg, #fc8c0b 0%, #fe2e03 100%);
}
.button2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 153%;
  border: none;
  border-radius: 100px;
  padding: 12px 36px;
  width: 198px;
  height: 44px;
  white-space: nowrap;
  color: #fff;
  background: #fe3604;
}
.chip {
  font-family: inherit;
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 153%;
  border-radius: 8px;
  padding: 0px 8px;
  width: fit-content;
  height: 26px;
  background: #000;
  color: #fff;

  font-style: normal;
}
.request-quote {
  position: absolute;
  bottom: 12px;
  right: 12px;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.25),
    inset -2px -4px 10px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #71add9 0%, #485a67 100%);
  border: none;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  transition: background-color 0.3s;
  font-family: Rubik;
  font-style: normal;
  line-height: normal;
}
/* Section 1 elements */
#content1 {
  background-image: url(./assets/bg1.png);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 74px;
  gap: 40px;
  /* min-height: 592px; */
  min-height: 47vw;
  background-size: auto 47vw;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 65px;
}
.heading1 {
  font-weight: 600;
  font-size: 36px;
  font-style: normal;
  line-height: 120%;
  color: #4c4c4c;
  margin-bottom: 16px;
}
.hero-section-tagline-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section-tagline {
  max-width: 45%;
  text-align: center;
}
.code-play-create {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-skip-ink: none;
  color: #f36760;
}
#content div p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
#content1 span div {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#search-box {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  border: 2px solid #e5efff;
  border-radius: 100px;
  padding: 8px 16px 8px 26px;
  width: 570px;
  max-width: 100%;
  min-width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  background: #fff;
}
#email,
#email:focus,
#email::placeholder {
  font-size: inherit;
  color: #999;
  border: none;
  outline: none;
  /* padding: 0.5rem; */
  min-width: 60%;
  height: auto;
}

#dashboard {
  margin-top: -7.25rem;
  border: 1px solid #d8dae5;
  border-radius: 12px;
  padding: 16px;
  min-width: 1016px;
  height: 8rem;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  gap: 32px;
}
#dashboard span:not(:last-child) {
  border-right: 1.5px #eaecf0 solid;
}
.dashboard-item {
  width: 25%;
}
.dashboard-item h1 {
  font-weight: 600;
  font-size: 60px;
  line-height: 72px; /* 120% */
  letter-spacing: -1.2px;
  color: #ff9193;
}
.dashboard-item p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.dashboard-item h1::after {
  content: "+";
}/* Achievement Section */
#achievements-section {
  overflow: hidden;
  margin-top: 34.5px;
  margin-bottom: 0;
  width: 100%; /* Ensure it doesn't overflow horizontally */
}

#achievements {
  display: inline-flex;
  align-items: flex-start;
  gap: 60px;
  text-align: left;
  /* animation: slide 8s linear infinite; */
   animation-play-state: running; /* Slower speed for smooth scrolling */
}
#achievements:hover{
 animation-play-state: paused;
}

.achievement-el {
  flex: 0 0 auto;
  display: flex;
  height: 100px;
  flex-direction: row;
}
.achievement-el:hover{
  cursor: pointer;
}

.achievement-el img {
  width: 91px;
  height: 69px;
  margin: 0;
  padding: 0;
}

.achievement-el span {
  display: flex;
  width: 186px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex-shrink: 0;
  margin-left: 12px;
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}

.achievement-heading {
  font-family: "Plus Jakarta Sans";
  font-size: 15.5px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.achievement-date {
  color: #4a4a4a;
  font-family: "Plus Jakarta Sans";
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.achievement-desc {
  color: #4a4a4a;
  font-family: "Plus Jakarta Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@keyframes slide {
  0% {
    transform: translateX(70%);
  }
  100% {
    transform: translateX(calc(-100% + 100px));
  }
}

@keyframes slideMobile {
  0% {
    transform: translateX(90%);
  }
  100% {
    transform: translateX(calc(-100% + 80px));
  }
}

@keyframes TestiSlider {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(calc(-100% + 20px));
  }
}



/* Section 2 Elements */
#content2 {
  margin: 20px auto;
  margin-top: 65px;
}
.content2-span {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 52px;
  padding-right: 4rem;
  margin-bottom: -20px;
}
.girl-pencil {
  width: 120px;
  height: 117.138px;
  flex-shrink: 0;
}
.arrow-img {
  width: 70.437px;
  height: 180.852px;
  transform: rotate(-115.856deg);
  flex-shrink: 0;
}
#content2 h2 {
  color: #333;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.card-el-right {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.cards {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  overflow-x: auto;
  margin: 0.25rem;
  gap: 15px;
  flex: 1 0 0;
  padding-bottom: 5px;
}
.cards::before,
.cards::after {
  content: "";
  flex: 1 1 auto;
}
.card-el {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  border: 1px solid #e5efff;
  border-radius: 12px;
  padding: 24px;
  width: 300px;
  height: 329px;
  background: rgba(247, 129, 176, 0.1);
}
.card-el:nth-child(2) {
  background: rgba(170, 211, 83, 0.1);
}
.card-el:nth-child(3) {
  background: rgba(52, 186, 252, 0.1);
}
.card-el:nth-child(4) {
  background: rgba(242, 197, 104, 0.1);
}
.card-el-img {
  width: 100px;
  height: auto;
}
.card-el span h3 {
  color: var(--Grey-20, #333);
  text-align: center;
  font-family: "Inter", sans-serif;

  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.card-el span p {
  margin-top: 14px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-style: normal;
  font-weight: 400;
  color: #666;
  line-height: normal;
}
.card-el button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5efff;
  border-radius: 8px;
  padding: 12px 22px;
  height: 42px;
  background: #fff;
  gap: 4px;
  flex-shrink: 0;
  align-self: stretch;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.084px;
}
/* Section 3 Elements */
#content3 {
  margin: 37.27px auto;
}
#content3 h2 {
  color: #101828;
  text-align: center;
  font-family: "Inter", sans-serif;

  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.64px;
}
.map-subheading {
  color: #667085;
  text-align: center;
  font-family: "Inter", sans-serif;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
}
.map-card {
  margin-bottom: 24px;
  margin-top: 32px;
  /* background-image: url(./assets/mapNew.png); */
  height: 488px;
  background-size: auto 488px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  /* padding: 5rem; */
  gap: 2rem;
}
.map-card div {
  margin-top: 34px;
  border-radius: 4px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  width: 272px;
  height: 237px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.map-card div img {
  width: 60px;
  height: 60px;
}
.map-card-heading {
  color: #333;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.map-card-text {
  color: #666;
  text-align: center;
  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* Content 4 elements */
#content4 {
  margin-top: -2rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url(./assets/bg3.png);
  background-size: auto 1101px;
  background-position: center;
  /* background-position-x: -13rem; */
  background-repeat: no-repeat;
  background-clip: border-box;
}
#category-tabs-container {
  z-index: 4;
  display: flex;
  position: relative;
  gap: 120px;
  /* margin-left: 222px; */
  justify-content: center;
}
.category-tab-button {
  font-family: "Inter", sans-serif;

  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  color: #4c4c4c;
  background: none;
  border: none;
  padding: 16px;
}
.active-category {
  font-weight: 600;
  color: #2b3944;
}
.underline {
  position: absolute;
  bottom: 0px;
  height: 5px;
  background: #2a3a44;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
}

.mobile-heading-and-view-link {
  display: none;
}

#courses-container {
  display: flex;
  margin: auto;
  margin-top: 32px;
  border: 1px solid #e5efff;
  border-radius: 8px;
  /* width: 1126px; */
  width: 90%;
  height: 769px;
  flex-shrink: 0;
  background: #f8f8f8;
}
#courses-container-span {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 23px;
  margin-left: 38px;
}
#course-header {
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, #b0deff 43.49%, #1e71b0 200%);
  height: 25%;
  min-height: 168px;
  padding: 16px;
}
.course-header-container {
  display: flex;
  flex-direction: column;
}
.course-header-details,
.course-header-middle {
  display: flex;
  justify-content: space-between;
}
.course-header-details {
  color: #fff;
  font-family: Rubik;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detail1 {
  font-weight: 400;
}
.detail2 select {
  color: #fff;
  padding: 2px;
  font-size: 16px;
  text-align: center;
  font-family: Rubik;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 4px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI3BhdGgwX2NsaXApIj48cGF0aCBkPSJNMC40Njc1OTcgMi41NTgyOUwxLjc5OTYxIDAuODg2MTY1TDAuNTgyODE2IDAuMDQzNzA4M0wwLjUwMDc0MSAwLjA1Mjg0NTIzTDAsLjA4MjA3NTAzTDAsLjA3NTc4MTEzQy0wLjAxNTc4OTQyLDAuMDg0NzAzNTYgMC4wMjU5MDI2OSwwLjExMjg2MTggMC4wNTE5MjcsMC4xNDAwMDk5TDAuNTYwNjc4LDAuNzY2Mzc0TDAsLjA3NTc4MTEzQy0wLjAxNTc4OTQyLDAuMDg0NzAzNTYgMC4wMjU5MDI2OSwwLjExMjg2MTggMC4wNTE5MjcsMC4xNDAwMDk5TDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTg3MTY1LDAuNzE1NDY1TDAsLjA3NTc4MTEzQy0wLjAxNTc4OTQyLDAuMDg0NzAzNTYgMC4wMjU5MDI2OSwwLjExMjg2MTggMC4wNTE5MjcsMC4xNDAwMDk5TDAsLjA4MjA3NTAzTDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTg3MTY1LDAuNzE1NDY1TDAsLjA3NTc4MTEzQy0wLjAxNTc4OTQyLDAuMDg0NzAzNTYgMC4wMjU5MDI2OSwwLjExMjg2MTggMC4wNTE5MjcsMC4xNDAwMDk5TDAsLjA4MjA3NTAzTDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTg3MTY1LDAuNzE1NDY1TDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTYwNjc4LDAuNzY2Mzc0TDAuNTg3MTY1LDAuNzE1NDY1TDAuNTg3MTY1LDAuNzE1NDY1TDAuNzE4MTcyLDEuNTU0MTNMNS4wNDMyNSw0Ljc0OTExQzUuMTEwMjEsNC44MzI4NiA1LjI0MDEsNC44MzQ4OCA1LjMxMTgsNC43NTA3MkwxLjU2MTE0LDAsQyAwLjU4MTgwNSAwLDAuNDc3MzQxICAwLjQ2NTE3MiAwLjc1OTM2OSAwLjQ3MDY5LDAuNDY0NTYyIDAuNTk5OTczICAwLjQ0MTE0NiAwLjkzODQ3NSA1LjAwMzkxIDAuOTUwMzU3IFMwLjcwMzgxNyAwLjYwNDAwOSAwLjcxNTc4NC0wLjAwNDAwNkwxLjU2MTE0LDAuMDgyMDYzNDAyQzEuNjg3ODgsMC4xMzg3Njc0NiAyLDAuNDgzMzgxNCAyLDAuNTc3MDMyLDAuMjE1MzkxMiwxLjYwMTY5IDIuNTcwNDIxMiwxLjUyNjcyLDAuMjU2ODc5QyAwLjI0OTAxMi0wLjE0MTQyNyAwLjI1MTU1MiAwLjE0NDAwOUMxLjM2NDY2LDAuMTI0OTU1IDIuMTAxNzIsMC4zMzAwNTkgMy4wNjcwOCw0LjY3NTgyLDMuMzg4NTYsNC45ODU0NiAzLjU2OTI4LDUsNi42MzYyMSA1LDgsNC45NTMzMyAxNC4xOTM2LDguOTYwMjQsNS4wMjY4NiwyLjExOTU0Myw0LjE3MTg0ICAwLDEuMTM3ODgsMCwxLjg2NzU2QyAwLDAuNTk5OTYgMCAwLDAgMC4zMzAwNTkgMCwwLjAwMzAwNCAwLjAwNzAwMyA0LjI0MTQ0IDMuNzM");
  background: transparent;
  color: #fff;
}
.detail2 select:focus {
  border: none;
}
.detail2 option {
  background-color: #9bc7ef;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

  color: #fff;
}
.middle1 {
  color: #3d424c;
  text-align: center;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 24px;
}
.middle2 {
  display: flex;
  flex-direction: row;
  color: #3d424c;
  text-align: center;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 24px;
  gap: 9px;
}
.middle2 div span {
  color: #ff4e4d;
  text-align: center;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.middle2-sec {
  color: #3d424c;
  text-align: center;
  font-family: Rubik;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.or-text {
  color: #999;
  text-align: center;
  font-family: Rubik;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.or-text::before,
.or-text::after {
  content: "";
  flex: 1;
  height: 10px;
  width: 1px;
  background-color: #999;
  display: block;
  margin: 0 10px;
}
.course-header-animation-container {
  background: #d0ebff;
  border-radius: 12px;
  margin-top: 24px;
  overflow: hidden;
}
.course-header-animation {
  display: flex;
  flex-direction: row;
  gap: 16px;
  text-align: left;
  animation: slide 30s linear infinite;
}
.course-header-animation p {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #3d424c;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 228.571% */
  height: 32px;
}
.course-header-animation p::before {
  content: ""; /* Required to show the image */
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("./assets/star.png"); /* Path to your star image */
  background-size: cover; /* Ensures the image covers the entire area */
  position: absolute;
  left: 0; /* Position the star image to the left of the p */
  top: 50%; /* Center the star image vertically */
  transform: translateY(-50%); /* Adjust alignment */
}
/* course content elements with the list */
#course-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: auto;
  height: 541px;
  margin: 0rem;
  margin-top: 14px;
  gap: 22px;
}

/* Custom scrollbar styling */
#course-list::-webkit-scrollbar {
  width: 10px;
}
#course-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
#course-list::-webkit-scrollbar-thumb {
  background-color: #2b3a44;
  border-radius: 10px;
  height: 12px;
  border: 3px solid #f1f1f1;
}

#course-list::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker color when hovered */
}

/* Firefox custom scrollbar */
#course-list {
  scrollbar-width: thin; /* For Firefox */
  border-radius: 12px;
  scrollbar-color: #2b3a44 #ededed;
}

.course-content {
  margin-top: 0rem;
  height: 100%;
}
.course-item {
  margin-right: 1rem;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border: 1px solid #e5efff;
  background: #fff;
  border-radius: 0.8rem;
  padding: 16px;
  gap: 24px;
  /* height: 15rem; */
}

.course-image {
  border-radius: 12px;
  width: 291px;
  height: 175px;
  background-color: #f4f4f4;
  flex-shrink: 0; /* Prevent shrinking */
  flex-grow: 0; /* Prevent growing */
  flex-basis: auto; /* Keeps the element's natural size */
}

.course-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.course-element {
  width: 100%;
  position: relative;
}

.course-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.course-heading h2 {
  margin: 0;
  color: #333;
  font-family: "Inter", sans-serif;

  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 120% */
  letter-spacing: -0.12px;
}

.students-enrolled {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  font-style: normal;
  line-height: normal;
}

.students-enrolled img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 8px;
}

.course-overview {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #40515d;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.course-description p {
  margin-top: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #666;
  font-family: "Inter", sans-serif;

  font-style: normal;
  text-align: left;
}

/* Course side bar */
.sidebar {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-top: 23px;
  margin-bottom: 24px;
  margin-left: 23px;
  min-width: 8rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #4aaaee 21.06%, #0e65a6 67.56%);
  width: 129px;
  height: 722px;
  flex-shrink: 0;
}

.sidebar-mask {
  position: absolute;
  width: 129px;
  height: 722px;
  background-image: url(./assets/papers_bg.png);
  background-size: 100%;
  border-radius: 12px;
}
.sidebar-button {
  position: relative;
  margin-top: 24px;
  margin-left: 10px;
  margin-right: 10px;
  height: 64px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: none;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 11.5px;
  padding-bottom: 12.5px;
  text-align: center; /* Align text to the left */
  cursor: pointer;
  transition: background-color 0.3s ease; /* Optional: smooth background color transition */
  z-index: 1; /* Ensure buttons are clickable */
  font-family: Inter;
  color: #fff;
}
.sidebar button:first-child {
  margin-top: 36px;
}
.sidebar-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.sidebar-active {
  position: absolute;
  left: 5px;
  width: 6rem;
  border-radius: 8px;
  background-color: #f8f8f8;
  transition: top 0.3s ease, height 0.3s ease; /* Smooth transition for top and height */
  z-index: 0; /* Ensure it's below the buttons */
}
.sidebar-button-active {
  color: #2e3f49;
}

/* Carousel Section */
/* Mentor Section */
#mentors {
  width: 95%;
  margin: 20px auto;
  padding: 10px;
  display: flex; /* Ensure proper centering */
  flex-direction: column; /* Stack heading and Swiper vertically */
  align-items: center;
  background: #fff9f9;
}
.mentor-heading h2 {
  text-align: center;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
  padding-top: 150px;
}
.mentor-heading p {
  text-align: center;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #212529;
}

.view-all-mentors-btn {
  width: 140px;
  height: 44px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid var(--Primary-95, #e5efff);
  background: #fff;
  color: var(--Grey-20, #333);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.view-all-mentors-btn a {
  text-decoration: none;
  color: var(--Grey-20, #333);
}

.mentor-highlight {
  font-weight: bold;
  color: #f00; /* Adjust to your desired color */
}

.mentor-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mentor-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.mentor-name {
  font-size: 1.5em;
  color: #f00; /* Adjust to your desired color */
  margin: 10px 0;
}

.mentor-title {
  font-size: 1em;
  color: #333;
  margin-bottom: 10px;
}

.mentor-details {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
}

.swiper {
  max-width: 1230px;
  overflow: hidden;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#carousel-section {
  margin: 0 auto;
  margin-bottom: 30px;
  padding-bottom: 24px;
  margin-top: -170px;
  background: #fff9f9;
}
.card {
  font-family: "Poppins", sans-serif;
  max-width: 350px;
  height: fit-content;
  background-color: #fff;
  border-radius: 2em;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
  padding: 2em 1em;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 2em 0em;
}

.swiper-slide:not(.swiper-slide-active) {
  filter: blur(2px);
  transform: translateY(-40px);
  transition: transform 0.3s ease-in-out;
}

.card__image {
  width: 10em;
  height: 10em;
  padding: 3px;
  margin-bottom: 2em;
}
.card__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 0.9em;
}

.card__title {
  color: red;
  font-size: 23px;
  line-height: 122%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
}

.card__text {
  text-align: center;
  font-size: 1rem;
  margin: 1em 0;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  width: 30px; /* Adjust the width as needed */
  height: 30px; /* Adjust the height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Hide the default arrows */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/* Testimonial Section */

.view-all-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.view-all-btn:hover {
  background-color: #ce3434;
  color: #fff;
}
/* Testimonial Section Design */
#testimonials {
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row-reverse;
  width: 95%;
  margin: 20px auto;
  padding: 20px;
  gap: 30px;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  margin: auto 0px;
  gap: 4px;
}

.testimonial-label {
  color: #00b8a9;
  text-align: left;
  color: #b6e3de;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.underline-img {
  position: relative;
}

.highlight {
  color: #ff6600;
  font-weight: bold;
  display: inline-block;
  position: relative;
  color: #fd8a02;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.testimonial-subtitle {
  text-decoration: none;
  color: #282828;
}
.testimonial-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-title {
  width: 104%;
  text-align: left;
  color: #282828;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.testimonial-quote {
  margin: 20px 0;
  text-align: left;
  color: #000;
  width: 449px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.view-reviews-btn {
  background-color: #ff6600;
  color: white;
  width: 191px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  width: 191px;
  height: 42px;
  padding: 16px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.view-reviews-btn:hover {
  transform: scale(1.04);
}

.testimonial-card-container {
  background-image: url("./assets/testimonial-bg.png");
  width: 703px;
  height: 625px;
  padding: 42px;
  flex-shrink: 0;
}

.testimonial-cards {
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 15px;
  align-items: center;
}

.testimonial-card {
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 272px;
  align-items: center;
  gap: 24px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.card-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:nth-child(1) {
  position: relative;
  margin-top: 40px;
  margin-left: 90px;
  width: 272px;
}
.testimonial-card:nth-child(2) {
  width: 131px;
  height: 131px;
  color: var(--Grey-40, #666);
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.testimonial-card:nth-child(3) {
  position: relative;
  width: 364px;
  bottom: 7%; /* Set your desired height here */
}
.testimonial-card:nth-child(4) {
  position: relative;
  bottom: 49%;
  width: 272px;
}
.testimonial-img {
  border-radius: 50%;
  margin-bottom: -10%;
  width: 80px;
  height: 80px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.testimonial-text {
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.testimonial-name {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.testimonial-stars {
  color: #ffcc00;
}

.rating-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  position: relative;
  bottom: 40%;
}

.rating {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.rating h2 {
  font-size: 1.2rem;
  margin: 0;
  color: #333;

  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.rating-stars {
  color: #ffcc00;
  font-size: 0.7rem;
}

/* FAQ Section Styles */
#faq-section {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  padding-bottom: 1px;
  border-radius: 10px;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.09);
}

#faq-section h2 {
  text-align: center;
  font-family: Inter;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.faq-answer p {
  margin: 0;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.faq-input {
  display: none;
}

.faq-question {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 7px;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  position: relative;
}

.faq-question:hover {
  background-color: #f1f1f1;
}

.faq-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.date {
  font-size: 14px;
  color: #888;
}

.faq-icon {
  border: 1px solid #e5efff;
  border-radius: 57px 57px 0 57px;
  padding: 10px 14px;
  background: linear-gradient(90deg, #0062ff 0%, #65d1ff 100%);
  font-weight: bold;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  border-radius: 57px 57px 0px 57px;
  border: 1px solid var(--Primary-95, #e5efff);
}
.answer-icon {
  position: relative;
  left: -10px;
  border: 1px solid #e5efff;
  border-radius: 57px 57px 0 57px;
  padding: 10px 14px;
  background: linear-gradient(90deg, #0062ff 0%, #65d1ff 100%);
  font-weight: bold;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  border-radius: 57px 57px 0px 57px;
  border: 1px solid var(--Primary-95, #e5efff);
}

.question-text {
  color: var(--Grey-30, #4c4c4c);
  text-align: left;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.faq-arrow {
  transition: transform 0.3s ease;
  font-size: 24px;
  background: linear-gradient(90deg, #0062ff 0%, #65d1ff 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-left: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 1px 25px;
  background-color: #f9f9f9;
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #ddd;
  width: 100%;
}

.faq-answer p {
  font-size: 14px;
  text-align: left;
  color: var(--Grey-30, #4c4c4c);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.faq-input:checked + .faq-question {
  background: var(--Primary-99, #f7faff);
  border-bottom: 1px solid #e5efff;
}

.faq-input:checked + .faq-question + .faq-answer {
  max-height: 200px;
  overflow: auto;
  background: var(--Primary-99, #f7faff);
  overflow-x: hidden;
}

.faq-input:checked + .faq-question .faq-arrow {
  transform: rotate(-180deg);
}

.see-all-faq {
  display: block;
  text-align: center;
  margin: 2px 2px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  background: linear-gradient(90deg, #0062ff 0%, #65d1ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-btn {
  cursor: pointer;
  margin: 1% auto;
  width: 20%;
  border: 1px solid #e5efff;
  border-radius: 8px;
  padding: 10px 20px;
  height: fit-content;
}

.faq-btn:hover {
  transform: scale(1.1);
}

.see-all-faq:hover {
  text-decoration: underline;
}

.faq-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0px;
}

.faq-question-header-content {
  display: flex;
  align-items: center;
}

.answer-container {
  display: flex;
  padding: 10px 0px;
  align-items: flex-start;
}

.answer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* NewLetter Section */

.newsletter-section {
  font-family: "DM Sans";
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #6a9dc4 0%, #4e6778 100%);
  border: 1px solid #eef3f6;
  border-radius: 12px;
  padding: 20px;
  color: white;
  width: 85%;
  margin: 0 auto;
  margin-top: 20px;
  top: 20%;
}

.newsletter-content {
  flex: 1;
}

.newsletter-content h2,
.newsletter-content p {
  color: var(--Shades-White, #fff);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.newsletter-content p {
  color: var(--Shades-White, #fff);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 5px 0px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  padding: 10px;
}

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

.input-container .newsletter-icon {
  position: absolute;
  left: 10px;
  top: 6.5px;
  font-size: 18px;
  color: #ccc;
  pointer-events: none;
}

.newsletter-form input {
  font-family: "DM Sans";
  width: 300px;
  padding: 10px 10px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.newsletter-form button {
  display: flex;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #333;
  color: white;
  cursor: pointer;
  margin: 1% 1%;
}

.newsletter-form button:hover {
  background: #555;
}

/* Footer Styling */
.footer {
  margin: 0 auto;
  width: 100%;
  font-family: "Rubik", sans-serif;
  background-image: url("./assets/footer-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 0px 10px;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 10px;
}

.footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: -10px auto;
  padding: 20px 20px;
  padding-top: 50px;
  gap: 20px;
}
.footer-section {
  flex: 1;
}
.footer-bottom-container {
  width: 45%;
  margin-left: 20px;
  display: flex;
  gap: 20px;
}

.about,
.footer-section-info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 300px;
}

.about {
  position: relative;
  width: 100px;
}
.footer-section-info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
}

.footer-logo,
.footer-stem-logo {
  width: 10vw;
  min-width: 120px;
}

.footer-section h3 {
  color: #fff;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section ul,
.footer-section li {
  font-family: Rubik;
  font-size: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
}

.footer-section ul {
  padding: 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #f39c12;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #fff;
  padding-top: 10px;
  margin-top: 20px;
  padding-bottom: 10px;
  margin-bottom: -20px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.footer-bottom p {
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer-last-item {
  border-top: 1px solid #fff;
  padding-top: 20px;
}

.footer-last-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-last-item ul li {
  display: inline-block;
  margin: 0 10px;
}

.footer-last-item ul li:not(:last-child)::after {
  content: "|";
  margin-left: 0%;
  color: #fff;
}

.footer-last-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-last-item a:hover {
  color: #f39c12;
}
.footer-last-item a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  transition: color 0.3s;
}
.social-icons a img {
  width: 1.5rem;
}
.social-icons ul li a {
  color: #fff;

  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.social-icons a:hover {
  transform: scale(1.02);
}

.social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rights-reserve {
  display: none;
}
.social-icons ul li {
  display: inline-block;
  margin: 0 10px;
}

.testi-stars span{
  margin-left: 0px;
  max-width: 10px;
  margin: 2px;
  color: gold;
}

.social-icons ul li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: #fff;
}

.achievement-section-mobile {
  display: none;
}
#testimonial-achievements {
  display: inline-flex;
  align-items: flex-start;
  gap: 60px;
  text-align: left;
  animation: TestiSlider 18s linear infinite;
}

/* Responsive Design */

@media (min-width: 1359px) {
  #content1 {
    /* width: 94vw; */
    min-height: 652px;
    background-size: auto 652px;
    /* margin-left: 40px;
    margin-right: 44px; */
  }
  #dashboard {
    margin-top: -8.1rem;
    width: 1119.296px;
    padding: 17.627px;
    gap: 70.507px;
    border-radius: 13.22px;
    border: 1.102px solid var(--stroke, #d8dae5);
  }
  #content4 {
    background-size: 130vw 1101px;
  }
}

@media (min-width: 1500px) {
  .arrow-img {
    position: relative;
    margin-right: 25px;
  }
  .content2-span {
    padding: 0 55px;
  }
  .girl-pencil {
    position: relative;
    margin-left: 25px;
  }

  .cards {
    gap: 50px;
  }

  .swiper {
    max-width: 1380px;
  }

  .card {
    max-width: 380px;
    height: 480px;
  }

  .newsletter-section {
    width: 80%;
  }

  .newsletter-content {
    width: 80%;
    margin-left: 4%;
  }

  .newsletter-form input {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 375px;
    margin-right: 0%;
  }
  .newsletter-form button {
    position: relative;
    right: 110px;
  }
  .input-container .newsletter-icon {
    top: 11.5px;
  }
}

@media (min-width: 1910px) {
  .aptcoder-logo {
    width: 250px;
    height: 62.914px;
  }
  header {
    min-height: 110px;
  }
  nav span {
    align-items: center;
  }
  header nav ul,
  .active-link {
    font-size: 26px;
  }
  .sign-in {
    font-size: 26px;
    line-height: 25.305px;
  }
  .button1 {
    font-size: 26px;
    line-height: 25.305px;
    padding: 16px 28px;
    gap: 10.544px;
    border-radius: 8.435px;
    border: 2.109px solid #fe2803;
    width: 217px;
    height: 58px;
  }
  #content1 {
    background-image: url(./assets/bg1_wide.png);
    margin-top: 114px;
    padding: 112px;
    gap: 40px;
    min-height: 902px;
    background-size: auto 902px;
  }
  .heading1 {
    font-size: 56px;
    margin-bottom: 26px;
  }
  .hero-section-tagline {
    font-size: 26px;
    max-width: 55%;
  }
  #dashboard {
    margin-top: -10rem;
    width: 1548.719px;
    padding: 24.389px;
    gap: 97.557px;
    border-radius: 13.22px;
    border: 1.524px solid var(--stroke, #d8dae5);
    height: auto;
  }
  #content1 span div {
    margin-top: 0rem;
  }
  .dashboard-item h1 {
    font-size: 82px;
    line-height: 109.752px; /* 133.844% */
    text-align: center;
  }
  .dashboard-item p {
    font-size: 28px;
    line-height: 42.681px;
  }
  #search-box {
    margin-top: -1rem;
    width: auto;
    padding: 12.195px 50.389px 12.195px 39.633px;
  }
  #email {
    font-size: 26px;
  }
  .button2 {
    padding: 18.292px 54.876px;
    gap: 15.243px;
    font-size: 26px;
    line-height: 153%;
    height: auto;
    width: fit-content;
  }
  .chip {
    font-size: 24px;
    line-height: 153%;
    height: 39.633px;
    padding: 0px 12.195px;
    gap: 15.243px;
    border-radius: 12.195px;
  }
  #content4 {
    background-size: 130vw 1101px;
  }

  .achievement-el img {
    width: 110px;
    height: 89px;
  }
  .achievement-heading {
    font-size: 20px;
  }

  .achievement-el {
    align-items: center;
    height: 120px;
  }

  #achievements {
    height: 130px;
    gap: 70px;
  }

  .achievement-date {
    font-size: 12px;
  }
  #achievements-section {
    margin-bottom: 20px;
  }

  .achievement-desc {
    font-size: 14px;
  }

  .card-el span h3 {
    font-size: 24px;
  }
  .card-el span p {
    font-size: 16px;
  }

  .card-el {
    width: 380px;
    height: 370px;

    justify-content: space-around;
  }

  .card-el-right {
    gap: 22px;
  }

  .map-card div {
    height: 300px;
    width: 310px;
  }

  .map-card-heading {
    font-size: 24px;
  }

  .map-card-text {
    font-size: 16px;
  }

  .course-description p {
    font-size: 20px;
  }

  .course-heading h2 {
    font-size: 24px;
  }

  .middle1 {
    font-size: 20px;
  }

  .sidebar-button {
    font-size: 18px;
  }

  .card__text {
    font-size: 17px;
  }

  .card__title {
    font-size: 1.8rem;
  }

  .view-all-mentors-btn {
    font-size: 20px;
    height: 55px;
    width: 168px;
  }
  #testimonials {
    gap: 110px;
    margin-bottom: 60px;
  }
  .testimonial-text {
    font-size: 16px;
  }
  .testimonial-card:nth-child(1) {
    width: 310px;
  }
  .testimonial-card:nth-child(2) {
    font-size: 16px;
    width: 160px;
    height: 151px;
  }
  .rating h2 {
    font-size: 18px;
  }
  .rating-stars {
    font-size: 0.9rem;
  }
  .testimonial-card:nth-child(4) {
    width: 310px;
  }
  .testimonial-card:nth-child(3) {
    width: 400px;
    bottom: 5%;
  }
  .view-reviews-btn {
    width: 270px;
  }
  .testimonial-title {
    font-size: 32px;
  }
  .testimonial-quote {
    font-size: 20px;
  }
  .date {
    font-size: 17px;
  }

  #faq-section {
    max-width: 1000px;
  }

  .faq-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    font-size: 20px;
  }
  .answer-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .question-text,
  .faq-answer p {
    font-size: 20px;
  }

  .see-all-faq {
    font-size: 21px;
  }

  .newsletter-content h2,
  .newsletter-content p {
    font-size: 20px;
  }
  .newsletter-form input {
    font-size: 16px;
  }
  .input-container .newsletter-icon {
    top: 13.5px;
  }
  .newsletter-form button {
    font-size: 16px;
  }
  .footer-section h3 {
    font-size: 24px;
  }

  .footer-logo,
  .footer-stem-logo {
    width: 12vw;
  }

  .footer-bottom p {
    font-size: 20px;
  }
  .social-icons a img {
    width: 1.6rem;
  }
  .social-icons ul li a {
    font-size: 18px;
  }
  .footer-section p,
  .footer-section ul,
  .footer-section li {
    font-size: 20px;
    line-height: 140%;
  }
}

@media (min-width: 860px) and (max-width: 1160px) {
  header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .aptcoder-logo {
    margin-left: 0px;
  }

  .sign-in {
    width: 100px;
  }
}

@media (max-width: 850px) {
  body {
    font-size: 12px;
  }
  /* nav {
    flex-direction: column;
  } */
  header nav ul {
    display: none;
  }
  header nav ul li {
    margin: 1rem 0.2rem;
  }
  header {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 71px;
    padding-top: 16px;
    padding-left: 27.05px;
    padding-right: 28.25px;
    padding-bottom: 17px;
  }
  .buttons-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hamburger {
    display: block;
    width: 32px;
    height: 21px;
    margin-left: 12px;
  }
  #content1 {
    background-image: url(./assets/bg1_tab.png);

    padding: 67.3px;
    gap: 40px;
    /* min-height: 592px; */
    min-height: 441px;
    background-size: auto 441px;
  }
  .heading1 {
    font-size: 24px;
  }
  .hero-section-tagline {
    max-width: 65%;
  }
  #search-box {
    width: 508px;
  }
  .button2 {
    height: 38px;
  }
  #dashboard {
    min-width: 521px;
    height: 88px;
    gap: 17px;
    margin-top: -6.25rem;
  }
  .dashboard-item h1 {
    font-size: 31.403px;
    line-height: 37.684px; /* 120% */
    letter-spacing: -0.628px;
  }
  .dashboard-item p {
    font-size: 9.421px;
    line-height: 14.655px;
  }
  #achievements {
    gap: 40px;
  }
  .achievement-el {
    height: 75.79px;
  }
  .chip {
    font-size: 14px;
  }
  .achievement-heading {
    font-size: 12px;
  }
  .achievement-el img {
    width: 73.588px;
    height: 55.798px;
  }
  .achievement-date {
    font-size: 6.469px;
  }
  .achievement-desc {
    font-size: 8.087px;
  }
  #achievements-section {
    margin-top: 24.53px;
  }
  #content2 {
    margin-top: 32.67px;
    margin-bottom: 0;
  }
  #content2 h2 {
    font-size: 19.325px;
  }
  .girl-pencil,
  .arrow-img {
    display: none;
  }
  .content2-span {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding-left: none;
    padding-right: none;
    margin-bottom: 23px;
  }

  .cards {
    gap: 9px;
  }
  .card-el {
    border-radius: 7.4px;
    gap: 14.494px;
    padding: 14.49px;
    width: 170px;
    /* justify-content: flex-start; */
    height: 230px;
  }
  .card-el-img {
    width: 60px;
    height: 60px;
  }

  .card-el span h3 {
    font-size: 12px;
  }
  .card-el span p {
    font-size: 8.455px;
  }
  .card-el button {
    border: 1px solid #e5efff;
    border-radius: 8px;
    padding: 12px 12px;
    height: 25px;
    background: #fff;
    gap: 4px;
    flex-shrink: 0;
    align-self: stretch;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.084px;
    margin-top: 4px;
  }
  #content3 {
    margin-top: 20px;
  }
  #content3 h2 {
    font-size: 18.575px;
    letter-spacing: -0.371px;
  }
  .map-subheading {
    font-size: 11.609px;
  }
  .map-card {
    margin-bottom: -10px;
    margin-top: 13px;
    height: 283px;
    background-size: auto 283px;
  }
  .map-card div {
    width: 157.887px;
    height: 137.571px;
    padding: 9.29px;
    gap: 13.93px;
  }
  .map-card div img {
    width: 34.828px;
    height: 34.828px;
    flex-shrink: 0;
  }
  .map-card-heading {
    font-size: 11.609px;
  }
  .map-card-text {
    font-size: 8px;
  }
  #content4 {
    background-image: url(./assets/bg3_mob.png);
    background-size: 150vw 780px;
    margin-top: -100px;
  }
  #category-tabs-container {
    gap: 75.54px;
  }
  .category-tab-button {
    font-size: 14.479px;
    line-height: 12.59px;
  }
  .sidebar {
    margin-left: 12.62px;
    margin-top: 15.25px;
    margin-bottom: 15.25px;
  }
  .sidebar,
  .sidebar-mask {
    min-width: unset;
    width: 81.207px;
    height: 454.508px;
  }
  .sidebar-button {
    border-radius: 5.036px;

    height: 40px;
    margin-top: 13.8px;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    padding-right: 15.5px;
    padding-left: 15.5px;
    font-size: 10.072px;
    line-height: 12.59px; /* 125% */
  }
  .sidebar button:first-child {
    margin-top: 22.72px;
  }
  #courses-container {
    height: 584px;
    width: 95%;
    margin-top: 28px;
  }
  #courses-container-span {
    margin-top: 15.25px;
    margin-bottom: 15.25px;
    margin-left: 19.6px;
  }
  #course-header {
    min-height: 106px;
    height: 106px;
    padding: 10.072px;
  }
  .course-header-details {
    font-size: 10.072px;
  }
  .detail1 {
    font-size: 11.331px;
  }
  .detail2 select,
  .middle1,
  .middle2,
  .middle2 div span {
    font-size: 10.072px;
  }
  .middle1,
  .middle2,
  .course-header-animation-container {
    margin-top: 15.1px;
  }
  .middle2-sec {
    font-size: 7.554px;
  }
  .or-text {
    font-size: 7.554px;
  }
  .or-text::before,
  .or-text::after {
    height: 6px;
  }
  .course-header-animation p {
    font-size: 8.813px;
    line-height: 20.144px;
    height: 21px;
  }
  .course-header-animation p::before {
    width: 12.59px;
    height: 12.59px;
  }
  #course-list {
    height: 510.095px;
    margin-top: 8px;
    gap: 13.85px;
  }
  .course-heading h2 {
    font-size: 12.59px;
    line-height: 15.108px; /* 120% */
    letter-spacing: -0.076px;
  }
  .course-overview {
    font-size: 8.813px;
  }
  .course-description p {
    font-size: 10.072px;
  }
  .students-enrolled {
    font-size: 8.813px;
  }
  .students-enrolled img {
    width: 15.108px;
    height: 15.108px;
  }
  .request-quote {
    display: flex;
    height: 27.699px;
    padding: 7.554px 10.072px;
    justify-content: center;
    align-items: center;
    gap: 6.295px;
    border-radius: 6.295px;
    font-size: 10.072px;
  }
  .course-image {
    width: 183.188px;
    height: 110.165px;
  }
  #testimonials {
    gap: 2px;
    padding: 0;
  }
  #carousel-section {
    margin-top: -220px;
  }
  .mentor-heading h2 {
    font-size: 21.234px;
  }
  .mentor-heading p {
    font-size: 12.977px;
  }
  .swiper {
    max-width: 800px;
  }
  .card {
    font-family: "Poppins", sans-serif;
    max-width: 245px;
    height: fit-content;
    background-color: #fff;
    border-radius: 2em;
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
    padding: 1em 0.5em;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 2em 0em;
  }
  .card__image {
    width: 7em;
    height: 7em;
  }
  .card__title {
    font-size: 13.566px;
  }
  .card__name {
    font-size: 9.438px;
  }

  .card__text {
    font-family: Poppins;
    font-size: 9.438px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.414px;
  }
  .testimonial-title,
  .highlight {
    font-size: 16.172px;
  }
  .testimonial-quote {
    font-size: 9.241px;
    width: unset;
    max-width: 277px;
  }
  .underline-img {
    width: 160.569px;
    height: 9.241px;
  }
  .testimonial-card-container {
    width: 506.043px;
    height: auto;
    padding: 5px;
    background-size: 406px 360px;
    background-repeat: no-repeat;
    /* background-position: center; */
  }
  .testimonial-text {
    font-size: 6.931px;
  }
  .testimonial-name {
    font-size: 11.552px;
  }
  .testimonial-cards {
    grid-template-columns: 250px 250px;
  }
  .testimonial-card {
    gap: 13.86px;
  }
  .testimonial-content,
  .card-footer {
    gap: 9.24px;
  }
  .testimonial-img {
    width: 46.207px;
    height: 46.207px;
  }
  .testimonial-card:nth-child(1) {
    width: 157.103px;
    padding: 9.241px;
    margin-left: 90px;
  }
  .testimonial-card:nth-child(2) {
    width: 75.664px;
    height: auto;
    padding: 9.241px;
  }
  .rating-card {
    bottom: 35%;
  }
  .rating {
    gap: 9.24px;
  }

  .testimonial-card:nth-child(4) {
    display: flex;
    width: 157.103px;
    padding: 9.241px;
    flex-direction: column;
    align-items: center;
    gap: 13.862px;
  }
  .testimonial-card:nth-child(3) {
    padding: 9.241px;

    width: 200px;
    bottom: 8px;
    margin-left: 45px;
  }
  .rating h2 {
    font-size: 9.241px;
  }
  .rating-stars {
    font-size: 6px;
  }
  .testimonial-stars {
    font-size: 8px;
  }
  .rating p {
    font-size: 6.931px;
  }
  .view-reviews-btn {
    display: flex;
    width: 110.319px;
    height: 24.259px;
    padding: 9.241px 13.862px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5.776px;
    font-size: 9.241px;
    font-style: normal;
    font-weight: 500;
    line-height: 13.862px;
  }
  #faq-section h2 {
    font-size: 26.501px;
  }
  .center-text {
    margin-top: 5.58px;
    font-size: 11.158px;
    font-weight: 400;
    line-height: 150%;
  }
  .date {
    font-size: 9.764px;
  }
  .question-text,
  .faq-answer p {
    font-size: 11.158px;
  }
  #faq-section {
    width: auto;
    margin: 20px 30px;
    box-shadow: none;
  }
  .faq-btn {
    margin-top: 22.32px;
    margin-bottom: 20px;
    width: fit-content;
    display: flex;
    padding: 6.974px 13.948px;
    align-items: center;
    gap: 2.79px;
    border-radius: 5.579px;
    background: #f7faff;
  }
  .see-all-faq {
    font-size: 9.764px;
    line-height: 150%;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 20px;
    height: 20px;
  }
  .newsletter-section {
    flex-direction: column;
    padding: 10px;
    text-align: center;
    align-items: center;
    top: 30%;
  }
  .newsletter-section {
    flex-direction: row;
  }
  .newsletter-content h2,
  .newsletter-content p {
    font-size: 9.53px;
    text-align: left;
  }
  .newsletter-form input,
  .newsletter-form button {
    font-size: 10.53px;
  }
  .footer-container {
    padding-top: 20px;
    font-size: 9px;
  }
  .about {
    position: relative;
    top: -2px;
  }

  .footer-section p {
    font-family: Rubik;
    font-size: 10.429px;
    font-style: normal;
    font-weight: 400;
    line-height: 12.787px; /* 125% */
  }

  .footer-section h3 {
    color: #fff;
    font-family: Rubik;
    font-size: 14.787px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .footer-bottom p {
    color: #fff;
    text-align: center;
    font-family: Rubik;
    font-size: 10.429px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 10.429px;
    margin: 5px 0;
    transition: color 0.3s;
  }
  .social-icons ul li a {
    color: #fff;
    font-family: Rubik;
    font-size: 8.251px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  .footer-bottom {
    gap: 0px;
    padding-bottom: 0;
  }
  .footer-last-item {
    padding-top: 10px;
  }
  .social-icons a img {
    width: 18px;
  }

  .mobile-sidebar-btns {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .footer-section-info-text p {
    width: 200px;
  }

  .footer-bottom-container {
    width: 100%;
  }
}

@media (min-width: 550px) and (max-width: 700px) {
  .mobile-sidebar-btns {
    display: row;
  }
  .sidebar-menu {
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    align-items: center;
  }

  .newsletter-form input {
    width: 235px;
  }

  .sidebar-menu li {
    list-style: none;
    margin-right: 15px;
  }

  .mobile-sidebar-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 10px 0px;
  }

  .mobile-sidebar-btns button {
    align-items: center;
    max-width: 131px;
  }
}

@media (min-width: 450px) and (max-width: 530px) {
  .mobile-sidebar-btns {
    display: row;
  }
  .aptcoder-logo {
    margin-left: 0;
  }
  .hamburger {
    margin-left: 6px;
  }
  .sign-in {
    width: 100px;
  }
  .sidebar-menu {
    height: 50vh;
    flex-direction: column;
  }
  .newsletter-form input {
    width: 220px;
  }
}

@media only screen and (max-width: 450px) {
  .mobile-sidebar-btns {
    display: block;
  }
  .active-category {
    color: #1e70ae;
  }
  .swiper-button-next {
    right: 15px;
  }
  .swiper-button-prev {
    left: 20px;
  }

  .aptcoder-logo {
    width: auto;
    margin-left: 0;
    height: 28px;
  }
  .header-login-btns {
    display: none;
  }

  .hamburger {
    display: block;
    width: 23px;
    height: 17px;
  }

  .hamburger :hover {
    cursor: pointer;
  }
  header {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 29.906px;
    padding-top: 6px;
    padding-left: 15px;
    padding-right: 16px;
    padding-bottom: 5px;
  }
  .sidebar-menu {
    height: 50vh;
    flex-direction: column;
  }
  #content1 {
    background-image: url(./assets/index-mobile-bg.png);
    margin-top: 42px;
    margin-bottom: 0;
    gap: 4px;
    min-height: 63vw;
    background-size: 90vw 200px;
    background-repeat: no-repeat;
    background-position: top;
    padding: 1.3rem 1.5rem;
    background-position: center;
    background-position-y: 0px;
  }
  .heading1 {
    margin-top: 11.4px;
    font-size: 16px;
    margin-top: 28px;
  }
  .hero-section-tagline {
    font-size: 7px;
  }
  #search-box {
    display: flex;
    width: 80px;
    max-height: 50%;
    height: 35px;
    align-items: center;
    padding: 3.842px 7.684px 3.842px 12.486px;
  }
  #dashboard {
    margin-top: -1em;
    min-width: 84vw;
    height: 65px;
  }

  .dashboard-item h1 {
    font-size: 16.933px;
    margin-bottom: -5px;
    position: relative;
    left: -7.2px;
  }

  .dashboard-item p {
    position: relative;
    left: -8.4px;
  }
  .stem-logo{
  margin-top: 5px;
height: 100%;
}

  .chip {
    margin-top: 8px;
    font-size: 6px;
    height: auto;
    width: auto;
  }

  .button2 {
    max-width: 20px;
    font-size: 8px;
    height: 20px;
  }

  #email {
    height: 20px;
  }

  /* Why choose us */

  .girl-pencil,
  .arrow-img {
    display: none;
  }
  .cards {
    display: flex;
    flex-direction: column;
    padding: 0 18.6px;
    width: 100%;
    margin: 0;
  }
  .card-el {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-height: 120px;
    gap: 20px;
    justify-content: flex-start;
    padding: 8px 16px;
  }

  #faq-section {
    margin: 37.2px 30px;
  }
  .card-el span p {
    text-align: left;
    margin-top: 0;
    color: var(--Grey-40, #666);
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .card-el-right {
    display: flex;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }
  .card-el-right button {
    padding: 7.247px 13.286px;
    max-width: fit-content;
    color: var(--Grey-30, #4c4c4c);
    font-family: Inter;
    font-size: 8.455px;
    font-style: normal;
    font-weight: 500;
    height: 25.364px;

    line-height: 14.494px; /* 171.429% */
    letter-spacing: -0.051px;
  }
  #content2 h2 {
    font-size: 16px;
    font-weight: 600;
  }

  .card-el span h3 {
    color: var(--Grey-20, #333);
    text-align: left;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 18px */
  }
  .content2-span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
    padding-right: 0rem;
    margin-bottom: 16px;
  }

  .card-el-img {
    width: 47.257px;
    height: 47.257px;
    position: relative;
    bottom: 15px;
  }

  .card-el .card-btn-arrow {
    width: 12.078px;
    height: 12.078px;
    flex-shrink: 0;
  }

  #content3 h2 {
    color: var(--Gray-900, #101828);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.212px;
    max-width: 350px;
    margin: 0 auto;
  }
  .map-subheading {
    color: var(--Gray-500, #667085);
    text-align: center;
    font-family: Inter;
    font-size: 12.638px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .map-card {
    margin-bottom: -10px;
    margin: 0px auto;
    background-image: url(./assets/mobile-mapNew1.png);
    padding: 0rem;
    height: 40vh;
    background-size: 100vw 28vh;
    background-position: top;
    background-position-y: 10px;
    width: auto;
  }
  .map-subheading {
    color: var(--Gray-500, #667085);
    font-size: 10px;
  }

  .map-card-text {
    color: #666;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .map-card div {
    width: 150px;
    height: auto;
    padding: 6px 8px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .map-card-heading {
    font-size: 12px;
  }
  .map-card div img {
    width: 35px;
    height: 35px;
  }
  .achievement-desc {
    font-size: 4px;
  }

  .achievement-el {
    display: flex;
    align-items: center;
  }

  .achievement-date {
    font-size: 3px;
  }
  .achievement-heading {
    font-size: 9px;
  }
  .card-el-img {
    bottom: 0;
  }

  #carousel-section {
    background-color: #fff9f9;
    margin-top: -150px;
  }
  .swiper {
    max-width: 630px;
    overflow: hidden;
    height: 100%;
  }

  .mentor-heading h2 {
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
  }

  .mentor-heading p {
    text-align: center;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #212529;
  }

  /* Testimonial Section */

  #testimonials {
    display: none;
  }

  .achievement-section-mobile {
    margin: 34px 20px;
    display: block;
  }

  .card-el-img-mobile {
    width: 89.959px !important;
    height: 89.246px !important;
  }

  .achievement-content-mobile {
    color: var(--Grey-40, #666);
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  .achievement-el-mobile {
    display: flex;
    align-items: center;
    height: 118px;
  }
  .testi-stars{
    display: flex;
    align-items: center;
    max-width: 20px;
  }

  .achievement-el-mobile span {
    display: flex;
    width: 160px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    flex-shrink: 0;
    margin-left: 12px;
    margin-top: 3.5px;
    margin-bottom: 3.5px;
  }

  .card-el-img-mobile {
    bottom: 0;
  }

  .achievement-mobile-content-and-img {
    display: flex;
  }
  .achievement-mobile-content-and-img svg {
    width: 20.119px;
    height: 20.933px;
    position: relative;
    bottom: 10px;
  }

  .achievement-section-mobile {
    margin: 37.2px auto;
    padding-bottom: 20px;
  }
  .achievement-section-mobile h2 {
    font-size: 16px;
    margin: 8px 0px;
  }
  .view-all-mentors-btn {
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: auto;
    height: auto;
    border-radius: 100px;
    border: 1px solid var(--Primary-97, #f0f6ff);
    background: var(--Primary-99, #f7faff);
  }

  .testimonial-button-mobile {
    background: var(
      --Gradient-Primary-Gradient,
      linear-gradient(90deg, #0062ff 0%, #65d1ff 100%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  #faq-section h2 {
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .center-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 11px;
    line-height: 150%;
    text-align: center;
    color: #666;
  }

  .question-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 11px;
    line-height: 150%;
    color: #4c4c4c;
    text-align: left;
  }
  .faq-answer p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 11px;
    line-height: 150%;
    color: #4c4c4c;
  }
  .date {
    font-size: 9px;
  }
  .see-all-faq {
    padding: 6px 13px;
  }
  .faq-btn {
    margin-top: 22px;
    border-radius: 6px;
    padding: 2px 2px;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 9px;
  }

  /*  Courses Section */

  .mobile-heading-and-view-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
    margin-bottom: 12px;
  }

  .course-container-courses-heading-mobile {
    color: #292929;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .course-container-view-all-btn {
    color: #458bf3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  #courses-container {
    background: none;
    display: flex;
    flex-direction: column;
  }

  #courses-container-span {
    margin: 0 auto;
  }

  .course-overview {
    display: none;
  }
  .course-description p {
    color: var(--Grey-40, #666);
    font-family: Inter;
    font-size: 6px;
    font-style: normal;
    font-weight: 400;
    margin-top: 2px;
    line-height: 150%; /* 9px */
  }

  #course-list {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-around;
  }

  .course-content {
    height: auto;
    width: 170px;
    border: 1px solid var(--Primary-95, #e5efff);
    border-radius: 0.8rem;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
  }

  .course-heading h2 {
    color: var(--Grey-20, #333);
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 15.108px; /* 151.083% */
    letter-spacing: -0.06px;
  }

  .course-header-container {
    display: none;
  }
  #course-header {
    display: none;
  }

  .courses-container {
    display: flex;
    flex-direction: column;
  }

  #category-tabs-container {
    gap: 0;
    border-bottom: 1px solid #d7d7d7;
  }

  .category-tab-button {
    font-size: 8px;
  }

  .sidebar-mask {
    display: none;
  }
  .category-tab-button {
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 114.286% */
    padding: 10px;
  }
  .underline {
    background: #1e70ae;
  }
  .sidebar {
    width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    height: 100px;
    background: none;
    margin: 0 auto;
    margin-top: -50px;
  }
  .sidebar-button {
    color: black;
    border-radius: 32px;
    border: 1px #d7d7d7;
    background: #fff;
    margin: 0px;
    color: #d7d7d7;
  }
  .sidebar button:first-child {
    margin-top: 0;
  }
  .sidebar-button-active {
    margin: 0;
    color: #449cdc;
    border-radius: 32px;
    border: 1px #4097d8;
    background: #fff;
  }
  .course-image {
    width: 100%;
    height: 100%;
  }
  .course-item {
    margin-right: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 0px;
    padding: 10px;
  }

  .course-element {
    padding: 0;
  }

  .request-quote {
    position: relative;
  }
  .course-item-bottom-container {
    display: flex;
    gap: 12px;
    flex-direction: column;
  }

  .course-overview,
  .students-enrolled {
    font-size: 8px;
    top: 0px;
    right: -5px;
  }

  .students-enrolled {
    margin-top: 4px;
  }
  .request-quote {
    bottom: 0px;
    right: 0px;
    font-size: 0.4rem;
    padding: 7.554px 10.072px;
    border-radius: 6.295px;
  }
  .students-enrolled img {
    height: 0.7rem;
    width: 0.7rem;
  }

  .footer-bottom-container {
    width: 100%;
    justify-content: space-between;
    gap: 50px;
    margin-left: 0px;
  }
  .footer-container {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .footer-section p {
    color: #eee;
    font-family: Rubik;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 11.787px; /* 117.868% */
  }
  .about {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .footer-bottom-container {
    width: 100%;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer-section p {
    color: #eee;

    font-family: Rubik;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 11.787px; /* 117.868% */
  }

  .footer-bottom-container {
    width: 100%;
    justify-content: space-between;
    gap: 50px;
  }
  .footer-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: -20px auto;
  }
  .footer-section p {
    color: #eee;
    font-family: Rubik;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 11.787px; /* 117.868% */
  }
  .about {
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    margin-top: 15px;
    justify-content: space-around;
    margin-bottom: -30px;
  }

  .footer-logo,
  .footer-stem-logo {
    width: 30vw;
  }

  .footer-section-info-text {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-section-info-text p {
    width: 100%;
  }

  .footer-section a {
    color: #eee;

    font-family: Rubik;
    font-size: 9.429px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .footer-section h3 {
    color: #eee;
    font-family: Rubik;
    font-size: 11.787px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .follow-us-at {
    display: none;
  }
  .footer-bottom {
    border-top: none;
  }

  .footer-last-item {
    border-top: 1px solid white;
  }

  .footer-bottom-fillers {
    display: none;
  }

  .rights-reserve {
    display: block;
    color: var(--Grey-50, #808080);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    letter-spacing: -0.084px;
    margin-bottom: 20px;
  }
  .achievement-desc,
  .achievement-date,
  .middle2,
  .detail2 select {
    font-size: 0.6rem;
  }
  .newsletter-section {
    flex-direction: column;
    padding: 16px;
  }
  .newsletter-content h2,
  .newsletter-content p {
    font-size: 9.53px;
    text-align: left;
  }
  .newsletter-form button {
    font-size: 10.53px;
    padding: 5px 10px;
  }
  .newsletter-form input {
    padding: 12px;
    font-family: "DM Sans";
    width: 275px;
    height: 35px;
    padding: 5px 5px 5px 38px;
  }
  .input-container .newsletter-icon {
    top: 3px;
    padding: 2.5px 0px 0px 0px;
  }

  #content1 {
    min-height: 61vw;
  }
 
}

@media only screen and (min-width: 420px) and (max-width: 451px) {
  #dashboard {
    margin-top: -2em;
  }
}

@media (max-width: 390px) {
  .swiper-button-next {
    right: 5px;
  }
  .swiper-button-prev {
    left: 10px;
  }

  #content1 {
    min-height: 61.5vw;
  }

  body {
    font-size: 0.7rem;
  }
  .faq-btn {
    display: flex;
    align-items: center;
  }
  .answer-icon,
  .faq-icon {
    font-size: 14px;
  }

  .testimonial-card {
    height: 100%;
  }
  .testimonial-card:nth-child(4) {
    position: relative;
    bottom: 60%;
    height: 100%;
    margin-left: 10px;
    width: 100%;
  }
  .newsletter-form input {
    font-family: "DM Sans";
    width: 275px;
    padding: 5px 5px 5px 38px;
  }

  /* .newsletter-content h2 {
    font-size: 14px;
  }
  .newsletter-content p {
    font-size: 10px;
  } */

  /* .newsletter-form {
    font-size: 8px;
  } */
  /* .newsletter-form input {
    font-family: "DM Sans";
    width: 255px;
    padding: 3px 3px 3px 29px;
  } */

  .heading1 {
    font-size: 14px;
    padding: 0 26px;
  }
  .course-content {
    height: auto;
    width: 165px;
  }
}
@media (max-width: 361px) {
  .heading1 {
    font-size: 15px;
    padding: 0 20px;
    line-height: 150%;
  }
  .hero-section-tagline {
    font-size: 6px;
  }

  .course-content {
    height: auto;
    width: 150px;
  }

  .chip {
    margin-top: 6px;
    font-size: 5px;
  }
  .category-tab-button {
    font-size: 10px;
  }

  #dashboard {
    margin-top: 1em;
    min-width: 85vw;
    height: 65px;
  }
  #content1 {
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 330px) {
  #dashboard h1 {
    font-size: 14px;
  }

  #dashboard p {
    font-size: 8px;
  }

  #dashboard {
    margin-top: 1em;
  }
}

/* Overlay Styles for View All functionality */
#viewAllOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow-y: auto;
}

.overlay-content {
  position: relative;
  background: white;
  margin: 2% auto;
  padding: 20px;
  width: 80%;
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.close-btn1 {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  z-index: 10000;
}

.close-btn1:hover {
  color: #000;
}

/* Mentor cards in overlay - 3 cards per row grid */
.mentors-overlay-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
}

.mentor-card-wrapper {
  display: block;
  width: 100%;
}

.mentor-card-wrapper .card {
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
  width: 100%;
  margin: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.mentor-card-wrapper .card .card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.mentor-card-wrapper .card .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-card-wrapper .card .card__content {
  padding: 20px;
  background: white;
}

.mentor-card-wrapper .card .card__title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.mentor-card-wrapper .card .card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.mentor-card-wrapper .card .card__name {
  font-size: 14px;
  color: #007bff;
  font-weight: 500;
  display: block;
}

/* Responsive design for mentor overlay */
@media (max-width: 768px) {
  .overlay-content {
    width: 95%;
    margin: 5% auto;
    padding: 15px;
  }
  
  .mentors-overlay-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px 0;
  }
  
  .mentor-card-wrapper .card .card__image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .mentors-overlay-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
