﻿.DotNetPagebody {
    background: #E6F0FF;
}

.hero {
    background: lightgray;
    color: white;
    padding: 70px 20px;
    border-radius: 0 0 30px 30px;
}

.project-card {
    border: none;
    border-radius: 16px;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    height: 100%;
    background: #fff;
}

    .project-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: #eef2ff;
    color: #4f46e5;
    display: inline-block;
}

.project-card p {
    margin-bottom: 12px;
}

.project-card ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

    .project-card ul li {
        font-size: 13px;
        color: #6b7280;
        margin-bottom: 4px;
    }
