/* Certification Section Styles */
.certification-area {
    background-color: #f8f9fa;
    position: relative;
}

.certification__content {
    padding-right: 30px;
}

.certification__content .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 40px;
}

.certification__features {
    margin-top: 30px;
}

.certification__feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.certification__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.certification__feature-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.certification__feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.certification__image-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certification__certificate {
    position: relative;
    margin-bottom: 30px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.certification__certificate:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.certificate-container {
    background: white;
    border: 3px solid #FF6B35;
    border-radius: 15px;
    padding: 30px;
    width: 550px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* .certificate-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-top: 80px solid #2E5BFF;
    z-index: 1;
}

.certificate-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-right: 60px solid transparent;
    border-bottom: 60px solid #FF6B35;
    z-index: 1;
} */

.certificate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.certificate-badges {
    display: flex;
    gap: 10px;
}

.certificate-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.certificate-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    font-style: italic;
}

.certificate-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.certificate-name {
    font-size: 24px;
    font-weight: 700;
    color: #2E5BFF;
    margin-bottom: 15px;
}

.certificate-course {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.certificate-program {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.certificate-institute {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.certificate-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
    font-size: 11px;
    color: #666;
}

.certificate-info {
    text-align: left;
}

.certificate-info p {
    margin: 2px 0;
}

.certificate-signature {
    text-align: center;
}

.signature-line {
    width: 120px;
    height: 1px;
    background: #333;
    margin-bottom: 5px;
}

.certificate-signature p {
    margin: 0;
    font-size: 11px;
}

.certificate-footer {
    margin-top: 15px;
    text-align: center;
}

.website {
    font-size: 12px;
    color: #2E5BFF;
    font-weight: 600;
    margin: 0;
}

.certification__cta {
    text-align: center;
}

.certification__cta .btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8A50 100%);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.certification__cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8A50 0%, #FF6B35 100%);
}

/* Responsive Design */
@media (max-width: 991px) {
    .certification__content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .certification__content .title {
        font-size: 36px;
        text-align: center;
    }
    
    .certificate-container {
        width: 100%;
        max-width: 400px;
        padding: 25px;
    }
    
    .certification__certificate {
        transform: none;
    }
}

@media (max-width: 767px) {
    .certification__content .title {
        font-size: 28px;
    }
    
    .certificate-container {
        padding: 20px;
    }
    
    .certificate-title {
        font-size: 24px;
    }
    
    .certificate-name {
        font-size: 20px;
    }
    
    .certificate-program {
        font-size: 14px;
    }
    
    .certificate-details {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .certificate-info {
        text-align: center;
    }

    .certification__feature-item {
        margin-bottom: 0;
    }
}
