/* ---------- Root Variables ---------- */
:root {
  /* Brand Colors */
  --brand-primary: #2e54bd;
  --brand-accent: #f8892e;
  --brand-hover: #213d8a;
  --brand-secondary: #ffefe8;

  /* Core */
  --white: #ffffff;
  --text: #333;
  --text-light: #555;
  --border: #e0e0e0;
  --bg-hover: #f3f6ff;
  --font-main: "Poppins", sans-serif;
}


/* ----------- Reset --------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  scroll-behavior: smooth;
  font-family: var(--font-main);
  padding-top: 0px;
}


/* ----------- common styles --------------- */
.header1 {
  font-weight: 700;

  h2 {
    font-size: 1.5rem;
    color: var(--brand-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    padding-left: 20px;
  }

  p {
    font-size: 1rem;
    color: var(--text-light);
    padding-left: 20px;
  }
}



.header-content {
  .section-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--brand-accent);
    margin-top: 0px;
    margin-bottom: 3px;
  }

  .section-description {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
  }
}

/* ------------------- navbar ----------------- */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.35s ease;

  &.hide {
    top: -120px;
  }

  &.show {
    top: 0;
  }
}


.topbar {
  background-color: var(--brand-hover);
  color: var(--white);
  font-family: var(--font-main);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  .contact-info {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    color: var(--white);

    li {
      display: flex;
      align-items: center;

      i {
        font-size: 14px;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        color: var(--brand-accent);
        border-radius: 5px;
        background: var(--white);
        padding: 5px;
      }

      a {
        color: var(--white);
        text-decoration: none;
        font-size: 14px;

        &:hover {
          color: var(--brand-accent);
        }
      }

      span {
        color: var(--white);
      }
    }
  }


  .icons {
    display: flex;
    align-items: center;

    a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--white);
      text-decoration: none;
      margin-right: 0.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;

      i {
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        background-color: rgba(0, 0, 0, 0.13);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.4s ease;
        z-index: 1;
      }

      &:hover {
        transform: scale(1.1);

        &::before {
          transform: translate(-50%, -50%) scale(1);
        }
      }

      &.facebook i {
        color: #1877f2;
      }

      &.instagram i {
        background: radial-gradient(circle at 30% 30%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      &.linkedin i {
        color: #0a66c2;
      }

      &.x i {
        color: #1da1f2;
      }

      &.youtube i {
        color: #ff0000;
      }
    }
  }

}

.navbar {
  width: 100%;
  height: 70px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  box-shadow: 0px 3px 0px rgb(255, 255, 255);
  transition: 0.3s ease;
  background: url("/assets/img/background/banner3.jpg") center/cover no-repeat;


  .logo {
    display: flex;
    align-items: center;
    gap: 10px;

    img {
      width: 100%;
      height: 50px;
    }
  }

  ul {
    list-style: none;
  }

  /* ----------- nav links ----------- */
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;


    .nav-item {
      display: flex;
      align-items: center;
      padding: 10px 0;
      cursor: pointer;

      a {
        color: var(--text);
        font-weight: 500;
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease, transform 0.15s ease, box-shadow 0.15s ease;

        &::after {
          content: "";
          position: absolute;
          bottom: -6px;
          left: 0;
          width: 0%;
          height: 2px;
          background: var(--brand-accent);
          transition: width 0.3s ease;
        }

        &:hover {
          color: var(--brand-primary);
        }

        &:hover::after,
        &.active::after {
          width: 100%;
        }

        &.active {
          color: var(--brand-accent);
        }

        &:active {
          transform: scale(0.95);
        }
      }
    }
  }

  /* ----------- Buttons Right side ----------- */
  .nav-buttons {
    display: flex;
    gap: 20px;

    .button {
      font-family: var(--font-main);
      padding: 8px 14px;
      border-radius: 8px;
      border: 1px solid #bfc7d8;
      background: var(--white);
      cursor: pointer;
      font-weight: 500;
      font-size: 14px;
      transition: 0.25s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 3px 7px rgba(0, 0, 0, 0.04);
      text-decoration: none;
      color: var(--brand-primary);

      &:hover {
        background: var(--bg-hover);
        border-color: var(--brand-accent);
        transform: scale(1.02);
      }

      &.active {
        background: var(--brand-accent);
        border-color: var(--brand-secondary);
        color: var(--white) !important;
        box-shadow: 0 6px 12px rgba(46, 84, 189, 0.25);
        transform: scale(.95);
      }

      &:active {
        transform: scale(0.93);
        box-shadow: 0 4px 10px rgba(46, 84, 189, 0.25);
      }

      &.signup {
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
        border: none;
        color: var(--white);
        box-shadow: 0 5px 12px rgba(58, 156, 247, 0.28);

        &:hover {
          background: linear-gradient(145deg, var(--brand-accent), var(--border));
          transform: scale(1.02);
        }

        &:active {
          transform: scale(0.95);
        }
      }
    }
  }
}


/* ------------ Hero Section (Teachable-style Nested) ------------ */
.hero {
  background: url("../img/background/banner7.jpg") center/cover no-repeat;
  padding: 0px 0;

  .section-hero {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;

    .hero-text {
      flex: 1;
      max-width: 550px;

      h1 {
        font-size: clamp(32px, 6vw, 52px);
        font-weight: 800;
        line-height: 1.2;
        color: var(--text);
        margin-bottom: 12px;

        .highlight {
          color: var(--brand-accent);
        }
      }

      p {
        font-size: clamp(15px, 1.2vw, 18px);
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 35px;
        max-width: 500px;
      }

      .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;

        a {
          padding: 8px 20px;
          border-radius: 30px;
          font-size: 14px;
          font-weight: 600;
          text-decoration: none;
          transition: 0.3s ease;
          border: 1.5px solid var(--brand-primary);
          color: var(--white);
          background: var(--brand-primary);

          &.btn-secondary {
            background: transparent;
            border-color: var(--brand-primary);
            color: var(--brand-primary);
          }

          &:hover {
            background: var(--brand-secondary);
            border-color: var(--brand-accent);
            color: var(--brand-accent);
          }

          &:active {
            transform: scale(.95);
          }

        }
      }

    }

    /* ✅ RIGHT IMAGE */
    .hero-image {
      flex: 1;
      max-width: 500px;
      height: auto;
      text-align: right;

      img {
        padding-top: 50px;
        width: 100%;
        border-radius: 18px;
        transition: 0.3s ease;
      }
    }
  }
}

.bundles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;

  .sell-all-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary);
    border: 1px solid #bfc7d8;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;

    i {
      display: flex;
      font-size: 18px;
      margin-left: 2px;
      transition: transform 0.3s ease;
    }

    &:hover {
      /* background-color: var(--brand-accent); */
      color: var(--brand-accent);
      box-shadow: 0px 0px 5px lightgray;
      border-color: var(--brand-accent);

      i {
        transform: translateX(3px);
      }
    }

    &:active {
      transform: scale(.95);
    }


  }
}


.courses-section {
  padding: 30px;

  .course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid lightgray;
    transition: 0.3s ease;
    height: 100%;

    &:hover {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

      img {
        transform: scale(1.06);
      }
    }


    .img-box {
      width: 100%;
      height: 160px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0px 2px 5px lightgray;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

    .course-content {
      display: flex;
      flex-direction: column;
      height: 100%;

      .trinername {
        color: var(--brand-accent);
        font-weight: bold;
        font-size: 14px;
        padding: 10px;
        border-bottom: 1px solid lightgray;
        /* border-top: 1px solid lightgray; */

        span {
          margin-left: 8px;
          color: var(--text-light);
          font-size: 13px;
          display: inline-flex;
          align-items: center;
          gap: 4px;

          i {
            color: var(--brand-primary);
            font-size: 12px;
          }
        }
      }

      .content1 {
        padding: 0px 10px 10px;
        flex-grow: 1;

        h3 {
          font-size: 15px;
          font-weight: 500;
          margin-bottom: 8px;
          margin-top: 0;
          color: var(--brand-primary);

        }

        p {
          font-size: 13px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;


        }
      }



      .buttons {
        padding: 6px 10px;
        border-top: 1px solid rgb(233, 233, 233);
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;

        a {
          font-size: 13px;
          background: var(--white);
          color: var(--brand-accent);
          font-weight: 500;
          border: 1px solid var(--brand-accent);
          box-shadow: 0 0 5px rgb(230, 230, 230);
          padding: 6px 15px;
          border-radius: 30px;
          cursor: pointer;
          transition: 0.2s ease;
          display: inline-block;
          gap: 10px;
          display: flex;



          &:hover {
            border-color: var(--brand-secondary);
            background: var(--brand-accent);
            color: var(--white);
          }

          &:active {
            transform: scale(0.95);
          }

        }

      }
    }
  }
}

.demovideos {
  .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;

    .arrow-btn {
      position: absolute;
      z-index: 10;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid lightgray;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: 0.2s;

      i {
        font-size: 18px;
      }

      &:hover {
        background: var(--brand-primary);
        color: #fff;
      }
    }

    .arrow-left {
      left: -25px;
      top: 50%;
      transform: translateY(-50%);
    }

    .arrow-right {
      right: -25px;
      top: 50%;
      transform: translateY(-50%);
    }
  }

  .embla {
    overflow: hidden;

    .embla__container {
      display: flex;
      gap: 20px;
      padding: 0 25px;
    }

    .embla__slide {
      flex: 0 0 350px; 
      aspect-ratio: 16/9;
      overflow: hidden;

      .video-card {
        width: 100%;
        height: 100%;
        position: relative;
        aspect-ratio: 16/9;
        overflow: hidden;
        cursor: pointer;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;    
          border-radius: 12px;
        }

        .overlay {
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0.3);
          opacity: 0;
          transition: 0.3s;

          display: flex;
          justify-content: center;
          align-items: center;

          i {
            font-size: 45px;
            color: #fff;
          }
        }

        &:hover {
          .overlay {
            opacity: 1;
          }
        }
      }
    }
  }
}



.courses-section {

  .embla {
    overflow: hidden;
    margin-top: 20px;

    .embla__container {
      display: flex;
      gap: 20px;
    }

    .embla__slide {
      flex: 0 0 250px;
      /* Card Width */
    }
  }

  /* Slider + Arrows Wrapper */
  .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 10px;

    /* Arrow Buttons */
    .arrow-btn {
      position: absolute;
      z-index: 5;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid lightgray;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.2s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);

      i {
        font-size: 18px;
      }

      &:hover {
        background: var(--brand-primary);
        color: #fff;
        border-color: var(--brand-primary);
      }
    }

    .arrow-left {
      left: -15px;
      top: 50%;
      transform: translateY(-50%);
    }

    .arrow-right {
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}


.catalog-section {
  background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);

  .catalog-header {
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;

    .catalog-title {
      font-weight: 700;
      font-size: 1.7rem;
      color: #1d1d1d;
    }

    .catalog-search {
      .input-group {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        border-radius: 40px;
        border: 1px solid lightblue;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;

        &:focus-within {
          box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }

        .input-group-text {
          background: #fff;
          border: none;
          padding: 0 14px;
          cursor: pointer;
          transition: transform 0.2s ease, background-color 0.2s ease;

          &:hover {
            background-color: #f0f0f0;

            i {
              color: #0d6efd;
            }
          }

          &:active {
            transform: scale(0.9);
          }

          i {
            color: #666;
            transition: color 0.2s ease;
          }
        }

        .form-control {
          border: none;
          padding: 10px 14px;
          font-size: 0.95rem;

          &::placeholder {
            color: #999;
          }

          &:focus {
            box-shadow: none;
          }
        }
      }
    }

    .row {
      align-items: center;
      margin-left: 0;
      margin-right: 0;
    }
  }



  .triner-name {
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    margin-left: 10px;

    span {
      color: #0056b3;
    }
  }


  .catalog-card {
    margin-top: 20px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;

    &:hover {
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);

      .thumb-wrapper img {
        transform: scale(1.05);
      }
    }

    .thumb-wrapper {
      overflow: hidden;

      img.course-thumb {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
      }
    }

    .catalog-content {
      padding: 15px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;

      .trainer-name {
        font-size: 0.85rem;
        color: #0377de;
        display: block;
        margin-bottom: 6px;
      }

      .course-title {
        font-size: 16px;
        font-weight: 500;
        color: #1d1d1d;
        margin-bottom: 6px;
      }

      .course-desc {
        font-size: 12px;
        color: #555;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .btn {
        align-self: flex-start;
        margin-top: auto;
        border-radius: 6px;
        font-size: 13px;
        padding: 6px 16px;
        font-weight: 500;
      }
    }
  }

  .catalog-pagination {
    .pagination {
      gap: 6px;

      .page-item {
        .page-link {
          border-radius: 6px;
          color: #0d6efd;
          transition: all 0.3s ease;
          padding: 6px 14px;
          font-weight: 500;

          &:hover {
            background: #0d6efd;
            color: #fff;
          }
        }

        &.active .page-link {
          background: #0d6efd;
          border-color: #0d6efd;
          color: #fff;
        }

        &.disabled .page-link {
          color: #aaa;
          pointer-events: none;
          background: #f1f1f1;
        }
      }
    }
  }
}



.video-card {
  cursor: pointer;
}

.video-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.5rem;
}

.video-card:hover .overlay {
  opacity: 1;
}

.custom-select-small {
  width: 180px;
  /* control width */
  max-width: 180px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.custom-select-small option {
  max-width: 180px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.month-tab {
  transition: all 0.25s ease-in-out;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
}

/* Available month (light highlight) */
.available-month {
  background-color: #e8f3ff;
  border: 1px solid #90caff;
  color: #0d6efd;
}

/* Hover for available month */
.available-month:hover {
  background-color: var(--bg-hover);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  transform: scale(1.05);
}

/* Unavailable month faded */
.not-available-month {
  background-color: #ffffff;
  border: 1px solid #ddd;
  color: #999;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hover for unavailable month (no effect but visible feedback) */
.not-available-month:hover {
  opacity: 0.5;
  transform: none;
}

/* Active month clicked (strong color) */
.active-month {
  background-color: #0d6efd !important;
  color: #ffffff !important;
  border-color: #0d6efd !important;
  opacity: 1 !important;
  transform: scale(1.05);
}

/* Hover for active month */
.active-month:hover {
  background-color: #0b5cd6 !important;
}


.trainer-section {
  .trainer-header {
    display: flex;
    justify-content: space-between;
    padding: 0 0 20px;
    align-items: center;

    .catalog-title {
      font-size: 22px;
      font-weight: 600;
      color: var(--brand-primary);

      span {
        color: var(--brand-accent);
      }
    }

    .search-group {
      display: flex;
      gap: 15px;
      align-items: center;

      .search-box {
        position: relative;

        .search-icon {
          position: absolute;
          top: 50%;
          left: 14px;
          transform: translateY(-50%);
          color: var(--brand-primary);
          font-size: 15px;
        }

        .search-input {
          width: 250px;
          padding: 10px 16px 10px 40px;
          border-radius: 50px;
          border: 1px solid var(--border);
          background: var(--white);
          font-size: 0.95rem;
          transition: 0.25s ease;
          box-shadow: 0 0px 6px rgba(0, 0, 0, 0.062);
          cursor: pointer;

          &:focus {
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 2px rgba(46, 84, 189, 0.2);
            outline: none;
          }
        }
      }
    }
  }



  .course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid lightgray;
    transition: 0.3s ease;
    height: 100%;

    &:hover {
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

      img {
        transform: scale(1.06);
      }
    }

    .img-box {
      width: 100%;
      height: 180px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0px 2px 5px lightgray;
    }


    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }

    .course-content {
      display: flex;
      flex-direction: column;
      height: 100%;

      .trinername {
        color: var(--brand-accent);
        font-weight: bold;
        font-size: 14px;
        padding: 10px;
        border-bottom: 1px solid lightgray;
        /* border-top: 1px solid lightgray; */

        span {
          margin-left: 8px;
          color: var(--text-light);
          font-size: 13px;
          display: inline-flex;
          align-items: center;
          gap: 4px;

          i {
            color: var(--brand-primary);
            font-size: 12px;
          }
        }
      }

      .content1 {
        padding: 0px 10px 10px;
        flex-grow: 1;

        h3 {
          font-size: 15px;
          font-weight: 500;
          margin-bottom: 4px;
          color: var(--brand-primary);

        }

        p {
          font-size: 13px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
        }
      }



      .buttons {
        padding: 6px 10px;
        border-top: 1px solid rgb(233, 233, 233);
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;

        a {
          font-size: 13px;
          background: var(--white);
          color: var(--brand-accent);
          font-weight: 500;
          border: 1px solid var(--brand-accent);
          box-shadow: 0 0 5px rgb(230, 230, 230);
          padding: 6px 15px;
          border-radius: 30px;
          cursor: pointer;
          transition: 0.2s ease;
          display: inline-block;
          gap: 10px;
          display: flex;



          &:hover {
            border-color: var(--brand-secondary);
            background: var(--brand-accent);
            color: var(--white);
          }

          &:active {
            transform: scale(0.95);
          }

        }

      }
    }
  }



}



.batch-section {
  padding: 40px;
  font-family: 'Inter', sans-serif;
  /* background: #f8f9fa; */

  .filter-bar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;

    .year-tabs {
      display: flex;
      gap: 10px;

      .year-btn {
        background: none;
        border: none;
        font-weight: 600;
        font-size: 15px;
        padding: 8px 16px;
        color: #2e54bd;
        border-bottom: 3px solid transparent;
        transition: all 0.3s;
        cursor: pointer;

        &.active {
          border-bottom: 3px solid #2e54bd;
        }
      }
    }

    .trainer-filter {
      appearance: none;
      padding: 8px 38px 8px 12px;
      font-size: 14px;
      border: 1px solid #e3e8f0;
      border-radius: 6px;
      background-color: #fff;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L5 6L10 0H0Z' fill='%23374751'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 10px 6px;
      color: #374151;
      cursor: pointer;
      transition: border 0.3s;

      &:hover {
        border-color: #2e54bd;
      }
    }
  }

  .months-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    list-style: none;
    padding-left: 0;

    .nav-link {
      color: #2e54bd;
      font-weight: 500;
      padding: 6px 18px;
      border-radius: 20px;
      border: 1px solid #e3e8f0;
      background: #fff;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s;

      &:hover,
      &.active {
        background: linear-gradient(135deg, #2e54bd, #2b6eff);
        color: #fff !important;
        border-color: #2b6eff;
      }
    }
  }

  .cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;

    .batch-card {
      border: 1px solid #d6dfee;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      flex: 1 1 250px;
      max-width: 250px;
      display: flex;
      flex-direction: column;
      overflow: hidden;

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
      }

      img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-bottom: 1px solid #e3e8f0;
      }

      .card-body {
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;

        .batch-title {
          font-size: 16px;
          font-weight: 600;
          margin-bottom: 6px;
          color: #111827;
        }

        .batch-meta {
          font-size: 14px;
          color: #64748b;
          margin-bottom: 12px;
        }

        .btn-enroll {
          padding: 8px 16px;
          font-size: 14px;
          border: none;
          border-radius: 6px;
          background: linear-gradient(135deg, #2e54bd, #2b6eff);
          color: #fff;
          cursor: pointer;
          transition: 0.3s;

          &:hover {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
          }
        }
      }
    }
  }

  .pagination-box {
    display: flex;
    gap: 6px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: flex-start;

    .btn-page {
      padding: 5px 10px;
      font-size: 14px;
      border: 1px solid #d1d5db;
      background: #fff;
      border-radius: 6px;
      color: #374151;
      cursor: pointer;
      transition: all 0.3s;

      &:hover {
        background: #2e54bd;
        color: #fff;
        border-color: #2e54bd;
      }

      &.active {
        background: linear-gradient(135deg, #2e54bd, #2b6eff);
        color: #fff;
        border-color: #2b6eff;
      }
    }
  }

  .right-pane {
    .demo-section {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      border: 1px solid #e3e8f0;

      .section-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #111827;
      }

      .cards-wrapper {
        max-height: 360px;
        overflow-y: auto;
        padding-right: 10px;

        .demo-card {
          display: flex;
          gap: 12px;
          margin-bottom: 15px;
          padding-bottom: 12px;
          border-bottom: 1px solid #e3e8f0;

          img {
            width: 70px;
            height: 70px;
            border-radius: 6px;
            object-fit: cover;
            border: 1px solid rgba(218, 246, 255, 0.84);
          }

          h6 {
            margin: 0;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            color: #2e54bd;
          }

          p {
            margin: 2px 0 0;
            font-size: 12px;
            color: #64748b;
          }
        }

        &::-webkit-scrollbar {
          width: 6px;
        }

        &::-webkit-scrollbar-track {
          background: #f1f1f1;
          border-radius: 10px;
        }

        &::-webkit-scrollbar-thumb {
          background: #2e54bd;
          border-radius: 10px;
        }

        &::-webkit-scrollbar-thumb:hover {
          background: #1e3a8a;
        }
      }
    }
  }



  @media (max-width: 576px) {
    .cards-grid .batch-card {
      flex: 1 1 100%;
    }

    .year-tabs,
    .months-tabs {
      overflow-x: auto;
      white-space: nowrap;
    }

    .year-btn,
    .months-tabs .nav-link {
      flex: 0 0 auto;
    }


  }
}


.videoListItem.locked {
  opacity: 0.6;
  cursor: not-allowed;
}
.videoListItem.locked:hover {
  background-color: #f8d7da !important;
}


/* --------------- courses ----------------- */
.lmsContainer {
  padding: 30px 0;
  font-family: var(--font-main);
  background-image: url("../img/background/banner1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  .lmsHeader {
    text-align: center;
    margin-bottom: 30px;

    .lmsTitle {
      font-size: 28px;
      font-weight: 700;
      color: var(--brand-primary);
      position: relative;
      display: inline-block;
      padding-bottom: 8px;

      .titleAccent {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 4px;
        background: var(--brand-accent);
        border-radius: 2px;
      }
    }

    .lmsSubtitle {
      font-size: 15px;
      color: var(--text-light);
      margin-top: 8px;
    }
  }


  .videoSection {
    .placeholderBox {
      border: 2px dashed var(--border);
      border-radius: 8px;
      height: 330px;
      background: var(--white);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;

      i {
        font-size: 40px;
        color: var(--brand-primary);
      }

      p {
        color: var(--text-light);
        margin-top: 5px;
        font-size: 16px;
      }
    }
  }



  .videoList {
    .scrollable {
      max-height: 380px;
      overflow-y: auto;
      padding-right: 5px;

      scrollbar-width: thin;
      scrollbar-color: transparent transparent;
      -ms-overflow-style: none;

      &::-webkit-scrollbar {
        width: 6px;
        background: transparent;
      }

      &::-webkit-scrollbar-thumb {
        background: var(--brand-primary);
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.3s;
      }

      &::-webkit-scrollbar-track {
        background: transparent;
      }

      &:hover::-webkit-scrollbar-thumb {
        opacity: 1;
      }

      &:hover {
        scrollbar-color: var(--brand-primary) #eee;
      }
    }

    .videoItem {
      border: none;
      margin-bottom: 10px;
      overflow: hidden;
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0px 2px 10px rgba(46, 84, 189, 0.07);
      border: 1px solid rgb(230, 230, 230);
      overflow: hidden;


      .accordion-button {
        background: var(--brand-primary);
        color: var(--white);
        font-weight: 600;
        transition: 0.2s ease-in-out;

        &:hover {
          background: var(--brand-accent);
          color: var(--white);

          &::after {
            filter: invert(1);
          }
        }

        &.collapsed {
          background: var(--white);
          color: var(--text);

          &::after {
            filter: invert(0);
          }
        }

        &:focus {
          box-shadow: none;
        }

        &.collapsed::after {
          color: var(--brand-primary);
        }
      }

      .accordion-body {
        padding: 10px 15px;

        .videoListItem {
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          background: var(--white);
          padding: 10px;
          border-radius: 6px;
          border: 1px solid var(--border);
          transition: 0.2s;

          &:hover {
            background: var(--bg-hover);
            transform: scale(1.01);
          }

          &:active {
            transform: scale(.96);
          }

          i {
            color: var(--brand-primary);
          }

          .playBtn {
            font-size: 13px;
            color: var(--text-light);
          }


        }

      }


    }

  }

  .loading-text,
  .emptyText {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
  }
}




.Courses {
  .header1 {
    padding: 20px 0;
    border-bottom: 2px solid rgb(225, 248, 255);
  }

  .below-content {
    padding: 20px;

    h1,
    h2 {
      font-size: 16px;
      font-weight: 600;
      color: #05488f;
    }

    p {
      font-size: 14px;
    }

    li {
      font-size: 14px;
      line-height: 25px;
    }
  }
}


/* ---------- footer ---------------- */

.footer {
  font-family: "Roboto", sans-serif;
  border-top: 1px solid rgba(220, 220, 220, 0.747);
  background: rgb(237, 244, 255);
  background: url("/assets/img/background/banner8.jpg") bottom/cover no-repeat;


  .logo img {
    max-width: 180px;
  }

  .icons {
    display: flex;
    align-items: center;

    a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      margin-right: 0.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;

      i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        font-size: 18px;
        z-index: 2;
      }

      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120%;
        height: 120%;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.4s ease;
        z-index: 1;
      }

      &:hover {
        transform: scale(1.1);

        &::before {
          transform: translate(-50%, -50%) scale(1);
        }
      }

      &.facebook {
        background-color: #1877f2;
      }

      &.instagram {
        background: radial-gradient(circle at 30% 30%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%);
      }

      &.linkedin {
        background-color: #0a66c2;
      }

      &.x {
        background-color: #1da1f2;
      }

      &.youtube {
        background-color: #ff0000;
      }
    }
  }

  p {
    font-size: 14px;
    color: #000000;
    margin-top: 10px;
    padding-right: 10px;
  }

  ul li a {
    font-size: 14px;
    text-decoration: none;

    &:hover {
      color: #2e54bd;
    }
  }

  .list-unstyled {
    color: #000;
    font-weight: 600;
  }

  .useful-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;

    li {
      margin-bottom: 10px;
    }

    a {
      color: #000;
      font-weight: 500;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;

      &:hover {
        font-weight: bold;
        color: #2e54bd;
      }
    }
  }

  .text-content {
    width: 90%;
  }

  h5 {
    font-weight: 600;
    color: #0716b7;
    padding-bottom: 5px;
    text-decoration: underline;
  }
}

.copyright {
  color: var(--text-light);
  font-size: 14px;
  border-top: 2px solid #929292;
}




/* ------------ login ----------------- */
.login-form {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  font-family: var(--font-main);

  .login-container {
    width: 100%;
    max-width: 890px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);

    .login-left {
      background: url("/assets/img/home/banner5.png") center/cover no-repeat;
      color: var(--white);
      padding: 40px;
      position: relative;

      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
      }

      .content {
        position: relative;
        z-index: 2;

        h2 {
          font-weight: 700;
          font-size: 2rem;
        }

        p {
          font-size: 1rem;
          margin-top: 15px;
          line-height: 1.5;
        }
      }
    }

    .login-right {
      padding: 40px 30px;
      background: var(--white);

      h3 {
        font-weight: 600;
        margin-bottom: 30px;
      }

      .form-group {
        margin-bottom: 20px;

        label {
          display: block;
          font-weight: 500;
          margin-bottom: 5px;
          color: var(--text);
        }

        input {
          width: 100%;
          padding: 10px 15px;
          border: 1px solid var(--border);
          border-radius: 8px;
          font-size: 16px;
          transition: 0.3s;

          &:focus {
            outline: none;
            border-color: var(--brand-primary);
            box-shadow: 0 0 5px var(--brand-primary);
          }
        }

        .password-wrapper {
          position: relative;

          i {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--text-secondary);
            transition: 0.3s;

            &:hover {
              color: var(--brand-primary);
            }
          }
        }


        & .error-input {
          border-color: #f44336;
        }

        .error-text {
          color: #f44336;
          font-size: 13px;
          margin-top: 5px;
        }
      }

      .forgot-link {
        display: block;
        text-align: right;
        font-size: 14px;
        font-weight: 500;
        color: var(--brand-accent);
        margin-bottom: 15px;

        &:hover {
          color: var(--brand-primary);
        }
      }

      .message {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 14px;

        &.error {
          background-color: #f8d7da;
          color: #842029;
          border: 1px solid #f5c2c7;
        }

        &.success {
          background-color: #d1e7dd;
          color: #0f5132;
          border: 1px solid #badbcc;
        }

        i {
          font-size: 16px;
        }
      }

      .login-btn {
        width: 100%;
        padding: 12px;
        font-weight: 600;
        border-radius: 8px;
        background: var(--brand-primary);
        color: var(--white);
        border: none;
        cursor: pointer;
        transition: 0.3s;

        &:hover {
          background: var(--brand-hover);
        }

        &:disabled {
          opacity: 0.7;
          cursor: not-allowed;
        }
      }
    }
  }
}


/* Animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



.register-form {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/assets/img/background/banner6.jpg") center/cover no-repeat;
  background-attachment: fixed;

  .register-container {
    width: 100%;
    max-width: 80%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 1.2s ease;
  }

  .register-left {
    background: url("/assets/img/home/img3.jpg") center/cover no-repeat;
    color: #fff;
    padding: 40px;
    position: relative;
    animation: slideInLeft 1s ease-in-out;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
    }

    .content {
      position: relative;
      z-index: 2;

      h2 {
        font-size: 2.2rem;
        font-weight: 700;
      }

      p {
        margin-top: 15px;
        font-size: 1.1rem;
        line-height: 1.6;
      }
    }
  }

  .register-right {
    padding: 30px 20px;
    animation: slideInRight 1s ease-in-out;

    h3 {
      text-align: center;
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    form {
      display: flex;
      flex-direction: column;

      label {
        padding: 0;
        margin: 0;
        font-size: 15px;
        font-weight: 600;
      }

      .input-icon {
        position: relative;
        margin-bottom: 20px;

        i {
          position: absolute;
          left: 12px;
          top: 50%;
          transform: translateY(-50%);
          color: #888;
          font-size: 18px;
          pointer-events: none;
        }

        input,
        select {
          width: 100%;
          padding: 10px 15px 10px 40px;
          border-radius: 8px;
          font-size: 16px;
          border: 1.5px solid #ccc;
          transition: border-color 0.3s ease;
          appearance: none;
          cursor: pointer;

          &:focus {
            border-color: #007bff;
            outline: none;
          }
        }
      }

      .terms {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 20px 0;
        font-size: 15px;

        input[type="checkbox"] {
          width: 18px;
          height: 18px;
          cursor: pointer;
          border-radius: 4px;
          border: 1.5px solid #ccc;

          &:checked {
            background-color: #007bff;
            border-color: #007bff;
          }
        }

        label {
          display: flex;
          align-items: center;
          gap: 5px;

          a {
            color: #007bff;
            text-decoration: underline;

            &:hover {
              color: #0056b3;
            }
          }
        }
      }

      .register-btn {
        width: 100%;
        margin-top: 10px;
        padding: 12px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease;

        &:hover {
          background-color: #0056b3;
        }
      }
    }

    .login-link {
      margin-top: 25px;
      display: flex;
      justify-content: center;
      gap: 6px;
      font-size: 15px;

      a {
        font-weight: 700;
        color: #007bff;

        &:hover {
          color: #0056b3;
        }
      }
    }
  }
}


@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}




.mobile-menu,
.hamburger {
  display: none;
}

.video-player video {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  font-weight: bold;
  color: #fff;
}

.list-group-item i {
  cursor: pointer;
}

.contactheader {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  margin: 0;
  background: url(/assets/img/background/background.avif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  .contact-card {
    background-color: var(--brand-hover);
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    h2 {
      margin-bottom: 20px;
      text-align: center;
    }

    p {
      line-height: 1.6;

      a {
        color: #fff;
        text-decoration: none;

        &:hover {
          color: var(--brand-accent);
        }
      }

      .icon {
        width: 25px;
        margin-right: 10px;
        font-size: 20px;
        vertical-align: middle;
      }
    }

    .icons {
      display: flex;
      align-items: center;
      justify-content: center;

      a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        margin-right: 0.5rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;

        i {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          height: 100%;
          font-size: 18px;
          z-index: 2;
        }

        &::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 120%;
          height: 120%;
          background-color: rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          transform: translate(-50%, -50%) scale(0);
          transition: transform 0.4s ease;
          z-index: 1;
        }

        &:hover {
          transform: scale(1.1);

          &::before {
            transform: translate(-50%, -50%) scale(1);
          }
        }

        &.facebook {
          background-color: #1877f2;
        }

        &.instagram {
          background: radial-gradient(circle at 30% 30%,
              #fdf497 0%,
              #fdf497 5%,
              #fd5949 45%,
              #d6249f 60%,
              #285aeb 90%);
        }

        &.linkedin {
          background-color: #0a66c2;
        }

        &.x {
          background-color: #1da1f2;
        }

        &.youtube {
          background-color: #ff0000;
        }
      }
    }
  }
}


@media (max-width: 1200px) {
  .cards-grid .batch-card {
    flex: 1 1 220px;
  }
}



@media (max-width: 992px) {
  body {
    padding-top: 0px;
  }

  .section-hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;

    .hero-text {
      max-width: 100%;

      h1 {
        font-size: 38px;
      }

      p {
        font-size: 18px;
        margin: 0 auto 28px auto;
      }

      .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
      }
    }

    .hero-image {
      text-align: center;
      max-width: 100%;
    }
  }

  .batch-section {
    display: flex;
    flex-direction: column;

    .right-pane {
      margin-top: 20px;
      width: 100%;

      .demo-section {

        .cards-wrapper {
          max-height: none;
          overflow-y: visible;

          .demo-card {
            flex-direction: column;
            align-items: flex-start;

            img {
              width: 100%;
              height: auto;
              margin-bottom: 10px;
            }

            h6 {
              font-size: 15px;
              margin-bottom: 4px;
            }

            p {
              font-size: 13px;
              margin-bottom: 8px;
            }
          }
        }
      }
    }
  }

}


@media (max-width: 991px) {
  .mobile-menu {
    display: block;
  }

  .topbar {
    display: none;
  }

  .header-wrapper {
    position: relative;

    &.hide {
      top: -100px;
    }
  }

  .navbar {
    position: relative;
    padding: 12px 16px;

    .nav-links,
    .nav-buttons {
      display: none;
    }

    .hamburger {
      display: block;
      font-size: 26px;
      cursor: pointer;
      color: #111;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 75%;
      height: 100vh;
      background: #fff;
      padding: 25px;
      box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
      transition: left 0.35s ease;
      z-index: 999;

      &.show {
        left: 0;
      }

      ul {
        margin-top: 60px;
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 22px;

        li {
          a {
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            color: #222;
            transition: 0.2s ease;

            &:hover {
              color: var(--brand-primary);
              transform: translateX(4px);
            }
          }
        }
      }

      .mobile-buttons {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        gap: 15px;

        .button {
          font-size: 16px;
          padding: 11px 16px;
          border-radius: 8px;
          border: 1px solid #999;
          background: #fff;
          text-decoration: none;
          font-weight: 500;
          display: flex;
          align-items: center;
          gap: 10px;
          cursor: pointer;
          transition: 0.25s ease;

          &:hover {
            background: #f1f1f1;
            transform: translateY(-1px);
          }

          &.signup {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            border: none;
            color: white;

            &:hover {
              opacity: 0.9;
              transform: translateY(-1px);
            }
          }
        }
      }
    }
  }

  /* ------ navbar end----------------- */

  .section-hero {
    display: block;
    padding: 100px 20px 30px;

    .features {
      margin-top: 10px;
      display: block;
      font-size: 16px;
    }
  }

  .hero-text {
    width: 100%;

    h1 {
      font-size: 35px;
      line-height: 1.4;
    }

    h6 {
      font-size: 18px;
      margin-top: 20px;
    }

    p {
      font-size: 16px;
    }
  }

  .hero-image {
    margin: 20px auto;
    max-width: 100%;

    img {
      padding: 0px;
    }
  }
}

@media (max-width: 768px) {

  .trainer-section {
    .course-card {
      margin: auto;
      width: 95%;

      .img-box {
        height: 250px;
      }

      .course-content {
        display: flex;
        flex-direction: column;
        height: 100%;

        .trinername {
          font-size: 16px;

          span {
            font-size: 16px;

            i {
              color: var(--brand-primary);
              font-size: 16px;
            }
          }
        }

        .content1 {

          h3 {
            font-size: 18px;

          }

          p {
            font-size: 16px;
          }
        }




      }
    }
  }

  .courses-section {
    padding: 10px;
  }

  .trainer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;

    .catalog-title {
      font-size: 20px;
      margin-bottom: 5px;
    }

    .search-group {
      width: 100%;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;

      .search-box {
        width: 100%;

        .search-input {
          width: 100%;
          padding: 10px 16px 10px 40px;
          border-radius: 45px;
        }
      }

      .custom-select {
        width: 100%;
        height: 42px;
        border-radius: 45px;
        padding-left: 16px;
      }
    }
  }

  .register-form {
    .register-container {
      max-width: 95%;
    }

    .register-left {
      display: none;
    }

    .register-right {
      padding: 30px 20px;

      h3 {
        font-size: 1.5rem;
      }
    }
  }

  .card {
    width: 45%;
  }

  .card-container {
    flex-direction: column;
    text-align: center;
  }

  .card-container img {
    max-width: 100%;
  }

  .course-info {
    margin-right: 30px;
  }

  .batch-section {
    .right-pane {
      margin-top: 20px;
    }

    .right-pane .demo-section .cards-wrapper .demo-card {
      flex-direction: column;
      align-items: flex-start;

      img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
      }

      h6 {
        font-size: 15px;
        margin-bottom: 4px;
      }

      p {
        font-size: 13px;
        margin-bottom: 8px;
      }
    }
  }

  .lmsContainer {
    .lmsHeader {
      margin-bottom: 0px;

      .lmsTitle {
        font-size: 22px;

        .titleAccent {
          width: 50%;
          height: 3px;
        }
      }

      .lmsSubtitle {
        font-size: 13px;
      }
    }

    .videoSection {
      margin-bottom: 20px;

      .placeholderBox {
        height: 250px;

        i {
          font-size: 30px;
        }

        p {
          font-size: 14px;
        }
      }
    }

    .videoList {
      .scrollable {
        max-height: 300px;
        padding-right: 3px;
      }

      .videoItem {
        .accordion-button {
          font-size: 14px;
          padding: 8px 12px;
        }

        .accordion-body {
          padding: 8px 10px;

          .videoListItem {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;

            .playBtn {
              font-size: 12px;
            }
          }
        }
      }
    }
  }

}


@media (max-width: 480px) {
  .card {
    width: 100%;
  }
}