/* Unique Contact Image Box */
.contact-img-box {
    width: 122px;
    height: 125px;
}

/* Unique Slanted Name Tag */
.contact-name-tag {
    background: #000;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}
.contact-pagtestimponial{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
}
.contact-video-overlay {
    width: 86px;
    height: 86px;
    z-index: 10;
    background-color: #fff;
    border-radius: 100px;
    left: 105% !important;
    top: 97% !important;
}
.contact-rotate {
    animation: contact-rotate-anim 12s linear infinite;
    transform-origin: center;
}

@keyframes contact-rotate-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-play-triangle {
    position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%);
    width: 0; height: 0; border-top: 10px solid transparent; 
    border-bottom: 10px solid transparent; border-left: 15px solid #dc3545;
}

/* Independent Modal Styling */
.contact-modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 10000; align-items: center; justify-content: center;
}
.contact-modal-content { position: relative; width: 90%; max-width: 750px; }
.contact-modal-close { position: absolute; top: -40px; right: 0; color: #fff; font-size: 35px; cursor: pointer; }