/* Feature Overview Items */
.feature-overview-item {
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f42c1, #8a5fff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.2);
}

.feature-icon i {
    color: white;
}

.feature-overview-item h5 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Feature Detail Row */
.feature-detail-row {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Animation styling */
.animate__fadeInLeft, .animate__fadeInRight {
    animation-duration: 1s;
}
