:root {
  --primary-text-color: #00C3A9;
  --secondary-text-color: #ffffff;
  --primary-bg-color: #C5ECE5;
  
  --accent-color: #47EDCC; 
  /* --secondary-bg-color: #292d33; */
  /* --head-font-family: "Montserrat", serif; */
 
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--head-font-family);
   }
   .card-hls:hover{
box-shadow: 0px 0px 15px #d8d8d8;
}

::selection{
background: var(--primary-bg-color);
}
.stripes{
background-color: var(--primary-text-color);
}

.clr-green{
color: #3ca99b;
}



/* Adjust section margins for better spacing */
.sec {
  margin-bottom: 50px;
}

/* Make sure the play button is centered */
.video-thumbnail {
  position: relative;
  display: inline-block;
}

.video-thumbnail img {
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  /* box-shadow: 0 0 15px rgba(255, 255, 255, 0.8); */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.play-button svg {
  width: 30px;
  height: 30px;
}
.video-thumbnail:hover .play-button {
  box-shadow: 0 0 25px rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-thumbnail:hover .play-button svg path {
  fill: #13b495;
}