.ocb-features-banner {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ocb-features-banner__container {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.ocb-features-banner__header {
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.ocb-features-banner__title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.4;
    color: #04255C;
}

.ocb-features-banner__content-text {
    font-size: 19px;
    line-height: 1.6;
    color: #52668d;
    font-weight: 400;
}

/* Main Buttons */
.ocb-features-banner__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ocb-features-banner__btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
}

.ocb-features-banner__btn--primary {
    background-color: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.ocb-features-banner__btn--primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.ocb-features-banner__btn--secondary {
    background-color: #fff;
    color: #3b82f6;
    border: 1px solid #dbeafe;
}

.ocb-features-banner__btn--secondary:hover {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    transform: translateY(-2px);
}

.ocb-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
}

.ocb-features-banner__btn--secondary .ocb-btn-icon {
    background: #3b82f6;
    color: #fff;
}

/* Banner Image & Video */
.ocb-features-banner__image, .ocb-features-banner__video {
    display: flex;
    justify-content: center;
    max-width: 1124px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    aspect-ratio: 1.9 / 1;
    border-radius: 10px;    
    box-shadow: 0 0 14px 0 rgba(59, 130, 246, 0.20);
    background: #04255C;
    position: relative;
    overflow: hidden;
}

.ocb-features-banner__video {
    cursor: pointer;
}

.ocb-features-banner__image::after, .ocb-features-banner__video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid #FFF;
    z-index: 2; /* Still below play button (z=3) but above cover image (z=1) */
    pointer-events: none;
}

.ocb-features-banner__video::after {
    background-color: rgba(8, 68, 151, 0.9);
}

.ocb-features-banner__image::after {
    background-color: transparent;
}

.ocb-features-banner__image img, .ocb-features-banner__video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ocb-features-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Below the color overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ocb-features-banner__overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.ocb-features-banner__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
}

.ocb-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3; /* Top level */
    transition: all 0.3s ease;
    pointer-events: none;
}

.ocb-video-play-btn svg {
    margin: 0;
}

.ocb-features-banner__video.is-playing .ocb-video-play-btn,
.ocb-features-banner__video.is-playing .ocb-features-banner__video-overlay,
.ocb-features-banner__video.is-playing .ocb-features-banner__overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.ocb-features-banner__video.is-playing::after {
    background-color: transparent !important;
}

.ocb-features-banner__video video {
    position: relative;
    z-index: 1; /* Above container bg */
}

.ocb-features-banner__video:hover .ocb-video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

/* Feature Pills */
.ocb-features-banner__pills {
    margin-top: 60px;
}

.ocb-features-banner__pills-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 950px;
    margin: 0 auto;
}

.ocb-features-banner__pill {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 100px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
}

.ocb-features-banner__pill:hover {
    background-color: #fff;
    border-color: #3b82f6;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.ocb-features-banner__pill.is-active {
    background-color: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.ocb-features-banner__pill.is-active .ocb-pill-icon svg {
    fill: #fff;
    color: #fff;
}

.ocb-pill-icon {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #3b82f6;
}

.ocb-pill-icon svg {
    width: 20px;
    height: 20px;
    fill: #3b82f6;
}

/* Footer text */
.ocb-features-banner__footer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.ocb-much-more-link, .ocb-much-more-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 100px;
    cursor: pointer;
}

.ocb-much-more-icon-wrap {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ocb-much-more-icon-wrap svg, .ocb-much-more-icon-wrap i {
    width: 40px;
    height: 40px;
    fill: #3b82f6;
    color: #3b82f6;
}

.ocb-much-more-link:hover {
    transform: translateY(-2px);
}

@media (max-width: 1024px){
    .ocb-features-banner{
        padding: 40px 0;
    }
    .ocb-features-banner__title{
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .ocb-features-banner {
        padding: 30px 0;
    }
    .ocb-features-banner__title {
        font-size: 24px;
    }

    .ocb-features-banner__actions{
        margin-bottom: 30px;
    }

    .ocb-features-banner__btn {
        padding: 8px 15px;
        font-size: 16px;
    }

    .ocb-btn-icon{
        width: 25px;
        height: 25px;
    }

    .ocb-features-banner__image img, .ocb-features-banner__video video {
        max-width: 100%;
    }
    .ocb-features-banner__pill {
        padding: 10px 20px;
        font-size: 13px;
    }
}
