/* Flip Campaign Box Styles */
.fcb-flipbox-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fcb-flipbox-inner {
    position: relative;
    width: 100%;
    max-width: 400px;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}
.fcb-flipbox-inner:hover {
    transform: rotateY(180deg);
}
.fcb-left:hover {
    transform: rotateY(-180deg);
}
.fcb-front, .fcb-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}
.fcb-front {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.fcb-front-overlay {
    width: 100%;
    background: rgba(0,0,0,0.5);
    text-align: center;
    padding: 15px;
}
.fcb-front-overlay h3 {
    color: #fff;
    margin: 0;
}
.fcb-back {
    background: #fff;
    color: #333;
    transform: rotateY(180deg);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.fcb-btn {
    background: #4e7abd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
.fcb-btn:hover {
    background: #3b659d;
}
