/* Features 2 Section Styling */
.features-2 {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Feature Items */
.feature-item {
    margin-bottom: 40px;
}

.feature-content-wrap {
    gap: 20px;
}

/* Feature Icon */
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 32px;
    flex-shrink: 0;
}

/* Feature Content */
.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
}

/* Image Styling */
.features-2 .image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
}

.features-2 .profile {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.features-2 .profile img {
    max-width: 90%;
    height: auto;
    display: block;
    /*border-radius: 20px; !* rounded corners *!*/
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); !* soft shadow *!*/
    /*border: 1px solid #dee2e6; !* light border *!*/
    /*background-color: white; !* fallback bg *!*/
    object-fit: contain;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.features-2 .profile img:hover {
    transform: scale(1.03) translateY(-5px);
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);*/
}

.features-2 .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Features Responsive */
@media (min-width: 992px) {
    .features-left .feature-content-wrap {
        flex-direction: row-reverse;
        justify-content: flex-start;
        text-align: right;
    }

    .features-right .feature-content-wrap {
        justify-content: flex-start;
        text-align: left;
    }

    #features-2 .profile img {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .features-2 {
        padding: 60px 0;
    }

    .feature-content-wrap {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .feature-icon {
        margin: 0 auto 15px;
    }

    .features-2 .row {
        flex-direction: column;
    }

    .features-2 .image-column {
        order: 1;
        margin-bottom: 40px;
    }

    .features-2 .features-left {
        order: 2;
    }

    .features-2 .features-right {
        order: 3;
    }

    .feature-item {
        margin-bottom: 30px;
    }

    #features-2 .profile img {
        margin-left: 0;
        margin-bottom: 0;
        max-width: 70%;
    }
}

@media (max-width: 575px) {
    #features-2 .profile img {
        max-width: 80%;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }
}
