/* Section spacing */
.certification-section {
    background: #f9f9f9;
}

/* Card Style */
.cert-card {
    background: #ffffff;
    padding: 40px 25px;
    border-top: 5px solid #379600;
    border-bottom: 5px solid #379600;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Circle */
/* .cert-circle {
    width: 130px;
    height: 130px;
    background: #f4f4f4;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}
.cert-circle img{
    max-width: 140px;
    height: auto;
} */
/* Certificate Image */
.cert-circle img {
    /* width: 150%;
    height: 100%; */
    transition: all 0.4s ease;
}

/* Hidden Text Inside Circle */
.cert-circle h5 {
    position: absolute;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Hover Effect */
.cert-card:hover .cert-circle {
    background: #ff6a00;
}

.cert-card:hover .cert-circle img {
    opacity: 0;
    transform: scale(0.5);
}

.cert-card:hover .cert-circle h5 {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.cert-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Paragraph */
.cert-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Section Spacing */
.py-100 {
    padding: 100px 0;
}

/* Background (Optional Light Grey like your design) */
.certification-header {
    background: #f8f9fa;
}

/* Small Top Tag */
.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #28a745; /* Green accent */
    margin-bottom: 15px;
}

/* Main Title */
.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

/* Description */
.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .py-100 {
        padding: 70px 0;
    }
}
.cert-circle img{
    width: 150px !important;
    height: 150px !important;
    max-width: 500px !important;
}
.cert-circle {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.iec-logo {
    width: 120px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* .iec-circle {
    width: 200px;
    height: 200px;
} */
