.course-header-section{
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('/assets/black-texture2.webp');
  background-attachment: fixed;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 100%;
  height: 450px;
  margin: auto;
  display: flex;
  align-items: center;
}
.course-header-area{
  background-color: transparent;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 60px 0;
  display: flex;
  flex-direction: row;
  grid-gap: 0 20px;
  align-items: center;
  justify-content: center;
}
/* Below Css is only for Art of Success Course */
.art-header-area{
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: auto;
  padding: 60px 0;
  display: flex;
  flex-direction: row;
  grid-gap: 0 20px;
  align-items: center;
  justify-content: center;
}
/* Left Header Section */
.course-header-content{
  width: 100%;
  height: 100%;
  h1{
    color: #fff;
    font-weight: 600;
    font-size: 48px;
  }
  p{
    color: var(--lightgray);
    font-size: 14px;
    text-align: justify;
  }
  h6{
    color: var(--orange);
    font-style: italic;
  }
  i{
    color: var(--orange);
  }
}

/* Right Header Section */



.course-section{
    width: 100%;
    height: auto;
    margin: auto;
    background-color: #e8e8e8;
    
}
.course-area{
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    grid-gap: 0 30px;
    margin: auto;
    padding: 50px 0;
}



/* Course Details - Left Scrolling Section */
.course{
  width: 100%;
  height: auto;
  padding: 40px 0;
  margin: auto;
  p{
    font-size: 13px;
  }
  .course-lists{
    margin-left: -30px;
  }
  .list-heading{
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    background: #e0e0e0;
    box-shadow: 15px 15px 30px #bebebe,
             -15px -15px 30px #ffffff;
    padding: 30px;
    
    list-style-type: none;
  }
  .list-details{
    background-color: #fff;
    padding: 30px;
  }
  
}

/* Course Details - Right Sticky Section */
.box{
  background-color: #fff;
  width: 100%;
  max-width: 350px;
  height: auto;
  padding: 15px;
  box-shadow: 10px 10px 15px #44444434;
  position: sticky;
  top: 70px;
  z-index: 999;
  margin-top: -80vh;
}
.course-details{
  margin-top: 20px;
}
.course-details h5{
    font-size: 15px;
    color: var(--offwhite);
    text-align: justify;
    margin: 10px 0;
}
.course-details span{
  color: var(--offblack);
}
.course-details a{
  background-color: var(--orange);
  text-decoration: none;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 4px #4444444f;
}


/* Other Courses Section CSS Start */
.other-courses-section{
  width: 100%;
  height: auto;
  background-color: var(--orange);
  margin: auto;
}
.other-courses-area{
  width: 100%;
  max-width: 812px;
  height: auto;
  margin: auto;
  background-color: var(--orange);
}
.other-courses{
  width: 100%;
  height: auto;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  a{
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    text-transform: uppercase;
  }
}
/* Other Courses Section CSS Start */



@media screen and (max-width: 768px) {
  /* ============== COURSES RESPONSIVE BELOW ============= */
   .course-header-section{
    width: 100%;
    height: auto;
    background-size: cover;
   }
   .course-header-area{
    width: 90%;
    display: flex;
    flex-direction: column;
   }

   .course-area{
    width: 90%;
    flex-direction: column-reverse;
   }
   .course{
    width: 100%;
   }
   .box {
    max-width: 100%;
    position: static;
    top: auto; /* Reset the top value */
    margin-top: 0;
    z-index: 0;
 }

 .other-courses{
  padding: 20px 30px;
  i{
    padding-left: 10px;
  }
 }
  
}

  /* ============== COURSES RESPONSIVE BELOW ============= */