.logo-slot {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.packet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    animation: moveDown 1.5s linear infinite;
}

.video-style-two {
    min-height: 600px;
    padding-top: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    overflow: visible;
    transition: min-height 0.5s ease, padding-top 0.5s ease, margin-top 0.5s ease;
}

.video-style-two .auto-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.video-style-two .content-column {
    display: flex;
    align-items: center;
}

.video-style-two .content-box {
    width: 100%;
}

.video-style-two .inline-video-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.video-style-two .bg-layer {
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-style-two .inline-video-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-style-two.video-active {
    min-height: 700px;
    margin-top: 0;
    padding-top: 0;
}

.video-style-two.video-active .bg-layer {
    opacity: 0;
    visibility: hidden;
}

.video-style-two.video-active .inline-video-layer {
    opacity: 1;
    visibility: visible;
    top: 0;
    height: 100%;
    transform: translateY(0);
    pointer-events: auto;
}

.video-style-two.video-active .video-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.video-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ph-play {
    font-size: 3rem;
    line-height: revert-layer;
}

@media (max-width: 991px) {
    .video-style-two {
        display: block;
        min-height: auto;
    }

    .video-style-two .inline-video-layer {
        width: 100%;
        height: 360px;
    }

    .video-style-two.video-active {
        min-height: 980px;
        margin-top: 0;
        padding-top: 440px;
    }

    .video-style-two.video-active .inline-video-layer {
        top: 0;
        height: 360px;
    }
}

@media (max-width: 576px) {
    .video-style-two .inline-video-layer {
        height: 240px;
    }

    .video-style-two.video-active {
        min-height: 640px;
        padding-top: 260px;
    }

    .video-style-two.video-active .inline-video-layer {
        height: 240px;
    }
}

/* ---------- Card ---------- */
.testimonials-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 28px 28px 24px;
    display: flex !important; /* override slick inline-block */
    flex-direction: column;
    gap: 18px;
    height: 100%;
    transition: border-color .25s, transform .25s;
}

/* ---------- Header row ---------- */
.testimonials-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

/* ---------- Avatar ---------- */
.testimonials-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonials-card__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* ---------- Name / Job ---------- */
.testimonials-card__name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.testimonials-card__job {
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.4;
    display: block;
}

/* ---------- Rating badge ---------- */
.testimonials-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: white;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.testimonials-card__badge i {
    font-size: 14px;
}

/* ---------- Quote text ---------- */
.testimonials-card__text {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

/* ---------- Stars row ---------- */
.testimonials-card__stars {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4px;
    font-size: 16px;
}

.text-warning-400 {
    color: #e2c94e !important;
}

.text-neutral-600 {
    color: #4b5563 !important;
}

/* ---------- Section heading on dark bg ---------- */
.testimonials-two .section-heading h2 {
    color: #fff;
}

.testimonials-two .section-heading p {
    color: #9ca3af;
}

/* ---------- Slick slide gap fix ---------- */
.testimonials-two-slider .slick-slide {
    padding: 0 10px;
}

.testimonials-two-slider .slick-list {
    margin: 0 -10px;
}

.hover-text-main:hover {
    background-color: white !important;
}
