/* 
.case-inner-box {
    position: relative;
}


.video-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}


.video-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4E2FDA;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.video-link:hover {
    background-color: #4E2FDA;
    color: #fff;
}


.video-link i {
    font-size: 24px;
} */


.case-inner-box,
    .custom-inner-box {
        position: relative;
        overflow: hidden;
    }

    .img1 img,
    .custom-img-wrapper img {
        width: 100%;
        transition: transform 0.5s ease;
    }

    .case-inner-box:hover .img1 img,
    .custom-inner-box:hover .custom-img-wrapper img {
        transform: scale(1.1); /* Zoom effect */
    }

    .video-button,
    .custom-icon-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
        background: rgba(0, 0, 0, 0.6);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
    }

    .case-inner-box:hover .video-button,
    .custom-inner-box .custom-icon-overlay{
        display: none;
    }
    .case-inner-box:hover .video-button,
    .custom-inner-box:hover .custom-icon-overlay {
        display: flex;
        display: block;
    }

    .video-button i,
    .custom-icon-overlay i {
        color: white;
        font-size: 24px;
        
    }





/* Parent container adjustments */
.case-inner-box {
    position: relative;
}

.about-images {
    position: relative;
}
/* Center the video button */
.video-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Styling for the video link */
.video-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4E2FDA; /* Base background color */
    color: #fff; /* Text/icon color */
    border-radius: 50%; /* Circular button */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transition for hover */
    position: relative; /* For absolute positioning of the pulse */
}

/* Hover effect */
.video-link:hover {
    background-color: #4E2FDA; /* Keep the background same on hover */
    color: #fff; /* Keep text/icon color same on hover */
}

/* Icon inside the button */
.video-link i {
    font-size: 24px; /* Icon size */
}

/* Pulse effect styling */
.video-link .play {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* For absolute positioning of the pulse */
}

.video-link .play::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #4E2FDA; /* Same background color */
    border-radius: 50%; /* Circular pulse */
    z-index: -1; /* Behind the play icon */
    animation: pulse-border 1500ms ease-out infinite; /* Pulse animation */
    opacity: 0.4; /* Semi-transparent */
}


.portfolio-heading{
    font-size: 22px;
    color:#4E2FDA;
    margin: 15px 0px;
    font-weight: 600;
display: none;

}
/* Keyframes for pulse animation */
@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0; /* Fade out */
    }
    100% {
        transform: scale(1);
        opacity: 0; /* Keep it hidden after the pulse */
    }
}


/* @keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
} */


/* Apply the flexbox layout only for mobile screens */
@media (max-width: 576px) {  /* Adjust breakpoint if needed */
    .mobile-flex {
      display: flex;
      /* Adjust spacing between images */
    }
    .hide-mobile {
        display: none;
      }
    
  }
  
 