.certification-section {
    background: radial-gradient(circle at 10% 20%, rgba(236, 28, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(236, 28, 58, 0.03) 0%, transparent 50%);
    overflow: hidden;
    position: relative;
}

.cert-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(236, 28, 58, 0.1);
    color: #ec1c3a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cert-main-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.cert-main-title .highlight {
    color: #ec1c3a;
    position: relative;
    display: inline-block;
}

.cert-feature-item {
    transition: all 0.3s ease;
    padding: 20px 0;
    border-radius: 16px;
    border: 1px solid transparent;
}

.cert-feature-item:hover {
    background: #fff;
    border-color: rgba(236, 28, 58, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.cert-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-right: 20px;
    transition: all 0.3s ease;
}

.cert-feature-item:hover .cert-icon-box {
    background: #ec1c3a;
    color: #fff !important;
    transform: rotate(-10deg);
}

.cert-image-container {
    position: relative;
    padding: 20px;
}

.cert-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 28, 58, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.floating-cert {
    border-radius: 12px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        transition: all 0.5s ease;
        animation: float-cert 6s ease-in-out infinite; */
}

@keyframes float-cert {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.cert-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.cert-feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .cert-main-title {
        font-size: 28px;
    }

    .cert-feature-item:hover {
        transform: none;
    }
}