/* Premium Design Enhancements */

/* Card hover effects - no zoom, just shadow */
.card-wrapper {
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.card-wrapper:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Improved typography */
.mbr-section-title {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.mbr-text {
    line-height: 1.7;
    color: #4b5563;
}

/* Hero section enhancement */
#header14-m {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Feature icons */
.iconwhyus img {
    transition: transform 0.3s ease;
}

.card-wrapper:hover .iconwhyus img {
    transform: scale(1.1);
}

/* Zoom entire item box in "Know Your Team" section - without affecting image display */
#content1-12 .item-wrapper {
    transition: transform 0.4s ease;
    cursor: pointer;
}

#content1-12 .item-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Better card content spacing */
.card-box {
    padding: 2rem 1.5rem;
}

.just-content-block {
    text-align: left !important;
    padding: 0 1rem;
    line-height: 1.8;
}

.tick-icon {
    margin-right: 0.5rem;
}