.blog-entry {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.blog-entry:hover{
    transform: scale(1.1);   
}

.pop-container {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(193, 199, 208, 0.3);
    backdrop-filter: blur(7px); 
    animation: popDown 0.4s;
    z-index: 100;
  }
  @keyframes popDown {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
  
    to {
      transform: translateY(0%);
      opacity: 1;
    }
  }

  .icon-close {
    position: absolute;
    right: 3px;
    top: 3px;
    font-size: 50px;
    color: #333;
    background: #fff;
  }
  
  .icon-close:hover {
    color: red;
    background: #fff;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .card-popup {
    width: 50%;
    height: 95%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #dfe1e6;
    border-radius: 16px;
    gap: 15px;
  }

  .img-popup {
    width: 100%;
    height:100%;
    box-shadow: 0 0px 9px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
   
  }

  .card-img {
    width: 100%;
    position: relative;
  }

  .img-title {
   width: 97%;
   display: flex;
   justify-content: center;
   font-weight: 700;
   font-size: 25px;
   line-height: 27px;
  }
  .img-desc {
    justify-content: center;
    width: 97%;
    display: flex;
    line-height: 23px;
   }

   @media (max-width: 767px) {
    .card-popup {
        width: 95%;
        height: 65%;
    }
   }

    /* Styles for the client logo slider container */
    .slider-container {
      width: 90%; /* Adjusted to auto to fit the content */
      overflow: hidden;
      white-space: nowrap; /* Prevents the content from wrapping */
      margin-left: auto;
      margin-right: auto;
    }
    
    /* Styles for the logo slider */
    .logo-slider {
      display: inline-flex;
      animation: slide 1s infinite linear; /* Adjusted animation duration */
      box-sizing: border-box; /* Ensures the box size includes padding and border */
      position: relative; /* Added relative positioning */
    }
    
    /* Animation keyframes for the logo slider */
    @keyframes slide {
      0% {
        transform: translateX(calc(-100% + 200px)); /* Adjusted to account for logo width and prevent gaps */
      }
      100% {
        transform: translateX(0%);
      }
      
    }
    
    /* Styles for the client logo images */
    .logo-image {
      width: 150px;
      height: 100px;
      object-fit: contain;
      margin: 10px;
    }

    @media only screen and (max-width: 767px) {
      .mtp {
        margin-top: 95px;
      }
    }

    .logo-sliderr {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }
    