

/* ==========================================
   STATS
========================================== */

.project-stats{
    padding:80px 0;
    background:#f8fafc;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.stat-card h2{
    color:#002147;
    font-size:3rem;
}

.stat-card p{
    margin-top:10px;
    color:#666;
}

/* ==========================================
   FEATURED
========================================== */

.featured-projects{
    padding:110px 0;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:3rem;
    color:#002147;
}

.featured-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.featured-project{
    background:#fff;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.featured-project img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.project-content{
    padding:30px;
}

.project-content span{
    color:var(--gold-dark);
    font-weight:700;
}

.project-content h3{
    margin:12px 0;
    color:#002147;
}

/* ==========================================
   CATEGORIES
========================================== */

.project-categories{
    background:#f8fafc;
    padding:100px 0;
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.category-card{
    background:#fff;
    padding:40px;
    text-align:center;
    border: 1px dotted var(--navy);
}

.category-card i{
    font-size:2rem;
    color:var(--gold);
    margin-bottom:20px;
}

.category-card h3{
    color:#002147;
}


/* ==========================================
   PROJECT EXPERIENCE
========================================== */

.portfolio-section{
    padding:100px 0;
    background:#f8fafc;
}

.project-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.highlight-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.highlight-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.highlight-card span{
    display:inline-block;
    font-size:.75rem;
    font-weight:700;
    color:var(--gold);
    letter-spacing:1px;
    margin-bottom:15px;
}

.highlight-card h3{
    color:var(--navy);
    font-size:1.4rem;
    margin-bottom:15px;
}

.highlight-card p{
    color:#666;
    line-height:1.8;
}

.project-timeline{
    margin-top:80px;
}

.timeline-title{
    font-size:2rem;
    font-weight:700;
    color:var(--navy);
    text-align:center;
    margin-bottom:40px;
}

.timeline-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.timeline-item{
    background:#fff;
    padding:30px;
    border-left:4px solid var(--gold);
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.timeline-item h4{
    color:var(--navy);
    margin-bottom:10px;
}

.timeline-item p{
    color:#666;
    line-height:1.7;
}

@media(max-width:991px){

    .project-highlights,
    .timeline-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .project-highlights,
    .timeline-grid{
        grid-template-columns:1fr;
    }

}

/* ==========================================
   INDUSTRIES
========================================== */

.industries-section{
    background:#f8fafc;
    padding:100px 0;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.industry-grid div{
    background:#fff;
    padding:35px;
    text-align:center;
    font-weight:700;
    color:#002147;
}

/* ==========================================
   DELIVERY PROCESS
========================================== */

.delivery-process{
    padding:100px 0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-card{
    background:#002147;
    color:#fff;
    text-align:center;
    padding:35px;
}

.process-card span{
    display:block;
    color:var(--gold-dark);
    margin-bottom:15px;
    font-weight:700;
}

/* ==========================================
   CTA
========================================== */

.project-cta{
    background:#002147;
    color:#fff;
    text-align:center;
    padding:100px 0;
}

.project-cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.project-cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
    color: rgba(255, 255, 255, .75);
}

.cta-btn{
    display:inline-block;
    padding:15px 35px;
    background:var(--gold-dark);
    color:#002147;
    text-decoration:none;
    font-weight:700;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .stats-grid,
    .categories-grid,
    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .featured-grid{
        grid-template-columns:1fr;
    }

    .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .stats-grid,
    .categories-grid,
    .industry-grid,
    .portfolio-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:2.8rem;
    }

    .section-header h2,
    .project-cta h2{
        font-size:2.2rem;
    }
}