/* ============================================
   Powerful Features Section - CSS
   ============================================ */

/* Grid */
.powerful-features-section .features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
}

/* Feature Item */
.powerful-features-section .feature__item {
    display: flex;
    flex-direction: column;
}

/* Feature Image */
.powerful-features-section .feature__image {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    margin-bottom: 2.4rem;
}

.powerful-features-section .feature__image::before {
    content: '';
    display: block;
    padding-top: 72.88%;
}

.powerful-features-section .feature__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Title */
.powerful-features-section .feature__title {
    margin-bottom: 1rem;
}

/* Feature Description */
.powerful-features-section .feature__description {
    line-height: 1.7;
}

/* ============================================
   Powerful Features Section - Responsive CSS
   ============================================ */

.geenbg-text{ margin: 54px 0 0 0; display: block; width: 100%; text-align: center; padding: 12px 30px; background: rgba(60, 182, 74, 0.1); font-size: 20px; font-weight: 500; border-radius: 100px; color: #3CB64A; }
@media (max-width: 1599px) {
    .powerful-features-section .features__grid {
        gap: 2.4rem;
    }
}

@media (max-width: 1439px) {
    .powerful-features-section .features__grid {
        gap: 2rem;
    }
    .powerful-features-section .feature__image {
        margin-bottom: 2rem;
    }
     .geenbg-text {font-size: 18px;}
}

@media (max-width: 1199px) {
    .powerful-features-section .features__grid {
        gap: 2.4rem;
    }
     .geenbg-text {font-size: 16px;}
}

@media (max-width: 991px) {
    .powerful-features-section .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem;
    }
}

@media (max-width: 767px) {
    .powerful-features-section .features__grid {
        gap: 2rem;
    }
    .powerful-features-section .feature__image {
        margin-bottom: 1.6rem;
        border-radius: 1.2rem;
    }
    .powerful-features-section .feature__title {
        margin-bottom: 0.8rem;
    }
     .geenbg-text {font-size: 15px; margin: 32px 0 0 0;}
}

@media (max-width: 576px) {
    .powerful-features-section .features__grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
}

