.who-we-are-image {
    border-radius: 0.625rem;
    overflow: hidden;
}

.partner-img {
    height: 70px;
    width: 120px;
    margin-right: 24px;
    display: flex;
    justify-content: flex-start;
}

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

.horizontal-scroll-grid-wrapper {
    padding: 80px 20px 0 0;
    overflow: hidden;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.horizontal-scroll-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.horizontal-scroll-card {
    text-align: center;
}

.horizontal-scroll-image {
    width: 417px;
    height: 241px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 16px auto;
}

    .horizontal-scroll-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-900);
}

    .icon-badge i {
        font-size: 24px;
    }

.icon-badge-courses {
    background: #FFE8DE;
}

    .icon-badge-courses i {
        color: #FD8A5B;
    }

.icon-badge-member {
    background-color: #FFEDEC;
}

    .icon-badge-member i {
        color: #C02337;
    }

.icon-badge-events {
    background: #C6EDD5;
}

    .icon-badge-events i {
        color: #41C374;
    }

.icon-badge-trainer {
    background: #EDE6FF;
}

.plan-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}

    .plan-features li {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 400;
        color: var(--bs-primary-text-emphasis);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .plan-features i {
        color: var(--bs-secondary);
    }

    .icon-chip {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: var(--bs-secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 14px;
    padding: 10px;
}


.contact-text {
    font-size: 18px !important;
    font-weight: 400;
    line-height: 1.5;
}


.contact-form-section-gap {
    gap: 50px;
}

.contact-form-gap {
    gap: 40px;
}

.contact-text-section-gap {
    gap: 73px;
}

.contact-text-gap {
    gap: 20px;
}

@media (max-width: 575.98px) {
    .contact-card {
        padding: 24px;
        border-radius: 32px;
    }
}

/* Map section */
.map-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 491px;
    border: 0;
    display: block;
}

.map-info-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: var(--bs-white);
    border-radius: 16px;
    padding: 23px;
    max-width: 411px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

    .map-info-card h5 {
        font-weight: 700;
        font-size: 20px;
    }

@media (max-width: 767.98px) {
    .map-embed {
        height: 360px;
    }

    .map-info-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        padding: 16px;
    }
}


/* 404 page styles */

.not-found-section {
    max-width: 406px;
    margin: auto;
    padding: 32px 0 87px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.not-found-heading {
    font-size: 160px !important;
    line-height: 1.2;
    color: var(--bs-gray-200);
    margin: 0 !important;
}

.not-found-text-container {
    margin-top: -90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.not-found-image {
    width: 117px;
    height: 77px;
    overflow: hidden;
    margin: auto;
}

    .not-found-image img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        display: block;
    }

.not-found-subheading {
    font-weight: 700 !important;
    margin: 0 !important;
}

.not-found-tex {
    font-weight: 400 !important;
    color: var(--bs-gray-900);
    line-height: 1.5;
    margin: 0 !important;
}


