    .education-section {
        padding: 60px 10%;
        text-align: center;
    }

    .education-section h2 {
        font-size: 36px;
        margin-bottom: 10px;
        color: #222;
    }

    .education-section p {
        color: #666;
        margin-bottom: 40px;
    }

    .card-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .card {
        position: relative;
        background: #fff;
        padding: 30px 20px;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transition: all 0.4s ease;
        overflow: hidden;
    }

    /* Gradient hover overlay */
    .card::before {
        content: "";
        position: absolute;
        width: 150%;
        height: 150%;
        top: -100%;
        left: -100%;
        background: linear-gradient(135deg, #007BFF, #00c6ff);
        transform: rotate(25deg);
        transition: 0.5s;
        z-index: 0;
    }

    .card:hover::before {
        top: -20%;
        left: -20%;
    }

    .card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .card-content {
        position: relative;
        z-index: 1;
    }

    .card img {
        width: 65px;
        margin-bottom: 15px;
        transition: transform 0.4s ease-in-out;
    }

    /* Icon animation */
    .card:hover img {
        /* transform: rotate(360deg) scale(1.2); */
        animation: bounce 0.6s ease-in-out;
    }

    @keyframes bounce {
        0% { transform: scale(1); }
        50% { transform: scale(1.3); }
        100% { transform: scale(1); }
    }

    .card h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #333;
        transition: color 0.3s;
    }

    .card p {
        font-size: 15px;
        color: #555;
        line-height: 1.5;
        transition: color 0.3s;
    }

    /* Text color change on hover */
    .card:hover h3,
    .card:hover p {
        color: #fff;
    }

    /* 📱 Responsive */
    @media (max-width: 992px) {
        .card-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .card-container {
            grid-template-columns: 1fr;
        }
    }