/* Main container */
.duet-feature-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px; /* space between items */
    padding: 50px 0;
    flex-wrap: wrap; /* allows responsive wrapping */
}

/* Individual item */
.duet-feature-item {
    text-align: center;
    color: #09b884; /* Primary blue */
    min-width: 140px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* FontAwesome icon */
.duet-feature-item i {
    font-size: 50px; /* Bigger like your screenshot */
    margin-bottom: 12px;
    display: block;
}

/* Text label */
.duet-feature-text {
    font-size: 16px;
    font-weight: 600;
    color: #09b884;
    display: block;
    letter-spacing: 0.2px;
}

/* Hover effect */
.duet-feature-item:hover {
    transform: translateY(-6px);
    color: #1e40af;
}

.duet-feature-item:hover .duet-feature-text {
    color: #1e40af;
}

/* Responsive: stack neatly on small screens */
@media (max-width: 768px) {
    .duet-feature-section {
        gap: 40px;
    }
    .duet-feature-item i {
        font-size: 42px;
    }
    .duet-feature-text {
        font-size: 14px;
    }
}
