/* Icon Box Styles */
.ws-zmnd-icon-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.ws-zmnd-icon-box-content {
    width: 100%;
    text-align: center;
}

/* Icon Styles */
.ws-zmnd-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    width: 1em;
    height: 1em;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

/* View Styles */
.ws-zmnd-view-stacked .ws-zmnd-icon {
    padding: .5em;
    background-color: #818a91;
    color: #fff;
}

.ws-zmnd-view-framed .ws-zmnd-icon {
    padding: .5em;
    border: 3px solid #818a91;
    color: #818a91;
    background-color: transparent;
}

/* Shape Styles */
.ws-zmnd-shape-circle .ws-zmnd-icon {
    border-radius: 50%;
}

.ws-zmnd-shape-square .ws-zmnd-icon {
    border-radius: 0;
}

/* Title Styles */
.ws-zmnd-icon-box-title {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Description Styles */
.ws-zmnd-description-text {
    margin-bottom: 15px;
}

.ws-zmnd-icon-box-description {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #6c757d;
}

/* List Styles */
.ws-zmnd-icon-box-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #333333;
}

.ws-zmnd-icon-box-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ws-zmnd-icon-box-list-item:last-child {
    margin-bottom: 0;
}

.ws-zmnd-icon-box-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1em;
    color: #4054b2;
}

.ws-zmnd-icon-box-list-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ws-zmnd-icon-box-list-text {
    flex: 1;
}

/* Hover Effects */
.ws-zmnd-icon-box-wrapper:hover {
    transform: translateY(-5px);
}

.ws-zmnd-icon-box-wrapper:hover .ws-zmnd-icon {
    transform: scale(1.1);
}

/* Link Styles */
.ws-zmnd-icon-box-wrapper a {
    text-decoration: none;
    color: inherit;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .ws-zmnd-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .ws-zmnd-icon-box-title {
        font-size: 1.25rem;
    }

    .ws-zmnd-icon-box-description {
        font-size: 0.9rem;
    }
}
