﻿/*=========================================================
  ENMODÜLER YAZILIM — NEDEN ENMODÜLER
=========================================================*/

.en-why-card {
    height: 100%;
    padding: 32px 26px;
    text-align: center;
    border-radius: var(--radius);
    background: var(--gray-100);
    transition: var(--transition);
}

    .en-why-card:hover {
        background: #fff;
        box-shadow: var(--shadow);
        transform: translateY(-4px);
    }

    .en-why-card .en-solution-icon {
        margin: 0 auto 18px;
    }

    .en-why-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .en-why-card p {
        color: #666;
        font-size: 15px;
        line-height: 1.7;
    }
