:root {
    --primary-text-color: #00C3A9;
    --secondary-text-color: #ffffff;
    --primary-bg-color: #C5ECE5;
    
    --accent-color: #47EDCC; 
    --secondary-bg-color: #292d33;
    --head-font-family: "catamaran", sans-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);
}
body{
    margin: 0;
    padding: 0;

}


/* Scroll spy navigation styling */
.scrollspy-nav {
    position: sticky;
    top: 75px;
    background-color: #f8f9fa;
    padding: 1rem;
    margin-top: 50px;
  }

  .scrollspy-nav a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #343a40;
  }

  .scrollspy-nav a.active {
    color: #13b495;
    font-weight: bold;
  }

  /* Adjust section margins for better spacing */


.chart-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    /* height: 45px; */
}
.chart-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: conic-gradient(#13b495 0% 0%, #e9ecef 0% 100%);
    position: relative;
}
.chart-circle::after {
    content: attr(data-percentage) '%';
    font-size: 1.5rem;
    font-weight: bold;
    color: #13b495;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.color-green{
   color: #00887a;
}


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

.video-thumbnail img {
    display: block;
}

p{
    font-size: 17px;
    
}
h1{
    color: 212F3C;
}

.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;
}