:root {
    --primary-blue: #1e4f9e;
    --primary-cyan: #1e8ec8;
    --primary-orange: #f48220;
    --system-black: #151515;
    --system-white: #ffffff;
    --neutral-10: #f5f5f5;
    --neutral-40: #a3a3a3;
    --neutral-70: #404040;
    --blue-20: #eaf1ff;
    --bg-footer: #f5faff;
}

.inter-regular {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.inter-semibold {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.lora-semibold {
    font-family: "Lora", serif;
    font-weight: 600;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.core-values-section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 120px 0;
}

.core-values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.core-value-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.divider {
    width: 100%;
    height: 2px;
    background: #d4d4d4;
}

.core-value-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.core-value-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.core-value-content p,
.core-value-content h3 {
    margin: 0;
    padding: 0;
}

.core-value-title {
    font-size: 18px;
    line-height: 1.4;
    color: var(--system-black);
    font-weight: 600;
}

.core-value-description {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    color: var(--system-black);
}

.content-wrapper,
.mission-section,
.vision-section,
.core-values-section {
    width: 100%;
    max-width: 1252px;
    margin: 0 auto;
}

.breadcrumb-section {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 1250px;
    max-width: 100%;
}

.breadcrumb-item__active {
    font-size: 14px;
    color: var(--system-black);
    opacity: 1;
    line-height: 1.5;
}

.breadcrumb-item {
    font-size: 14px;
    color: var(--system-black);
    opacity: 0.5;
    line-height: 1.5;
}

.breadcrumb-separator {
    width: 4px;
    height: 4px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 4 4" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%23A3A3A3"/></svg>');
}

.mission-section-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 120px 0 0;
}

.mission-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mission-text {
    width: 934px;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: justify;
    color: var(--system-black);
    word-break: auto-phrase;
}

.mission-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: url("../../../assets/images/mission/1f92b8a938f80fb03c2ba78f5e92bc1c22d12c05.jpg")
    center/cover no-repeat;
}
.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goals-section {
    background: var(--neutral-10);
    padding: 120px 0;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.goals-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 15px;
    padding: 16px 24px;
    margin-bottom: 16px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.goals-card.active {
    background: white;
}

.goals-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.goals-card-title {
    font-size: 20px;
    line-height: 1.3;
    color: var(--system-black);
    font-weight: 600;
    margin: 0;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.goals-card.active .arrow-icon {
    transform: rotate(180deg);
}

.goals-content {
    display: none;
    margin-top: 13px;
}

.goals-card.active .goals-content {
    display: block;
}

.goals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.goals-list-item {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--neutral-70);
    word-break: auto-phrase;
}

.tab-section {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    background: rgba(30, 79, 158, 0.9);
}

.tab-section-nav {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 1250px;
    max-width: 100%;
}

.tab-section-item {
    color: var(--system-white, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    cursor: pointer;
}

.tab-section-item:hover {
    color: var(--primary-orange, #f48220);
}

.tab-section-item__active {
    color: var(--primary-orange, #f48220);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
}

.goals-list-item::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--neutral-70);
}

.vision-section-wrapper {
    padding: 120px 0;
    box-sizing: border-box;
}

.vision-content {
    display: flex;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.vision-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.vision-description {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    color: var(--system-black);
    font-weight: 600;
    width: 100%;
    margin-bottom: 0;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.vision-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.check-icon {
    width: 24px;
    height: 26px;
    flex-shrink: 0;
}

.vision-point-text {
    flex: 1;
    line-height: 1.5;
    text-align: justify;
    color: var(--system-black);
    min-width: 0;
    word-break: auto-phrase;
    margin-bottom: 0;
}

.vision-images {
    width: 572px;
    height: 586px;
    position: relative;
    flex-shrink: 0;
}

.vision-image-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 274px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.vision-image-1-bg {
    position: absolute;
    background: url("http://localhost:3845/assets/6e404255bae205d15a9f75ce0a9ed0ae7b048866.png")
    center/cover no-repeat;
    height: 559px;
    width: 979px;
    right: -142px;
    top: 50%;
    transform: translateY(-50%);
}

.vision-image-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 274px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.vision-image-2-bg {
    position: absolute;
    background: url("http://localhost:3845/assets/7848c4eff46689781abd51bd46c35f60a88aa921.png")
    center/cover no-repeat;
    height: 625px;
    width: 937px;
    left: 50%;
    top: -0.4px;
    transform: translateX(-50%);
}

.vision-image-2-overlay {
    position: absolute;
    background: var(--primary-cyan);
    height: 625px;
    width: 352px;
    left: -29px;
    top: -0.4px;
    mix-blend-mode: overlay;
}

.circular-text {
    position: absolute;
    top: 420px;
    left: 355px;
    width: 160px;
    height: 160px;
    overflow: hidden;
}

.circular-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
}

.circular-text-icon {
    position: absolute;
    top: 38.75%;
    left: 38.75%;
    right: 39.26%;
    bottom: 39.26%;
}

/* Curved text positioning */
.curved-text {
    position: absolute;
    width: 160px;
    height: 160px;
    pointer-events: none;
    animation: spin 20s linear infinite reverse;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-image: url("../../../assets/images/mission/banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    aspect-ratio: 480/299;
}

.hero-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: linear-gradient(
            258deg,
            rgba(1, 94, 200, 0.45) 14.67%,
            rgba(4, 66, 200, 0.2) 65.96%
    );
    z-index: 2;
}

.hero-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: linear-gradient(
            180deg,
            rgba(4, 66, 200, 0) 35.17%,
            rgba(4, 66, 200, 0.45) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: white;
    padding: 0 20px;
    width: 100%;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 4.8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.hero-title {
    font-family: "Lora", serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.general-goals {
    margin-top: 48px;
}

p {
    word-break: auto-phrase;
}
.header-menu ul {
    justify-content: flex-start;
}

/* Spin animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .mission-content {
        flex-direction: column;
        gap: 16px;
    }

    .vision-content {
        flex-direction: column;
    }

    .mission-text {
        width: 100%;
    }

    .footer__info {
        font-size: 16px;
        word-break: auto-phrase;
    }
}
@media (max-width: 768px) {
    .core-value-description {
        font-size: 14px;
        text-align: start;
    }
    .mission-text {
        width: 100%;
    }
    .mission-content {
        flex-direction: column;
        gap: 24px;
    }
    .mission-section-wrapper {
        gap: 24px;
        padding: 60px 0;
    }
    .vision-content {
        flex-direction: column;
    }

    .vision-text,
    .vision-content {
        gap: 24px;
    }
    .vision-description,
    .vision-point-text,
    .mission-text,
    .goals-list-item {
        font-size: 14px;
        text-align: start;
    }
    .core-values-section-wrapper {
        gap: 24px;
    }
    .core-values-list {
        margin-top: 0;
    }

    .goals-card {
        padding: 16px;
    }
    .core-value-title {
        font-size: 16px;
    }
    .goals-list-item {
        margin-bottom: 12px;
    }
    .vision-section-wrapper {
        padding: 0;
    }
    .core-values-section-wrapper {
        padding: 60px 0;
    }
    .goals-section {
        padding: 60px 0;
    }
}
/* Mobile */
@media (max-width: 576px) {
    .tab-section,
    .breadcrumb-section {
        display: none;
    }

    .hero-subtitle {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 21px */
        letter-spacing: 2.8px;
    }

    .hero-title {
        font-size: 30px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%; /* 39px */
        word-break: auto-phrase;
    }

    .hero-background,
    .hero-overlay-1,
    .hero-overlay-2,
    .hero-banner {
        height: 300px;
    }

    .mission-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mission-text {
        font-size: 14px;
        width: 100%;
    }

    .mission-image {
        height: 84px;
        border-radius: 8px;
    }

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

    .vision-images {
        width: 343px;
        height: 351px;
    }

    .vision-image-1,
    .vision-image-2 {
        width: 164px;
        height: 300px;
    }

    .circular-text {
        width: 96px;
        height: 96px;
        top: 245px;
        left: 212px;
    }

    .circular-text-bg,
    .curved-text,
    .curved-text svg {
        width: 96px;
        height: 96px;
    }

    .vision-section {
        padding-bottom: 60px;
    }

    /* .core-values-list {
      margin-top: 24px;
    } */

    .core-value-description {
        word-break: auto-phrase;
    }

    .goals-list-item {
        word-break: auto-phrase;
    }

    .general-goals {
        margin-top: 24px;
    }

    .goals-card-title {
        font-size: 16px;
    }

    .vision-image-2-bg {
        width: 100%;
        aspect-ratio: 210.85 / 375.18;
        height: unset;
    }
}
