/* Ensure html and body take the full height */
html, body {
    height: 100%;
    margin: 0;
    font-size: 14px; /* Set your base font size */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    padding-bottom: 60px; 
}

main {
    flex: 1;
}

/* Footer styles */
.footer {

    background-color: #f8f9fa;
    padding: 20px;
    margin-top: auto;
    margin: 0 10px;
    text-align: justify;
}

    .footer .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

@media (min-width: 768px) {
    .footer .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.card {
    border: none; 
}

.card-body {
    padding: 1rem; 
}


.watermark-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2; 
    object-fit: cover;
    z-index: 0;
}

.card-body {
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.text-container {
  
}

.certification-text {
    font-weight: bold;
    margin: 0 10px; 
    margin-bottom : 10px;
    text-align: justify; 
}