*{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif
    }
    body{
        background: #0f172a;
        color: #e5e7eb;
    }
    header{
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        animation: fadeIn 1.2s ease;
    }

    @keyframes fadeIn{
        from{
            opacity: 0;
            transform: translateY(20px);
        }
        to{
            opacity: 1;
            transform: translateY(0);
        }
    }
    header h1{
        font-size: 3rem;
        margin-bottom: 10px;
    }
    header p{
        color: #94a3b8;
        max-width: 500px;
    }
    section{
        padding: 80px 10%;
    }
    .about h2,
    .projects h2,
    .contact h2{
        margin-bottom: 20px;
        font-size: 2rem;
    }
    .about p{
        max-width: 700px;
        line-height: 1.6;
        color: #cbd5f5;
    }
    .projects p{
        color: #94a3b8;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    .contact-icons {
        display: flex;
        gap: 25px;
        margin-top: 20px;
        
    }
    .contact-icons a{
        font-size: 2rem;
        color: #e5e7eb;
        transition: transform 0.3s ease,color 0.3s ease;
    }
    .contact-icons a:hover {
        color: #38bdf8;
        transform: scale(1.2);

        
    }
    footer{
        text-align: center;
        padding: 20px;
        font-size: 0.9rem;
        color: #64748b;
    }
    .project-cards{
        display: flex;
        gap: 30px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .card{
        background: #020617;
        padding: 25px;
        border-radius: 12px;
        flex: 1 1 250px;
    }
    .card h3{
        margin-bottom: 10px;
    }
    .card p{
        color: #94a3b8;
    }
    h1,h2{
        transition: color 0.3s ease, transform 0.3s ease;
    }
    h1:hover,
    h2:hover{
        color: #38bdf8;
        transform: translateY(-2px);
    }
    .project-list{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    .project-card{
        background: #020617;
        padding: 25px;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .project-card h3{
        margin-bottom: 10px;
        color: #e5e7eb;
    }
    .project-card p{
        color: #94a3b8;
        line-height: 1.5;
    }
    .project-card a{
        color: #94a3b8;
        line-height: 1.5;
    }
    .project-card:hover{
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        background-color: #111428;
    }
    .btn{
        margin-top: 30px;
        display: inline-block;
        padding: 14px 30px;
        background: #38bdf8;
        color: #020617;
        font-weight: bold;
        border-radius: 30px;
        text-decoration: none;
        transition: 0.3s ease;
    }
    .btn:hover{
        background: #0ea0e9;
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(56,189,248,0.5);
    }

