body{
background:#f8fafc;
font-family:Calibri,sans-serif;
}

/* HERO */

.project-hero{
padding:120px 0 80px;
background:linear-gradient(
135deg,
#22007A,
#0d6efd
);
color:#fff;
}

.project-hero-content{
max-width:900px;
}

.project-logos{
display:flex;
gap:20px;
margin-bottom:25px;
}

.project-logos img{
height:50px;
width:auto;
background:#fff;
padding:8px 12px;
border-radius:10px;
}

.project-hero h1{
font-size:3rem;
font-weight:700;
line-height:1.3;
margin-bottom:15px;
}

.project-hero p{
font-size:1.1rem;
opacity:.9;
margin:0;
}

/* DETAIL */

#project-detail{
padding:80px 0;
}

.detail-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
height:100%;
}

.detail-card h3{
color:#22007A;
font-size:2rem;
font-weight:700;
margin-bottom:25px;
}

.detail-card h4{
font-size:1.3rem;
font-weight:700;
color:#0f172a;
margin-top:25px;
margin-bottom:15px;
}

.detail-card p{
color:#475569;
line-height:1.8;
}

.detail-card ul{
padding-left:20px;
}

.detail-card li{
margin-bottom:8px;
color:#475569;
}

/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.gallery-grid img{
width:100%;
height:240px;
object-fit:cover;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.10);
transition:.3s;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

/* ISO */

.detail-certification{
margin-top:50px;
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.detail-certification img{
height:60px;
width:auto;
transition:.3s;
}

.detail-certification img:hover{
transform:translateY(-5px);
}

/* BUTTON */

.detail-card .btn{
margin-top:20px;
border-radius:10px;
padding:10px 24px;
font-weight:600;
}

/* MOBILE */

@media(max-width:992px){


.project-hero{
    padding:100px 0 60px;
}

.project-hero h1{
    font-size:2rem;
}

.project-logos{
    justify-content:center;
}

.project-detail{
    padding:60px 0;
}

.gallery-grid{
    grid-template-columns:1fr;
    margin-top:20px;
}

.gallery-grid img{
    height:220px;
}

}
