/* ==========================================
   PROJECTS PAGE
========================================== */

/* ==========================================
   PAGE BANNER
========================================== */

.page-banner{

    position:relative;
    overflow:hidden;
    padding:120px 0 90px;
    text-align:center;
    background:linear-gradient(135deg,#0A3D91,#2563EB);

}

.page-banner::before{

    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    top:-180px;
    right:-140px;

}

.page-banner::after{

    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-120px;
    left:-100px;

}

.page-banner .container{

    position:relative;
    z-index:2;

}

.hero-badge{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    border-radius:50px;
    background:rgba(255,255,255,.92);
    color:#0A3D91;
    font-size:18px;
    font-weight:700;

}

.page-banner h1{

    color:#fff;
    font-size:60px;
    font-weight:700;
    line-height:1.2;
    margin:28px 0 20px;

}

.page-banner p{

    max-width:850px;
    margin:auto;
    color:rgba(255,255,255,.92);
    font-size:19px;
    line-height:1.9;

}


/* ==========================================
   PROJECTS SECTION
========================================== */

.projects-section{

    padding:100px 0;

}

.projects-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.project-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #E5E7EB;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;

}

.project-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.45s ease;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}

.project-content{

    padding:28px;

}

.project-type{

    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#EAF2FF;
    color:#0A3D91;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;

}

.project-content h3{

    font-size:28px;
    margin-bottom:15px;

}

.project-content p{

    color:#6B7280;
    line-height:1.8;
    margin-bottom:22px;

}

.project-info{

    display:flex;
    flex-direction:column;
    gap:12px;

}

.project-info li{

    display:flex;
    align-items:center;
    gap:10px;
    color:#374151;

}

.project-info i{

    color:#0A3D91;
    width:22px;

}

/* ==========================================
   PREMIUM HOVER EFFECTS
========================================== */

.project-card{
    transition:all .35s ease;
}

.project-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.project-image{
    overflow:hidden;
}

.project-image img{
    transition:transform .6s ease;
}

.project-card:hover .project-image img{
    transform:scale(1.08);
}

.project-content h3{
    transition:.3s ease;
}

.project-card:hover .project-content h3{
    color:#0A3D91;
}