/* Thermonic Website - Certifications Page CSS Styles
   This stylesheet contains styles specific to the certifications page
*/

/* Certifications Header Section */
.certifications-header-section {
    padding: 120px 0 60px;
    background-color: #f1faee;
    text-align: center;
}

.certifications-header-content h1 {
    color: #1d3557;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Certifications Grid Section */
.certifications-grid-section {
    padding: 80px 0;
}

.certification-box {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 10%;
}

.certification-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certification-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f1faee;
}

.certification-image img {
    max-height: 100%;
    max-width: 100%;
}

.certification-content {
    padding: 20px;
    text-align: center;
}

.certification-content h3 {
    margin-bottom: 15px;
    color: #1d3557;
}

/* Quality Process Section */
.quality-process-section {
    padding: 80px 0;
    background-color: #f1faee;
}

.process-box {
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background-color: #e63946;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-number {
    font-size: 24px;
    font-weight: 700;
}

.process-box h3 {
    margin-bottom: 15px;
    color: #1d3557;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
}

.clients-grid {
    margin-top: 40px;
}

.client-box {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-box img {
    max-height: 80px;
    max-width: 100%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-box:hover img {
    filter: grayscale(0%);
}

/* Media Queries */
@media (max-width: 1199.98px) {
    .certifications-header-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .certifications-header-content h1 {
        font-size: 2.2rem;
    }
    
    .certifications-header-section {
        padding: 100px 0 50px;
    }
    
    .certifications-grid-section,
    .quality-process-section,
    .clients-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .certifications-header-content h1 {
        font-size: 2rem;
    }
    
    .certifications-header-section {
        padding: 80px 0 40px;
    }
    
    .certifications-grid-section,
    .quality-process-section,
    .clients-section {
        padding: 50px 0;
    }
}

@media (max-width: 575.98px) {
    .certifications-header-content h1 {
        font-size: 1.8rem;
    }
    
    .certifications-header-section {
        padding: 70px 0 30px;
    }
    
    .certifications-grid-section,
    .quality-process-section,
    .clients-section {
        padding: 40px 0;
    }
}