.about-img {
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statistic-wrapper h5 {
    font-size: 2rem;
    font-weight: 600;
}

.overview-title {
    line-height: 1.5;
}

.overview-title span {
    color: var(--color-primary);
    font-weight: 600;

}

.about-desc {
    color: rgba(255, 255, 255, 0.8);
}

/*
                .cta-wrapper {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 2rem;
                }

                .column-wrapper {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 2rem;
                }

                .row-wrapper {
                    display: flex;
                    flex-direction: column;
                    gap: 2rem;
                }

                .box-1 {
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    border-radius: 16px 16px 0 16px;
                    padding: 3rem;
                    background-image: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-start) 45%, var(--color-gradient-end) 100%);
                    display: flex;
                    position: relative;
                }


                .box-1 .text {
                    color: #fff;
                    font-size: 4rem;
                    font-weight: 600;
                    flex: 1;
                }

                .inner-box {
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    background-color: var(--color-dark);
                    padding: 1rem 2rem;
                    border-top-left-radius: 16px;
                }

                .inner-box .inner-text {
                    color: #fff;
                    font-size: 1rem;
                    font-weight: 600;
                    margin-bottom: 0;
                }

                .box-1 .inner-box::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: -2rem;
                    width: 2rem;
                    height: 2rem;
                    background-color: transparent;
                    box-shadow: 1rem 1rem 0px 1rem var(--color-dark);
                    border-bottom-right-radius: 16px;
                }

                .box-1 .inner-box::before {
                    content: '';
                    position: absolute;
                    top: -2rem;
                    right: 0;
                    width: 2rem;
                    height: 2rem;
                    background-color: transparent;
                    box-shadow: 1rem 1rem 0px 1rem var(--color-dark);
                    border-bottom-right-radius: 16px;
                }

                .box-2 {
                    width: 100%;
                    height: 200px;
                    overflow: hidden;
                    border-radius: 16px;
                    padding: 3rem;
                    background-color: var(--color-secondary);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 16px;
                    padding: 32px;
                    background-color: rgba(255, 255, 255, 0.05);
                }

                .box-2 .text {
                    color: #fff;
                    font-size: 1.5rem;
                    font-weight: 600;
                }

                .box-3 {
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    border-radius: 16px;
                    padding: 3rem;
                    background-color: var(--color-primary);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 16px;
                    text-decoration: none;
                }

                .box-3 .arrow-icon {
                    transition: all 0.3s ease-in-out;
                }

                .box-3 svg {
                    color: #fff;
                    height: 10rem;
                    width: 10rem;
                }

                .box-3:hover .arrow-icon {
                    scale: 1.2;
                }

                .box-4 {
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    border-radius: 16px;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    border-radius: 16px;
                }

                .box-4 img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                @media screen and (max-width: 992px) {
                    .cta-wrapper {
                        grid-template-columns: 1fr;
                        gap: 1rem;
                    }

                    .column-wrapper {
                        gap: 1rem;
                    }

                    .row-wrapper {
                        gap: 1rem;
                    }

                    .box-1 {
                        padding: 2rem;
                        height: 200px;
                    }

                    .box-1 .text {
                        font-size: 2rem;
                    }

                    .box-2 {
                        padding: 2rem;
                    }

                    .box-2 .text {
                        font-size: 1.5rem;
                        line-height: 1.5;
                    }
                } */

.vision-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
}

.vision-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-title {
    color: var(--color-primary);
}


.mission-box ul li {
    color: rgba(255, 255, 255, 0.8);
}

.certifications-wrapper {
    background: rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 2rem;
}

.certif-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.certif-item img {
    height: 70px;
}

@media screen and (max-width: 768px) {
    .certifications-wrapper {
        gap: 1rem;
    }

    .certif-item img {
        height: 50px;
    }
}

.partner-card {
    height: 90px;
    overflow: hidden;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .partner-card {
        height: 60px;
        padding: 8px;
    }
}

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}