/* Features Css */
.features-box-wrapper a{
    width: 100%;
}
.features-ai-card {
    width: 100%;
    max-width: 100%;
    padding: 24px 32px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}
.features-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.features-icon-box {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #212529;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.features-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1em;
    color: #121212;
}
.features-right {
    width: 22px;
    height: 22px;
    position: relative;
    overflow: hidden;
}

.features-arrow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-arrow .icon-show,
.features-arrow .icon-hide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}