/* ==========================================================================
Image Box Widget - Start
========================================================================== */

.imagebox-wrap {
    display: block;
}

.imagebox-container {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.imagebox-image {
    margin-bottom: 20px;
}

.imagebox-image img {
    width: 100%;
    height: auto;
    display: inline-block;
    max-width: 100%;
}

.imagebox-text {
    color: #14133b;
    font-size: 15px;
    line-height: 1.6;
}

.imagebox-text p {
    margin-bottom: 15px;
}

.imagebox-text p:last-child {
    margin-bottom: 0;
}

/* Hover Effect */
.imagebox-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 767px) {
    .imagebox-container {
        padding: 20px;
    }
    
    .imagebox-image {
        margin-bottom: 15px;
    }
}

/* ==========================================================================
Image Box Widget - End
========================================================================== */
