.custom-alert {
    border-radius: 50px!important;
    padding: 10px;
}
/* common-btn */
.common-btn {
    background: #5bccf6;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 0;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    text-transform: capitalize;
    border-radius: 4px;
}
.common-btn::before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform, opacity;
	transition-property: transform, opacity;
}
.common-btn:hover::before {
	opacity: 1;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}
.common-btn:hover{
	color:#fff;
	transform:translateY(-5px);
}
.card-body.verify-body {
    padding: 20px 15px;
    background: #e0eef3;
}

.card-header.verify-header {
    font-weight: 500;
    font-size: 16px;
}

.request-btn {
    background: #3eb2e9;
    color: white;
    border-radius: 15px;
    border: none;
    margin-top: 10px;
    padding: 3px 15px;
}
.request-btn:hover {
    color: #fff;
    background: #0578af;
	transition: .3s all;
}

.invalid-feedback{
    color: red !important;
    text-decoration: none !important;
}


.success-msg {
    position: fixed;
    left: 20px; /* Adjust as needed */
    bottom: 40px; /* Adjust as needed */
    z-index: 1111;
    opacity: 0;
    animation: slideInFromBottom 4s ease-in-out forwards;
}

.image-ratio img{
    height: 80px;
    object-fit: contain;
}

.product-review{
    color: #1d1a9b;
    font-size: 18px;
}

.page-header {
    border: 1px solid #ebebeb;
}

.star-light {
    color: #c7cbd4;
}

 /* Product Testimonial Section */
.testimonial-box-container{ display: flex; justify-content: center; align-items: center; flex-wrap: wrap; width:100%; margin: 20px 0; }
#testimonials{ display: flex; justify-content: center; align-items: center; flex-direction: column; width:100%; }
.testimonial-box-container .testimonial-heading{ letter-spacing: 1px; margin: 30px 0px; padding: 10px 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.testimonial-box-container .testimonial-heading span{ font-size: 1.3rem; color: #252525; margin-bottom: 10px; letter-spacing: 2px; text-transform: uppercase; }
.testimonial-box-container .testimonial-box{ background-color: #ffffff; margin: 15px 0; cursor: pointer; width: 100%; border-bottom: 1px solid #e5e5e5; padding: 20px; }
.testimonial-box-container .testimonial-box span{ font-size: 13px; color: #979797; }
.testimonial-box-container .profile-img{ width:50px; height: 50px; border-radius: 50%; overflow: hidden; margin-right: 10px; }
.testimonial-box-container .profile-img img{ width: 100%; height: 100%; object-fit: cover; object-position: center; }
.testimonial-box-container .profile{ display: flex; align-items: center; }
.testimonial-box-container .name-user{ display: flex; flex-direction: column; }
.testimonial-box-container .name-user a > h3 { color: #3d3d3d; font-size: 17px; font-weight: 600; }
.testimonial-box-container .name-user span{ color: #979797; font-size: 0.8rem; }
.testimonial-box-container .reviews .pst{ font-size: 18px; }
.testimonial-box-container .box-top{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.testimonial-box-container .client-comment p{ font-size: 0.9rem; color: #4b4b4b; }

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px); /* Start below the view */
    }
    10% {
        opacity: 1;
        transform: translateY(0); /* Move to its final position */
    }
    90% {
        opacity: 1;
        transform: translateY(0); /* Stay in place */
    }
    100% {
        opacity: 0;
        transform: translateY(100px); /* Slide out below the view */
    }
}