/*---- General ----*/
:root {
  --primary: #1a2bc3;
  --secondary: #f6f9ff;
  --text: #3a3a3a;
  --orange: #fe770e;
  --yellow: #ebbb01;
  --light-grey: #f0f3f7;
  --dark-blue: #020042;
  --gradient-primary: linear-gradient(135deg, #1a2bc3 0%, #020042 100%);
  --gradient-accent: linear-gradient(135deg, #fe770e 0%, #ebbb01 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  display: grid;
  line-height: 1.6;
}

main {
  place-self: center;
  max-width: 2000px;
}

a {
  text-decoration: none;
}

/* ========================================
   MOBILE STYLES (< 768px)
   ======================================== */
@media (max-width: 767px) {
  /*---- Header ----*/
  #header {
    height: 70px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 249, 255, 0.9);
    backdrop-filter: blur(13px);
    z-index: 1000;
  }

  #logo {
    height: 45px;
    margin: 0px 0 0 -7px;
  }

  #hamburger-container {
    padding: 5px 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: end;
    justify-content: center;
    height: 35px;
    width: 35px;
    cursor: pointer;
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1002;
  }

  .hamburger-bars {
    height: 3.5px;
    border-radius: 2px;
    background: #3a3a3a;
    width: 35px;
    transition: width 0.3s ease;
  }

  .bar2 {
    width: 20px;
  }

  .bar3 {
    width: 30px;
  }

  #menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(13px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 80px 0 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  #menu.active {
    transform: translateX(0);
    padding: 80px 0 0 0;
    z-index: 1001;
  }

  .fixed-hamburger {
    position: fixed;
    top: 12px;
    right: 20px;
  }

  .hidden {
    display: none;
    visibility: hidden;
  }

  #menu > a {
    color: #4c4c4c;
    font-size: 16px;
    padding: 16px 44px;
  }

  #app {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  #app-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  #app-heading {
    color: #3a3a3a;
    margin: 0;
  }

  #app-sub-text {
    font-size: 12px;
    width: 160px;
    margin: 0;
    color: #6a6a6a;
  }

  #app-logo {
    height: 55px;
    margin-left: -5px;
  }

  .header-button {
    display: none;
  }

  /*---- Hero Section ----*/
  #hero {
    background: var(--secondary);
    background-image: linear-gradient(#cacaca 1px, transparent 1px),
      linear-gradient(90deg, #cacaca 1px, transparent 1px);
    background-size: 40px 40px;
    margin-top: 70px;
  }

  #align-hero {
    all: unset;
    display: contents;
  }

  .ai-text {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-blue);
    font-weight: 400;
    font-size: 16px;
  }

  #desktop-gradient {
    all: unset;
    display: contents;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hero-cont {
    all: unset;
    display: contents;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hero-content {
    padding: 44px 20px;
    background: radial-gradient(circle, transparent 0%, var(--secondary) 80%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hero-text {
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .search-cont {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e2e4e9;
    border-radius: 15px;
    background: #f0f3f7;
    width: 300px;
    margin: 0 0 6px;
    transition: 200ms ease all;
  }

  #search-btn {
    border: none;
    padding: 10px;
    background: #f0f3f7;
    border-radius: 15px;
    cursor: pointer;
  }

  .search {
    padding: 10px 16px;
    border: none;
    border-left: 1px solid #e2e4e9;
    background: #f0f3f7;
    outline: none;
  }

  input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }

  .material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
    color: #95969a;
  }

  .search-cont > input::placeholder {
    color: #95969a;
    font-size: 14px;
  }

  .focused {
    border: 2px solid #1a2bc3;
    box-shadow: 0 0 0 3px rgba(26, 43, 195, 0.2);
  }

  .clear-icon {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: #95969a;
    padding: 0;
  }

  .clear-icon.show {
    display: inline;
  }

  .hero-sm-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 9px;
    border: 1px solid #f9c59b;
    padding: 3px 8px;
    border-radius: 15px;
    display: inline-block;
    top: 150px;
    left: 150px;
  }

  .animated {
    transform-origin: center;
    position: absolute;
    animation: swing 10s infinite alternate ease-in-out;
  }

  @keyframes swing {
    0% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(20deg);
    }
  }

  #hero-heading {
    color: #020042;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    font-family: "Montserrat", Sans-Serif;
  }

  .blue-text {
    color: #1a2bc3;
  }

  #hero-sub-text {
    font-size: 14px;
    text-align: center;
  }

  p {
    color: #6a6a6a;
  }

  #hero-button-cont {
    display: flex;
    gap: 16px;
    margin-top: 10px;
  }

  .button {
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 15px;
    outline: none;
    border: none;
  }

  .hero-primary-button {
    background: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0px 10px 15px 0px rgba(26, 43, 195, 0.14);
  }

  .hero-secondary-button {
    border: 2px solid #e2e4e9;
    color: #3a3a3a;
  }

  .image-cont {
    height: 280px;
    position: relative;
    margin: 44px 0 0 0;
  }

  .desktop-image {
    position: absolute;
    top: 0;
    left: 40px;
    width: 300px;
    height: auto;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
  }

  .tablet-image {
    position: absolute;
    top: 60px;
    left: 0px;
    width: 131px;
    height: auto;
    box-shadow: -5px 10px 20px 0px rgba(0, 0, 0, 0.15);
  }

  .mobile-image {
    position: absolute;
    top: 80px;
    left: 85px;
    width: 74px;
    height: auto;
    box-shadow: -5px 10px 20px 0px rgba(0, 0, 0, 0.15);
  }

  /*---- Separator ----*/
  #separator-cont {
    display: flex;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
  }

  #separator {
    position: relative;
    background: var(--dark-blue);
    padding: 27px 20px;
    width: 70%;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
  }

  #separator-side > div > h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary);
  }

  #separator-side > div > p {
    color: var(--light-grey);
    font-size: 12px;
  }

  #students,
  #courses {
    display: flex;
    align-items: end;
    gap: 6px;
  }

  #separator-side {
    background: #020042;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 0px 20px 16px 20px;
    display: flex;
    align-items: end;
    gap: 24px;
  }

  /*---- AI Section ----*/
  #ai-section {
    display: grid;
    background: var(--secondary);
  }

  #ai-container {
    place-self: center;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 24px 20px;
    flex-direction: column;
  }

  .ai-image {
    width: 320px;
    height: auto;
  }

  .ai-text-container {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .ai-heading {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .ai-sub-text {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #707070;
  }

  /*---- Courses Section ----*/
  #courses-section {
    display: flex;
    background: var(--light-grey);
    flex-direction: column;
    padding: 16px 10px;
  }

  #courses-section > h2 {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  #courses-container {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    gap: 16px;
  }

  .course-card-content {
    display: block;
  }

  .course-card {
    display: flex;
    gap: 6px;
    background: var(--secondary);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4.519px 13.558px 0px rgba(0, 0, 0, 0.03);
  }

  .course-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    margin-right: 10px;
  }

  .card-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .students-container {
    display: flex;
    align-items: center;
    font-size: 8px;
    gap: 8px;
  }

  .course-student {
    color: #999;
    padding: 2px 6px;
    border: 1px solid rgba(26, 43, 195, 0.2);
    background: rgba(217, 217, 217, 0.2);
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }

  .course-enrolls {
    color: #919191;
    font-family: "Montserrat", Sans-Serif;
    font-size: 8px;
  }

  .course-title {
    font-size: 16px;
    color: var(--text);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .course-description {
    font-size: 13px;
    color: #666;
    font-family: "Roboto", Sans-Serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .price-container {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
  }

  .course-price {
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
  }

  .course-discount {
    color: #7c7c7c;
    display: none;
  }

  .course-button-container {
    display: none;
    align-items: center;
    gap: 4px;
  }

  .course-button-container > button {
    padding: 4px 8px;
    font-size: 8px;
    color: #999;
    background: var(--light-grey);
    border: 1px solid #e2e4e9;
    border-radius: 6px;
    cursor: pointer;
  }

  .school-icon {
    color: #bbbcbe;
    height: 17px;
    width: 19px;
    margin: 0 6px 5px 0;
  }

  .course-lessons {
    font-size: 9px;
    color: #bbbcbe;
  }

  .view-courses {
    color: var(--primary);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
  }

  /*---- Promotional Vid Section ----*/
  .prom-gradient {
    position: relative;
    padding: 44px 20px;
    background: radial-gradient(
      circle at 50% 40%,
      transparent 0%,
      var(--secondary) 80%
    );
  }

  .cont {
    background: var(--secondary);
    background-image: linear-gradient(#cacaca 1px, transparent 1px),
      linear-gradient(90deg, #cacaca 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .prom-sm-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 9px;
    border: 1px solid #f9c59b;
    padding: 3px 8px;
    border-radius: 15px;
    display: inline-block;
    top: 35px;
    left: 130px;
  }

  .prom-top-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 9px;
    border: 1px solid #f9c59b;
    padding: 4px 12px;
    border-radius: 15px;
  }

  .prom-heading {
    color: var(--text);
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .orange-text {
    color: var(--orange);
  }

  .prom {
    padding: 20px;
    border-radius: 30px;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .prom::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 32px;
    background: linear-gradient(
      90deg,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3
    );
    background-size: 400% 400%;
    animation: gradientMove 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 5px;
    box-sizing: border-box;
  }

  @keyframes gradientMove {
    0% {
      background-position: 0% 25%;
    }
    100% {
      background-position: 25% 0%;
    }
  }

  .linear-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
  }

  #linear-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  #users-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .linear-header > h3 {
    font-size: 18px;
    color: var(--text);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
  }

  .prom > p {
    font-size: 14px;
    font-family: "Roboto", Sans-Serif;
    font-weight: 400;
    color: #6a6a6a;
  }

  #students-images {
    display: flex;
    margin: 0 0 0 10px;
  }

  .student-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -15px;
  }

  .prom-button {
    background: var(--orange);
    border: 2px solid var(--orange);
    box-shadow: 0px 10px 15px 0px rgba(254, 119, 14, 0.14);
    width: 142px;
  }

  .video-wrapper {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /*---- Learning Path ----*/
  #learning-path {
    background: var(--light-grey);
    padding: 44px 20px;
  }

  .path-heading {
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    text-align: center;
    margin-bottom: 24px;
  }

  .sub-text {
    color: #6a6a6a;
    font-size: 14px;
    text-align: center;
    font-family: "Roboto", Sans-Serif;
    margin-bottom: 24px;
  }

  #path-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .path {
    display: flex;
    align-items: center;
    margin: 0 0 24px 0;
    gap: 16px;
  }

  .path-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .path > div > h2 {
    font-family: "Montserrat", Sans-Serif;
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }

  .path-text > h3 {
    color: #020042;
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .path-text > p {
    color: #6a6a6a;
    font-size: 14px;
    font-family: "Roboto", Sans-Serif;
  }

  .one {
    border: 1px solid rgba(2, 0, 66, 0.3);
    background: rgba(2, 0, 66, 0.1);
    border-radius: 50%;
    color: var(--dark-blue);
  }

  .two {
    border: 1px solid rgba(254, 119, 2, 0.3);
    background: rgba(254, 119, 2, 0.14);
    border-radius: 50%;
    color: var(--orange);
  }

  .three {
    border: 1px solid rgba(26, 43, 195, 0.3);
    background: rgba(26, 43, 195, 0.14);
    border-radius: 50%;
    color: var(--primary);
  }

  .four {
    border: 1px solid rgba(235, 187, 1, 0.3);
    background: rgba(235, 187, 1, 0.14);
    border-radius: 50%;
    color: var(--yellow);
  }

  .five {
    border: 1px solid rgba(2, 0, 66, 0.3);
    background: rgba(2, 0, 66, 0.1);
    border-radius: 50%;
    color: var(--dark-blue);
  }

  .six {
    border: 1px solid rgba(254, 119, 2, 0.3);
    background: rgba(254, 119, 2, 0.14);
    border-radius: 50%;
    color: var(--orange);
  }

  /*---- Testimonials Section ----*/
  #testimonials {
    background: var(--secondary);
    padding: 44px 20px;
  }

  #testimonials > h2 {
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    text-align: center;
    margin-bottom: 24px;
  }

  #testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 40px;
    background: var(--secondary);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
    border: 1px solid #d9d9d9;
  }

  .testimonial-card > p {
    color: #6a6a6a;
    font-size: 14px;
    font-family: "Roboto", Sans-Serif;
    margin: 0;
  }

  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .testimonial-user > h3 {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .view-testimonials {
    color: var(--primary);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
  }

  /*---- FAQ Section ----*/
  #faq-section {
    background: var(--light-grey);
    padding: 24px 20px;
  }

  #faq-section > h2 {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    margin-bottom: 10px;
  }

  #faq-section > p {
    color: #6a6a6a;
    font-size: 14px;
    font-family: "Roboto", Sans-Serif;
    margin-bottom: 10px;
  }

  #faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .faq-card {
    background: var(--secondary);
    padding: 10px 16px;
    border-radius: 16px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
    border: 1px solid #d9d9d9;
  }

  .faq-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .faq-heading > h3 {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .faq-heading > .material-symbols-outlined {
    font-size: 24px;
    cursor: pointer;
  }

  .faq-card > .answer {
    color: #6a6a6a;
    font-size: 14px;
    font-family: "Roboto", Sans-Serif;
    display: none;
  }

  .faq-card > .active-answer {
    display: block;
    margin-top: 24px;
  }

  .view-faq {
    color: var(--primary);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
  }

  /*---- Footer ----*/
  footer {
    background: #020042;
    padding: 44px 20px 16px 20px;
  }

  #footer-heading {
    font-family: "Montserrat", Sans-Serif;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 44px;
  }

  #footer-container {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  footer > #footer-container > .footer-text > p {
    color: #bbbcbe;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
  }

  .quick-links > div,
  .social-handles > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .quick-links > h3,
  .social-handles > h3,
  .footer-text > div > h3 {
    color: var(--light-grey);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .quick-links > div > a,
  .social-handles > div > a,
  .footer-text > div > div > span {
    color: #bbbcbe;
    padding: 0px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
  }

  #playstore-whatsapp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  #playstore-whatsapp-container > img {
    height: 44px;
  }

  .whatsapp-icon {
    height: 50px;
    z-index: 3;
  }

  .ripple-button {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: absolute;
  }

  .ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #25d366;
    opacity: 0.8;
    border-radius: 50%;
    animation: rippleScale 2s linear infinite;
    z-index: 1;
  }

  #w-icon {
    z-index: 1;
  }

  .ripple.delay1 {
    animation-delay: 0.5s;
  }

  .ripple.delay2 {
    animation-delay: 1s;
  }

  @keyframes rippleScale {
    0% {
      transform: scale(0);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 0.3;
    }
  }

  footer > span {
    display: block;
    font-size: 14px;
    color: #95969a;
    font-family: "Roboto, sans-serif";
    border-top: 1px solid #95969a;
    padding: 16px 0 0 0;
    margin: 24px 0 0 0;
  }
}

/* ========================================
   TABLET STYLES (768px - 1023px)
   ======================================== */
@media (min-width: 768px) {
  header {
    height: 80px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 249, 255, 0.9);
    backdrop-filter: blur(13px);
    z-index: 1000;
  }

  #logo {
    height: 45px;
    margin: 0px 0 0 -7px;
  }

  #menu {
    display: flex;
    gap: 20px;
  }

  #menu > a {
    color: #4c4c4c;
    font-size: 16px;
    padding: 16px 0px;
  }

  #app {
    display: none;
  }

  #app-logo {
    height: 55px;
    margin-left: -5px;
  }

  .header-button {
    background: var(--dark-blue);
    box-shadow: 0px 6px 8px 0px rgba(2, 0, 66, 0.15);
  }

  /*---- Hero Section ----*/
  #hero {
    background: var(--secondary);
    background-image: linear-gradient(#cacaca 1px, transparent 1px),
      linear-gradient(90deg, #cacaca 1px, transparent 1px);
    background-size: 50px 50px;
    margin-top: 70px;
  }

  #hero-content {
    padding: 44px;
    background: radial-gradient(circle, transparent 0%, var(--secondary) 80%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #hero-text {
    width: 540px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .search-cont {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e2e4e9;
    border-radius: 15px;
    background: #f0f3f7;
    width: 300px;
    margin: 0 0 16px 0px;
    transition: 200ms ease all;
  }

  .search-cont:hover {
    box-shadow: 0 0 0 3px rgba(26, 43, 195, 0.2);
  }

  #search-btn {
    border: none;
    padding: 10px;
    background: #f0f3f7;
    border-radius: 15px;
    cursor: pointer;
  }

  .search {
    padding: 10px 16px;
    border: none;
    border-left: 1px solid #e2e4e9;
    background: #f0f3f7;
    outline: none;
  }

  input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }

  .material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
    color: #95969a;
  }

  .search-cont > input::placeholder {
    color: #95969a;
    font-size: 14px;
  }

  .focused {
    border: 2px solid #1a2bc3;
    box-shadow: 0 0 0 3px rgba(26, 43, 195, 0.2);
  }

  .clear-icon {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: #95969a;
    padding: 0;
  }

  .clear-icon.show {
    display: inline;
  }

  .hero-sm-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 12px;
    border: 1px solid #f9c59b;
    padding: 3px 8px;
    border-radius: 15px;
    display: inline-block;
    top: 165px;
    left: 380px;
  }

  .animated {
    transform-origin: center;
    position: absolute;
    animation: swing 10s infinite alternate ease-in-out;
  }

  @keyframes swing {
    0% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(20deg);
    }
  }

  #hero-heading {
    color: #020042;
    margin-bottom: 10px;
    font-size: 50px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .blue-text {
    color: #1a2bc3;
  }

  .ai-text {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-blue);
    font-weight: 400;
    font-size: 18px;
  }

  #hero-sub-text {
    font-size: 18px;
    line-height: 22px;
  }

  p {
    color: #6a6a6a;
  }

  #hero-button-cont {
    display: flex;
    gap: 20px;
  }

  .button {
    padding: 14px 25px;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    border-radius: 15px;
    outline: none;
    border: none;
  }

  .hero-primary-button {
    background: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0px 10px 15px 0px rgba(26, 43, 195, 0.14);
  }

  .hero-secondary-button {
    border: 2px solid #e2e4e9;
    color: #3a3a3a;
  }

  /*.image-cont {*/
  /*  height: 450px;*/
  /*  position: relative;*/
  /*  margin: 44px 0 0 0;*/
  /*  width: 80%;*/
  /*}*/

  /*.desktop-image {*/
  /*  position: absolute;*/
  /*  top: 0;*/
  /*  left: 47px;*/
  /*  width: 80%;*/
  /*  height: auto;*/
  /*  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);*/
  /*}*/

  /*.tablet-image {*/
  /*  position: absolute;*/
  /*  top: 66px;*/
  /*  left: 20px;*/
  /*  width: 231px;*/
  /*  height: auto;*/
  /*  box-shadow: -5px 10px 20px 0px rgba(0, 0, 0, 0.15);*/
  /*}*/

  /*.mobile-image {*/
  /*  position: absolute;*/
  /*  top: 94px;*/
  /*  left: 150px;*/
  /*  width: 140px;*/
  /*  height: auto;*/
  /*  box-shadow: -5px 10px 20px 0px rgba(0, 0, 0, 0.15);*/
  /*}*/

  /*---- Separator ----*/
  #separator-cont {
    display: flex;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
  }

  #separator {
    position: relative;
    background: var(--dark-blue);
    padding: 43px 50px;
    width: 70%;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
  }

  #separator-side > div > h3 {
    font-size: 40px;
    color: var(--secondary);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
  }

  #separator-side > div > p {
    color: var(--light-grey);
    font-size: 20px;
  }

  #students,
  #courses {
    display: flex;
    align-items: end;
    gap: 6px;
  }

  #separator-side {
    background: #020042;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 0px 20px 16px 50px;
    display: flex;
    align-items: end;
    gap: 24px;
  }

  /*---- AI Section ----*/
  #ai-section {
    display: grid;
    background: var(--secondary);
  }

  #ai-container {
    place-self: center;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 44px 50px;
    flex-direction: column-reverse;
  }

  .ai-image {
    width: 600px;
    height: auto;
  }

  .ai-text-container {
    width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .ai-heading {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 50px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .ai-sub-text {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #707070;
  }

  /*---- Courses Section ----*/
  #courses-section {
    display: flex;
    background: var(--light-grey);
    flex-direction: column;
    padding: 44px;
  }

  #courses-section > h2 {
    color: var(--text);
    font-size: 32px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  #courses-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 24px 0px;
  }

  .course-card-content {
    display: block;
  }

  .course-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 290px;
    background: var(--secondary);
    border-radius: 30px;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0px 4.519px 13.558px 0px rgba(0, 0, 0, 0.03);
  }

  .course-image {
    width: 100%;
    height: 170px;
    border-radius: 13px;
    margin-bottom: 8px;
  }

  .card-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .students-container {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 12px;
  }

  .course-student {
    color: #999;
    padding: 4px 8px;
    border: 1px solid rgba(26, 43, 195, 0.2);
    background: rgba(217, 217, 217, 0.2);
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }

  .course-enrolls {
    color: #919191;
    font-family: "Montserrat", Sans-Serif;
    font-size: 12px;
  }

  .course-title {
    font-size: 18px;
    color: var(--text);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .course-description {
    font-size: 16px;
    color: #666;
    font-family: "Roboto", Sans-Serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .price-container {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
  }

  .course-price {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
  }

  .course-discount {
    color: #7c7c7c;
    display: none;
  }

  .course-button-container {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .course-button-container > button {
    padding: 6px 12px;
    font-size: 14px;
    color: #999;
    background: var(--light-grey);
    border: 1px solid #e2e4e9;
    border-radius: 6px;
    cursor: pointer;
  }

  .school-icon {
    color: #bbbcbe;
    height: 17px;
    width: 19px;
    margin: 0 6px 5px 0;
  }

  .course-lessons {
    font-size: 14px;
    color: #bbbcbe;
  }

  .view-courses {
    color: var(--primary);
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
  }

  /*---- Promotional Vid Section ----*/
  .prom-gradient {
    position: relative;
    padding: 64px;
    background: radial-gradient(
      circle at 50% 40%,
      transparent 0%,
      var(--secondary) 80%
    );
  }

  .cont {
    background: var(--secondary);
    background-image: linear-gradient(#cacaca 1px, transparent 1px),
      linear-gradient(90deg, #cacaca 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .prom-sm-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 12px;
    border: 1px solid #f9c59b;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    top: 40px;
    left: 300px;
  }

  .prom-heading-cont {
    display: flex;
    justify-content: center;
  }

  .prom-heading {
    color: var(--text);
    text-align: center;
    margin: 0 0 24px 0;
    width: 500px;
    font-size: 32px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .orange-text {
    color: var(--orange);
  }

  .prom {
    padding: 60px;
    border-radius: 30px;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .prom::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 60px;
    background: linear-gradient(
      90deg,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3
    );
    background-size: 400% 400%;
    animation: gradientMove 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 5px;
    box-sizing: border-box;
  }

  @keyframes gradientMove {
    0% {
      background-position: 0% 25%;
    }
    100% {
      background-position: 25% 0%;
    }
  }

  .linear-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
  }

  #linear-content {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  #users-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .linear-header > h3 {
    font-size: 24px;
    color: var(--text);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
  }

  #users-container > p {
    font-size: 20px;
    font-family: "Roboto", Sans-Serif;
    font-weight: 400;
    color: #6a6a6a;
  }

  #students-images {
    display: flex;
    margin: 0 0 0 10px;
  }

  .student-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -20px;
  }

  .prom-button {
    background: var(--orange);
    border: 2px solid var(--orange);
    box-shadow: 0px 10px 15px 0px rgba(254, 119, 14, 0.14);
    width: 160px;
  }

  .video-wrapper {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 30px;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /*---- Learning Path ----*/
  #learning-path {
    background: var(--light-grey);
    padding: 44px 64px;
  }

  .path-heading {
    color: var(--dark-blue);
    font-size: 37px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    text-align: center;
    margin-bottom: 44px;
  }

  .sub-text {
    color: #6a6a6a;
    font-size: 18px;
    text-align: center;
    font-family: "Roboto", Sans-Serif;
    margin-bottom: 44px;
  }

  #path-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .path {
    display: flex;
    align-items: center;
    margin: 0 0 24px 0;
    gap: 20px;
  }

  .path-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .path > div > h2 {
    font-family: "Montserrat", Sans-Serif;
    font-size: 60px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }

  .path-text > h3 {
    color: #020042;
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .path-text > p {
    color: #6a6a6a;
    font-size: 20px;
    font-family: "Roboto", Sans-Serif;
  }

  .one {
    border: 1px solid rgba(2, 0, 66, 0.3);
    background: rgba(2, 0, 66, 0.1);
    border-radius: 50%;
    color: var(--dark-blue);
  }

  .two {
    border: 1px solid rgba(254, 119, 2, 0.3);
    background: rgba(254, 119, 2, 0.14);
    border-radius: 50%;
    color: var(--orange);
  }

  .three {
    border: 1px solid rgba(26, 43, 195, 0.3);
    background: rgba(26, 43, 195, 0.14);
    border-radius: 50%;
    color: var(--primary);
  }

  .four {
    border: 1px solid rgba(235, 187, 1, 0.3);
    background: rgba(235, 187, 1, 0.14);
    border-radius: 50%;
    color: var(--yellow);
  }

  .five {
    border: 1px solid rgba(2, 0, 66, 0.3);
    background: rgba(2, 0, 66, 0.1);
    border-radius: 50%;
    color: var(--dark-blue);
  }

  .six {
    border: 1px solid rgba(254, 119, 2, 0.3);
    background: rgba(254, 119, 2, 0.14);
    border-radius: 50%;
    color: var(--orange);
  }

  .path-button {
    width: 170px;
    font-size: 20px;
  }

  /*---- Testimonials Section ----*/
  #testimonials {
    background: var(--secondary);
    padding: 44px;
  }

  #testimonials > h2 {
    color: var(--text);
    font-size: 32px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    text-align: center;
    margin-bottom: 44px;
  }

  #testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    width: 270px;
    gap: 24px;
    padding: 24px;
    border-radius: 40px;
    background: var(--secondary);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
    border: 1px solid #d9d9d9;
  }

  .testimonial-card > p {
    color: #6a6a6a;
    font-size: 14px;
    font-family: "Roboto", Sans-Serif;
    margin: 0;
  }

  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .testimonial-user > h3 {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .view-testimonials {
    color: var(--primary);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
  }

  /*---- FAQ Section ----*/
  #faq-section {
    background: var(--light-grey);
    padding: 44px;
  }

  #faq-section > h2 {
    color: var(--dark-blue);
    font-size: 44px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    margin-bottom: 24px;
  }

  #faq-section > p {
    color: #6a6a6a;
    font-size: 18px;
    width: 300px;
    font-family: "Roboto", Sans-Serif;
    margin-bottom: 24px;
  }

  #faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }

  .faq-card {
    background: var(--secondary);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
    border: 1px solid #d9d9d9;
  }

  .faq-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .faq-heading > h3 {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .faq-heading > .material-symbols-outlined {
    font-size: 40px;
    cursor: pointer;
  }

  .faq-card > .answer {
    color: #6a6a6a;
    font-size: 16px;
    font-family: "Roboto", Sans-Serif;
    display: none;
  }

  .faq-card > .active-answer {
    display: block;
    margin-top: 24px;
  }

  .view-faq {
    color: var(--primary);
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
  }

  /*---- Footer ----*/
  footer {
    background: #020042;
    padding: 44px 44px 16px 44px;
  }

  #footer-heading {
    font-family: "Montserrat", Sans-Serif;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 44px;
    font-size: 32px;
  }

  #footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
  }

  footer > #footer-container > .footer-text > p {
    color: #bbbcbe;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
    width: 250px;
  }

  .quick-links > div,
  .social-handles > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links > h3,
  .social-handles > h3,
  .footer-text > div > h3 {
    color: var(--light-grey);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .quick-links > div > a,
  .social-handles > div > a,
  .footer-text > div > div > span {
    color: #bbbcbe;
    padding: 0px;
    font-size: 16px;
    display: block;
    font-family: "Roboto", sans-serif;
  }

  #playstore-whatsapp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  #playstore-whatsapp-container > img {
    height: 44px;
  }

  .whatsapp-icon {
    height: 50px;
    z-index: 3;
  }

  .ripple-button {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: absolute;
  }

  .ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #25d366;
    opacity: 0.8;
    border-radius: 50%;
    animation: rippleScale 2s linear infinite;
    z-index: 1;
  }

  #w-icon {
    z-index: 1;
  }

  .ripple.delay1 {
    animation-delay: 0.5s;
  }

  .ripple.delay2 {
    animation-delay: 1s;
  }

  @keyframes rippleScale {
    0% {
      transform: scale(0);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 0.3;
    }
  }

  footer > span {
    display: block;
    font-size: 14px;
    color: #95969a;
    font-family: "Roboto, sans-serif";
    border-top: 1px solid #95969a;
    padding: 16px 0 0 0;
    margin: 24px 0 0 0;
  }
}

/* ========================================
   DESKTOP STYLES (>= 1024px)
   ======================================== */
@media (min-width: 1024px) {
  header {
    height: 80px;
    padding: 0 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 249, 255, 0.9);
    backdrop-filter: blur(13px);
    z-index: 1000;
  }

  #logo {
    height: 45px;
    margin: 0px 0 0 -7px;
  }

  #menu {
    display: flex;
    gap: 20px;
  }

  #menu > a {
    color: #4c4c4c;
    font-size: 16px;
    padding: 16px 0px;
  }

  #app {
    display: none;
  }

  #app-logo {
    height: 55px;
    margin-left: -5px;
  }

  .header-button {
    background: var(--dark-blue);
    box-shadow: 0px 6px 8px 0px rgba(2, 0, 66, 0.15);
  }

  /*---- Hero Section ----*/
  #hero {
    margin-top: 70px;
    background: var(--secondary);
    background-image: linear-gradient(#cacaca 1px, transparent 1px),
      linear-gradient(90deg, #cacaca 1px, transparent 1px);
    background-size: 40px 40px;
  }

  #align-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: radial-gradient(circle, transparent 0%, var(--secondary) 80%);
  }

  .ai-text {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-blue);
    font-weight: 400;
    font-size: 20px;
  }

  #desktop-gradient {
    width: 1050px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0px;
  }

  #hero-content {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 40px;
    padding: 0;
    position: relative;
    background: transparent;
  }

  #hero-cont {
    position: relative;
    align-items: center;
    flex-direction: column;
    display: flex;
  }

  #hero-text {
    width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .search-cont {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e2e4e9;
    border-radius: 15px;
    background: #f0f3f7;
    width: 300px;
    margin: 0 0 10px;
    transition: 200ms ease all;
  }

  #search-btn {
    border: none;
    padding: 10px;
    background: #f0f3f7;
    border-radius: 15px;
    cursor: pointer;
  }

  .search {
    padding: 10px 16px;
    border: none;
    border-left: 1px solid #e2e4e9;
    background: #f0f3f7;
    outline: none;
  }

  input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }

  .material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
    color: #95969a;
  }

  .search-cont > input::placeholder {
    color: #95969a;
    font-size: 14px;
  }

  .focused {
    border: 2px solid #1a2bc3;
    box-shadow: 0 0 0 3px rgba(26, 43, 195, 0.2);
  }

  .clear-icon {
    display: none;
    cursor: pointer;
    font-size: 20px;
    color: #95969a;
    padding: 0;
  }

  .clear-icon.show {
    display: inline;
  }

  .hero-sm-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 12px;
    border: 1px solid #f9c59b;
    padding: 4px 10px;
    border-radius: 15px;
    display: inline-block;
    top: 100px;
    left: 200px;
  }

  .animated {
    transform-origin: center;
    position: absolute;
    animation: swing 10s infinite alternate ease-in-out;
  }

  @keyframes swing {
    0% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(20deg);
    }
  }

  #hero-heading {
    color: #020042;
    margin-bottom: 10px;
    width: 700px;
    font-size: 65px;
    line-height: 80px;
    font-weight: 600;
    text-align: center;
    font-family: "Montserrat", Sans-Serif;
  }

  .blue-text {
    color: #1a2bc3;
  }

  #hero-sub-text {
    font-size: 16px;
    width: 900px;
    text-align: center;
  }

  p {
    color: #6a6a6a;
  }

  #hero-button-cont {
    display: flex;
    gap: 16px;
  }

  .button {
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 15px;
    outline: none;
    border: none;
    cursor: pointer;
  }

  .hover:hover {
    background: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    color: var(--secondary);
  }

  .hero-primary-button {
    background: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0px 10px 15px 0px rgba(26, 43, 195, 0.14);
  }

  .hero-secondary-button {
    border: 2px solid #e2e4e9;
    color: #3a3a3a;
  }

  .hero-primary-button:hover,
  .hero-secondary-button:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--secondary);
    box-shadow: 0px 10px 15px 0px rgba(26, 43, 195, 0.14);
  }

  .image-cont {
    width: 500px;
    height: 300px;
    position: relative;
    padding: 44px;
    margin: 44px 0 0 0;
  }

  .desktop-image {
    position: absolute;
    top: 0;
    left: 47px;
    width: 80%;
    height: auto;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
  }

  .tablet-image {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 200px;
    height: auto;
    box-shadow: -5px 10px 20px 0px rgba(0, 0, 0, 0.15);
  }

  .mobile-image {
    position: absolute;
    top: 90px;
    left: 150px;
    width: 110px;
    height: auto;
    box-shadow: -5px 10px 20px 0px rgba(0, 0, 0, 0.15);
  }

  /*---- AI Section ----*/
  #ai-section {
    display: grid;
    background: var(--secondary);
  }

  #ai-container {
    place-self: center;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    padding: 44px 50px;
  }

  .ai-image {
    width: 400px;
    height: auto;
  }

  .ai-text-container {
    width: 600px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .ai-heading {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 45px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .ai-sub-text {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #707070;
  }

  /*---- Separator ----*/
  #separator-cont {
    display: flex;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
  }

  #separator {
    position: relative;
    background: var(--dark-blue);
    width: 70%;
    padding: 58px;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
  }

  #separator-side {
    background: var(--dark-blue);
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 0px 44px 16px 70px;
    display: flex;
    align-items: end;
    gap: 44px;
  }

  #separator-side > div > h3 {
    font-size: 58px;
    color: var(--secondary);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 400;
  }

  #separator-side > div > p {
    color: var(--light-grey);
    font-size: 24px;
    margin-bottom: 10px;
  }

  #students,
  #courses {
    display: flex;
    align-items: end;
    gap: 6px;
  }

  /*---- Courses Section ----*/
  #courses-section {
    display: grid;
    background: var(--light-grey);
    flex-direction: column;
    padding: 44px 64px;
  }

  #courses-section > h2 {
    place-self: center;
    width: 1100px;
    color: var(--text);
    font-size: 32px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  #courses-container {
    max-width: 1100px;
    place-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 24px 0px;
  }

  .course-card-content {
    display: block;
  }

  .course-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 290px;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 30px;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0px 4.519px 13.558px 0px rgba(0, 0, 0, 0.03);
  }

  .course-card:hover {
    background: rgba(26, 43, 195, 0.05);
    border-color: var(--primary);
  }

  .course-image {
    width: 100%;
    height: 170px;
    border-radius: 13px;
    margin-bottom: 8px;
  }

  .card-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .students-container {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 12px;
  }

  .course-student {
    color: #999;
    padding: 4px 8px;
    border: 1px solid rgba(26, 43, 195, 0.2);
    background: rgba(217, 217, 217, 0.2);
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 5px;
  }

  .course-enrolls {
    color: #919191;
    font-family: "Montserrat", Sans-Serif;
    font-size: 12px;
  }

  .course-title {
    font-size: 18px;
    color: var(--text);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .course-description {
    font-size: 16px;
    color: #666;
    font-family: "Roboto", Sans-Serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .price-container {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
  }

  .course-price {
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
  }

  .course-discount {
    color: #7c7c7c;
    display: none;
  }

  .course-button-container {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .course-button-container > button {
    padding: 6px 12px;
    font-size: 14px;
    color: #999;
    background: var(--light-grey);
    border: 1px solid #e2e4e9;
    border-radius: 6px;
    cursor: pointer;
  }

  .school-icon {
    color: #bbbcbe;
    height: 17px;
    width: 19px;
    margin: 0 6px 5px 0;
  }

  .course-lessons {
    font-size: 14px;
    color: #bbbcbe;
  }

  .view-courses {
    color: var(--primary);
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
  }

  /*---- Promotional Vid Section ----*/
  .prom-gradient {
    position: relative;
    padding: 64px;
    background: radial-gradient(
      circle at 50% 40%,
      transparent 0%,
      var(--secondary) 80%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cont {
    background: var(--secondary);
    background-image: linear-gradient(#cacaca 1px, transparent 1px),
      linear-gradient(90deg, #cacaca 1px, transparent 1px);
    background-size: 40px 40px;
    display: grid;
    width: 100%;
  }

  .prom-top-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 12px;
    border: 1px solid #f9c59b;
    padding: 4px 12px;
    border-radius: 15px;
  }

  .prom-sm-text {
    color: #7c7c7c;
    background: #f7e7dc;
    font-size: 12px;
    border: 1px solid #f9c59b;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    top: 40px;
    left: 500px;
  }

  .prom-heading-cont {
    display: flex;
    justify-content: center;
  }

  .prom-heading {
    color: var(--text);
    text-align: center;
    margin: 0 0 24px 0;
    width: 500px;
    font-size: 32px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .orange-text {
    color: var(--orange);
  }

  .prom {
    padding: 44px;
    border-radius: 30px;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1100px;
    place-self: center;
  }

  .prom::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 60px;
    background: linear-gradient(
      90deg,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3,
      #ebbb01,
      #1a2bc3,
      #fe770e,
      #1a2bc3
    );
    background-size: 400% 400%;
    animation: gradientMove 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 5px;
    box-sizing: border-box;
  }

  @keyframes gradientMove {
    0% {
      background-position: 0% 25%;
    }
    100% {
      background-position: 25% 0%;
    }
  }

  .linear-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
  }

  #linear-content {
    display: flex;
    flex-direction: row;
    gap: 44px;
    justify-content: space-between;
  }

  #users-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .linear-header > h3 {
    font-size: 24px;
    color: var(--text);
    font-family: "Montserrat", Sans-Serif;
    font-weight: 600;
  }

  #users-container > p {
    font-size: 18px;
    font-family: "Roboto", Sans-Serif;
    font-weight: 400;
    width: 430px;
    color: #6a6a6a;
  }

  #students-images {
    display: flex;
    margin: 0 0 0 10px;
  }

  .student-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
  }

  .prom-button {
    background: var(--orange);
    border: 2px solid var(--orange);
    box-shadow: 0px 10px 15px 0px rgba(254, 119, 14, 0.14);
    width: 160px;
  }

  .prom-button:hover {
    background: var(--yellow);
    border-color: var(--yellow);
  }

  .video-wrapper {
    width: 500px;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 30px;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  /*---- Learning Path ----*/
  #path-section {
    display: grid;
    background: var(--light-grey);
  }

  #learning-path {
    background: var(--light-grey);
    padding: 44px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    place-self: center;
  }

  .path-heading {
    color: var(--dark-blue);
    font-size: 37px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    text-align: center;
    margin-bottom: 44px;
  }

  #learning-path > .sub-text {
    color: #6a6a6a;
    font-size: 18px;
    text-align: center;
    font-family: "Roboto", Sans-Serif;
    margin-bottom: 44px;
  }

  #path-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 44px;
  }

  .path {
    display: flex;
    align-items: start;
    margin: 0 0 24px 0;
    width: 300px;
    gap: 20px;
  }

  .path-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .path > div > h2 {
    font-family: "Montserrat", Sans-Serif;
    font-size: 60px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }

  .path-text > h3 {
    color: #020042;
    font-size: 18px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .path-text > p {
    color: #6a6a6a;
    font-size: 16px;
    font-family: "Roboto", Sans-Serif;
  }

  .path-sub-text {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
  }

  .sub-text {
    text-align: center;
    width: 600px;
  }

  .one {
    border: 1px solid rgba(254, 119, 2, 0.3);
    background: rgba(254, 119, 2, 0.14);
    border-radius: 50%;
    color: var(--orange);
  }

  .two {
    border: 1px solid rgba(2, 0, 66, 0.3);
    background: rgba(2, 0, 66, 0.1);
    border-radius: 50%;
    color: var(--dark-blue);
  }

  .three {
    border: 1px solid rgba(26, 43, 195, 0.3);
    background: rgba(26, 43, 195, 0.14);
    border-radius: 50%;
    color: var(--primary);
  }

  .four {
    border: 1px solid rgba(254, 119, 2, 0.3);
    background: rgba(254, 119, 2, 0.14);
    border-radius: 50%;
    color: var(--orange);
  }

  .five {
    border: 1px solid rgba(235, 187, 1, 0.3);
    background: rgba(235, 187, 1, 0.14);
    border-radius: 50%;
    color: var(--yellow);
  }

  .six {
    border: 1px solid rgba(26, 43, 195, 0.3);
    background: rgba(26, 43, 195, 0.14);
    border-radius: 50%;
    color: var(--primary);
  }

  .path-button {
    width: 170px;
    font-size: 20px;
  }

  /*---- Testimonials Section ----*/
  #testimonials {
    background: var(--secondary);
    padding: 44px 64px;
    display: grid;
  }

  #testimonials > h2 {
    color: var(--text);
    font-size: 32px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    text-align: center;
    margin-bottom: 44px;
    width: 1100px;
    place-self: center;
  }

  #testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    margin-bottom: 24px;
    max-width: 1100px;
    place-self: center;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    width: 270px;
    gap: 24px;
    padding: 24px;
    border-radius: 40px;
    background: var(--secondary);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
    border: 1px solid #d9d9d9;
  }

  .testimonial-card > p {
    color: #6a6a6a;
    font-size: 14px;
    font-family: "Roboto", Sans-Serif;
    margin: 0;
  }

  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .testimonial-user > h3 {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .view-testimonials {
    color: var(--primary);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
  }

  /*---- FAQ Section ----*/
  #faq-section {
    background: var(--light-grey);
    padding: 44px 64px;
    display: grid;
  }

  #faq-section > h2 {
    color: var(--dark-blue);
    font-size: 44px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
    margin-bottom: 24px;
    width: 1100px;
    place-self: center;
  }

  #faq-section > p {
    color: #6a6a6a;
    font-size: 18px;
    width: 300px;
    font-family: "Roboto", Sans-Serif;
    margin-bottom: 24px;
    width: 1100px;
    place-self: center;
  }

  #faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
    width: 1100px;
    place-self: center;
  }

  .faq-card {
    background: var(--secondary);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
    border: 1px solid #d9d9d9;
    width: 100%;
  }

  .faq-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .faq-heading > h3 {
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", Sans-Serif;
  }

  .faq-heading > .material-symbols-outlined {
    font-size: 40px;
    cursor: pointer;
  }

  .faq-card > .answer {
    color: #6a6a6a;
    font-size: 16px;
    font-family: "Roboto", Sans-Serif;
    display: none;
  }

  .faq-card > .active-answer {
    display: block;
    margin-top: 24px;
  }

  .view-faq {
    color: var(--primary);
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto;
  }

  /*---- Footer ----*/
  footer {
    background: #020042;
    padding: 44px 64px 16px 64px;
  }

  #footer-heading {
    font-family: "Montserrat", Sans-Serif;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 44px;
    font-size: 32px;
  }

  #footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 44px;
  }

  footer > #footer-container > .footer-text > p {
    color: #bbbcbe;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
    width: 250px;
  }

  .quick-links > div,
  .social-handles > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links > h3,
  .social-handles > h3,
  .footer-text > div > h3 {
    color: var(--light-grey);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .quick-links > div > a,
  .social-handles > div > a,
  .footer-text > div > div > span {
    color: #bbbcbe;
    padding: 0px;
    font-size: 16px;
    display: block;
    font-family: "Roboto", sans-serif;
  }

  #playstore-whatsapp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  #playstore-whatsapp-container > img {
    height: 44px;
  }

  .whatsapp-icon {
    height: 50px;
    z-index: 3;
  }

  .ripple-button {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: absolute;
  }

  .ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #25d366;
    opacity: 0.8;
    border-radius: 50%;
    animation: rippleScale 2s linear infinite;
    z-index: 1;
  }

  #w-icon {
    z-index: 1;
  }

  .ripple.delay1 {
    animation-delay: 0.5s;
  }

  .ripple.delay2 {
    animation-delay: 1s;
  }

  @keyframes rippleScale {
    0% {
      transform: scale(0);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 0.3;
    }
  }

  footer > span {
    display: block;
    font-size: 14px;
    color: #95969a;
    font-family: "Roboto, sans-serif";
    border-top: 1px solid #95969a;
    padding: 16px 0 0 0;
    margin: 24px 0 0 0;
  }
}

/* ========================================
   DARK MODE THEME STYLES
   ======================================== */

/* Dark Mode Color Variables */
[data-theme="dark"] {
  --primary: #1A2BC3;
  --secondary: #111827;
  --text: #f9fafb;
  --orange: #f97316;
  --yellow: #eab308;
  --light-grey: #101925;
  --dark-blue: #f9fafb;
  --card-bg: #1f2937;
  --border-color: #2b323c;
  --hover-bg: #374151;
}
/* ========================================
   THEME TOGGLE BUTTON STYLES
   ======================================== */

.theme-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e2e4e9;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 999;
}

.theme-toggle:hover {
  background: var(--light-grey);
  transform: scale(1.05);
}

.theme-toggle .material-symbols-outlined {
  position: absolute;
  font-size: 24px;
  transition: all 0.4s ease;
}

.theme-toggle .light-icon {
  color: #ffa500;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .dark-icon {
  color: #4a5cff;
  opacity: 0;
  transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-toggle {
  border-color: var(--border-color);
}

[data-theme="dark"] .theme-toggle:hover {
  background: var(--hover-bg);
}

[data-theme="dark"] .theme-toggle .light-icon {
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .dark-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   DARK MODE SECTION STYLES
   ======================================== */

/* Body & General */
[data-theme="dark"] body {
  background: #1a1d2e;
  color: var(--text);
}

[data-theme="dark"] p {
  color: #b8bac9;
}

/* Header */
[data-theme="dark"] #header,
[data-theme="dark"] header {
  background: rgba(26, 29, 46, 0.9);
}

[data-theme="dark"] #menu {
  background: rgba(26, 29, 46, 0.95);
}

[data-theme="dark"] #menu > a {
  color: #b8bac9;
}

[data-theme="dark"] #menu > a:hover {
  color: var(--primary);
}

[data-theme="dark"] .hamburger-bars {
  background: #e8e9f0;
}

[data-theme="dark"] #app-heading {
  color: var(--text);
}

[data-theme="dark"] #app-sub-text {
  color: #b8bac9;
}

/* Hero Section */
[data-theme="dark"] #hero {
  background: var(--secondary);
  background-image: linear-gradient(#3a3d52 1px, transparent 1px),
    linear-gradient(90deg, #3a3d52 1px, transparent 1px);
  background-size: 40px 40px;
}

[data-theme="dark"] #align-hero {
  background: radial-gradient(circle, transparent 0%, var(--secondary) 80%);
}

[data-theme="dark"] #hero-content {
  background: radial-gradient(circle, transparent 0%, var(--secondary) 80%);
}

[data-theme="dark"] .search-cont {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .search-cont:hover {
  box-shadow: 0 0 0 3px rgba(74, 92, 255, 0.2);
}

[data-theme="dark"] #search-btn,
[data-theme="dark"] .search {
  background: var(--card-bg);
  color: var(--text);
  border-color: var(--border-color);
}

[data-theme="dark"] .search::placeholder {
  color: #7a7c8f;
}

[data-theme="dark"] .material-symbols-outlined {
  color: #7a7c8f;
}

[data-theme="dark"] .hero-sm-text {
  background: #2A1812;
  border-color: rgba(255, 119, 14, 0.3);
  color: #FE7702;
  /*color: #1A2BC3;*/
}

[data-theme="dark"] #hero-heading {
  color: var(--dark-blue);
}

[data-theme="dark"] .blue-text {
  color: #1A2BC3;
}

[data-theme="dark"] .ai-text {
  color: var(--dark-blue);
}

[data-theme="dark"] #hero-sub-text {
  color: #b8bac9;
}

/* ========================================
   BUTTONS - FIXED COLORS
   ======================================== */

/* All Buttons Base */
[data-theme="dark"] .button {
  color: #fff;
}

/* Primary Buttons (Get Started, etc.) */
[data-theme="dark"] .hero-primary-button {
  background: #1A2BC3;
  border-color: #1A2BC3;
  color: #fff;
  /*box-shadow: 0px 10px 15px 0px rgba(74, 92, 255, 0.14);*/
}

[data-theme="dark"] .hero-primary-button:hover {
  background: #1A2BC3;
  border-color: #1A2BC3;
  color: #fff;
}

/* Secondary Buttons (Login, etc.) */
[data-theme="dark"] .hero-secondary-button {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text);
}

[data-theme="dark"] .hero-secondary-button:hover {
  background: #1A2BC3;
  border-color: #1A2BC3;
  color: #fff;
}

/* Header Button (Start Learning) */
[data-theme="dark"] .header-button {
  background: #1A2BC3;
  border: 2px solid #1A2BC3;
  color: #fff;
  /*box-shadow: 0px 6px 8px 0px rgba(74, 92, 255, 0.15);*/
}

[data-theme="dark"] .header-button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Orange/Promotional Buttons */
[data-theme="dark"] .prom-button {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0px 10px 15px 0px rgba(255, 140, 58, 0.14);
}

[data-theme="dark"] .prom-button:hover {
  background: #ffa64d;
  border-color: #ffa64d;
  color: #fff;
}

/* Path Button */
[data-theme="dark"] .path-button {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

[data-theme="dark"] .path-button:hover {
  background: #5a6cff;
  border-color: #5a6cff;
  color: #fff;
}

/* Course Card Buttons */
[data-theme="dark"] .course-button-container > button {
  background: var(--hover-bg);
  border-color: var(--border-color);
  color: #b8bac9;
}

[data-theme="dark"] .course-button-container > button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ========================================
   SEPARATOR SECTION
   ======================================== */

[data-theme="dark"] #separator-cont {
  background: var(--secondary);
}

[data-theme="dark"] #separator,
[data-theme="dark"] #separator-side {
  background: #0f1120;
}

[data-theme="dark"] #separator-side > div > h3 {
  color: #e8e9f0;
}

[data-theme="dark"] #separator-side > div > p {
  color: #b8bac9;
}

/* ========================================
   AI SECTION
   ======================================== */

[data-theme="dark"] #ai-section {
  background: var(--secondary);
}

[data-theme="dark"] .ai-heading {
  color: var(--text);
}

[data-theme="dark"] .ai-sub-text {
  color: #9a9cae;
}

/* ========================================
   COURSES SECTION
   ======================================== */

[data-theme="dark"] #courses-section {
  background: var(--light-grey);
}

[data-theme="dark"] #courses-section > h2 {
  color: var(--text);
}

[data-theme="dark"] .course-card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .course-card:hover {
  background: var(--hover-bg);
  border-color: var(--primary);
}

[data-theme="dark"] .course-title {
  color: var(--text);
}

[data-theme="dark"] .course-description {
  color: #9a9cae;
}

[data-theme="dark"] .course-student {
  background: rgba(74, 92, 255, 0.1);
  border-color: rgba(74, 92, 255, 0.3);
  color: #a5b4ff;
}

[data-theme="dark"] .course-price {
  color: var(--text);
}

[data-theme="dark"] .course-discount {
  color: #7a7c8f;
}

[data-theme="dark"] .course-enrolls {
  color: #7a7c8f;
}

/* ========================================
   PROMOTIONAL VIDEO SECTION
   ======================================== */

[data-theme="dark"] .cont {
  background: var(--secondary);
  background-image: linear-gradient(#3a3d52 1px, transparent 1px),
    linear-gradient(90deg, #3a3d52 1px, transparent 1px);
  background-size: 40px 40px;
}

[data-theme="dark"] .prom-gradient {
  background: radial-gradient(circle at 50% 40%, transparent 0%, var(--secondary) 80%);
}

[data-theme="dark"] .prom {
  background: transparent;
}

[data-theme="dark"] .prom-heading,
[data-theme="dark"] .linear-header > h3 {
  color: var(--text);
}

[data-theme="dark"] .prom-sm-text,
[data-theme="dark"] .prom-top-text {
  background: #2A1812;
  border-color: rgba(255, 119, 14, 0.3);
  color: #ff9f5f;
}

[data-theme="dark"] .orange-text {
  color: var(--orange);
}

[data-theme="dark"] #users-container > p {
  color: #b8bac9;
}

/* ========================================
   LEARNING PATH SECTION
   ======================================== */

[data-theme="dark"] #learning-path,
[data-theme="dark"] #path-section {
  background: var(--light-grey);
}

[data-theme="dark"] .path-heading {
  color: var(--dark-blue);
}

[data-theme="dark"] .sub-text,
[data-theme="dark"] .path-sub-text {
  color: #9a9cae;
}

[data-theme="dark"] .path-text > h3 {
  color: var(--dark-blue);
}

[data-theme="dark"] .path-text > p {
  color: #9a9cae;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

[data-theme="dark"] #testimonials {
  background: var(--secondary);
}

[data-theme="dark"] #testimonials > h2 {
  color: var(--text);
}

[data-theme="dark"] .testimonial-card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .testimonial-card > p {
  color: #9a9cae;
}

[data-theme="dark"] .testimonial-user > h3 {
  color: var(--text);
}

/* ========================================
   FAQ SECTION
   ======================================== */

[data-theme="dark"] #faq-section {
  background: var(--light-grey);
}

[data-theme="dark"] #faq-section > h2 {
  color: var(--dark-blue);
}

[data-theme="dark"] #faq-section > p {
  color: #9a9cae;
}

[data-theme="dark"] .faq-card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .faq-heading > h3 {
  color: var(--text);
}

[data-theme="dark"] .faq-card > .answer,
[data-theme="dark"] .faq-card > .active-answer {
  color: #9a9cae;
}

/* ========================================
   FOOTER
   ======================================== */

[data-theme="dark"] footer {
  background: #0f1120;
}

[data-theme="dark"] #footer-heading {
  color: #e8e9f0;
}

[data-theme="dark"] .footer-text > p,
[data-theme="dark"] .quick-links > div > a,
[data-theme="dark"] .social-handles > div > a,
[data-theme="dark"] .footer-text > div > div > span {
  color: #9a9cae;
}

[data-theme="dark"] .quick-links > h3,
[data-theme="dark"] .social-handles > h3,
[data-theme="dark"] .footer-text > div > h3 {
  color: #e8e9f0;
}

[data-theme="dark"] footer > span {
  color: #7a7c8f;
  border-color: #3a3d52;
}

/* ========================================
   RESPONSIVE THEME TOGGLE POSITIONING
   ======================================== */

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .theme-toggle {
    position: fixed;
    top: 15px;
    right: 70px;
    z-index: 1003;
    width: 40px;
    height: 40px;
    border: 2px solid #e2e4e9;
  }

  .theme-toggle .material-symbols-outlined {
    font-size: 20px;
  }

  #hamburger-container {
    right: 20px;
    z-index: 1004;
  }

  [data-theme="dark"] .theme-toggle {
    border-color: var(--border-color);
  }

  /* Mobile dark mode hero grid background */
  [data-theme="dark"] #hero {
    background-size: 40px 40px;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .theme-toggle {
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }

  .theme-toggle .material-symbols-outlined {
    font-size: 22px;
  }

  header {
    display: flex;
    gap: 15px;
  }

  /* Tablet dark mode hero grid background */
  [data-theme="dark"] #hero {
    background-size: 50px 50px;
  }
}

/* Desktop (>= 1024px) */
@media (min-width: 1024px) {
  .theme-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }

  .theme-toggle .material-symbols-outlined {
    font-size: 24px;
  }

  header {
    display: flex;
    gap: 20px;
  }

  /* Desktop dark mode hero grid background */
  [data-theme="dark"] #hero {
    background-size: 40px 40px;
  }
}

/* ========================================
   SMOOTH TRANSITIONS
   ======================================== */

html {
  transition: background-color 0.3s ease;
}

body,
header,
#menu,
.search-cont,
#search-btn,
.search,
.course-card,
.testimonial-card,
.faq-card,
.prom,
footer,
.hero-secondary-button,
.course-button-container > button,
.button {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ========================================
   ADDITIONAL REFINEMENTS
   ======================================== */

[data-theme="dark"] .view-courses,
[data-theme="dark"] .view-testimonials,
[data-theme="dark"] .view-faq {
  color: var(--primary);
}

[data-theme="dark"] .school-icon,
[data-theme="dark"] .course-lessons {
  color: #7a7c8f;
}

[data-theme="dark"] .focused {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 92, 255, 0.2);
}

[data-theme="dark"] .clear-icon {
  color: #7a7c8f;
}

/* ========================================
   END OF DARK MODE STYLES
   ========================================== */