* {
  user-select: none;
}

/* Preloader start */
.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .preloader img {
    max-width: 50%;
    height: auto;
}
body{
  background-color: #FCF5E5;
}

  /* Book Loader */
  /* .book {
    width: 60px;
    height: 80px;
    position: relative;
    perspective: 600px;
  }

  .book .page {
    width: 60px;
    height: 80px;
    background: #ffd16f;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: left center;
    animation: flip 2s infinite ease-in-out;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
  }

  .book .page:nth-child(2) {
    background: #0dcaf0;
    animation-delay: 0.3s;
  }

  .book .page:nth-child(3) {
    background: #6610f2;
    animation-delay: 0.6s;
  }

  @keyframes flip {
    0% {
      transform: rotateY(0deg);
    }
    50% {
      transform: rotateY(-180deg);
    }
    100% {
      transform: rotateY(-360deg);
    }
  } */

  /* Hide preloader when loaded */
  body.loaded .preloader {
    display: none;
  }

  .content {
    display: none;
    padding-top: 20px;
  }

  body.loaded .content {
    display: block;
    animation: fadeIn 1s ease-in-out;
  }

  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }

  /* login style start */
  /* section{
    padding-top: 70px;
    padding-bottom: 70px;
} */

.login-f {
    display: flex;
    justify-content: center;
}
.login-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.logo {
  display: block;
  margin: 0 auto;
  width: 120px; /* you can adjust size */
  margin-bottom: 20px;
}

.form-control {
  border-radius: 8px;
  margin-bottom: 15px;
}
.btn-login {
  background-color: #ff7a00;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  width: 100%;
}
.btn-login:hover {
  background-color: #e86b00;
}
.link {
  font-size: 0.9rem;
  display: block;
  margin-top: 10px;
  text-align: center;
}
.link a {
  color: #100d30;
  text-decoration: none;
  font-weight: 500;
}
.link a:hover {
  text-decoration: underline;
}

/* signup start */

  .signup-f {
    display: flex;
    justify-content: center;
}
  .signup-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  .logo {
    width: 50%;
    height: auto;
    margin-bottom: 15px;
  }
  .form-control {
    border-radius: 8px;
    margin-bottom: 15px;
  }
  .btn-signup {
    background-color: #ff7a00;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    width: 100%;
  }
  .btn-signup:hover {
    background-color: #e86b00;
  }
  .link {
    font-size: 0.9rem;
    display: block;
    margin-top: 10px;
  }
  .link a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
  }
  .link a:hover {
    text-decoration: none;
  }

  /* footer */
  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
    border-top: 1px solid #bebbbb;
    background-color: #fbf4e4;
    z-index: 99999999999999999;
  }
  .footer-item {
    text-align: center;
    color: #666;
    font-size: 12px;
  }
  .footer-item.active {
    color: #0a7ae0;
  }
  .footer-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
  }
  i.ico {
    font-size: 18px;
    color: #717070;
}
.menu {
  font-size: 12px;
  color: #717070;
  font-weight: 500;
}



  /* welcome page */
  .mobile-container {
    width: 100%;
    height: auto;
    /* background-color: white; */
    padding: 0 20px 80px;
    overflow: hidden;
    text-align: center;
  }
  
  header .logo {
    max-width: 50%;
    height: auto;
    margin-top: 20px;
  }
/*   
  main {
    margin-top: 40px;
  } */
  
  .boy-image {
    width: 200px;
    height: auto;
    margin: 20px 0;
  }
  a {
    color:#000;
    text-decoration: none;
}
  
  h1 {
    font-size: 40px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}
  .get-started-btn {
    background-color: #ffc107;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    width: 80%;
  }
  
  .get-started-btn:hover {
    background-color: #ffb300;
  }
  
  .login-link {
    display: block;
    margin-top: 0;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
  }
  
  .login-link:hover {
    text-decoration: underline;
  }

  /* leason */
  i.fa-solid.fa-less-than {
    color: #000;
}
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .card {
    background: #fff;
    border-radius: 16px;
    padding: 3px;
    /* display: flex
; */
    /* flex-direction: column; */
    justify-content: center;
    /* align-items: center; */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    height: auto;
    text-align: center;
}

  .card-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .alphabet {
    background-color: #bda7e0;
    color: white;
  }

  .numbers {
    background-color: #f39c36;
    color: white;
  }

  .shapes {
    background-color: #ec6a5e;
    color: white;
  }

  .colors {
    background-color: #4cb08a;
    color: white;
  }
.leason-title{
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
  .card-title {
    font-size: 16px;
    font-weight: bold;
  }
  .card-icon img{
    max-width: 100%;
    height: auto;
  }
  img.boy-img {
    position: relative;
    top: 15px;
}

h3.cate-title {
  font-size: 18px;
  color: #fff;
}
.login-page{
  padding-top: 100px;
}
.signup-page{
  padding-top: 80px;
}
  /* profile start */
  .profile-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ccc;
    display: inline-block;
    background-image: url('https://via.placeholder.com/80');
    background-size: cover;
    position: relative;
  }
  .camera-icon {
    position: absolute;
    bottom: 0;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    font-size: 12px;
  }
  .name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
  }
  .email {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .edit-btn {
    background-color: #6C7EC6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 30px;
  }
  .pro-menu {
    /* background-color: white; */
    border-bottom: 1px solid;
  }
  .pro-menu-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
  }
  .pro-menu-item:last-child {
    border-bottom: none;
  }
  .pro-menu-item.logout {
    color: red;
  }
  .pro-menu-item i{
    margin-right: 10px;
  }


  /* progress start */
  /* .pro-sec{
    background-color: #fff8ef; ;
  } */
  .progress-card {
    max-width: auto;
    margin: auto;
    border-radius: 20px;
    padding: 20px;

  }
  .progress-card h2 {
    font-size: 18px;
    color: #002244;
    margin-bottom: 5px;
  }
  .progress-card h3 {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
  }
  .week-bar {
    display: flex;
    margin-bottom: 10px;
  }
  .day {
    flex: 1;
    height: 30px;
  }
  .yellow { background: #f4c542; }
  .orange { background: #f49b42; }
  .blue { background: #42c0f4; }
  .teal { background: #42f4a1; }

  .week-labels {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }

  .activity {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #002244;
  }
  .activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #eee;
  }
  .activity-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .activity-icon {
    width: 30px;
    height: 30px;
    border-radius: 25%;
    background: #679ebf;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .activity-name {
    font-size: 16px;
    color: #222;
  }
  .activity-time {
    font-size: 12px;
    color: #888;
  }
  .arrow i{
    font-size: 20px;
    color: #679ebf;
  }

  /* home page start */
  .body-color{
    background-color: #FCF5E5;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.logo-main {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  height: auto;
}
.top-buttons {
  display: flex;
  gap: 10px;
  
  margin-bottom: 20px;
  justify-content: space-between;
}
.top-buttons a {
  border: none;
  padding: 10px 7px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.home { background-color: #F2D7B4; }
.lessons { background-color: #6C7EC6; color: white; }
.progress1 { background-color: #FFBF3F; color: white; }
.printables { background-color: #289584; color: white; }

.welcome {
  background-color: #42AED2;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.welcome-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.task-in {
  color: #fff;
}
.continue-btn {
  margin-top: 10px;
  background-color: #FEC64F;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.category im.categories {
  margin-top: 10px;
}
.categories h3 {
  margin-bottom: 10px;
}
.category-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.category {
  flex: 1 1 calc(33% - 10px);
  padding: 10px;
  border-radius: 12px;
  text-align: center;
}
  backgroundg {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}
.category .title {
  font-weight: bold;
  font-size: 16px;
}
.alphabet { background-color: #FCB05C; color: #000; }
.numbers { background-color: #429D70; color: #000; }
.colors { background-color: #5DB7D2; color: #000; }

.category img{
    max-width: 100%;
    height: auto;
}

  /* subscription start */
  .subscription-container {
    background-color: #FCF5E5;
    padding: 40px 20px 20px 20px;
    text-align: center;
    padding-bottom: 50px;
  }
  .subscription-icon {
    width: 60px;
    height: 60px;
    background-color: #bce3cb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 30px;
  }
  .plan {
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .plan h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #2e3a59;
    font-weight: 700;
  }
  .fa-dollar-sign{
    color: #4BA379;
  }
  
  .price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0f7b6c;
  }
  .features {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
    padding-left: 0;
  }
  .features li {
    list-style: none;
    margin-bottom: 8px;
    color: #333;
  }

  .badge {
    display: inline-block;
    background-color: #fdd835;
    color: #5d4037;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
  }

  /* Background Colors */

.header-bg-alphabet {
  background-color: #FF9F1C;
}
.title-bg-alphabet {
  background-color: #FFD6A5;
}

.card-bg-numbers {
  background-color: #B5EAD7;
}
.header-bg-numbers {
  background-color: #00B894;
}
.title-bg-numbers {
  background-color: #C1FDD0;
}


.card-bg-shapes {
  background-color: #E86F52; /* Main card background */
}

.header-bg-shapes {
  background-color: #D8563D; /* Slightly darker red-orange for header */
}

.title-bg-shapes {
  background-color: #F2A08A; /* Softer, lighter tone for title area */
}



.card-bg-colors {
  background-color: #D0E2FF;
}
.header-bg-colors {
  background-color: #4A90E2;
}
.title-bg-colors {
  background-color: #AECDF5;
}

/* card start */
.category-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-container-l {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.category-container-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-header {
  padding: 5px 16px;
}

.card-title {
  padding: 5px;
}

.card-title h3 {
  margin: 0;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

/* back icon start */
/* .lesson-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
} */


.lesson-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px 20px 16px;
  background-color: #fdf3e7;
}

.lesson-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 18px;
}
.back-link1 i{
  font-size: 18px;
  font-weight: 600;
}

.lesson-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.back-link {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #717070;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: #679ebf;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #dee2e6;        /* Removes the border */
  outline: 0;
  box-shadow: none !important;     /* Also remove default focus shadow */
}

/* activity start */

.instruction {
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
  color: #333;
  font-weight: 600;
}

.letters {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 95px;
  color: #4a90e2;
  margin-top: 30px;
  font-weight: bold;
}

.continue-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.continue-button button {
  padding: 12px 32px;
  background-color: #34c38f;
  border: none;
  border-radius: 24px;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* video start */
.label {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.image-container {
  background-color: #0bafc4;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.title-link {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
  text-decoration: none;
}

.duration {
  font-size: 16px;
  color: #000;
}
.card-v {
  margin-bottom: 20px;
}
.search-container input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border-radius: 30px;
  border: 1px solid #fcf5e5;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  margin-bottom: 16px;
}
.search-container input:focus {
  border-color: #0bafc4;
  box-shadow: 0 0 5px rgba(11, 175, 196, 0.4);
}
.search-container svg {
  position: absolute;
  top: 80px;
  left: 23px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: #888;
  pointer-events: none;
}

.search-container2 input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border-radius: 30px;
  border: 1px solid #fcf5e5;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  margin-bottom: 16px;
}
.search-container2 input:focus {
  border-color: #0bafc4;
  box-shadow: 0 0 5px rgba(11, 175, 196, 0.4);
}
.search-container2 svg {
  position: absolute;
  top: 100px;
  left: 23px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: #888;
  pointer-events: none;
}

.container.pt-4.video-sec {
  padding-bottom: 90px;
}


/* weekly pack */
.mobile-card {
  width: 280px;
  background-color: #fff7ed;
  border-radius: 30px;
  padding: 20px 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.illustration img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 16px;
}

h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 8px 0 4px;
  color: #1e293b;
}

p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

.btn-download {
  display: inline-block;
  background-color: #fb923c;
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #f97316;
}

    .video-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .video-item {
      display: flex;
      gap: 12px;
    }

    .thumbnail {
      flex-shrink: 0;
    }

    .thumbnail img {
      width: 100%;
      /* height: auto; */
      border-radius: 8px;
      object-fit: cover;
      background-color: #5aa9e9;
    }

    .video-info {
      flex: 1;
    }

    .video-title {
      font-size: 14px;
      font-weight: bold;
      margin: 0 0 4px;
    }

    .channel-name,
    .views {
      font-size: 12px;
      color: #aaa;
    }

    .views {
      margin-top: 2px;
    }

    .nav-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #111;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      border-top: 1px solid #333;
    }

    .nav-bar div {
      color: white;
      font-size: 12px;
      text-align: center;
    }


    .subscription {
      margin: 20px 0;
      text-align: center;
      font-weight: bold;
      background-color: #fff;
      /* padding: 10px; */
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .container.body-color.home-pd {
      padding-bottom: 80px;
  }

/* subscription */
h2 {
  margin: 5px 0;
  font-size: 1.4em;
}

.subtext {
  color: #666;
  margin-bottom: 20px;
}

.plan {
  background-color: #FFEEAE;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}

.plan.orange { background-color: #FFDCA0; }
.plan.green { background-color: #D5E7C1; }

.plan h3 {
  margin: 0 0 8px;
  font-size: 1.1em;
}

.price {
  font-weight: bold;
  margin-bottom: 10px;
}

.features {
  font-size: 0.9em;
  margin-bottom: 10px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.7em;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: orange;
  color: white;
  font-weight: bold;
}

.badge.green {
  background-color: #4caf50;
}

.button {
  display: inline-block;
  background-color: #ffbf00;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
}

.button.green {
  background-color: #4caf50;
  color: white;
}

.addon {
  margin-top: 20px;
  font-size: 0.85em;
  text-align: center;
}

.trial {
  font-weight: bold;
  color: #f7931e;
  cursor: pointer;
  text-decoration: underline;
}

.container.pt-4.sub-pd {
  padding-bottom: 80px;
}


.plan-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.features {
  flex: 1;
  font-size: 0.9em;
  color: #333;
}
.buttonn {
  display: inline-block;
  background-color: #ffbf00;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
  bottom: 11px;
  position: absolute;
  right: 15px;
}


.footer-addon {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fef9f4;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.addon-text {
  font-size: 0.9em;
  color: #333;
  line-height: 1.3;
}

.footer-button {
  background-color: #F5BE2E;
  color: #000;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.leson-pd {
  padding-bottom: 95px;
}

.access-box {
  background-color: #feedd3;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-family: sans-serif;
  margin-top: 20px;
}

.access-box h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

.access-box p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #666;
}

/* subscription btn */
.subscription a {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  font-size: 18px;
  background-color: #1e90ff;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
  user-select: none;
  touch-action: manipulation;
}

.subscription a:hover,
.subscription a:focus {
  background-color: #187bcd;
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.8), 0 0 40px rgba(30, 144, 255, 0.6);
  transform: scale(1.03);
}


.video-thumbnail {
    width: 145px;
    height: 100px;
    object-fit: cover;
}

  /* Video Player Page Styles */
.video-player-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 80px;
}



.back-link {
    margin-right: 15px;
}

.back-link img {
    width: 24px;
    height: 24px;
}

.lesson-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

.main-video-player {
    margin-bottom: 12px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.main-video-player video {
    width: 100%;
    height: auto;
    max-height: 60vh;
    display: block;
}

.video-info {
    padding: 0;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.video-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.video-meta span {
    margin-right: 15px;
}

.related-videos {
    margin-top: 20px;
    margin-bottom: 150px;
}

.playlist-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.video-playlist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.playlist-item {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.playlist-thumbnail {
    position: relative;
    width: 45%;
    max-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.playlist-thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 12px;
}

.playlist-info {
    flex-grow: 1;
}

.playlist-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
}

.video-stats {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.no-video {
    text-align: center;
    padding: 50px 20px;
}

.no-video p {
    margin-bottom: 20px;
    color: #666;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .video-player-container {
        max-width: 800px;
        padding: 0 20px;
    }
    
    .main-video-player video {
        max-height: 70vh;
    }
    
    .video-title {
        font-size: 22px;
    }
    
    .playlist-item {
        gap: 15px;
    }
    
    .playlist-thumbnail {
        width: 40%;
    }
    
    .playlist-info h4 {
        font-size: 16px;
    }
}

/* forgot password */
input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
    }

    .btn {
      width: 100%;
      background-color: #ff8500;
      color: #fff;
      border: none;
      padding: 14px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 10px;
    }
.btn:hover {
      background-color: #e67500;
    }



/*5/16*/

button.edit-btn a {
    color: #fff;
}

    .profile-edit-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px 20px;
        overflow-y: auto;
    }

    .profile-edit-container h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    .profile-edit-container form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .profile-edit-container input[type="text"],
    .profile-edit-container input[type="file"] {
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 8px;
        width: 100%;
    }

    .profile-edit-container input[type="submit"] {
        background-color: #4e73df;
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
    }

    .profile-edit-container input[type="submit"]:hover {
        background-color: #3a5bbf;
    }

    .profile-edit-container img {
        border-radius: 50%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .profile-edit-container a {
        display: block;
        margin-top: 20px;
        text-align: center;
        color: #4e73df;
        text-decoration: none;
    }

    .profile-edit-container a:hover {
        text-decoration: underline;
    }

    @media (max-width: 480px) {
        .profile-edit-container {
            padding: 40px 15px;
        }

        .profile-edit-container input[type="text"],
        .profile-edit-container input[type="file"] {
            font-size: 14px;
        }
    }
    .edit-p{
      margin-bottom: 100px;
    }
.footer-item .ico,
.footer-item .menu {
  color: #6c757d; /* default gray */
  transition: color 0.3s ease;
}

.footer-item.active .ico,
.footer-item.active .menu {
  color: #4e73df; /* active blue */
}
/* age box */
.application-section {
    margin-bottom: 20px;
}
.application-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.box-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
} 
.app-box h3 {
  font-size: 14px;
  margin: 0;
}
.app-box {
  flex: 1 1 calc(50% - 20px); /* 2 columns */
  background-color: #42AED2;
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}



/* age box */
.application-section {
    margin-bottom: 20px;
}
.application-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.box-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
} 
.app-box h3 {
  font-size: 14px;
  margin: 0;
}
.app-box {
  flex: 1 1 calc(50% - 20px); /* 2 columns */
  background-color: #42AED2;
  color: #fff;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}




  .application-section {
  max-width: 1200px;
  margin: 2rem auto;
  /*padding: 0 1rem;*/
}

.box-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.app-box {
  flex: 1;
  min-width: 200px;
  /*max-width: 280px;*/
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.app-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(30deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.app-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.app-box:hover::before {
  opacity: 1;
  animation: shine 1.5s infinite;
}

.app-box h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Different colors for each box */
.app-box:nth-child(1) {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.app-box:nth-child(2) {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.app-box:nth-child(3) {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.app-box:nth-child(4) {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

@keyframes shine {
  0% {
    transform: rotate(30deg) translate(-30%, -30%);
  }
  100% {
    transform: rotate(30deg) translate(30%, 30%);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .app-box {
    min-width: 160px;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 600px) {
  .box-row {
    flex-direction: column;
    align-items: center;
  }
  
  .app-box {
    width: 100%;
    /*max-width: 300px;*/
  }
}

h5 {
    font-size: 1.25rem;
    color: #fff;
}



.form-control {
    display: block;
    width: 100%;
    padding: .75rem !important;
}









