/* Certification Page Styles */
.cert-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.cert-intro h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cert-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cert-image-container {
    position: relative;
    text-align: center;
}

.cert-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cert-image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

/* ISO Standards Section */
.iso-standards-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.iso-standard {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iso-standard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.standard-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.standard-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.standard-icon i {
    font-size: 24px;
}

.standard-header h3 {
    font-size: 24px;
    margin: 0;
    color: var(--dark-color);
}

.standard-content h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.standard-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.standard-benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
}

.standard-benefits li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}

/* Certificate Previews Section */
.cert-previews-section {
    margin-bottom: 50px;
}

.cert-previews-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.cert-previews-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cert-previews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cert-preview-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-preview-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cert-preview-header i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.cert-preview-header h4 {
    margin: 0;
    color: var(--dark-color);
}

.cert-preview-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.cert-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-preview-image:hover .cert-thumbnail {
    transform: scale(1.05);
}

.cert-preview-image:hover .cert-overlay {
    opacity: 1;
}

.cert-preview-content p {
    margin: 0;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .cert-previews {
        grid-template-columns: 1fr;
    }
}

/* Certification Process Section */
.cert-process-section {
    margin-bottom: 50px;
}

.cert-process-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.cert-process-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-step {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    margin: 0;
    line-height: 1.5;
}

/* Bureau Veritas Section */
.bv-section {
    margin-bottom: 50px;
}

.bv-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.bv-content {
    display: flex;
    gap: 40px;
}

.bv-text {
    flex: 1;
}

.bv-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Client Benefits Section */
.client-benefits-section {
    margin-bottom: 50px;
}

.client-benefits-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.client-benefits-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(93, 79, 236, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
}

.benefit-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.benefit-content p {
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.cert-cta {
    text-align: center;
    background-color: #f8f9fa;
    padding: 50px 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.cert-cta h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cert-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cert-overview {
        grid-template-columns: 1fr;
    }
    
    .iso-standards-section {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .bv-content {
        flex-direction: column;
    }
    
    .cert-cta {
        padding: 30px 20px;
    }
}

/* Certificate Download Button Styles */
.certificate-download {
    margin-top: 20px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

.btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 79, 236, 0.2);
}

.btn-outline i {
    margin-right: 8px;
}
