 /* Thumbnail Image Style */
 .thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;  
    
   
  }

  /* Hover Effect */
  .thumb img:hover {
    transform: scale(1.2);
    border-color: #fff;
    z-index: 10;
  }

  /* Plus Icon inside Zoom */
  .thumb img:hover::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 5px;
    z-index: 10;
  }



  .box {
    width: 200px;
    height: 100px;
    background-color: #3498db;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
  }

  /* Hover Effect */
  .box:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 50px rgba(248, 255, 107, 0.873);
  }

  /* Before hover light animation */
  .box::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
    animation: light-wave 3s infinite linear;
  }

  /* Keyframes for the light wave effect */
  @keyframes light-wave {
    0% {
      transform: translateX(0) translateY(0);
      opacity: 0.6;
    }
    50% {
      transform: translateX(100%) translateY(100%);
      opacity: 0.9;
    }
    100% {
      transform: translateX(200%) translateY(200%);
      opacity: 0.6;
    }
  }


