﻿html, body {
    overflow-x: hidden;
}

.about-page {
    background-color: white;
    width: 100%;
    padding: 80px 180px 120px 180px;
    box-sizing: border-box;
}


.anim {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-left {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-right {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .anim.visible,
    .anim-left.visible,
    .anim-right.visible {
        opacity: 1 !important;
        transform: translate(0, 0) !important;
    }

@keyframes forceShow {
    to {
        opacity: 1;
        transform: none;
    }
}

.anim, .anim-left, .anim-right {
    animation: forceShow 0s 2s forwards;
}


.about-header {
    margin-bottom: 40px;
}

.about-label {
    font-weight: 300;
    font-size: 1.5rem;
    color: #005AA9;
    margin-bottom: 10px;
}

.about-title {
    color: #005AA9;
    font-size: 3rem;
    margin: 0;
    line-height: 1.2;
}

.about-title-light {
    font-weight: 300;
}

.about-title-bold {
    font-weight: 700;
}

/* ============================================================
   INTRO
============================================================ */
.intro-paragraph {
    margin-bottom: 50px;
}

.intro-text {
    font-size: 1.7rem;
    line-height: 1.8;
    font-weight: 300;
    color: #6c757d;
    margin: 0;
}

/* ============================================================
   VIDEO
============================================================ */
.video-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    width: 100%;
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ============================================================
   FULLWIDTH STRIP
============================================================ */
.fullwidth-strip {
    width: calc(100% + 360px);
    margin-right: -180px; /* RTL: was margin-left */
    overflow: hidden;
    line-height: 0;
    margin-bottom: 0;
}

    .fullwidth-strip img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

/* ============================================================
   VISION & MISSION
============================================================ */
.vision-mission-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-top: 80px;
    padding-bottom: 20px;
}

.vm-card {
    flex: 1;
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
}

.vm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vm-overlay {
    position: absolute;
    top: 50%;
    right: 10%; 
    transform: translateY(-50%);
    width: 80%;
}

.vm-overlay--white {
    color: white;
}

.vm-overlay--blue {
    color: #005AA9;
}

.vm-title {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vm-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   VALUES TITLE
============================================================ */
.values-title {
    font-size: 1.9rem;
    color: #005AA9;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 30px;
}

/* ============================================================
   VALUES TEXT
============================================================ */
.values-text {
    color: #005AA9;
    font-size: 1.35rem;
    line-height: 1.85;
    margin-top: 60px;
}

    .values-text p {
        margin-bottom: 24px;
    }

        .values-text p:last-child {
            margin-bottom: 0;
        }

/* ============================================================
   RESPONSIVE – 1200px
============================================================ */
@media (max-width: 1200px) {
    .about-page {
        padding: 70px 100px 100px 100px;
    }

    .fullwidth-strip {
        width: calc(100% + 200px);
        margin-right: -100px;
    }

    .about-title {
        font-size: 2.6rem;
    }

    .intro-text {
        font-size: 1.5rem;
    }

    .vm-card {
        height: 420px;
    }

    .vm-title {
        font-size: 1.5rem;
    }

    .vm-text {
        font-size: 1.1rem;
    }

    .values-text {
        font-size: 1.2rem;
    }
}

/* ============================================================
   RESPONSIVE – 1024px
============================================================ */
@media (max-width: 1024px) {
    .about-page {
        padding: 60px 60px 80px 60px;
    }

    .fullwidth-strip {
        width: calc(100% + 120px);
        margin-right: -60px;
    }

    .about-title {
        font-size: 2.3rem;
    }

    .intro-text {
        font-size: 1.35rem;
    }

    .vm-card {
        height: 380px;
    }

    .vm-overlay {
        width: 85%;
    }

    .vm-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .vm-text {
        font-size: 1rem;
    }

    .values-text {
        font-size: 1.1rem;
    }

    .values-title {
        font-size: 1.7rem;
    }
}

/* ============================================================
   RESPONSIVE – 900px
============================================================ */
@media (max-width: 900px) {
    .about-page {
        padding: 50px 40px 70px 40px;
    }

    .fullwidth-strip {
        width: calc(100% + 80px);
        margin-right: -40px;
    }

    .about-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .vision-mission-row {
        gap: 16px;
        padding-top: 50px;
    }

    .vm-card {
        height: 340px;
    }

    .vm-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .vm-text {
        font-size: 0.95rem;
    }

    .values-title {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    .values-text {
        font-size: 1.05rem;
        margin-top: 40px;
    }
}

/* ============================================================
   RESPONSIVE – 768px
============================================================ */
@media (max-width: 768px) {
    .about-page {
        padding: 40px 24px 60px 24px;
    }

    .fullwidth-strip {
        width: calc(100% + 48px);
        margin-right: -24px;
    }

    .about-label {
        font-size: 1.1rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .vision-mission-row {
        flex-direction: column;
        gap: 20px;
        padding-top: 40px;
    }

    .vm-card {
        flex: unset;
        width: 100%;
        height: 300px;
    }

    .vm-overlay {
        right: 6%;
        width: 88%;
    }

    .vm-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .vm-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .values-title {
        font-size: 1.35rem;
        margin-top: 36px;
    }

    .values-text {
        font-size: 1rem;
        margin-top: 36px;
    }
}

/* ============================================================
   RESPONSIVE – 600px
============================================================ */
@media (max-width: 600px) {
    .about-page {
        padding: 32px 16px 50px 16px;
    }

    .fullwidth-strip {
        width: calc(100% + 32px);
        margin-right: -16px;
    }

    .about-title {
        font-size: 1.55rem;
    }

    .intro-text {
        font-size: 0.98rem;
    }

    .vm-card {
        height: 260px;
    }

    .vm-title {
        font-size: 1.1rem;
    }

    .vm-text {
        font-size: 0.82rem;
    }

    .values-title {
        font-size: 1.2rem;
        margin-top: 28px;
    }

    .values-text {
        font-size: 0.95rem;
        margin-top: 28px;
    }

        .values-text p {
            margin-bottom: 18px;
        }
}

/* ============================================================
   RESPONSIVE – 480px
============================================================ */
@media (max-width: 480px) {
    .about-page {
        padding: 24px 14px 40px 14px;
    }

    .fullwidth-strip {
        width: calc(100% + 28px);
        margin-right: -14px;
    }

    .about-label {
        font-size: 1rem;
    }

    .about-title {
        font-size: 1.35rem;
    }

    .intro-text {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .vm-card {
        height: 230px;
    }

    .vm-overlay {
        right: 5%;
        width: 90%;
    }

    .vm-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .vm-text {
        font-size: 0.77rem;
        line-height: 1.55;
    }

    .values-title {
        font-size: 1.1rem;
        margin-top: 24px;
    }

    .values-text {
        font-size: 0.88rem;
        margin-top: 24px;
    }
}

/* ============================================================
   RESPONSIVE – 380px
============================================================ */
@media (max-width: 380px) {
    .about-page {
        padding: 20px 12px 36px 12px;
    }

    .fullwidth-strip {
        width: calc(100% + 24px);
        margin-right: -12px;
    }

    .about-title {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 0.88rem;
    }

    .vm-card {
        height: 200px;
    }

    .vm-text {
        font-size: 0.72rem;
    }

    .values-text {
        font-size: 0.82rem;
    }
}
