/* ===========================
   Features Section Overrides
   =========================== */

/* Make the icon container circular instead of square */
.single-features-box .feat-icon {
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The ::before pseudo square border — also make it circular */
.single-features-box .feat-icon::before {
    border-radius: 50% !important;
    border-width: 3px !important;
}

/* Icon font size & centering inside circle */
.single-features-box .feat-icon i {
    font-size: 36px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

/* Hover animation still works from style.css */