.custom-svg-1 {
    width: 100%;
    height: auto;
    position: absolute;
    right: -15%;
	top:-23%;
    z-index: -1; /* Ensure it stays behind other elements */
}
/* Adjust for smaller screens */
@media (max-width: 768px) {
    .custom-svg-1 {
        width: 80%; /* Reduce the width */
        height: auto; /* Maintain aspect ratio */
        top: 50px; /* Adjust position to avoid overlapping text */
        left: 10%; /* Center it horizontally */
    }
}