/* =============================================
   Vision & Mission Section
   ============================================= */
.about_section {
    margin-top:30px;
    margin-bottom:8%;
}

.vm-section {
    position: relative;
    background-image: url('../images/about_company_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    margin-left:10%;
    margin-right:10%;
    margin-top: -140px;
    padding: 0;
    font-family: 'Asenpro', sans-serif;
}

/* ── Watermark ──────────────────────────────── */
.vm-watermark {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.vm-watermark img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* ── Layout ─────────────────────────────────── */
.vm-inner {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ── Left image panel ───────────────────────── */
.vm-image {
    flex: 0 0 38%;
    max-width: 20%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Right content panel ────────────────────── */
.vm-content {
    flex: 1;
    padding: 48px 48px 48px 52px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Each block (Vision / Mission) ─────────── */
.vm-block {
    padding: 0;
}

/* ── Separator line between Vision & Mission ── */
.vm-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 28px 0;
}

/* ── Title ──────────────────────────────────── */
.vm-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.vm-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    /* tint the icon white so it shows on red bg */
    filter: brightness(0) invert(1);
}

/* ── Vision text ────────────────────────────── */
.vm-text {
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin: 0;
}

/* ── Mission list ───────────────────────────── */
.vm-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-mission-list li {
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    padding-left: 28px;
    position: relative;
}

/* Circle-check icon using pure CSS */
.vm-mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-sizing: border-box;
}

/* Checkmark tick inside the circle */
.vm-mission-list li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 7px;
    width: 8px;
    height: 4px;
    border-left: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(-45deg);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 991px) {
    .vm-section {
        margin: 40px 32px;
    }

    .vm-image {
        flex: 0 0 32%;
        max-width: 32%;
    }

    .vm-content {
        padding: 40px 36px;
    }
}

@media (max-width: 767px) {
    .vm-section {
        margin: 32px 16px;
        border-radius: 14px;
    }

    .vm-inner {
        flex-direction: column;
    }

    .vm-image {
        flex: none;
        max-width: 100%;
        height: 220px;
        border-radius: 14px 14px 0 0;
    }

    .vm-content {
        padding: 32px 24px;
    }

    .vm-title {
        font-size: 1.5rem;
    }

    .vm-watermark {
        width: 180px;
    }
}

@media (max-width: 479px) {
    .about_section {
        margin-bottom:37%;
    }

    .vm-section {
        margin: 24px 12px;
    }

    .vm-content {
        padding: 28px 20px;
    }

    .vm-image {
        height: 100%;
    }
}