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

.projects-hero{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(rgba(20,35,82,.82),rgba(20,35,82,.82)),
    url("../images/hero.jpg") center center/cover no-repeat;

}

.projects-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.35)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

}

.hero-subtitle{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

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

    backdrop-filter:blur(10px);

    color:var(--secondary);

    font-size:17px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.hero-content h1{

    color:#fff;

    font-size:72px;

    line-height:1.25;

    font-weight:900;

    margin-bottom:30px;

}

.hero-content p{

    color:rgba(255,255,255,.90);

    font-size:20px;

    line-height:2;

    margin:auto;

    max-width:760px;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    background:transparent;

    transition:.35s;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}
/*==================================================
                PROJECT FILTER
==================================================*/

.project-filter{

    padding:100px 0 60px;

    background:#fff;

}

.filter-wrapper{

    margin-top:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.filter-btn{

    padding:14px 32px;

    border:none;

    border-radius:50px;

    background:#f3f5f9;

    color:var(--primary);

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.filter-btn:hover{

    background:var(--secondary);

    color:#fff;

    transform:translateY(-4px);

}

.filter-btn.active{

    background:var(--secondary);

    color:#fff;

    box-shadow:0 15px 35px rgba(212,160,23,.35);

}


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

.featured-project{

    padding:80px 0;

    background:var(--section);

}

.featured-grid{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:60px;

    align-items:center;

}

.featured-image{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.featured-image img{

    width:100%;

    height:560px;

    object-fit:cover;

    transition:.6s;

}

.featured-image:hover img{

    transform:scale(1.08);

}

.featured-content span{

    display:inline-block;

    color:var(--secondary);

    font-size:17px;

    font-weight:700;

    margin-bottom:18px;

}

.featured-content h2{

    color:var(--primary);

    font-size:44px;

    line-height:1.4;

    margin-bottom:25px;

}

.featured-content p{

    color:var(--light);

    line-height:2;

    font-size:17px;

    margin-bottom:30px;

}

.featured-content ul{

    list-style:none;

    margin:0 0 35px;

    padding:0;

}

.featured-content ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:var(--text);

    font-size:17px;

}

.featured-content ul li i{

    color:var(--secondary);

    font-size:18px;

}

.featured-content .btn{

    padding:16px 36px;

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

.project-stats{
    padding:100px 0;
    background:#162757;
}

.stats-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(220px,1fr));
    gap:25px;
    align-items:stretch;
}

.stat-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:40px 20px;
    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.stat-box i{
    font-size:38px;
    color:#d4a017;
    margin-bottom:18px;
}

.stat-box h3{
    color:#fff;
    font-size:38px;
    margin:10px 0;
}

.stat-box p{
    color:#f5f5f5;
}

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

@media(max-width:992px){

    .featured-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .featured-content{

        text-align:center;

    }

    .featured-content ul li{

        justify-content:center;

    }

}

@media(max-width:768px){

    .filter-wrapper{

        gap:12px;

    }

    .filter-btn{

        width:100%;

    }

    .featured-image img{

        height:340px;

    }

    .featured-content h2{

        font-size:34px;

    }

}
/*==================================================
                PROJECTS GALLERY
==================================================*/

.projects-gallery{

    padding:100px 0;

    background:#fff;

}

.projects-grid{

    display:grid;

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

    gap:35px;

}


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

.project-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

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

    transition:.45s;

    position:relative;

}

.project-card:hover{

    transform:translateY(-12px);

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

}


/*==============================
        IMAGE
==============================*/

.project-image{

    position:relative;

    overflow:hidden;

    height:280px;

}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

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

    transform:scale(1.12);

}


/*==============================
        CATEGORY
==============================*/

.project-category{

    position:absolute;

    top:20px;

    right:20px;

    background:var(--secondary);

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

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

}


/*==============================
        OVERLAY
==============================*/

.project-overlay{

    position:absolute;

    inset:0;

    background:rgba(17,33,75,.72);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.45s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay a{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    color:var(--primary);

    font-size:22px;

    transition:.35s;

}

.project-overlay a:hover{

    background:var(--secondary);

    color:#fff;

    transform:rotate(45deg);

}


/*==============================
        CONTENT
==============================*/

.project-content{

    padding:30px;

}

.project-content h3{

    color:var(--primary);

    font-size:25px;

    margin-bottom:15px;

    transition:.35s;

}

.project-card:hover h3{

    color:var(--secondary);

}

.project-content p{

    color:var(--light);

    line-height:2;

    margin-bottom:25px;

}


/*==============================
        INFO
==============================*/

.project-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #ececec;

    padding-top:18px;

    margin-bottom:22px;

}

.project-info span{

    color:#777;

    font-size:15px;

}

.project-info i{

    color:var(--secondary);

    margin-left:6px;

}


/*==============================
        BUTTON
==============================*/

.project-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--secondary);

    font-weight:700;

    transition:.35s;

}

.project-btn:hover{

    gap:18px;

    color:var(--primary);

}


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

@media(max-width:992px){

    .projects-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .projects-grid{

        grid-template-columns:1fr;

    }

    .project-image{

        height:240px;

    }

    .project-content{

        padding:25px;

    }

    .project-content h3{

        font-size:22px;

    }

}
/*==================================================
                PROJECT GALLERY
==================================================*/

.projects-more{

    padding:100px 0;

    background:var(--section);

}

.gallery-grid{

    display:grid;

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

    gap:25px;

    margin-top:50px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    transition:.4s;

}

.gallery-item:hover{

    transform:translateY(-8px);

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

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(20,35,82,.45);

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item i{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%) scale(.7);

    width:70px;

    height:70px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover i{

    opacity:1;

    transform:translate(-50%,-50%) scale(1);

}


/*==================================================
                LOAD MORE BUTTON
==================================================*/

.gallery-btn{

    margin-top:50px;

    text-align:center;

}


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

@media(max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-item img{

        height:230px;

    }

    .lightbox-prev,

    .lightbox-next{

        width:50px;

        height:50px;

        font-size:18px;

    }

}
/*==================================================
                WORK PROCESS
==================================================*/

.work-process{

    padding:100px 0;

    background:#fff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}


/*==============================
        PROCESS CARD
==============================*/

.process-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    overflow:hidden;

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

    transition:.4s;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}


/*==============================
        TOP BORDER
==============================*/

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    right:0;

    width:100%;

    height:5px;

    background:var(--secondary);

    transform:scaleX(0);

    transition:.35s;

}

.process-card:hover::before{

    transform:scaleX(1);

}


/*==============================
        NUMBER
==============================*/

.process-number{

    position:absolute;

    top:18px;

    left:22px;

    font-size:58px;

    font-weight:900;

    color:rgba(212,160,23,.10);

    line-height:1;

}


/*==============================
        ICON
==============================*/

.process-icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(212,160,23,.12);

    color:var(--secondary);

    font-size:34px;

    transition:.35s;

}

.process-card:hover .process-icon{

    background:var(--secondary);

    color:#fff;

    transform:rotateY(180deg) scale(1.08);

}


/*==============================
        TITLE
==============================*/

.process-card h3{

    color:var(--primary);

    font-size:24px;

    font-weight:800;

    margin-bottom:18px;

}


/*==============================
        TEXT
==============================*/

.process-card p{

    color:var(--light);

    font-size:16px;

    line-height:2;

}


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

@media(max-width:992px){

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .process-grid{

        grid-template-columns:1fr;

    }

}
/*==================================================
                ACHIEVEMENTS
==================================================*/

.achievements{

    padding:110px 0;

    background:linear-gradient(135deg,#102554,#1b3570);

    position:relative;

    overflow:hidden;

}

.achievements::before{

    content:"";

    position:absolute;

    width:700px;

    height:100px;

    top:-250px;

    left:-250px;

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

    border-radius:50%;

}

.achievements::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    bottom:-180px;

    right:-180px;

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

    border-radius:50%;

}

.achievements .section-title{

    position:relative;

    z-index:2;

}

.achievements .section-title span{

    color:var(--secondary);

}

.achievements .section-title h2{

    color:#fff;

}

.achievements .section-title p{

    color:rgba(255,255,255,.85);

}


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

.achievement-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}


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

.achievement-card{

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

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

}

.achievement-card:hover{

    transform:translateY(-10px);

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

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}


/*==============================
        ICON
==============================*/

.achievement-icon{

    width:90px;

    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

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

    color:var(--secondary);

    font-size:34px;

    transition:.35s;

}

.achievement-card:hover .achievement-icon{

    background:var(--secondary);

    color:#fff;

    transform:rotateY(180deg) scale(1.08);

}


/*==============================
        NUMBER
==============================*/

.achievement-card h3{

    font-size:52px;

    color:#fff;

    font-weight:900;

    margin-bottom:12px;

}


/*==============================
        TEXT
==============================*/

.achievement-card span{

    display:block;

    color:rgba(255,255,255,.90);

    font-size:17px;

    font-weight:600;

}


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

@media(max-width:992px){

    .achievement-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .achievement-grid{

        grid-template-columns:1fr;

    }

    .achievement-card h3{

        font-size:42px;

    }

}
/*==================================================
                    PROJECT CTA
==================================================*/

.projects-cta{

    padding:110px 0;

    background:linear-gradient(135deg,#17316b,#0e234d);

}

.cta-box{

    max-width:950px;

    margin:auto;

    text-align:center;

    padding:70px 60px;

    border-radius:30px;

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

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    box-shadow:0 25px 70px rgba(0,0,0,.20);

}

.cta-box span{

    display:inline-block;

    color:var(--secondary);

    font-size:18px;

    font-weight:700;

    margin-bottom:18px;

}

.cta-box h2{

    color:#fff;

    font-size:46px;

    line-height:1.5;

    margin-bottom:25px;

}

.cta-box p{

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:2;

    max-width:760px;

    margin:0 auto 40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:220px;

}



/*==================================================
                LIGHTBOX
==================================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.93);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:18px;

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

}

.close-lightbox{

    position:absolute;

    top:35px;

    right:40px;

    color:#fff;

    font-size:34px;

    cursor:pointer;

    transition:.3s;

}

.close-lightbox:hover{

    color:var(--secondary);

}

.lightbox-prev,

.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

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

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

}

.lightbox-prev{

    right:35px;

}

.lightbox-next{

    left:35px;

}

.lightbox-prev:hover,

.lightbox-next:hover{

    background:var(--secondary);

}


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

@media(max-width:992px){

    .cta-box{

        padding:55px 35px;

    }

    .cta-box h2{

        font-size:38px;

    }

}

@media(max-width:768px){

    .projects-hero{

        min-height:70vh;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:17px;

    }

    .achievement-grid,

    .process-grid{

        grid-template-columns:1fr;

    }

    .cta-box{

        padding:45px 25px;

    }

    .cta-box h2{

        font-size:30px;

    }

    .cta-box p{

        font-size:16px;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-buttons .btn{

        width:100%;

    }


}
