.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: #F4F4F4;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%); */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.center-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.center-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3); */
}

.center-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.center-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        gap: 30px;
    }

    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .center-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .features-column {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .center-image-wrapper {
        border-radius: 16px;
    }
}


.featuresbackground{
    background-color: #fff;
    padding-bottom: 50px;
}