/*  Section About Overview */
.section-about-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.section-about-overview .overview-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-about-overview .overview-image {
    flex: 0 0 55%;
    max-width: 55%;
    z-index: 1;
}

.section-about-overview .overview-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.section-about-overview .overview-content {
    flex: 0 0 55%;
    max-width: 55%;
    margin-left: -10%;
    background-color: #ffffff;
    padding: 50px 50px 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
    position: relative;
}

.section-about-overview .overview-subtitle {
    font-size: 20px;
    color: var(--secondary-color-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-about-overview .overview-title {
    color: var(--primary-color-main);
    font-weight: 600;
    font-style: SemiBold;
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0%;
    text-transform: uppercase;

}

.section-about-overview .overview-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 992px) {
    .section-about-overview {
        padding: 60px 0;
    }

    .section-about-overview .overview-wrapper {
        flex-direction: column;
    }

    .section-about-overview .overview-image {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .section-about-overview .overview-image img {
        height: 350px;
    }

    .section-about-overview .overview-content {
        flex: 0 0 90%;
        max-width: 90%;
        margin-left: 0;
        margin-top: -50px;
        padding: 40px 30px;
    }

    .section-about-overview .overview-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .section-about-overview {
        padding: 40px 0;
    }

    .section-about-overview .overview-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: -30px;
        padding: 30px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .section-about-overview .overview-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .section-about-overview .overview-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
/* End Section About Overview */

/* Section About Resolve */
.section-about-resolve {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-about-resolve .resolve-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.section-about-resolve .resolve-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.section-about-resolve .resolve-subtitle {
    font-size: 16px;
    color: var(--secondary-color-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-about-resolve .resolve-title {
    font-size: 36px;
    color: var(--primary-color-main);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-about-resolve .resolve-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-about-resolve .resolve-text strong {
    color: var(--primary-color-main);
    font-weight: 600;
}

.section-about-resolve .resolve-images {
    flex: 0 0 50%;
    max-width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: stretch;
    position: relative;
    min-height: -webkit-fill-available;
}

.section-about-resolve .resolve-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.section-about-resolve .resolve-image-wrapper:first-child {
    align-items: flex-start;
}

.section-about-resolve .resolve-image-wrapper:last-child {
    align-items: flex-end;
}

.section-about-resolve .resolve-image-frame {
    border: 10px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 25px 0px rgba(0, 33, 91, 0.2);
    overflow: hidden;
    background-color: #ffffff;
    width: 100%;
    max-width: 250px;
}

.section-about-resolve .resolve-image-wrapper:first-child .resolve-image-frame {
    height: 350px;
}

.section-about-resolve .resolve-image-wrapper:last-child .resolve-image-frame {
    height: 250px;
}

.section-about-resolve .resolve-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .section-about-resolve {
        padding: 60px 0;
    }

    .section-about-resolve .resolve-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .section-about-resolve .resolve-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-about-resolve .resolve-images {
        flex: 0 0 100%;
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        min-height: auto;
    }

    .section-about-resolve .resolve-image-frame {
        max-width: 100%;
    }

    .section-about-resolve .resolve-image-wrapper:first-child .resolve-image-frame {
        height: 300px;
    }

    .section-about-resolve .resolve-image-wrapper:last-child .resolve-image-frame {
        height: 240px;
    }

    .section-about-resolve .resolve-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .section-about-resolve {
        padding: 40px 0;
    }

    .section-about-resolve .resolve-wrapper {
        gap: 30px;
    }

    .section-about-resolve .resolve-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .section-about-resolve .resolve-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .section-about-resolve .resolve-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .section-about-resolve .resolve-images {


        gap: 10px;
    }

    .section-about-resolve .resolve-image-frame {
        width: 100%;
        max-width: 250px;
    }

    .section-about-resolve .resolve-image-wrapper:first-child .resolve-image-frame {
        height: 250px;
    }

    .section-about-resolve .resolve-image-wrapper:last-child .resolve-image-frame {
        height: 200px;
    }
}

/* End Section About Resolve */

/* Section About Value */

.section-about-value {
    padding: 0;
    position: relative;
}

.section-about-value .value-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-about-value .value-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.section-about-value .value-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.section-about-value .value-subtitle {
    font-size: 16px;
    color: var(--secondary-color-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-about-value .value-title {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.section-about-value .value-items {
    margin-top: -80px;
    position: relative;
    z-index: 3;
    padding-bottom: 80px;
}

.section-about-value .value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.section-about-value .value-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: visible;
    position: relative;
    padding: 80px 30px 30px;
    text-align: center;
}

.section-about-value .value-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 166, 85, 0.4);
}

.section-about-value .value-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.section-about-value .value-item-title {
    font-size: 18px;
    color: var(--primary-color-main);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-about-value .value-item-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .section-about-value .value-hero {
        height: 350px;
    }

    .section-about-value .value-title {
        font-size: 40px;
    }

    .section-about-value .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-about-value .value-items {
        margin-top: -60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .section-about-value .value-hero {
        height: 300px;
    }

    .section-about-value .value-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .section-about-value .value-title {
        font-size: 32px;
    }

    .section-about-value .value-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-about-value .value-items {
        margin-top: -50px;
        padding-bottom: 40px;
    }

    .section-about-value .value-item {
        padding: 70px 25px 25px;
    }

    .section-about-value .value-icon {
        width: 70px;
        height: 70px;
        top: -35px;
    }

    .section-about-value .value-icon img {
        width: 40px;
        height: 40px;
    }

    .section-about-value .value-item-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .section-about-value .value-item-description {
        font-size: 13px;
    }
}
/* End Section About Value */


/* Section About Mision */

.section-about-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-about-mission .mission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.section-about-mission .mission-header-left {
    flex: 0 0 auto;
}

.section-about-mission .mission-subtitle {
    font-size: 16px;
    color: var(--secondary-color-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-about-mission .mission-title {
    font-size: 42px;
    color: #112547;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.section-about-mission .mission-header-right {
    flex: 1;
    max-width: 500px;
}

.section-about-mission .mission-intro {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

.section-about-mission .mission-intro strong {
    color: #112547;
    font-weight: 600;
}

.section-about-mission .mission-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: center;
}

.section-about-mission .mission-vision {
    text-align: right;
    position: relative;
}

.section-about-mission .mission-vision-title {
    font-size: 28px;
    color: #112547;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-about-mission .mission-vision-title::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color-main);
}

.section-about-mission .mission-vision-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin: 0;
}

.section-about-mission .mission-vision-text strong {
    color: #112547;
    font-weight: 600;
}

.section-about-mission .mission-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-about-mission .mission-image img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    display: block;
}

.section-about-mission .mission-values {
    text-align: left;
    position: relative;
}

.section-about-mission .mission-values-title {
    font-size: 28px;
    color: #112547;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-about-mission .mission-values-title::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color-main);
}

.section-about-mission .mission-values-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-about-mission .mission-values-text:last-child {
    margin-bottom: 0;
}

.section-about-mission .mission-values-text strong {
    color: #112547;
    font-weight: 600;
}

@media (max-width: 992px) {
    .section-about-mission {
        padding: 60px 0;
    }

    .section-about-mission .mission-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .section-about-mission .mission-header-right {
        max-width: 100%;
    }

    .section-about-mission .mission-title {
        font-size: 36px;
    }

    .section-about-mission .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-about-mission .mission-vision {
        text-align: left;
    }

    .section-about-mission .mission-vision-title::after {
        display: none;
    }

    .section-about-mission .mission-values-title::before {
        display: none;
    }

    .section-about-mission .mission-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .section-about-mission .mission-vision-title,
    .section-about-mission .mission-values-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .section-about-mission {
        padding: 40px 0;
    }

    .section-about-mission .mission-header {
        margin-bottom: 40px;
    }

    .section-about-mission .mission-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .section-about-mission .mission-title {
        font-size: 28px;
    }

    .section-about-mission .mission-intro {
        font-size: 15px;
    }

    .section-about-mission .mission-content {
        gap: 40px;
    }

    .section-about-mission .mission-vision-title,
    .section-about-mission .mission-values-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .section-about-mission .mission-vision-text,
    .section-about-mission .mission-values-text {
        font-size: 14px;
    }

    .section-about-mission .mission-image img {
        width: 100%;
        max-width: 320px;
    }
}
/* End Section About Value */

/* Section About Organization */
.section-about-organization {
    padding: 60px 20px;
    background: #ffffff;
}

.section-about-organization .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-about-organization .header {
    text-align: center;
    margin-bottom: 50px;
}

.section-about-organization .subtitle {
    color: var(--secondary-color-main);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}

.section-about-organization .title {
    color: var(--primary-color-main);
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.section-about-organization .image-wrap {
    text-align: center;
    position: relative;
}

.section-about-organization .image-wrap a {
    display: inline-block;
    position: relative;
    cursor: zoom-in;
    /* Thêm will-change để tối ưu animation */
    will-change: transform;
}

.section-about-organization .image-wrap a::after {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(26, 61, 107, 0.8);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.section-about-organization .image-wrap a:hover::after {
    opacity: 1;
}

.section-about-organization .image-wrap img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(26, 61, 107, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Tối ưu rendering */
    backface-visibility: hidden;
    transform: translateZ(0);
}

.section-about-organization .image-wrap a:hover img {
    transform: scale(1.02) translateZ(0);
    box-shadow: 0 12px 28px rgba(26, 61, 107, 0.15);
}

/* Custom PhotoSwipe styling - FIX ANIMATION JITTER */
.pswp {
    /* Tăng độ mượt cho animation */
    --pswp-transition-duration: 333ms;
}

.pswp__button--zoom {
    display: none !important;
}

.pswp__button {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: background-color 0.2s ease !important;
}

.pswp__button:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.pswp__counter {
    display: none !important;
}

.pswp__zoom-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tối ưu animation cho PhotoSwipe */
.pswp__img {
    /* Hardware acceleration */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    transition: transform var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1),
                opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1) !important;
}

@media (max-width: 768px) {
    .section-about-organization {
        padding: 40px 16px;
    }

    .section-about-organization .title {
        font-size: 30px;
    }

    .section-about-organization .subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .section-about-organization .image-wrap a::after {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-about-organization {
        padding: 28px 12px;
    }

    .section-about-organization .title {
        font-size: 24px;
    }

    .section-about-organization .subtitle {
        font-size: 12px;
    }

    .section-about-organization .image-wrap a::after {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
}
/* End Section About Organization */

/* Section About Leader */
.section-about-leader {
    background-color: rgba(249, 250, 251, 1);

    margin: 0 auto;
    padding: 60px 20px;
}

.section-about-leader .header {
    text-align: center;
    margin-bottom: 50px;
}

.section-about-leader .header .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color-main);
    margin-bottom: 10px;
    font-weight: 500;
}

.section-about-leader .header .title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-about-leader .team-grid-top {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
    grid-auto-rows: 150px;
    margin-bottom: 20px;
}

.section-about-leader .team-grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
}

.section-about-leader .team-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.section-about-leader .team-card:hover {
    transform: translateY(-5px);
}

.section-about-leader .team-card.large {
    grid-column: span 7;
    grid-row: span 4;
}

.section-about-leader .team-card.medium {
    grid-column: span 3;
    grid-row: span 2;
}

.section-about-leader .team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-about-leader .team-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.section-about-leader .team-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: white;
}

.section-about-leader .team-card .info .name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.section-about-leader .team-card.large .info .name {
    font-size: 26px;
}

.section-about-leader .team-card .info .position {
    font-size: 14px;
    color: var(--secondary-color-main);
    font-weight: 500;
}

.section-about-leader .team-card.large .info .position {
    font-size: 16px;
}

.section-about-leader .team-card .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff4081;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

@media (max-width: 992px) {
    .section-about-leader .team-grid-top {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .section-about-leader .team-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .section-about-leader .team-card.medium {
        grid-column: span 3;
        grid-row: span 1;
    }

    .section-about-leader .team-card.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .section-about-leader .team-card.medium {
        grid-column: span 1;
    }

    .section-about-leader .header .title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-about-leader {

        padding: 40px 15px;
    }

    .section-about-leader .header {
        margin-bottom: 30px;
    }

    .section-about-leader .header .title {
        font-size: 24px;
    }

    .section-about-leader .team-grid-top,
    .section-about-leader .team-grid-bottom {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .section-about-leader .team-card.large,
    .section-about-leader .team-card.medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-about-leader .team-card .info {
        padding: 20px;
    }

    .section-about-leader .team-card .info .name {
        font-size: 18px;
    }

    .section-about-leader .team-card.large .info .name {
        font-size: 22px;
    }
}

/* End Section About Leader */