/* Certificate Section Styling */
.certificate-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.certificate-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgb(0, 0, 0);
}

.certificate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #6b6666;
}

.certificate-header img {
    height: 60px;
    width: 60px;
    border-radius: 5px;
}

.certificate-info h3 {
    font-size: 18px;
    margin: 5px 0;
    transition: color 0.3s ease-in-out;
}

.certificate-info p {
    font-size: 14px;
    color: #6b6666;
    margin: 5px 0;
}

.certificate {
    background-color: rgb(119, 0, 255); /* Light gray background */
    padding: 50px 0; /* Adds spacing above and below */
}

/*.certificate {
    background: url('../images/certificate-bg.jpg') no-repeat center center/cover;
    padding: 50px 0;
    color: white; /* Ensures text is readable */ /* <!---this sections adds a background image instead of a solid color in the certificate section--->
}*/ 

.experience {
    padding-bottom: 50px;
}

.certificate {
    padding-top: 50px;
}

/*.certificate .tag {
    display: inline-block;
    background-color: #e0d5f7;
    color: #6a0dad;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight : bold ;
    text-transform : uppercase ;
}*/

.certificate .tag {
    display: inline-block;
    background-color: rgb(144, 0, 255);
    color: whitesmoke;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.certificate.tag:hover {
    background: linear-gradient(45deg, #8e44ad, #6a0dad);
    transform: scale(1.1);
}

/* .view-certificate {
    display: inline-block;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 65, 108, 0.3);
    text-align: center;
} */

/* .view-certificate:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 65, 108, 0.5);
} */

.slogan {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 20px auto;
    max-width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

