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



/*==================================================
    HERO
==================================================*/

.projects-hero{

    padding:160px 0 110px;

    background:
    linear-gradient(
        135deg,
        rgba(79,124,255,.08),
        rgba(0,212,255,.06)
    );

    position:relative;

    overflow:hidden;

}



.projects-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(79,124,255,.08);

    top:-280px;

    right:-220px;

}



.projects-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(0,212,255,.08);

    bottom:-180px;

    left:-140px;

}



.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

}



.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 22px;

    border-radius:999px;

    background:var(--surface);

    color:var(--primary);

    font-weight:700;

    box-shadow:var(--shadow);

    margin-bottom:28px;

}



.hero-content h1{

    font-size:clamp(2.8rem,5vw,4.8rem);

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}



.hero-content p{

    max-width:760px;

    color:var(--text-light);

    font-size:1.15rem;

    line-height:1.9;

}



/*==================================================
    FEATURED PROJECT
==================================================*/

.featured-project{

    padding:100px 0;

}



.featured-card{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:50px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:30px;

    overflow:hidden;

    box-shadow:var(--shadow);

}



.featured-image{

    min-height:500px;

    overflow:hidden;

}



.featured-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}



.featured-card:hover img{

    transform:scale(1.06);

}



.featured-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:55px;

}



.project-category{

    display:inline-block;

    width:max-content;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(79,124,255,.12);

    color:var(--primary);

    font-weight:700;

    font-size:.9rem;

    margin-bottom:22px;

}



.featured-content h2{

    font-size:2.5rem;

    line-height:1.2;

    margin-bottom:22px;

}



.featured-content p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:35px;

}



.project-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    width:max-content;

    padding:16px 30px;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    transition:.3s;

}



.project-button:hover{

    background:var(--primary-hover);

    transform:translateY(-4px);

}
/*==================================================
    SECTION TITLE
==================================================*/

.projects-section{

    padding:100px 0;

}



.section-title{

    text-align:center;

    margin-bottom:70px;

}



.section-title span{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(79,124,255,.10);

    color:var(--primary);

    font-weight:700;

    margin-bottom:18px;

}



.section-title h2{

    font-size:2.8rem;

    margin-bottom:18px;

}



/*==================================================
    PROJECTS GRID
==================================================*/

.projects-grid{

    display:grid;

    grid-template-columns:

        repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}



/*==================================================
    PROJECT CARD
==================================================*/

.project-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}



.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}



.project-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.45s;

}



.project-card:hover img{

    transform:scale(1.08);

}



.project-info{

    padding:28px;

}



.project-info .category{

    display:inline-block;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(79,124,255,.10);

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

    margin-bottom:18px;

}



.project-info h3{

    font-size:1.55rem;

    margin-bottom:16px;

    line-height:1.3;

}



.project-info p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:24px;

}



.project-info a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:700;

    transition:.3s;

}



.project-info a:hover{

    gap:16px;

}



/*==================================================
    PROJECT STATS
==================================================*/

.project-stats{

    padding:90px 0;

    background:var(--surface-2);

}



.stats-grid{

    display:grid;

    grid-template-columns:

        repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}



.stat-box{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

}



.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}



.stat-box h2{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:12px;

    font-weight:800;

}



.stat-box p{

    color:var(--text-light);

    font-size:1.05rem;

    line-height:1.7;

}
/*==================================================
    CALL TO ACTION
==================================================*/

.projects-cta{

    padding:110px 0;

}



.cta-box{

    text-align:center;

    padding:80px 60px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        #6C63FF
    );

    color:#fff;

    box-shadow:
    0 25px 60px rgba(79,124,255,.25);

}



.cta-box span{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    font-weight:700;

    margin-bottom:24px;

}



.cta-box h2{

    font-size:3rem;

    margin-bottom:22px;

}



.cta-box p{

    max-width:760px;

    margin:auto;

    line-height:1.9;

    opacity:.95;

    margin-bottom:40px;

}



.cta-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    border-radius:14px;

    background:#fff;

    color:var(--primary);

    font-weight:700;

    transition:.3s;

}



.cta-button:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.18);

}



/*==================================================
    FOOTER
==================================================*/

.footer{

    background:var(--surface);

    border-top:1px solid var(--border);

    padding-top:70px;

}



.footer-content{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:50px;

    padding-bottom:50px;

}



.footer-brand img{

    width:70px;

    margin-bottom:18px;

}



.footer-brand h3{

    margin-bottom:15px;

}



.footer-brand p{

    color:var(--text-light);

    line-height:1.8;

}



.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}



.footer-links h4,

.footer-social h4{

    margin-bottom:18px;

}



.footer-links a{

    color:var(--text-light);

    transition:.3s;

}



.footer-links a:hover{

    color:var(--primary);

    padding-left:8px;

}



.social-icons{

    display:flex;

    gap:15px;

}



.social-icons a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--surface-2);

    border:1px solid var(--border);

    transition:.3s;

}



.social-icons a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);

}



.footer-bottom{

    border-top:1px solid var(--border);

    padding:24px;

    text-align:center;

    color:var(--text-light);

}



/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1000px){

    .featured-card{

        grid-template-columns:1fr;

    }

    .featured-image{

        min-height:320px;

    }

}



@media(max-width:768px){

    .projects-hero{

        padding:120px 0 80px;

    }

    .hero-content h1{

        font-size:2.5rem;

    }

    .featured-content{

        padding:35px;

    }

    .featured-content h2{

        font-size:2rem;

    }

    .section-title h2{

        font-size:2.2rem;

    }

    .projects-grid{

        grid-template-columns:1fr;

    }

    .cta-box{

        padding:55px 30px;

    }

    .cta-box h2{

        font-size:2.2rem;

    }

}



@media(max-width:500px){

    .hero-content h1{

        font-size:2rem;

    }

    .project-info{

        padding:22px;

    }

    .stat-box{

        padding:30px 20px;

    }

    .cta-box{

        padding:45px 20px;

    }

}