/* Website Font */
body{
    font-family: "Segoe UI",Arial,sans-serif;
}

p{
    font-size: 17px;
}


/* Image hover on zoom effect on home page  */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(228, 225, 225, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.image-container:hover .zoom-overlay {
    opacity: 1;
}

.image-container:hover img {
    transform: scale(1.1);
}



/*----------------------- YouTube Video ------------------------*/
.video-container {
    position: relative;
    display: inline-block;
    text-align: center;
  }

  .video-container:hover{
    opacity: 0.9;
    color: red;
    cursor: pointer;
    opacity: 0.9;
    /* border: 2px solid blue; */
    border-radius: 5px;
  }

  .video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    text-align: center;
    font-size: 50px;
  }

  .thumb{
    border-radius: 5px;
  }



/* Active Navbar */
.activenav{
    font-weight: bold;
    color: rgb(253, 249, 0) !important;
}


/* Custom Scrollbar  */
.scrollable-container::-webkit-scrollbar {
    height: 10px;
  }

  .scrollable-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }

  .scrollable-container::-webkit-scrollbar-thumb {
    background-color: rgb(23, 184, 212);
  }


  /* Course Title */
  .course_list{
    font-family: "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    display: block;
    padding: 2px 1px 1px 16px;
    color: #ddd;
  }

  @media (min-width: 768px) {
    .course_list {
      color: rgb(56, 54, 54);
    }
  }
  .course_list:hover{
    background-color:rgb(195, 204, 206);
  }
