.projects-section{

padding:100px 0;

background:#f5f7fb;

}



.section-description{

max-width:750px;

margin:0 auto 50px;

text-align:center;

font-size:18px;

color:#666;

}



.projects-grid{

display:grid;

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

gap:35px;

}



.project-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

}



.project-card:hover{

transform:translateY(-8px);

}



.project-image{

height:260px;

overflow:hidden;

}



.project-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}



.project-card:hover img{

transform:scale(1.08);

}



.project-content{

padding:30px;

}



.project-content h3{

font-size:24px;

color:#0A2A66;

margin-bottom:15px;

}



.project-content p{

color:#666;

margin-bottom:20px;

}



.project-content a{

color:#FF6A00;

font-weight:600;

}
