/* =WordPress Core
-------------------------------------------------------------- */
/* The slide-out element wrapper */
.slide-out-panel {
	position: fixed;
	top: 20%; /* Adjust vertical positioning */
	right: -320px; /* Hidden off-screen initially (matches width + padding) */
	width: 300px;
	transition: right 0.5s ease-in-out; /* Smooth sliding animation */
	z-index: 9999; /* Ensures it stays on top of other content */
}
.slide-out-panel img{
	box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.2);
	width:300px
}

            /* Class added by JavaScript to trigger the slide-in */
            .slide-out-panel.active {
                right: 0;
            }

            /* Close button styling */
            .close-btn {
                position: absolute;
                top: 0px;
                right: 15px;
                cursor: pointer;
                font-size: 28px;
                font-weight: bold;
                background: none;
                border: none;
            }
			/* Mobile View Adjustment */
			@media screen and (max-width: 768px) {
				.slide-out-panel {
					width: 200px;
					right: -200px; /* Adjusting the off-screen starting point (width + padding) */
					top: 15%;      /* Optional: adjust height placement on mobile */
				}

				/* Keeps it perfectly snapped to the edge when active on mobile */
				.slide-out-panel.active {
					right: 0;
				}
				.slide-out-panel img{
					box-shadow: -2px 5px 15px rgba(0, 0, 0, 0.2);
					width:200px
            	}
			}
.content-section .wave-holder {
    width: 416px;
    margin-left: 0;
}
@media (min-width: 1400px) {
    .solution-intro.is-contact .image-holder {
        width: 577px!important;
    }
}
@media (min-width: 992px) {
    .lifecycle-section .wave-holder {
        width: 1440px!important;
    }
	.contact-section .address-holder {
        font-size: 20px!important;
    }
	.content-section .wave-holder {
        width: 516px;
        margin-left: -121px;
    }

}
@media (min-width: 1200px) {
    .solution-intro.is-contact .image-holder {
        right: 0!important;
    }
	.solution-intro .image-holder {
        right: 0!important;
    }
}
