/* Accreditation Section */
.accreditation {
    background-color: #f3f3f3;
    height: 10rem !important;
    display: flex;
    align-items: center;
    margin: 0px 10px ;
}

.accreditation-title {
    font-family: Montserrat, sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
    color: rgb(0, 0, 0);
}

    .partner-logo {
        max-height: 60px;
    }



/* Footer Section */
.footer {
    background-color: #002347;
    color: #fff;
    padding: 55px 0 25px;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    
    margin: 0px 10px 10px 10px ;

}

.footer-title { 
    margin-bottom: 1rem;
    font-family: Montserrat, sans-serif;
    font-size: 65px;
    font-weight: 800;
    line-height: 71.5px;
    color: rgb(20, 184, 140);
}

.footer-link {
    text-decoration: none;
    position: relative;
    padding-bottom: 0.5em;
    font-family: Raleway, sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 45px;
    color: rgb(255, 255, 255);
}

/* underline bar */
.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #00E6A7;
    transition: width 0.3s ease, left 0.3s ease;
}

/* hover: shrink underline to half, centered */
.footer-link:hover::after {
    width: 50%;
    left: 25%;
}

.footer-link:hover{
    cursor: pointer;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.footer-text {
    margin-bottom: 0.5rem;
    font-family: Raleway, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 25.2px;
    color: rgb(20, 184, 140);
}

.footer-text a {
    color:#00E6A7;
    text-decoration: none;
}

    .footer-text a:hover {
        color: white;
    }



.social-icon-item {
    margin: 0 7.5px;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 2px solid #00E6A7;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
}

.social-icons a:hover {
    border-color: #fff;
}

.social-icons a i {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    color: #00E6A7;
}

.social-icons a i:last-child {
    top: 150%;
    color: white;
}

.social-icons a:hover i:first-child {
    top: -50%;
}

.social-icons a:hover i:last-child {
    top: 50%;
}


/* Tablet view */
@media (min-width: 768px) and (max-width: 991.98px) {


    .accreditation {
        height: auto !important;
        padding: 2rem 0;
    }

    .accreditation .row {
        flex-direction: column;
        align-items: center;
    }

    .accreditation-title {
        font-size: 30px;
        margin: 0 auto 1.5rem auto; /* Center the block and maintain bottom margin */
        text-align: center;
    }

    .partner-logo {
        margin-bottom: 1rem;
        height: auto;
    }

    .footer-title {
        font-size: 50px;
    }

    .footer-link {
        font-size: 25px;
    }

    .footer .row.align-items-start {
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
    }

    .footer .col-lg-6 {
        text-align: center !important;
    }

    .social-icons {
        margin-top: 20px;
        justify-content: center;
    }

}

/* Mobile view */
@media (max-width: 767.98px) {


    .accreditation {
        height: auto !important;
        padding: 2rem 0;
    }

    .accreditation .row {
        flex-direction: column;
        align-items: center;
    }

    .accreditation-title {
        font-size: 24px;
        margin: 0 auto 1.5rem auto;
        width: 186px;
        text-align: center;
    }

    .partner-logo {
        margin-bottom: 1.5rem;
        max-width: 200px;
        max-width: 186px;
        min-width: 180px;

    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-title {
        font-size: 35px;
        line-height: 1.2;
    }

    .footer-link {
        font-size: 20px;
    }

    .footer .row.align-items-start {
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
    }

    .footer .col-lg-6 {
        width: 100%;
        text-align: center !important;
    }
    .footer-text{
        font-size:16px;
    }

    .social-icons {
        margin-top: 20px;
        justify-content: center;
        margin-bottom: 20px;
    }
}

/* Desktop view adjustments for container width */
@media (min-width: 992px) {
    .container {
        margin-left: 11rem;
        margin-right: 11rem;
    }
}