body{
    background-color: #f8fcff!important;
  }

  .full-screen {
width: 100vw;       
height: 100vh;   
overflow: hidden;   
margin: 0;          
padding: 0;         
}

/* Image Container */
.image-container {
position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  
  border: none;
}

/* Optional: Ensure the video is properly centered and above the background */
.video-container video {
  position: relative;
  z-index: 1; /* Ensure the video is above the background */
}

/* Image Styling */


.statistics img{
height:500px;
width:450px;
}

@keyframes moveUpDown {
0% {
  transform: translateY(0);
}
100% {
  transform: translateY(20px); /* Adjust the value as needed */
}
}

.statistics p {
text-align: justify;
}



.cont-symptoms img {
display: flex;
justify-content: center; 
align-items: center; 
height: 100vh; 
}

.cont-symptoms {
display: flex;
justify-content: center; 
align-items: center; 
height: 100%; /* Make the container take full width */
}


  h3 {
      text-align: center;
      margin-top: 20px;
      color: #ee9c0d;
  }

  h4{
      text-align: center;
      margin-top: 60px;
  }

  h5{
    text-align: center;
    margin-top: 20px;
    color: #a44475;
  }

  h2{
    text-align: center;
    margin-top: 20px;
  }

  hr {
border: 0; /* Removes default border */
border-top: 2px solid purple;
}


  .cont-1 {
      
      padding: 20px;
      margin: 20px 0;
      background: none;
      
  }

  /* Symptom Cards*/
  .cont-symptoms {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }

  /* Centered human image */
  .human-img {
    width: 40vw;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Style for the symptom circles */
  .circle-item {
    position: absolute;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    cursor: pointer;
    text-align: center;
    border: 3px solid black;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    overflow: hidden;
    display: flex; 
    justify-content: center;
    align-items: center;
  }

  .circle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease-in-out;
  }

  .circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .circle-item:hover .circle-img {
    opacity: 0;
  }

  .circle-item:hover .circle-content {
    opacity: 1;
  }

  /* Positioning the circles relative to the human image */
  .left-1 {
    top: 8%;
    left: 25%;
  }

  .left-2 {
    top: 20%;
    left: 10%;
  }

  .left-3 {
    top: 50%;
    left: 10%;
  }

  .left-4 {
    top: 70%;
    left: 25%;
  }

  .right-1 {
    top: 8%;
    right: 25%;
  }

  .right-2 {
    top: 20%;
    right: 10%;
  }

  .right-3 {
    top: 50%;
    right: 10%;
  }

  .right-4 {
    top: 70%;
    right: 25%;
  }

  /* Small Screen */
  @media (max-width: 576px) {
    .human-img {
      width: 70vw;
    }

    .circle-item {
      width: 80px;
      height: 80px;
    }

    .circle-img {
      width: 60%;
      height: 60%;
    }

    /* Adjust positioning for smaller screens */
    .left-1, .right-1 {
      top: 15%;
    }

    .left-2, .right-2 {
      top: 35%;
    }

    .left-3, .right-3 {
      top: 55%;
    }

    .left-4, .right-4 {
      top: 75%;
    }
  }

  .btn-custom {
    border: 2px solid purple; 
    border-radius: 25px;      
    padding: 10px 20px;        
    font-size: 1.5rem;         
    background-color: #f3ecff; 
    color: orange;            
    transition: all 0.3s ease; 
    width: 100%;               
    max-width: 300px;         
    height: 60px;              
    font-weight: bold;         
}

.btn-custom:hover {
    background-color: rgb(111, 118, 211); 
    color: white;               
}