.creative-services-section {
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

/* glassmorphic / premium card container */
.what-we-provide {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    border-radius: 48px;
    box-shadow: 0 30px 60px -20px rgba(0, 32, 64, 0.25), 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* individual text block */
.what-we-provide-text {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 22px 16px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: transparent;
    border-radius: 32px;
}

.what-we-provide-text:hover {
    transform: translateY(-6px);
    background: rgba(66, 153, 225, 0.06);
}

.what-we-provide-text img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.08));
    transition: transform 0.25s ease;
}

.what-we-provide-text:hover img {
    transform: scale(1.05);
}

.what-we-provide-text h4 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1F2B48, #2A3E6E);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}
.what-we-provide-text p{
    font-size: 0.85rem;
    font-weight: 500;
}
/* elegant divider */
.boder {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
    margin: 0 8px;
}

/* video thumbnail container */
.what-we-provide-video {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    margin: 12px 20px 12px 12px;
    box-shadow: 0 18px 35px -12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 220px;
}

.what-we-provide-video img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    max-width: 280px;
}

.what-we-provide-video:hover img {
    transform: scale(1.05);
}

/* video play button */
.video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
    cursor: pointer;
}

.video a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.2s;
}

.video svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
    margin-left: 3px;
}

.video:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video:hover svg {
    transform: scale(1.05);
}

/* video thumbnail border effect */
.what-we-provide-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.video a:focus-visible {
    outline: 2px solid #2c7da0;
    outline-offset: 4px;
}

/* add shimmer effect for video on hover */
@keyframes softPulse {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.02);
    }
}

.what-we-provide-video:hover img {
    filter: brightness(1.02) contrast(1.02);
}