.certifications-section{
padding:80px 20px;
background:#f5f7fb;
text-align:center;
}

.cert-title{
font-size:36px;
margin-bottom:20px;
color:#1b3c6b;
}

.cert-description{
max-width:800px;
margin:0 auto 50px;
font-size:16px;
line-height:1.7;
color:#555;
}

.cert-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.cert-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.3s;
}

.cert-card:hover{
transform:translateY(-5px);
}

.cert-card img{
max-width:100%;
height:75px;
object-fit:contain;
}

.hero{
    padding: 30px;
}


.container1{
max-width:1100px;
margin:auto;
padding:60px 20px;
}


body.dark-mode .certifications-section{
    background:#12163a ;
border:1px solid #1f2937;
color:#e5e7eb;

box-shadow:
0 10px 30px rgba(0,0,0,0.4);
}

body.dark-mode .cert-card{
    background:#26294b ;
border:1px solid #1f2937;
color:#e5e7eb;

box-shadow:
0 10px 30px rgba(0,0,0,0.4);
}