/**
 * VisionCare — Hero Section Styles
 * Matches the Figma design: full-viewport sky/blue hero, animated person,
 * floating clouds, oversized brand text with highlight, fixed CTA bar.
 *
 * @package VisionCare
 * @since   1.0.0
 */

/* -----------------------------------------------------------------------
   ARMSTRONG FONT — Self-hosted (place font files in /assets/fonts/)
   Supports: .woff2 (modern), .woff (fallback)
   To use: upload Armstrong.woff2 + Armstrong.woff to /assets/fonts/
----------------------------------------------------------------------- */
@font-face {
    /* font-family: 'Armstrong';
    src: url('../fonts/Armstrong.woff2') format('woff2'),
        url('../fonts/Armstrong.woff') format('woff'); */
    font-weight: 400 900;
    /* covers all weights if variable font */
    font-style: normal;
    font-display: swap;
    /* page renders immediately with fallback, swaps when loaded */
}

/* -----------------------------------------------------------------------
   CSS VARIABLES (hero-specific)
----------------------------------------------------------------------- */
:root {
    --vc-blue-primary: #1a4fba;
    --vc-blue-light: #2d6ecc;
    --vc-blue-sky: #5b9bd5;
    --vc-blue-pale: #bdd5f0;
    --vc-white: #ffffff;
    --vc-black: #0d0d0d;
    --vc-dark: #111827;
    --vc-hero-height: 100dvh;
    --vc-cta-bar-h: 72px;
    --vc-header-h: 88px;
    --vc-font-heading: 'Armstrong', 'Barlow Condensed', sans-serif;
    /* Armstrong = main headings */
    --vc-font-brand: 'Armstrong', 'Barlow Condensed', sans-serif;
    /* Brand/display text */
    --vc-font-body: 'Poppins', sans-serif;
    /* Paragraphs & UI text */
}

/* -----------------------------------------------------------------------
   RESET BASICS
----------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--vc-font-body);
    background: var(--vc-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* -----------------------------------------------------------------------
   HEADER
----------------------------------------------------------------------- */
.vc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--vc-header-h);
    display: flex;
    align-items: center;
}

.vc-header__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vc-header__logo {
    flex-shrink: 0;
}

.vc-header__logo img,
.vc-header__logo .custom-logo {
    height: 7vh;
    width: auto;
}

.vc-header__logo-text {
    font-family: var(--vc-font-brand);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--vc-blue-primary);
    text-decoration: none;
    letter-spacing: 0.04em;
}

/* Navigation */
.vc-nav {
    /* flex: 1; Remove flex:1 to allow justify-content: space-between to work naturally */
}

.vc-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgb(255, 255, 255);
    /* Slightly darker gray as seen in image */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;

}

.vc-nav__list li a {
    font-family: var(--vc-font-brand);
    font-size: 1.3vw;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--vc-dark);
    text-decoration: none;
    padding: 0.4vw 0.4vw;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.vc-nav__list li a:hover,
.vc-nav__list li.current-menu-item>a {
    background: var(--vc-blue-primary) !important;
    color: var(--vc-white);
}

/* Header CTA button */
.vc-header__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vc-btn--dark {
    font-family: var(--vc-font-brand);
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--vc-white);
    background: var(--vc-black);
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    padding: 12px 24px;
}

.vc-btn--dark:hover {
    background: var(--vc-blue-primary);
    transform: translateY(-1px);
}

/* Hamburger (hidden on desktop) */
.vc-header__hamburger {
    display: none;
}

/* -----------------------------------------------------------------------
   HERO SECTION
----------------------------------------------------------------------- */
.vc-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    background: linear-gradient(177deg, #d5eaff 19.44%, #7facde 107.99%);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    padding-top: var(--vc-header-h);
    padding-bottom: var(--vc-cta-bar-h);
    scroll-snap-align: start;
    /* Snap point */
}



.vc-page-about .vc-hero__content {
    min-height: calc(60vh - var(--vc-header-h));
    display: flex;
    align-items: center;
    padding: 0 48px;
}

.vc-page-about .vc-hero__text--about {
    max-width: 540px;
}

.vc-page-about .vc-hero__breadcrumb {
    margin-bottom: 1.25rem;
    font-family: var(--vc-font-brand);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(4, 20, 44, 0.75);
}

.vc-page-about .vc-hero__breadcrumb a {
    color: rgba(4, 20, 44, 0.95);
    text-decoration: none;
}

.vc-page-about .vc-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.vc-page-about .vc-hero__heading {
    font-size: clamp(3rem, 6vw, -5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #05162d;
}

.vc-page-about .vc-hero__person--about {
    position: absolute;

    right: 20vh;

    top: 16%;
    max-width: 630px;
    display: flex;
    justify-content: flex-end;
    z-index: 4;
}

.vc-about__cloud-layer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    pointer-events: none;
    overflow: visible;

    height: 0;
}

.vc-about__cloud--two {
    right: 160px;
    width: 540px;
    animation-delay: 8s;
    bottom: -90px;
    z-index: 1;
    animation: vcCloudDrift 14s linear infinite;
}

.vc-about__cloud--one {
    right: 0;
    width: 470px;
    bottom: 140px;
    animation: vcCloudDrift 24s linear infinite;

}

.vc-about__cloud {
    position: absolute;
}



.vc-hero--about {
    background: linear-gradient(9deg, #FFF 19.74%, #034EA2 114.7%);
}

.vc-page-about .vc-about-hero__building {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.16));
}

.vc-page-about .vc-hero__cloud-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.85;
    pointer-events: none;
}

.vc-page-about .vc-hero__cloud-layer .vc-hero__cloud-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    mix-blend-mode: screen;
}

.vc-page-about .vc-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 65%, #ffffff 100%);
    pointer-events: none;
    z-index: 5;
}

.vc-page-about .vc-about-page {
    padding: 5rem 0 6rem;
}

/* Background layer (handles dynamic bg from Customizer) */
.vc-hero__bg-layer {
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 0;
}

.overlayer {
    height: 130px;
    position: absolute;
    background: linear-gradient(0deg, #7facde, transparent);
    z-index: 99;

    bottom: 0;
    width: 100%;
}

/* -----------------------------------------------------------------------
   CLOUD LAYER
----------------------------------------------------------------------- */
.vc-hero__cloud-layer {
    position: absolute;
    inset: 0;
    /* z-index: 1; */
    pointer-events: none;
}

.vc-hero__cloud-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* CSS fallback clouds */
.vc-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 100px;
    filter: blur(18px);
}

.vc-cloud--1 {
    width: 500px;
    height: 120px;
    bottom: 30%;
    left: -200px;
    animation: cloudDrift 18s linear infinite;
}

.vc-cloud--2 {
    width: 320px;
    height: 80px;
    bottom: 15%;
    left: -150px;
    animation: cloudDrift 26s linear infinite 4s;
    opacity: 0.45;
}

.vc-cloud--3 {
    width: 420px;
    height: 100px;
    bottom: 8%;
    right: -200px;
    animation: cloudDriftReverse 22s linear infinite 2s;
    opacity: 0.5;
}

@keyframes cloudDrift {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(120vw);
    }
}

@keyframes cloudDriftReverse {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-120vw);
    }
}

/* -----------------------------------------------------------------------
   INDIVIDUAL CLOUD IMAGES (uploaded PNG / SVG / GIF)
   Each drifts independently at different speeds and positions
----------------------------------------------------------------------- */
.vc-hero__cloud-layer--individual {
    pointer-events: none;
    position: absolute;
    inset: 0;
    /* Stay behind text and person */
}

.vc-cloud-img {
    position: absolute;

    /* Further reduced opacity for better visibility of content */

    width: auto;
    z-index: 1;
    pointer-events: none;
}

.vc-cloud-img--1 {
    bottom: 28%;
    left: 5%;
    opacity: 1;
    /* Position it where you want it to stay */
    animation: cloudSway 8s ease-in-out infinite;
    z-index: 2;
}

.vc-cloud-img--2 {
    bottom: 18%;
    left: 5%;
    animation: cloudFloat 4s ease-in-out infinite 1s;
    opacity: 0.65;
    max-height: 11vw;
    z-index: 5;
}

.vc-cloud-img--3 {
    bottom: -27%;
    max-height: 35vw;
    right: -18%;
    animation: cloudSway 10s ease-in-out infinite reverse;
    opacity: 1;
    z-index: 999;
}

/* A gentle horizontal sway */
@keyframes cloudSway {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(100px);
        /* Adjust this for distance */
    }

    100% {
        transform: translateX(0);
    }
}

/* A floating effect (Up and Down + Slight Side movement) */
@keyframes cloudFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -10px);
    }
}

/* -----------------------------------------------------------------------
   HERO CONTENT — full width, text overlays person
----------------------------------------------------------------------- */
.vc-hero__content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0 4vw;
    /* Proportional padding */
    box-sizing: border-box;
}

/* -----------------------------------------------------------------------
   TEXT BLOCK — full width so brand text stretches edge to edge
----------------------------------------------------------------------- */
.vc-hero__text {
    width: 100%;
    max-width: calc(100vw - 120px);
    z-index: 3;
    overflow: hidden;
    word-break: break-word;
}

.vc-hero__heading {
    display: flex;
    flex-direction: column;
    font-family: var(--vc-font-heading);
    font-size: clamp(1.25rem, 2.5vw, 3rem);
    /* Scaled font size */
    font-weight: 600;
    color: var(--vc-dark);
    line-height: 1.3;
    margin-bottom: 2rem;
    /* Scaled vertical spacing */
}

.vc-hero__heading-line1,
.vc-hero__heading-line2 {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards;
}

.vc-hero__heading-line2 {
    animation-delay: 0.15s;
}

/* Big animated brand text */
.vc-hero__brand {
    font-family: var(--vc-font-brand);
    font-size: clamp(5rem, 12vw, 18vw);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: var(--vc-blue-primary);
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    user-select: none;
}

.vc-hero__brand-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) scale(0.85);
    animation: charReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.3s + var(--char-index) * 0.05s);
    transition: color 0.3s, text-shadow 0.3s;
}

/* Highlight sweep animation — repeating */
.vc-hero__brand-char.vc-highlight {
    color: var(--vc-white);
    text-shadow:
        0 0 40px rgba(255, 255, 255, 0.9),
        0 0 80px rgba(45, 110, 204, 0.8);
}

@keyframes charReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------------------------------------------
   PERSON / MODEL — absolute right, 50% width, behind text layer
----------------------------------------------------------------------- */
.vc-hero__person {
    position: absolute;
    right: 0;
    top: var(--vc-header-h);
    bottom: 0px;
    width: auto;
    max-width: 55vw;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 4;
    /* behind .vc-hero__content (z-index: 3) */
    pointer-events: none;
    animation: personFadeIn 1s ease 0.4s both;
    overflow: hidden;
}

.vc-hero__person-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    mix-blend-mode: normal;
    pointer-events: none;
}

.vc-hero__person--placeholder {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px 8px 0 0;
}

@keyframes personFadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* -----------------------------------------------------------------------
   FIXED BOTTOM CTA BAR
----------------------------------------------------------------------- */
.vc-hero__cta-bar {
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--vc-cta-bar-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: ctaSlideUp 0.6s ease 1s both;
    display: flex;
    height:50px;
    justify-content: center;
}

.vc-hero__cta-bar-fixed {
    width: 30vw;
    z-index: 9999;

}

@keyframes ctaSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vc-hero__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vc-font-brand);
    font-size:1vw;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    height: 100%;
    transition: filter 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
    width: 240px;
}

.vc-hero__cta-btn--primary {
    background: var(--vc-blue-pale);

    color: var(--vc-dark);
    border-radius: 40px 0px 0 0;
}

.vc-hero__cta-btn--secondary {
    background: var(--vc-black);
    backdrop-filter: blur(8px);
    color: var(--vc-white);
    border-radius: 0px 40px 0 0;
}

.vc-hero__cta-btn--secondary:hover {
    background: var(--vc-blue-primary);
    color: var(--vc-white);
    border-radius: 0px 40px 0 0;
}

.vc-hero__cta-btn--primary:hover {
    background: var(--vc-black);
    color: var(--vc-white);
    border-radius: 40px 0px 0 0;
}

.vc-hero__cta-btn:hover {
    filter: brightness(1.08);
    transform: scaleY(1.02);
}

.vc-hero__cta-btn--light {
    background: rgba(220, 220, 220, 0.92);
    backdrop-filter: blur(8px);
    color: var(--vc-dark);
    border-radius: 40px 40px 0 0;
}

.vc-hero__cta-btn--dark {
    background: var(--vc-dark);
    color: var(--vc-white);
    border-radius: 40px 40px 0 0;
}

/* -----------------------------------------------------------------------
   FLOATING CHAT BUTTON
----------------------------------------------------------------------- */
.vc-hero__chat-btn {
    position: fixed;
    bottom: calc(var(--vc-cta-bar-h) + 20px);
    right: 24px;
    z-index: 200;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--vc-blue-primary);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--vc-blue-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(26, 79, 186, 0.25);
    animation: chatBounce 0.5s ease 2s both;
}

.vc-hero__chat-btn svg {
    width: 22px;
    height: 22px;
}

.vc-hero__chat-btn:hover {
    background: var(--vc-blue-primary);
    color: var(--vc-white);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(26, 79, 186, 0.45);
}

.vc-about-strategy__grid .vc-about-strategy__Left article {
    border: 2px solid #2f4fba;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 40px;
}

@keyframes chatBounce {
    from {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        transform: scale(1.15);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* -----------------------------------------------------------------------
   RESPONSIVE — TABLET
----------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .vc-hero__content {
        padding: 0 32px;
    }

    .vc-hero__text {
        max-width: calc(100vw - 64px);
    }

    .vc-hero__person {
        max-width: 45vw;
    }

    /* Transition to mobile menu earlier to avoid overlap */



    .vc-nav.is-open .vc-nav__list {
        flex-direction: column;
        position: fixed;
        top: var(--vc-header-h);
        left: 0;
        right: 0;
        border-radius: 0;
        background: var(--vc-white);
        padding: 16px;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
}

/* -----------------------------------------------------------------------
   RESPONSIVE — MOBILE
----------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --vc-header-h: 64px;
        --vc-cta-bar-h: 60px;
    }

    .vc-hero {
        margin-left: calc(-1 * ((100vw - 100%) / 2));
    }

    .vc-cloud-img--1 {
        bottom: 68%;
        left: 25%;
    }

    .vc-header__inner {
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
        justify-content: space-between;
        box-sizing: border-box;
    }



    .vc-nav.is-open {
        display: block;
    }

    .vc-nav.is-open .vc-nav__list {
        flex-direction: column;
        position: fixed;
        top: var(--vc-header-h);
        left: 0;
        right: 0;
        border-radius: 0;
        background: var(--vc-white);
        padding: 16px;
        gap: 4px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .vc-nav.is-open .vc-nav__list li a {
        font-size: 1rem;
        padding: 12px 20px;
        display: block;
    }



    .vc-header__hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--vc-dark);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .vc-header__hamburger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .vc-header__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .vc-header__hamburger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* Hide on mobile */

    .vc-hero__content {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
    }

    .vc-hero__text {
        max-width: calc(100vw - 32px);
        word-break: break-word;
    }

    .vc-hero__person {
        height: 90%;
        right: 0;
        max-width: 100%;
        width: auto;
    }

    .vc-hero__person-video {
        max-width: 100%;
    }

    .vc-hero__brand {
        font-size: clamp(2.5rem, 10vw, 5rem);
        word-break: break-word;
    }

    .vc-hero__heading {
        font-size: clamp(1.1rem, 5vw, 1.75rem);
    }

    .vc-hero__cta-btn {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        width: 160px;
    }

    .vc-cloud-img--2 {
        bottom: 41%;
        left: -55%;
        max-height: 180px;
    }

    .vc-cloud-img--3 {
        bottom: 0%;
        right: -42%;
    }
}

@media (max-width: 480px) {
    .vc-hero {
        min-height: 500px;
    }

    .vc-header__inner {
        padding: 10px 16px;
    }

    .vc-header__logo img,
    .vc-header__logo .custom-logo {
        height: 48px;
    }

    .vc-hero__content {
        padding: 0 12px;
    }

    .vc-hero__text {
        max-width: calc(100vw - 24px);
    }

    .vc-hero__brand {
        font-size: clamp(2rem, 8vw, 4rem);
    }

    .vc-hero__heading {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }

    .vc-hero__heading-line1,
    .vc-hero__heading-line2 {
        margin-bottom: 8px;
    }

    .vc-hero__cta-btn {
        font-size: 0.7rem;
        width: 140px;
    }

    .vc-cloud-img--1 {
        display: none;
    }

    .vc-cloud-img--2 {
        bottom: 35%;
        left: -70%;
        max-height: 120px;
    }

    .vc-cloud-img--3 {
        display: none;
    }
}

/* -----------------------------------------------------------------------
   ABOUT PAGE
----------------------------------------------------------------------- */
.vc-page-about .vc-about-intro {
    background: #ffffff;
}

.vc-page-about .vc-about-intro__inner {
    margin: 0 auto;
    text-align: left;
}

.vc-page-about .vc-about-intro__title {
    font-family: var(--vc-font-brand);
    font-weight: 300;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    font-size: 3vw;
    line-height: 1.02;
    color: var(--vc-blue-primary);
}

.vc-page-about .vc-about-intro__text {
    color: rgba(4, 20, 44, 0.8);
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 auto;
}

.vc-page-about .vc-about-strategy {
    padding: 0rem 0;
    background: #ffffff;
}

.vc-about-strategy .vc-about-strategy__grid2 {

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.white-heading {
    color: #ffffff !important;
}

.vc-about-strategy__grid2 article {

    border: 1px solid #e0dada;
    background-color: #f3f3f3 !important;
    padding: 20px !important;
    border-radius: 20px !important;
}

.vc-about-strategy__image {
    position: relative;
}

.vc-about-strategy__image img {
    position: absolute;
    bottom: 0;
}

.vc-about-strategy__Left {
    margin-bottom: 1rem;
}

.vc-page-about .vc-about-strategy__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.vc-page-about .vc-about-card {
    padding: 32px;
    border-radius: 24px;
    background: #ffffff;
}

.vc-page-about .vc-about-card h3 {
    font-family: var(--vc-font-brand);
    color: var(--vc-blue-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.vc-page-about .vc-about-card p,
.vc-page-about .vc-about-card li {
    color: rgba(4, 20, 44, 0.86);
    line-height: 1.85;
    font-size: 0.98rem;
}

.vc-page-about .vc-about-mission-list {
    list-style: disc inside;
    margin: 0;
    padding: 0;
}

.vc-page-about .vc-about-mission-list li {
    margin-bottom: 0.75rem;
}

.vc-page-about .vc-about-values--blue {
    background: var(--vc-blue-primary);
    color: #ffffff;
    padding: 5rem 0;
}

.vc-page-about .vc-about-values__heading {
    text-align: center;
    margin-bottom: 3rem;
}

.vc-page-about .vc-about-values__heading span {
    display: inline-block;
    font-family: var(--vc-font-brand);
    font-size: 1.1rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.vc-page-about .vc-about-values__heading p {
    max-width: 720px;
    margin: 0.75rem auto 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
}

.vc-page-about .vc-about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.vc-page-about .vc-about-value-card {
    border-radius: 20px;
    padding: 28px;
    min-height: 220px;
}

.vc-about-title {
    background: linear-gradient(2deg, #ffffff 30.65%, #7dafe7 93.09%);
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 0rem;
}

.vc-page-about .vc-about-value-card h4 {
    color: #000000;
    font-family: var(--vc-font-brand);
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
}

.vc-page-about .vc-about-value-card p {
    color: rgba(0, 0, 0, 0.88);
    font-size: 1vw;
    line-height: 1.8;
}

.vc-page-about .vc-about-additional {
    padding: 4rem 0 6rem;
}

.vc-page-about .vc-about-additional .vc-container {
    max-width: 900px;
}

@media (max-width: 960px) {

    .vc-page-about .vc-about-strategy__grid,
    .vc-page-about .vc-about-values__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vc-page-about .vc-about-intro {
        padding: 3rem 0;
    }

    .vc-page-about .vc-about-intro__title {
        font-size: 2.5rem;
    }

    .vc-page-about .vc-about-strategy {
        padding: 2.5rem 0;
    }

    .vc-page-about .vc-about-values--blue {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .vc-header__hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 36px;
        height: 36px;
        border: none;
        background: none;
        cursor: pointer;
        padding: 6px;
        align-items: center;
        justify-content: center;
    }

    #vc-primary-nav,
    .vc-header__cta {
        display: none;
    }
}



@media (max-width: 1366px) {
    .vc-nav__list li a {
        font-size: 1vw;
        margin: 4px;
    }
}

@media (max-width:2560px) {
    .vc-nav__list li a {
        font-size: 0.8vw;
        margin: 4px;
    }

    .vc-nav__list {
        padding: 10px;
    }
}

.vc-blog-header {
    background: linear-gradient(135deg, #ffffff 0%, #d4e6f1 50%, #0b6dcb 100%);
    padding: 6rem 0 4rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.vc-single__banner-label {
    display: inline-block;
    color: #ffffff;
    text-transform: uppercase;
    padding: 10px 0px;
    opacity: 0.9;
    font-size: 1vw;
}

.vc-blog-header__title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    color: #0b6dcb;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 1.5rem 0;
}

.bredcrum p {
    color: #000;
}

.vc-single__banner-label {
    display: inline-block;

    text-transform: uppercase;
    padding: 10px 0px;
    opacity: 0.9;
    font-size: 1vw;
}
