/* Hero — graphic-print template */
.hero .container-flexible {
    --container-flexible-a: 0.6;
    --container-flexible-b: 0.4;
}

.hero .veeva-hero-badges {
    margin: 30px 0 40px 0
}

.hero .veeva-hero-badges img {
    width: 80px;
    margin-right: 15px;
}

.hero .title-h6 {
    margin-top: 100px;
}

.hero .hero-image-container img {

    width: 500px;
}

@media (max-width: 1299px) {
    .hero .container-flexible>div:first-child {
        order: 3
    }

    .hero .container-flexible>div:last-child {
        text-align: center;
        overflow: visible;
    }

    .hero .container-flexible>div:last-child img {
        width: 60%;
        margin-top: -40px;
    }

    .hero .veeva-hero-badges {
        display: flex;
        justify-content: space-between;
    }

    .hero .veeva-hero-badges img {
        width: 22%;
        margin-right: 0;
    }
}


.veeva-expertise .sticky img {
    height: 80vh;
}

.veeva-expertise .text-medium {
    margin-bottom: 80px;
}

section.reasons {
    padding-top: 20px;
}

.reasons .row {
    margin-top: 60px;
}

.reasons .row .title-h6 {
    font-size: 22px;
    line-height: 1.4;
}

.reasons .row [class*="col-"] {
    padding: 20px 35px 0px 35px;
    border-left: 1px solid var(--color-border);
}

.reasons .row [class*="col-"]:last-child {
    border-right: 1px solid var(--color-border);
}

.reasons .row [class*="col-"] {
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.reasons .row img {
    max-height: 60px;
    margin: 20px 0px;
}

.veeva-ready .btn {
    margin-top: 40px;
}

.veeva-deployments.parallax::before {
    background: rgb(0 0 0 / 0.6);
}



/* OTHER PAGE */
/* CONTENT BLOCKS (Timeline Layout) */
.veeva-detail-block {
    position: relative;
    padding-left: 60px;
    padding-bottom: 60px;

    /* THE GRAY TRACK (Static) */
    border-left: 2px solid #e5e5e5 !important;
}

/* Remove tail from last item */
.veeva-detail-block:last-child {
    padding-bottom: 0;
    border-left-color: transparent !important;
}

/* THE ORANGE FILLER LINE (Controlled by JS) */
.veeva-line-fill {
    position: absolute;
    left: -2px;
    /* Pull it back to cover the border exactly */
    top: 0;
    width: 2px;
    background-color: var(--accent);
    height: 0%;
    /* JS will change this from 0% to 100% */
    z-index: 1;
    /* Sit on top of the gray border */
    max-height: 100%;
}

/* HEADLINE & ICON */
.veeva-block-head {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
    display: block;
    position: relative;
}

/* THE ICON */
.veeva-block-head .airy-icon {
    position: absolute;
    /* Adjusted for alignment */
    left: -82px;
    top: -5px;

    background: #fff;
    padding: 10px 0;
    box-sizing: content-box;
    height: 40px;
    width: auto;
    z-index: 5;
    /* Must sit on top of the colored line */
}

/* Highlight icon when the line reaches it (Optional) */
.veeva-detail-block.filled .airy-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.veeva-block-p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .veeva-detail-block {
        padding-left: 0;
        border-left: none !important;
        padding-bottom: 50px;
    }

    .veeva-line-fill {
        display: none;
    }

    /* Hide on mobile */
    .veeva-block-head .airy-icon {
        position: relative;
        left: auto;
        top: auto;
        display: block;
        margin-bottom: 15px;
        padding: 0;
    }
}