*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(
        -45deg,
        #0f172a,
        #1e293b,
        #1e40af,
        #7c3aed
    );
    background-size:400% 400%;
    animation:bgMove 15s ease infinite;
    overflow-x:hidden;
}

@keyframes bgMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

body::before{
    content:"";
    position:fixed;
    width:450px;
    height:450px;
    background:#2563eb;
    border-radius:50%;
    filter:blur(150px);
    top:-150px;
    left:-150px;
    opacity:.35;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#7c3aed;
    border-radius:50%;
    filter:blur(150px);
    bottom:-200px;
    right:-200px;
    opacity:.35;
    z-index:-1;
}

.projects-container{
    max-width:1500px;
    margin:80px auto;
    padding:0 20px;
}

.project-card{
    display:flex;
    align-items:center;
    gap:40px;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);

    border-radius:30px;
    overflow:hidden;

    margin-bottom:60px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.15);

    transition:.5s ease;

    opacity:0;
    transform:translateY(50px);
}

.project-card.show{
    opacity:1;
    transform:translateY(0);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
}

.project-image{
    flex:1;
}

.project-image img{
    width:100%;
    min-height:420px;
    object-fit:cover;
    display:block;
    transition:.8s;
}

.project-card:hover img{
    transform:scale(1.05);
}

.project-content{
    flex:1.2;
    padding:40px;
}

.project-type{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:20px;
}

.internship{
    background:#dbeafe;
    color:#1d4ed8;
}

.architecture{
    background:#fef3c7;
    color:#b45309;
}

.consulting{
    background:#dcfce7;
    color:#15803d;
}

.ai{
    background:#ede9fe;
    color:#7c3aed;
}

.project-content h2{
    font-size:2rem;
    color:#0f172a;
    margin-bottom:20px;
}

.project-content p{
    color:#475569;
    line-height:1.8;
    margin-bottom:25px;
}

.tech-stack{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tech-stack span{
    background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );
    color:white;
    padding:10px 16px;
    border-radius:50px;
    font-size:.85rem;
}

.project-links{
    margin-top:30px;
}

.project-links a{
    display:inline-block;
    text-decoration:none;
    color:white;
    background:linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
    );
    padding:14px 28px;
    border-radius:12px;
    margin-right:12px;
    font-weight:600;
    transition:.4s;
}

.project-links a:hover{
    transform:translateY(-4px);
}

@media(max-width:992px){

    .project-card{
        flex-direction:column;
    }

    .project-image img{
        min-height:280px;
    }

    .project-content{
        padding:25px;
    }

    .project-content h2{
        font-size:1.6rem;
    }
}