.review-gallery-heading,
.review-video-heading {
    text-align: center;
}

.review-gallery-heading-title,
.review-video-heading-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.review-gallery-heading-description,
.review-video-heading-description {
    color: #808080;
    margin-bottom: 0.75rem;
}

.review-gallery {
    margin-top: 6rem;
}

.common-reviews {
    display: none;
}

.video-card {
    max-width: 28rem;
    width: 100%;
    background-color: #ffffff;
    border-radius: 0.875rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.video-card:hover {
    border-color: #9ca3af;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.video-card .video-img {
    position: relative;
    overflow: hidden;
}

.video-card .video-img img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease-in-out;
}

.video-card:hover .video-img img {
    transform: scale(1.03);
}

.video-card .video-img a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 10;
}

.video-card .video-img a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
    border-radius: 50%;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    30% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.video-card .video-img a svg {
    border: 2px solid;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.3) !important;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all ease 0.4s;
    padding: 12px;
    box-sizing: border-box;
}

.video-card .video-img a:hover svg {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.45) !important;
}

.video-card .video-title {
    font-size: 0.9rem;
    color: #1a202c;
    padding: 1rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
    font-weight: 500
}

.review-video {
    margin-bottom: 70px;
}

.cert {
    background-color: #f7eae1
}

.cert-box img {
    height: 80px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.slide-gallery {
    display: none !important;
}