/* Make the main container a positioning context */
    #wowslider-container1 {
        position: relative; /* This is crucial for the overlay */
    }

    /* Create a transparent overlay to block mouse events */
    #wowslider-container1::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 80; /* Must be higher than the image but lower than any potential text */
        background-color: transparent;
    }
    
    /* Stop the animation and force the image to stay in the first position */
    #wowslider-container1 .ws_images > ul {
        animation: none !important;
        -webkit-animation: none !important;
        left: 0 !important;
    }

    /* Hide all slider navigation controls */
    #wowslider-container1 .ws_bullets,
    #wowslider-container1 a.ws_next,
    #wowslider-container1 a.ws_prev,
    #wowslider-container1 .ws_playpause {
        display: none !important;
    }
    
    /* ----- END: FIX TO STOP DRAGGING AND ANIMATION ----- */

    #wowslider-container1.ws_gestures {

	cursor: default !important

}

 #wowslider-container1 .ws_images {
	position: relative;
	left: 0;
	top: 0;
	height: 100%;
	max-height: 620px !important;
	max-width: 100%;
	border: none;
	overflow: hidden;
	/* -- Image center laane ka Code Yahan Se Hai -- */
	display: flex;
	align-items: center;      /* Vertically Center me layega */
	justify-content: center;  /* Horizontally Center me layega */
}