﻿

.certificates-area {
    background: #f8f9fa;
}

.certificate-slider-wrapper {
    position: relative;
    margin-top: 50px;
    padding: 0 20px;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

.certificate-slide {
    height: auto;
    transition: transform 0.3s ease;
}

    .certificate-slide:hover {
        transform: translateY(-5px);
    }

.certificate-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 5px;
}

.certificate-img-wrapper {
    position: relative;
    padding: 20px;
}

.certificate-glow-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .certificate-glow-frame:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transform: scale(1.02);
    }

.certificate-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.certificate-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certificate-glow-frame:hover .certificate-img {
    transform: scale(1.05);
}

.certificate-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.certificate-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.certificate-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.certificate-swiper-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .certificate-swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #ddd;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .certificate-swiper-pagination .swiper-pagination-bullet-active {
        background: #007bff;
        transform: scale(1.2);
    }

@@media (max-width: 768px) {
    .certificate-slider-wrapper {
        padding: 0 15px;
    }
}

@@media (max-width: 576px) {
    .certificate-slider-wrapper {
        padding: 0 10px;
    }
}
