/* ====================================
CERTIFICATIONS HERO
==================================== */

.certifications-hero{
    background:
    linear-gradient(
        rgba(8,15,28,.85),
        rgba(8,15,28,.85)
    ),
    url('../images/certifications/certifications-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:150px 0;
}

.certifications-hero-content{
    max-width:900px;
    color:#fff;
}

.certifications-hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin:25px 0;
}

.certifications-hero-content p{
    font-size:20px;
    line-height:1.9;
    color:#d7d7d7;
}

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-stat-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:20px 30px;
    border-radius:15px;
}

.hero-stat-box h3{
    color:#fff;
    font-size:38px;
    margin:0;
}

.hero-stat-box span{
    color:#d7d7d7;
    font-size:14px;
}

/* ====================================
COMMON
==================================== */

.section-tag{
    display:inline-block;
    background:#eaf1ff;
    color:#214f99;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}

.section-title{
    font-size:50px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
}

.section-subtitle{
    max-width:850px;
    color:#667085;
    line-height:1.9;
    margin-bottom:50px;
}

/* ====================================
CERTIFICATE GALLERY
==================================== */

.certifications-gallery{
    padding:120px 0;
    background:#f8fafc;
}

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.certificate-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.3s;
}

.certificate-card:hover{
    transform:translateY(-10px);
}

.certificate-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.certificate-content{
    padding:25px;
}

.certificate-content h3{
    color:#214f99;
    margin-bottom:15px;
    font-size:24px;
}

.certificate-content p{
    color:#667085;
    line-height:1.8;
    margin:0;
}

/* ====================================
COMPLIANCE
==================================== */

.compliance-section{
    padding:120px 0;
    background:#fff;
}

.compliance-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.compliance-card{
    background:#f8fafc;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;

    transition:.3s;
}

.compliance-card:hover{
    transform:translateY(-8px);
}

.compliance-card i{
    font-size:50px;
    color:#214f99;
    margin-bottom:20px;
}

.compliance-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.compliance-card p{
    color:#667085;
    line-height:1.8;
}

/* ====================================
TRUST SECTION
==================================== */

.certification-trust{
    padding:120px 0;
    background:#f8fafc;
}

.trust-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.trust-content p{
    color:#667085;
    line-height:1.9;
    margin-bottom:20px;
}

.trust-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.trust-point{
    background:#fff;
    padding:20px;
    border-radius:15px;

    display:flex;
    align-items:center;
    gap:12px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.05);
}

.trust-point i{
    color:#214f99;
    font-size:20px;
}

.trust-point span{
    font-weight:600;
    color:#111827;
}

/* ====================================
CTA
==================================== */

.certifications-cta{
    background:
    linear-gradient(
        rgba(8,15,28,.85),
        rgba(8,15,28,.85)
    ),
    url('../images/certifications/certifications-cta.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    text-align:center;
    padding:140px 0;
}

.certifications-cta h2{
    color:#fff;
    font-size:58px;
    font-weight:800;
    margin-bottom:25px;
}

.certifications-cta p{
    color:#d7d7d7;
    max-width:900px;
    margin:0 auto 40px;
    line-height:1.9;
    font-size:20px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.primary-btn{
    display:inline-block;
    background:#214f99;
    color:#fff;
    text-decoration:none;

    padding:15px 35px;
    border-radius:10px;

    font-weight:700;
    transition:.3s;
}

.primary-btn:hover{
    background:#17396f;
    color:#fff;
}

.secondary-btn{
    display:inline-block;

    border:2px solid #fff;
    color:#fff;
    text-decoration:none;

    padding:15px 35px;
    border-radius:10px;

    font-weight:700;
    transition:.3s;
}

.secondary-btn:hover{
    background:#fff;
    color:#111827;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:1200px){

    .certificate-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .compliance-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-layout{
        grid-template-columns:1fr;
    }

}

@media(max-width:991px){

    .certifications-hero-content h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .certificate-grid,
    .compliance-grid,
    .trust-points{
        grid-template-columns:1fr;
    }

    .hero-stats{
        flex-direction:column;
    }

    .certifications-hero-content h1{
        font-size:40px;
    }

    .section-title{
        font-size:34px;
    }

    .certifications-cta h2{
        font-size:36px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

}