/* certificates.css - Styles for certificate download section */
.certificates-section {
    padding: 40px 0 60px 0;
    min-height: 100vh;
    overflow: hidden;
}
.certificates-header {
    text-align: center;
    margin-bottom: 40px;
}
.certificates-header h1 {
    font-size: 40px;
    color: blue;
    margin-bottom: -6px !important;
}
/* Title */
.line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
    display: inline-block;
    margin-top: 4px !important;
}
.certificates-header .highlight {
    color: #ff4e50;
    background: linear-gradient(90deg, #ff4e50, #fc913a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.certificates-header p {
    font-size: 1.2rem;
    color: #444;
}

@media (max-width: 900px) {
    .certificates-list {
        flex-direction: column;
        align-items: center;
    }
    .certificate-card {
        width: 90vw;
        max-width: 350px;
    }
    .certificates-search-bar {
        flex-direction: column;
        gap: 10px;
    }
    .cert-search-input {
        width: 90vw;
        max-width: 400px;
    }
}
@media (max-width: 900px) {
    .certificates-list {
        flex-direction: column;
        align-items: center;
    }
    .certificate-card {
        width: 90vw;
        max-width: 350px;
    }
    .certificates-search-bar {
        flex-direction: column;
        gap: 10px;
    }
    .cert-search-input {
        width: 90vw;
        max-width: 400px;
    }
}

.report-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 40px 20px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.report-icon {
    width: 90px;
    height: auto;
}

.report-card h5 {
    font-weight: 600;
    margin-top: 15px;
}

.btn-primary {
    background: #2563eb;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
}
