﻿/* ===================================================== ROOT VARIABLES ===================================================== */
    :root {
        --vhc-navy: #092b57;
        --vhc-navy-dark: #061f40;
        --vhc-green: #4d9b43;
        --vhc-green-dark: #287a3b;
        --vhc-light-green: #eaf6e8;
        --vhc-white: #ffffff;
        --vhc-border: rgba(255,255,255,0.16);
    }
    .vhc-topbar *,
    .vhc-preloader * {
        box-sizing: border-box;
    }
    /* ====== PRELOADER ======= */
.vhc-mlm-preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:radial-gradient(circle at 50% 45%,rgba(255,255,255,0.95) 0%, rgba(236,249,238,0.92) 28%,rgba(222,242,249,0.96) 65%, #eef8f4 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;

}
.vhc-mlm-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@keyframes preloaderFloatOne {
    0%,
    100% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(45px,35px);
    }
}
@keyframes preloaderFloatTwo {
    0%,
    100% {
        transform: translate(0,0);
    }
    50% {
        transform: translate(-40px,-35px);
    }
}
.vhc-mlm-loader {
    position: relative;
    width: 430px;
    max-width: 90%;
    text-align: center;
    z-index: 10;
}
.vhc-network {
    position: absolute;
    width: 330px;
    height: 330px;
    left: 50%;
    top: 45px;
    transform: translateX(-50%);
    pointer-events: none;
    animation: networkRotate 18s linear infinite;
}
.network-line {
    position: absolute;
    height: 1px;
    transform-origin: left center;
    background:linear-gradient(90deg, rgba(70,155,80,0), rgba(70,155,80,0.45),rgba(36,116,174,0.25), rgba(36,116,174,0));
}
.line-1 {
    width: 145px;
    left: 65px;
    top: 90px;
    transform: rotate(28deg);
}
.line-2 {
    width: 145px;
    left: 205px;
    top: 110px;
    transform: rotate(145deg);
}
.line-3 {
    width: 140px;
    left: 78px;
    top: 205px;
    transform: rotate(-28deg);
}
.line-4 {
    width: 135px;
    left: 210px;
    top: 205px;
    transform: rotate(-145deg);
}
.network-node {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background:linear-gradient(135deg,#69b84d,#277db2);
    box-shadow: 0 0 0 5px rgba(87,165,95,0.08), 0 0 18px rgba(75,153,79,0.35);
    animation: nodePulse 2.2s ease-in-out infinite;
}
.node-1 {
    left: 58px;
    top: 83px;
    animation-delay: 0s;
}
.node-2 {
    left: 250px;
    top: 78px;
    animation-delay: .35s;
}
.node-3 {
    left: 42px;
    top: 207px;
    animation-delay: .7s;
}
.node-4 {
    left: 265px;
    top: 210px;
    animation-delay: 1.05s;
}
.node-5 {
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    animation-delay: 1.4s;
}
@keyframes nodePulse {
    0%,
    100% {
        transform: scale(0.8);
        opacity: .55;
    }
    50% {
        transform: scale(1.35);
        opacity: 1;
    }
}
@keyframes networkRotate {
    from {
        transform:
            translateX(-50%)
            rotate(0deg);
    }
    to {
        transform:
            translateX(-50%)
            rotate(360deg);
    }
}
.vhc-preloader-logo {
    position: relative;
    width: 145px;
    height: 145px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vhc-logo-glow {
    position: absolute;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background:radial-gradient(circle,rgba(77,157,75,0.18), rgba(52,132,177,0.08) 45%, transparent 72%);
    animation:logoGlow 2.5s ease-in-out infinite;
}
@keyframes logoGlow {
    0%,
    100% {
        transform: scale(.92);
        opacity: .65;
    }
    50% {
       transform: scale(1.12);
        opacity: 1;
    }
}
.vhc-logo-circle {
    position: relative;
    width: 112px;
    height: 112px;
    background: rgba(255,255,255,0.96);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(29,84,105,0.15), 0 0 0 7px rgba(255,255,255,0.65), 0 0 0 9px rgba(77,157,75,0.10);
    animation: logoFloat 3s ease-in-out infinite;
}
.vhc-logo-circle img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    display: block;
}
@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-7px) scale(1.025);
    }
}
.vhc-preloader-brand {
    margin-top: 20px;
}
.vhc-preloader-brand h1 {
    margin: 0;
    color: #092f5c;
    font-family:Georgia,"Times New Roman",serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 5px;
    text-shadow: 0 4px 15px rgba(9,47,92,0.08);
}
.vhc-preloader-brand span {
    display: block;
    margin-top: 9px;
    color: #3f9749;
    font-family:Arial,Helvetica,sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
}
.vhc-preloader-tagline {
    margin: 16px 0 0;
    color: #647483;
    font-family:Arial,Helvetica,sans-serif;
    font-size: 13px;
    letter-spacing: .6px;
}
.vhc-preloader-status {
    width: 235px;
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #557080;
    font-family:Arial,Helvetica,sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#vhcLoadingPercent {
    color: #2f8547;
    font-weight: 700;
}
.vhc-loading-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
}
.vhc-loading-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background:linear-gradient(135deg,#55a94d,#2b7db0);
    animation: loadingDot 1.4s ease-in-out infinite;
}
.vhc-loading-dots span:nth-child(2) {
    animation-delay: .18s;
}

.vhc-loading-dots span:nth-child(3) {
    animation-delay: .36s;
}
@keyframes loadingDot {
    0%,
    70%,
    100% {
        transform: translateY(0);
        opacity: .35;
    }
    35% {
        transform: translateY(-6px);
        opacity: 1;
    }
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 768px) {
    .vhc-mlm-loader {
        width: 380px;
    }
    .vhc-network {
        width: 290px;
        height: 290px;
    }
    .vhc-preloader-logo {
        width: 130px;
        height: 130px;
    }
    .vhc-logo-glow {
        width: 130px;
        height: 130px;
    }
    .vhc-logo-circle {
        width: 102px;
        height: 102px;
    }
    .vhc-logo-circle img {
        width: 80px;
        height: 80px;
    }
    .vhc-preloader-brand h1 {
        font-size: 36px;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 480px) {
    .vhc-mlm-loader {
        width: 100%;
        max-width: 94%;
    }
    .vhc-network {
        width: 245px;
        height: 245px;
        top: 42px;
    }
    .vhc-preloader-logo {
        width: 115px;
        height: 115px;
    }
    .vhc-logo-glow {
        width: 115px;
        height: 115px;
    }
    .vhc-logo-circle {
        width: 91px;
        height: 91px;
    }
    .vhc-logo-circle img {
        width: 72px;
        height: 72px;
    }
    .vhc-preloader-brand {
        margin-top: 16px;
    }
    .vhc-preloader-brand h1 {
        font-size: 30px;
        letter-spacing: 3px;
    }
    .vhc-preloader-brand span {
        font-size: 9px;
        letter-spacing: 4px;
    }
    .vhc-preloader-tagline {
        font-size: 11px;
        margin-top: 13px;
    }
    .vhc-preloader-status {
        width: 210px;
        margin-top: 24px;
        font-size: 9px;
    }
    .circle-one {
        width: 350px;
        height: 350px;
        left: -180px;
        top: -150px;
    }
    .circle-two {
        width: 400px;
        height: 400px;
        right: -200px;
        bottom: -180px;
    }
}
/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */
@media (max-width: 360px) {
    .vhc-network {
        width: 215px;
        height: 215px;
    }
    .vhc-preloader-logo {
        width: 100px;
        height: 100px;
    }
    .vhc-logo-glow {
        width: 100px;
        height: 100px;
    }
    .vhc-logo-circle {
        width: 82px;
        height: 82px;
    }
    .vhc-logo-circle img {
        width: 65px;
        height: 65px;
    }
    .vhc-preloader-brand h1 {
        font-size: 27px;
    }
    .vhc-preloader-tagline {
        font-size: 10px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .vhc-mlm-preloader *,
    .vhc-mlm-preloader {
       animation: none !important;
        transition: none !important;
    }
}
 /*  TOP BAR */
    .vhc-topbar {
        width: 100%;
        min-height: 40px;
        background:rgb(12, 107, 18);
        color: rgba(255,255,255,0.92);
        position: relative;
        z-index: 1000;
        font-family:Arial,Helvetica,sans-serif;
    }
    .vhc-topbar-container {
        width: min(94%, 1380px);
        min-height: 40px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .vhc-topbar-left {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
    }
    .vhc-top-item {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        font-size: 11px;
        white-space: nowrap;
        transition: color 0.25s ease;
    }
    .vhc-top-item:hover {
        color: #b8e69d;
    }
    .vhc-top-item strong {
        color: #ffffff;
        font-weight: 600;
    }
    .vhc-top-icon {
        width: 21px;
        height: 21px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #b9df8e;
        background: rgba(255,255,255,0.08);
        font-size: 9px;
    }
    .vhc-top-divider {
        width: 1px;
        height: 17px;
        background: var(--vhc-border);
    }
    .vhc-topbar-right {
        display: flex;
        align-items: center;
        gap: 7px;
        flex-shrink: 0;
    }
    .vhc-follow-text {
        font-size: 10px;
        color: rgba(255,255,255,0.72);
        margin-right: 3px;
    }
    .vhc-social {
        width: 23px;
        height: 23px;
        border: 1px solid rgba(255,255,255,0.22);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        font-size: 9px;
        transition: background 0.25s ease,border-color 0.25s ease,transform 0.25s ease;
    }
    .vhc-social:hover {
        background: var(--vhc-green);
        border-color: var(--vhc-green);
        transform: translateY(-2px);
    }
    /* =====================================================
       TABLET
    ===================================================== */
    @media (max-width: 992px) {
        .vhc-topbar-container {
            width: 94%;
        }
        .vhc-topbar-left {
            gap: 9px;
        }
        .vhc-top-item {
            font-size: 10px;
        }
        .vhc-top-divider {
            display: none;
        }
        .vhc-top-item:nth-of-type(3) {
            display: none;
        }
    }
    /* =====================================================
       MOBILE
    ===================================================== */
    @media (max-width: 767px) {
        .vhc-topbar {
            min-height: auto;
        }
        .vhc-topbar-container {
            width: 100%;
            min-height: 42px;
            padding:7px 14px;
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }
        .vhc-topbar-left {
            flex: 1;
            min-width: 0;
            display: block;
        }
        .vhc-top-item:nth-of-type(1) {
            display: flex;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .vhc-top-item:nth-of-type(2),
        .vhc-top-item:nth-of-type(3),
        .vhc-top-divider {
            display: none;
        }
        .vhc-top-item {
            font-size: 9.5px;
            gap: 6px;
        }
        .vhc-top-item span:last-child {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .vhc-top-icon {
            width: 20px;
            height: 20px;
            min-width: 20px;
        }
        .vhc-topbar-right {
            gap: 4px;
        }
        .vhc-follow-text {
            display: none;
        }
        .vhc-social {
            width: 24px;
            height: 24px;
            font-size: 9px;
        }
        .vhc-loader-logo {
            width: 95px;
            height: 95px;
            margin-bottom: 17px;
        }
        .vhc-loader-logo img {
            width: 75px;
            height: 75px;
        }
        .vhc-pulse-icon {
            width: 190px;
            height: 50px;
        }
        .vhc-loader-title {
            font-size: 25px;
            letter-spacing: 2px;
        }
        .vhc-loader-title span {
            font-size: 9px;
            letter-spacing: 3.5px;
        }
        .vhc-loader-text {
            font-size: 12px;
            padding: 0 15px;
        }
    }
    /* =====================================================
       SMALL MOBILE
    ===================================================== */
    @media (max-width: 400px) {
        .vhc-topbar-container {
            padding-left: 10px;
            padding-right: 10px;
        }
        .vhc-top-item {
            font-size: 9px;
        }
        .vhc-social {
            width: 22px;
            height: 22px;
        }
        .vhc-loader-title {
            font-size: 22px;
        }
        .vhc-loader-title span {
            font-size: 8px;
            letter-spacing: 3px;
        }
    }
    @media (prefers-reduced-motion: reduce) {
        .vhc-preloader *,
        .vhc-topbar * {
            animation: none !important;
            transition: none !important;
        }
    }
.vhc-navbar {

    width: 100%;

    position: sticky;

    top: 0;

    left: 0;

    z-index: 9990;

    background:rgb(252, 255, 252);

    border-bottom:
        1px solid rgba(9,45,89,.08);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    transition:
        box-shadow .35s ease,
        background .35s ease;

}


.vhc-navbar.scrolled {

    background:
        rgba(255,255,255,.99);

    box-shadow:
        0 10px 30px rgba(9,45,89,.10);

}


/* =========================================================
   CONTAINER
========================================================= */

.vhc-navbar-container {

    width:
        min(94%, 1400px);

    min-height:
        98px;

    margin:
        0 auto;

    display:
        flex;

    align-items:
        center;

    gap:
        30px;

}




/* =========================================================
   PREMIUM LOGO - DESKTOP
========================================================= */

.vhc-brand {

    display: flex;

    align-items: center;

    gap: 16px;

    text-decoration: none;

    flex-shrink: 0;

}


/* =========================================================
   LOGO CONTAINER
   NO CIRCLE / NO BORDER
========================================================= */

.vhc-brand-logo {

   
    height: 82px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    flex-shrink: 0;

    background: transparent;

    border: none;

    border-radius: 0;

    overflow: visible;

    transition:
        transform .35s ease;

}





/* =========================================================
   ACTUAL LOGO
========================================================= */

.vhc-brand-logo img {
    height: 88px;

    max-width: none;

    max-height: none;

    object-fit: contain;

    display: block;

    transform-origin: center center;

    transition:
        transform .35s cubic-bezier(.4,0,.2,1),
        filter .35s ease;

}
/* =========================================================
   BRAND TEXT
========================================================= */

.vhc-brand-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1;

}


.vhc-brand-text strong {

    color:
        var(--vhc-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        28px;

    font-weight:
        700;

    letter-spacing:
        1.8px;

}


.vhc-brand-text span {

    margin-top:
        7px;

    color:
        var(--vhc-green);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        3.5px;

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.vhc-navigation {

    margin-left:
        auto;

    display:
        flex;

    align-items:
        center;

    gap:
        4px;

}


/* =========================================================
   NAV LINK
========================================================= */

.vhc-nav-link {

    height:
        92px;

    padding:
        0 17px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    position:
        relative;

    color:
        #2c435d;

    text-decoration:
        none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        14px;

    font-weight:
        600;

    white-space:
        nowrap;

    transition:
        color .3s ease,
        transform .3s ease;

}


/* Icon */

.vhc-nav-link > i {

    color:
        #7890a3;

    font-size:
        12px;

    transition:
        color .3s ease,
        transform .3s ease;

}
/* =========================================================
   HOVER
========================================================= */

.vhc-nav-link:hover {

    color:
        var(--vhc-green-dark);

    transform:
        translateY(-1px);

}


.vhc-nav-link:hover > i {

    color:
        var(--vhc-green);

    transform:
        translateY(-2px);

}


.vhc-nav-link:hover::after,
.vhc-nav-link.active::after {

    width:
        34px;

}


.vhc-nav-link:hover::before,
.vhc-nav-link.active::before {

    transform:
        translateX(-50%)
        scale(1);

}





.vhc-nav-link.active > i {

    color:
        var(--vhc-green);

}


/* =========================================================
   BUSINESS PLAN SPECIAL LINK
========================================================= */

.business-plan-link {

    color:
        var(--vhc-navy);

}


.business-plan-link > i {

    color:
        var(--vhc-green);

}


/* =========================================================
   DESKTOP CTA
========================================================= */

.vhc-navbar-actions {

    flex-shrink:
        0;

}


.vhc-nav-cta {

    min-height:
        50px;

    padding:
        0 20px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    position:
        relative;

    overflow:
        hidden;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #4e9d48,
            #287c3d
        );

    text-decoration:
        none;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        12px;

    font-weight:
        700;

    box-shadow:
        0 9px 23px rgba(54,135,63,.20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.vhc-nav-cta::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -120%;

    width:
        70%;

    height:
        100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.30),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left .65s ease;

}


.vhc-nav-cta:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px rgba(54,135,63,.30);

}


.vhc-nav-cta:hover::before {

    left:
        150%;

}


.vhc-cta-icon {
    display:flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.14);
}


.vhc-cta-arrow {

    font-size:
        10px;

    transition:
        transform .3s ease;

}


.vhc-nav-cta:hover
.vhc-cta-arrow {

    transform:
        translateX(4px);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.vhc-menu-toggle {

    width:
        48px;

    height:
        48px;

    margin-left:
        auto;

    padding:
        0;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    flex-direction:
        column;

    gap:
        6px;

    background:
        #ffffff;

    border:
        1px solid #dce7e2;

    cursor:
        pointer;

}


.vhc-menu-toggle span {

    width:
        22px;

    height:
        2px;

    background:
        var(--vhc-navy);

    transition:
        transform .35s ease,
        opacity .25s ease,
        width .35s ease;

}


.vhc-menu-toggle span:nth-child(2) {

    width:
        15px;

    margin-left:
        7px;

}


/* Active hamburger */

.vhc-menu-toggle.active span:nth-child(1) {

    transform:
        translateY(8px)
        rotate(45deg);

}


.vhc-menu-toggle.active span:nth-child(2) {

    opacity:
        0;

}


.vhc-menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-8px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.vhc-mobile-menu {

    display:
        none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {

    .vhc-navbar-container {

        gap:
            18px;

    }


    .vhc-navigation {

        gap:
            0;

    }


    .vhc-nav-link {

        padding:
            0 11px;

        font-size:
            13px;

    }


    .vhc-nav-cta {

        padding:
            0 14px;

    }

}


/* =========================================================
   MOBILE / TABLET NAVIGATION
========================================================= */

@media (max-width: 950px) {

    .vhc-navbar-container {

        width:
            94%;

        min-height:
            78px;

    }


    .vhc-navigation,
    .vhc-navbar-actions {

        display:
            none;

    }


    .vhc-menu-toggle {

        display:
            flex;

    }


    /* =====================================================
       MOBILE MENU
    ===================================================== */

    .vhc-mobile-menu {

        display:
            block;

        position:
            fixed;

        top:
            78px;

        left:
            0;

        width:
            100%;

        height:
            calc(100vh - 78px);

        height:
            calc(100dvh - 78px);

        overflow-y:
            auto;

        background:
            rgba(248,252,249,.98);

        backdrop-filter:
            blur(18px);

        -webkit-backdrop-filter:
            blur(18px);

        opacity:
            0;

        visibility:
            hidden;

        pointer-events:
            none;

        transform:
            translateY(-18px);

        transition:
            opacity .35s ease,
            visibility .35s ease,
            transform .35s ease;

    }


    .vhc-mobile-menu.open {

        opacity:
            1;

        visibility:
            visible;

        pointer-events:
            auto;

        transform:
            translateY(0);

    }


    .vhc-mobile-menu-inner {

        width:
            min(92%, 620px);

        margin:
            0 auto;

        padding:
            20px 0 35px;

    }


    /* =====================================================
       MOBILE INTRO
    ===================================================== */

    .vhc-mobile-intro {

        display:
            flex;

        align-items:
            center;

        gap:
            15px;

        padding:
            15px 4px 19px;

        margin-bottom:
            13px;

        border-bottom:
            1px solid #dfe9e4;

    }


    .vhc-mobile-logo {

        width:
            58px;

        height:
            58px;

        flex-shrink:
            0;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

    }


    .vhc-mobile-logo img {

        width:
            56px;

        height:
            56px;

        object-fit:
            contain;

    }


    .vhc-mobile-brand {

        display:
            flex;

        flex-direction:
            column;

    }


    .vhc-mobile-brand strong {

        color:
            var(--vhc-navy);

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size:
            18px;

        letter-spacing:
            1.2px;

    }


    .vhc-mobile-brand span {

        margin-top:
            6px;

        color:
            var(--vhc-green);

        font-size:
            11px;

    }


    /* =====================================================
       MOBILE LINKS
    ===================================================== */

    .vhc-mobile-navigation {

        display:
            flex;

        flex-direction:
            column;

        gap:
            5px;

    }


    .vhc-mobile-link {

        min-height:
            65px;

        display:
            flex;

        align-items:
            center;

        gap:
            15px;

        padding:
            0 12px;

        position:
            relative;

        color:
            var(--vhc-navy);

        background:
            #ffffff;

        border-bottom:
            1px solid #e6eee9;

        text-decoration:
            none;

        overflow:
            hidden;

        transition:
            background .3s ease,
            padding-left .3s ease;

    }


    /* Green left indicator */

    .vhc-mobile-link::before {

        content:
            "";

        position:
            absolute;

        left:
            0;

        top:
            0;

        width:
            4px;

        height:
            100%;

        background:
            linear-gradient(
                180deg,
                var(--vhc-green),
                #74b95c
            );

        transform:
            scaleY(0);

        transform-origin:
            bottom;

        transition:
            transform .3s ease;

    }


    .vhc-mobile-link:hover,
    .vhc-mobile-link.active {

        background:
            #f3faf2;

        padding-left:
            17px;

    }


    .vhc-mobile-link:hover::before,
    .vhc-mobile-link.active::before {

        transform:
            scaleY(1);

    }


    /* =====================================================
       MOBILE ICON
    ===================================================== */

    .vhc-mobile-icon {

        width:
            44px;

        height:
            44px;

        flex-shrink:
            0;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        color:
            var(--vhc-green);

        background:
            #edf7eb;

        font-size:
            16px;

        transition:
            background .3s ease,
            color .3s ease,
            transform .3s ease;

    }


    .vhc-mobile-link:hover
    .vhc-mobile-icon,
    .vhc-mobile-link.active
    .vhc-mobile-icon {

        color:
            #ffffff;

        background:
            var(--vhc-green);

        transform:
            translateX(2px);

    }


    /* =====================================================
       MOBILE TEXT
    ===================================================== */

    .vhc-mobile-link-text {

        flex:
            1;

        color:
            var(--vhc-navy);

        font-family:
            Arial,
            Helvetica,
            sans-serif;

        font-size:
            16px;

        font-weight:
            600;

    }


    .vhc-mobile-link > i {

        color:
            #8293a3;

        font-size:
            12px;

        transition:
            transform .3s ease,
            color .3s ease;

    }


    .vhc-mobile-link:hover > i,
    .vhc-mobile-link.active > i {

        color:
            var(--vhc-green);

        transform:
            translateX(4px);

    }


    /* =====================================================
       MOBILE CTA
    ===================================================== */

    .vhc-mobile-cta {

        min-height:
            58px;

        margin-top:
            16px;

        padding:
            0 18px;

        display:
            flex;

        align-items:
            center;

        justify-content:
            space-between;

        color:
            #ffffff;

        background:
            linear-gradient(
                135deg,
                #4e9d48,
                #287c3d
            );

        text-decoration:
            none;

        font-size:
            14px;

        font-weight:
            700;

        box-shadow:
            0 12px 25px rgba(58,139,67,.18);

    }


    .vhc-mobile-cta span {

        display:
            flex;

        align-items:
            center;

        gap:
            10px;

    }


    .vhc-mobile-cta span i {

        font-size:
            14px;

    }


    .vhc-mobile-cta > i {

        width:
            32px;

        height:
            32px;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        background:
            rgba(255,255,255,.14);

        font-size:
            11px;

    }


    /* =====================================================
       MOBILE CONTACT
    ===================================================== */

    .vhc-mobile-contact {

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

        flex-wrap:
            wrap;

        gap:
            16px;

        padding:
            22px 0 5px;

    }


    .vhc-mobile-contact a {

        display:
            flex;

        align-items:
            center;

        gap:
            7px;

        color:
            #647789;

        text-decoration:
            none;

        font-size:
            11px;

    }


    .vhc-mobile-contact a i {

        color:
            var(--vhc-green);

        font-size:
            12px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .vhc-navbar-container {

        width:
            93%;

        min-height:
            72px;

    }


    .vhc-brand {

        gap:
            9px;

    }


    .vhc-brand-logo {

        width:
            55px;

        height:
            55px;

    }


    .vhc-brand-logo img {

        width:
            53px;

        height:
            53px;

    }


    .vhc-brand-text strong {

        font-size:
            22px;

        letter-spacing:
            1px;

    }


    .vhc-brand-text span {

        font-size:
            7px;

        letter-spacing:
            2.5px;

    }


    .vhc-menu-toggle {

        width:
            45px;

        height:
            45px;

    }


    .vhc-mobile-menu {

        top:
            72px;

        height:
            calc(100vh - 72px);

        height:
            calc(100dvh - 72px);

    }


    .vhc-mobile-menu-inner {

        width:
            91%;

        padding-top:
            17px;

    }


    .vhc-mobile-intro {

        padding:
            10px 0 17px;

    }


    .vhc-mobile-logo {

        width:
            52px;

        height:
            52px;

    }


    .vhc-mobile-logo img {

        width:
            50px;

        height:
            50px;

    }


    .vhc-mobile-brand strong {

        font-size:
            16px;

    }


    .vhc-mobile-brand span {

        font-size:
            10px;

    }


    .vhc-mobile-link {

        min-height:
            61px;

    }


    .vhc-mobile-icon {

        width:
            41px;

        height:
            41px;

        font-size:
            15px;

    }


    .vhc-mobile-link-text {

        font-size:
            15px;

    }


    .vhc-mobile-cta {

        min-height:
            56px;

        font-size:
            13px;

    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 370px) {

    .vhc-brand-text {

        display:
            none;

    }


    .vhc-brand-logo {

        width:
            52px;

        height:
            52px;

    }


    .vhc-brand-logo img {

        width:
            50px;

        height:
            50px;

    }


    .vhc-navbar-container {

        min-height:
            68px;

    }


    .vhc-mobile-menu {

        top:
            68px;

        height:
            calc(100vh - 68px);

        height:
            calc(100dvh - 68px);

    }

}
/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .vhc-navbar *,
    .vhc-mobile-menu {
        transition:none !important;
        animation:none !important;
    }
}
/* =========================================================
   VENICE HEALTH CARE
   PREMIUM RESPONSIVE FOOTER
========================================================= */


/* =========================================================
   FOOTER
========================================================= */

.venice-footer {

    position: relative;

    width: 100%;

    background: #f1f8f2;

    border-top: 1px solid #dcecdf;

    color: #173b5f;

}


/* =========================================================
   CONTAINER
========================================================= */

.venice-footer-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   MAIN FOOTER
========================================================= */

.venice-footer-main {

    display: grid;

    grid-template-columns:
        1.65fr
        1fr
        1.15fr
        1.4fr;

   

    padding: 48px 0 35px;

}


/* =========================================================
   BRAND SECTION
========================================================= */

.venice-footer-brand {

    min-width: 0;

}


/* =========================================================
   LOGO + BRAND NAME
========================================================= */

.venice-footer-brand-head {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 15px;

}


/* LOGO */

.venice-footer-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 82px;

    height: 82px;

    flex-shrink: 0;

    text-decoration: none;

}


.venice-footer-logo img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

}


/* BRAND TEXT */

.venice-footer-brand-name {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.venice-footer-brand-name h2 {

    margin: 0;

    color: #173b5f;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;

    line-height: 1;

    letter-spacing: 1.5px;

    font-weight: 700;

}


.venice-footer-brand-name span {

    margin-top: 7px;

    color: #3f9844;

    font-size: 10px;

    line-height: 1;

    letter-spacing: 3px;

    font-weight: 700;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.venice-footer-description {

    max-width: 350px;

    margin: 0 0 18px;

    color: #092b57;

    font-size: 15px;

    line-height: 1.65;

}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.venice-footer-social {

    display: flex;

    align-items: center;

    gap: 17px;

}


.venice-footer-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: auto;

    height: auto;

    color: #3f9844;

    text-decoration: none;

    font-size: 15px;

    transition:
        color .25s ease,
        transform .25s ease;

}


.venice-footer-social a:hover {

    color: #173b5f;

    transform: translateY(-3px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.venice-footer-column h3,
.venice-footer-contact h3 {

    margin: 4px 0 8px;

    color: #173b5f;

    font-size: 16px;

    font-weight: 700;

}


/* =========================================================
   HEADING LINE
========================================================= */

.footer-heading-line {

    display: block;

    width: 30px;

    height: 2px;

    margin-bottom: 19px;

    background: #3f9844;

}


/* =========================================================
   LINKS
========================================================= */

.venice-footer-column ul {

    padding: 0;

    margin: 0;

    list-style: none;

}


.venice-footer-column li {

    margin-bottom: 11px;

}


.venice-footer-column a {

    position: relative;

    display: inline-block;

    color: #092b57 !important;

    text-decoration: none;

    font-size: 15px;

    line-height: 1.5;

    transition:
        color .25s ease,
        padding-left .25s ease;

}


.venice-footer-column a::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: -2px;

    width: 0;

    height: 1px;

    background: #3f9844;

    transition: width .25s ease;

}


.venice-footer-column a:hover {

    color: #3f9844;

}


.venice-footer-column a:hover::before {

    width: 100%;

}


/* =========================================================
   CONTACT
========================================================= */

.venice-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

}


.venice-contact-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    min-width: 30px;

    height: 30px;

    color: #3f9844;

    font-size: 13px;

}


.venice-contact-content {

    min-width: 0;

}


.venice-contact-content span {

    display: block;

    margin-bottom: 3px;

    color: #092b57;

    font-size: 14px;

    line-height: 1.2;

}


.venice-contact-content a,
.venice-contact-content p {

    display: block;

    margin: 0;

    color: #344d3b;

    text-decoration: none;

    font-size: 15px;

    line-height: 1.45;

    word-break: break-word;

}


.venice-contact-content a:hover {

    color: #3f9844;

}


/* =========================================================
   BOTTOM BORDER
========================================================= */

.venice-footer-bottom {

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #d9e8db;

}


.venice-footer-bottom p {

    margin: 0;

    color:#092b57;

    font-size: 17px;

    line-height: 1.5;

}


/* =========================================================
   LEGAL LINKS
========================================================= */

.venice-footer-legal {

    display: flex;

    align-items: center;

    gap: 14px;

}


.venice-footer-legal a {

    color: #092b57;

    text-decoration: none;

    font-size: 17px;

    transition: color .25s ease;

}


.venice-footer-legal a:hover {

    color: #3f9844;

}


.venice-footer-legal span {

    width: 4px;

    height: 4px;

    border-radius: 50%;

    background: #9db4a1;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .venice-footer-main {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 35px;

    }


    .venice-footer-contact {

        grid-column: span 3;

        margin-top: 5px;

    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 768px) {

    .venice-footer-container {

        width: min(100% - 32px, 620px);

    }


    .venice-footer-main {

        grid-template-columns: 1fr 1fr;

        gap: 32px 28px;

        padding: 40px 0 30px;

    }


    .venice-footer-brand {

        grid-column: span 2;

    }


    .venice-footer-contact {

        grid-column: span 2;

    }


    .venice-footer-description {

        max-width: 520px;

    }


    .venice-footer-bottom {

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 10px;

    }

}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .venice-footer-container {

        width: calc(100% - 28px);

    }


    .venice-footer-main {

        grid-template-columns: 1fr;

        gap: 28px;

        padding: 35px 0 25px;

    }


    .venice-footer-brand,
    .venice-footer-contact {

        grid-column: auto;

    }


    /* LOGO + TEXT */

    .venice-footer-brand-head {

        gap: 13px;

        margin-bottom: 14px;

    }


    .venice-footer-logo {

        width: 70px;

        height: 70px;

    }


    .venice-footer-brand-name h2 {

        font-size: 25px;

        letter-spacing: 1.2px;

    }


    .venice-footer-brand-name span {

        margin-top: 6px;

        font-size: 8px;

        letter-spacing: 2.5px;

    }


    /* DESCRIPTION */

    .venice-footer-description {

        max-width: 100%;

        font-size: 13px;

        line-height: 1.65;

        margin-bottom: 17px;

    }


    /* SOCIAL */

    .venice-footer-social {

        gap: 18px;

    }


    .venice-footer-social a {

        font-size: 15px;

    }


    /* =====================================================
       CENTER FOOTER COLUMNS
    ===================================================== */

    .venice-footer-column,
    .venice-footer-contact {

        text-align: center;

    }


    .venice-footer-column h3,
    .venice-footer-contact h3 {

        font-size: 15px;

    }


    .footer-heading-line {

        margin: 0 auto 15px;

    }


    /* LINKS */

    .venice-footer-column ul {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .venice-footer-column li {

        margin-bottom: 9px;

    }


    .venice-footer-column a {

        font-size: 13px;

    }


    /* CONTACT */

    .venice-contact-item {

        justify-content: center;

        margin-bottom: 13px;

        text-align: left;

    }


    .venice-contact-content a,
    .venice-contact-content p {

        font-size: 13px;

    }


    /* BOTTOM */

    .venice-footer-bottom {

        padding: 17px 0 20px;

    }


    .venice-footer-bottom p {

        font-size: 11px;

    }


    .venice-footer-legal {

        gap: 10px;

        flex-wrap: wrap;

        justify-content: center;

    }


    .venice-footer-legal a {

        font-size: 11px;

    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .venice-footer-brand-head {

        gap: 10px;

    }


    .venice-footer-logo {

        width: 62px;

        height: 62px;

    }


    .venice-footer-brand-name h2 {

        font-size: 22px;

    }


    .venice-footer-brand-name span {

        font-size: 7px;

        letter-spacing: 2px;

    }


    .venice-footer-description {

        font-size: 12px;

    }

}
/* =========================================================
   VENICE HEALTH CARE
   HERO BANNER
========================================================= */

.venice-hero {

    position: relative;

    width: 100%;

    min-height: 560px;

    overflow: hidden;

    display: flex;

    align-items: center;

    background-image: url("../img/banner-img.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

}


/* =========================================================
   SOFT OVERLAY
========================================================= */

.venice-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.93) 0%,
            rgba(255,255,255,.78) 28%,
            rgba(255,255,255,.18) 55%,
            rgba(255,255,255,0) 75%
        );

}


/* =========================================================
   CONTAINER
========================================================= */

.venice-hero-container {

    position: relative;

    z-index: 3;

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   CONTENT
========================================================= */

.venice-hero-content {

    width: 48%;

    max-width: 570px;

    padding: 80px 0 105px;

}


/* =========================================================
   LABEL
========================================================= */

.venice-hero-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: #3f9844;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


/* ICON */

.venice-hero-label-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    background: rgba(63,152,68,.12);

    color: #3f9844;

    font-size: 13px;

}


/* =========================================================
   HEADING
========================================================= */

.venice-hero-content h1 {

    margin: 0;

    color: #173b5f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -1.5px;

}


/* GREEN PART */

.venice-hero-content h1 span {

    color: #3f9844;

    font-style: italic;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.venice-hero-content p {

    max-width: 430px;

    margin: 20px 0 27px;

    color: #506558;

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   BUTTON AREA
========================================================= */

.venice-hero-buttons {

    display: flex;

    align-items: center;

    gap: 20px;

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.venice-hero-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 47px;

    padding: 0 22px;

    color: #ffffff;

    background: #3f9844;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(63,152,68,.20);

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

}


.venice-hero-primary i {

    font-size: 11px;

    transition: transform .3s ease;

}


.venice-hero-primary:hover {

    background: #087b10;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(63,152,68,.28);

}


.venice-hero-primary:hover i {

    transform: translateX(4px);

}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.venice-hero-play {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #173b5f;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

}


.venice-hero-play span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    border: 1px solid #3f9844;

    border-radius: 50%;

    color: #3f9844;

    font-size: 10px;

    transition:
        background .3s ease,
        color .3s ease;

}


.venice-hero-play:hover span {

    color: #ffffff;

    background: #3f9844;

}
/* =========================================================
   BOTTOM FEATURES
========================================================= */
.venice-hero-features {

    position: absolute;

    z-index: 4;

    left: 50%;

    bottom: 0;

    transform: translateX(-50%);

    width: min(720px, calc(100% - 40px));

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 45px;

    padding: 0 25px;

    background: rgb(182, 255, 179);

    border-top: 1px solid rgba(63,152,68,.12);

    backdrop-filter: blur(8px);

}


.venice-hero-feature {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #07411e;

    font-size: 12px;

    font-weight: 600;

}


.venice-hero-feature i {

    color: #3f9844;

    font-size: 14px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .venice-hero {

        min-height: 520px;

    }


    .venice-hero-content {

        width: 52%;

        padding: 70px 0 100px;

    }


    .venice-hero-content h1 {

        font-size: clamp(40px, 6vw, 58px);

    }


    .venice-hero-features {

        width: calc(100% - 40px);

        gap: 25px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .venice-hero {

        /*
           IMPORTANT:
           Keep the same image composition.
           Do NOT change to a separate mobile image.
        */

        min-height: 500px;

        background-size: cover;

        background-position: center center;

    }


    /* SOFTER MOBILE OVERLAY */

    .venice-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.94) 0%,
                rgba(255,255,255,.78) 38%,
                rgba(255,255,255,.30) 68%,
                rgba(255,255,255,.05) 100%
            );

    }


    .venice-hero-container {

        width: calc(100% - 32px);

    }


    /*
       Keep content on LEFT.
       Do not stack it into a separate section.
    */

    .venice-hero-content {

        width: 58%;

        max-width: 470px;

        padding: 60px 0 100px;

    }


    .venice-hero-label {

        margin-bottom: 13px;

        font-size: 11px;

        letter-spacing: 1px;

    }


    .venice-hero-label-icon {

        width: 27px;

        height: 27px;

        font-size: 11px;

    }


    .venice-hero-content h1 {

        font-size: clamp(34px, 8vw, 48px);

        line-height: 1.06;

        letter-spacing: -1px;

    }


    .venice-hero-content p {

        max-width: 330px;

        margin: 15px 0 21px;

        font-size: 13px;

        line-height: 1.6;

    }


    .venice-hero-buttons {

        gap: 15px;

    }


    .venice-hero-primary {

        min-height: 43px;

        padding: 0 17px;

        font-size: 12px;

    }


    .venice-hero-play {

        font-size: 12px;

    }


    /* FEATURES */

    .venice-hero-features {

        width: calc(100% - 32px);

        min-height: 55px;

        gap: 18px;

        padding: 0 15px;

        overflow: hidden;

    }


    .venice-hero-feature {

        gap: 6px;

        white-space: nowrap;

        font-size: 10px;

    }


    .venice-hero-feature i {

        font-size: 12px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

    .venice-hero {

        /*
           Same desktop image.
           No separate mobile design.
        */

        min-height: 455px;

        background-size: cover;

        background-position: center center;

    }


    .venice-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,.96) 0%,
                rgba(255,255,255,.82) 42%,
                rgba(255,255,255,.38) 72%,
                rgba(255,255,255,.08) 100%
            );

    }


    .venice-hero-container {

        width: calc(100% - 28px);

    }


    .venice-hero-content {

        width: 62%;

        padding: 48px 0 90px;

    }


    .venice-hero-label {

        gap: 7px;

        margin-bottom: 11px;

        font-size: 9px;

    }


    .venice-hero-label-icon {

        width: 24px;

        height: 24px;

        font-size: 10px;

    }


    .venice-hero-content h1 {

        font-size: 34px;

        line-height: 1.08;

    }


    .venice-hero-content p {

        max-width: 270px;

        margin: 13px 0 18px;

        font-size: 11px;

        line-height: 1.55;

    }


    .venice-hero-buttons {

        gap: 12px;

    }


    .venice-hero-primary {

        min-height: 39px;

        padding: 0 14px;

        font-size: 10px;

        gap: 8px;

    }


    .venice-hero-play {

        gap: 6px;

        font-size: 10px;

    }


    .venice-hero-play span {

        width: 27px;

        height: 27px;

        font-size: 8px;

    }


    /* =====================================================
       MOBILE FEATURE BAR
    ===================================================== */

    .venice-hero-features {

        width: calc(100% - 28px);

        min-height: 48px;

        gap: 0;

        padding: 0 10px;

        justify-content: space-around;

    }


    .venice-hero-feature {

        justify-content: center;

        gap: 5px;

        font-size: 8px;

    }


    .venice-hero-feature i {

        font-size: 10px;

    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .venice-hero {

        min-height: 430px;

    }


    .venice-hero-content {

        width: 65%;

        padding-top: 43px;

    }


    .venice-hero-content h1 {

        font-size: 30px;

    }


    .venice-hero-content p {

        font-size: 10px;

        max-width: 230px;

    }


    .venice-hero-primary {

        padding: 0 12px;

        font-size: 9px;

    }


    .venice-hero-play {

        font-size: 9px;

    }


    .venice-hero-feature {

        font-size: 7px;

    }

}
/* =========================================================
   VENICE HEALTH CARE
   ABOUT US SECTION
========================================================= */

.venice-about {

    position: relative;

    width: 100%;

    padding: 50px 20px;

    background:
        linear-gradient(
            135deg,
            #f8fcf8 0%,
            #ffffff 48%,
            #f2f9f3 100%
        );

    overflow: hidden;

}
/* =========================================================
   CONTAINER
========================================================= */

.venice-about-container {

    position: relative;

    z-index: 2;

    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 85px;

    align-items: center;

}


/* =========================================================
   LEFT VISUAL
========================================================= */

.venice-about-visual {

    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* Image wrapper */

.venice-about-image-wrap {

    position: relative;

    width: 430px;

    height: 530px;

    border-radius: 180px 180px 22px 22px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(17, 67, 27, 0.18);

}


/* Image */

.venice-about-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;

}


/* Image hover */

.venice-about-image-wrap:hover
.venice-about-image {

    transform: scale(1.045);

}


/* Soft image overlay */

.venice-about-image-wrap::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02),
            rgba(11,68,25,0.22)
        );

    pointer-events: none;

}


/* =========================================================
   DECORATIVE LEAF
========================================================= */

.venice-about-leaf {

    position: absolute;

    right: 28px;

    top: 35px;

    width: 54px;

    height: 54px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,0.92);

    color: #398d42;

    font-size: 22px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.10);

    z-index: 3;

}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.venice-about-experience {

    position: absolute;

    left: 5px;

    bottom: 50px;

    width: 205px;

    min-height: 105px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 14px;

    background: #ffffff;

    border-radius: 14px;

    box-shadow:
        0 18px 45px rgba(20, 70, 28, 0.16);

    border: 1px solid rgba(56, 139, 65, 0.08);

    z-index: 5;

}


/* Experience icon */

.experience-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf7ee;

    color: #32843a;

    font-size: 19px;

}


/* Experience number */

.experience-content {

    display: flex;

    flex-direction: column;

}


.experience-content strong {

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;

    line-height: 1;

    color: #173f20;

}


.experience-content span {

    margin-top: 5px;

    font-size: 11px;

    line-height: 1.4;

    color: #6c786f;

}


/* =========================================================
   FLOATING BADGE
========================================================= */

.venice-about-badge {

    position: absolute;

    right: 0;

    bottom: 12px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 17px;

    background: rgba(255,255,255,0.94);

    border-radius: 10px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.10);

    z-index: 5;

}


.venice-about-badge > i {

    font-size: 20px;

    color: #3c9647;

}


.venice-about-badge div {

    display: flex;

    flex-direction: column;

}


.venice-about-badge strong {

    font-size: 11px;

    color: #214b29;

}


.venice-about-badge span {

    margin-top: 3px;

    font-size: 11px;

    color: #89928c;

}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.venice-about-content {

    max-width: 600px;

}


/* Label */

.venice-about-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;

}


.label-line {

    width: 34px;

    height: 2px;

    background: #4a984f;

}


.venice-about-label span:last-child {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.2px;

    color: #398641;

}


/* =========================================================
   TITLE
========================================================= */

.venice-about-title {

    margin: 0;

    max-width: 570px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 57px);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -1.5px;

    color: #123b1b;

}


.venice-about-title span {

    display: block;

    color: #3b9144;

    font-style: italic;

}


/* =========================================================
   TEXT
========================================================= */

.venice-about-intro {

    margin: 25px 0 13px;

    max-width: 560px;

    font-size: 17px;

    line-height: 1.75;

    font-weight: 600;

    color: #314438;

}


.venice-about-description {

    margin: 0;

    max-width: 575px;

    font-size: 14px;

    line-height: 1.85;

    color: #69746c;

}


/* =========================================================
   POINTS
========================================================= */

.venice-about-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 17px;

    margin-top: 28px;

}


.venice-about-point {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 17px;

    background: rgba(255,255,255,0.72);

    border: 1px solid rgba(55, 137, 64, 0.10);

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.venice-about-point:hover {

    transform: translateY(-4px);

    border-color: rgba(55, 137, 64, 0.22);

    box-shadow:
        0 12px 30px rgba(38, 93, 43, 0.08);

}


/* Point icon */

.point-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    border-radius: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf7ef;

    color: #398c42;

    font-size: 15px;

}


.venice-about-point h3 {

    margin: 1px 0 5px;

    font-size: 13px;

    font-weight: 700;

    color: #21492a;

}


.venice-about-point p {

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #758077;

}


/* =========================================================
   STATS
========================================================= */

.venice-about-stats {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 32px;

    padding-top: 25px;

    border-top: 1px solid rgba(47, 111, 54, 0.13);

}


.venice-about-stat {

    display: flex;

    align-items: center;

    gap: 10px;

}


.venice-about-stat strong {

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    color: #277333;

}


.venice-about-stat span {

    font-size: 13px;

    line-height: 1.45;

    text-transform: uppercase;

    letter-spacing: .8px;

    color: #7c877f;

}


.stat-divider {

    width: 1px;

    height: 35px;

    background: rgba(46, 110, 54, 0.15);

}


/* =========================================================
   BUTTON
========================================================= */

.venice-about-button {

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 29px;

    padding: 13px 7px 13px 20px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    color: #ffffff;

    background: #338a3e;

    border-radius: 5px;

    box-shadow:
        0 10px 25px rgba(47, 131, 57, 0.18);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.venice-about-button span {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    background: rgba(255,255,255,0.14);

}


.venice-about-button:hover {

    background: #247330;

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(47, 131, 57, 0.25);

}


.venice-about-button:hover i {

    transform: translateX(3px);

}


.venice-about-button i {

    transition: transform 0.25s ease;

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .venice-about {

        padding: 80px 25px;

    }


    .venice-about-container {

        grid-template-columns: 0.9fr 1.1fr;

        gap: 50px;

    }


    .venice-about-image-wrap {

        width: 370px;

        height: 480px;

    }


    .venice-about-visual {

        min-height: 540px;

    }


    .venice-about-experience {

        left: -5px;

    }


    .venice-about-title {

        font-size: 44px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .venice-about {

        padding: 70px 22px;

    }


    .venice-about-container {

        grid-template-columns: 1fr;

        gap: 55px;

        max-width: 650px;

    }


    .venice-about-visual {

        min-height: 500px;

    }


    .venice-about-image-wrap {

        width: min(420px, 78%);

        height: 500px;

    }


    .venice-about-content {

        max-width: 100%;

    }


    .venice-about-title {

        max-width: 650px;

    }


    .venice-about-intro,
    .venice-about-description {

        max-width: 100%;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .venice-about {

        padding: 58px 17px;

    }


    .venice-about-container {

        gap: 42px;

    }


    /* Visual */

    .venice-about-visual {

        min-height: 410px;

    }


    .venice-about-image-wrap {

        width: calc(100% - 45px);

        height: 410px;

        border-radius: 130px 130px 18px 18px;

    }


    .venice-about-leaf {

        width: 44px;

        height: 44px;

        right: 22px;

        top: 25px;

        font-size: 17px;

    }


    /* Experience */

    .venice-about-experience {

        left: 0;

        bottom: 23px;

        width: 170px;

        min-height: 83px;

        padding: 13px;

        gap: 10px;

        border-radius: 11px;

    }


    .experience-icon {

        width: 39px;

        height: 39px;

        font-size: 15px;

    }


    .experience-content strong {

        font-size: 25px;

    }


    .experience-content span {

        font-size: 9px;

    }


    /* Badge */

    .venice-about-badge {

        right: 0;

        bottom: 4px;

        padding: 10px 12px;

        gap: 8px;

    }


    .venice-about-badge > i {

        font-size: 16px;

    }


    .venice-about-badge strong {

        font-size: 9px;

    }


    .venice-about-badge span {

        font-size: 10px;

    }


    /* Label */

    .venice-about-label {

        margin-bottom: 14px;

    }


    .venice-about-label span:last-child {

        font-size: 9px;

        letter-spacing: 1.6px;

    }


    .label-line {

        width: 27px;

    }


    /* Heading */

    .venice-about-title {

        font-size: 37px;

        line-height: 1.1;

        letter-spacing: -1px;

    }


    /* Text */

    .venice-about-intro {

        margin-top: 19px;

        font-size: 14px;

        line-height: 1.7;

    }


    .venice-about-description {

        font-size: 12.5px;

        line-height: 1.75;

    }


    /* Points */

    .venice-about-points {

        grid-template-columns: 1fr;

        gap: 11px;

        margin-top: 23px;

    }


    .venice-about-point {

        padding: 13px;

    }


    .venice-about-point h3 {

        font-size: 12px;

    }


    .venice-about-point p {

        font-size: 13px;

    }


    /* Stats */

    .venice-about-stats {

        justify-content: space-between;

        gap: 10px;

        margin-top: 25px;

        padding-top: 20px;

    }


    .venice-about-stat {

        gap: 6px;

    }


    .venice-about-stat strong {

        font-size: 22px;

    }


    .venice-about-stat span {

        font-size: 10px;

        letter-spacing: .5px;

    }


    .stat-divider {

        height: 28px;

    }


    /* Button */

    .venice-about-button {

        margin-top: 24px;

        padding: 11px 6px 11px 17px;

        font-size: 11px;

    }


    .venice-about-button span {

        width: 29px;

        height: 29px;

    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .venice-about {

        padding: 50px 14px;

    }


    .venice-about-visual {

        min-height: 365px;

    }


    .venice-about-image-wrap {

        width: calc(100% - 35px);

        height: 365px;

    }


    .venice-about-experience {

        width: 150px;

        bottom: 18px;

    }


    .venice-about-badge {

        padding: 8px 9px;

    }


    .venice-about-badge span {

        display: none;

    }


    .venice-about-title {

        font-size: 32px;

    }


    .venice-about-intro {

        font-size: 13px;

    }


    .venice-about-description {

        font-size: 12px;

    }


    .venice-about-stats {

        gap: 7px;

    }


    .venice-about-stat strong {

        font-size: 19px;

    }


    .venice-about-stat span {

        font-size: 6.5px;

    }
}
/* =========================================================
   VENICE HEALTH CARE
   PRODUCTS SECTION
========================================================= */

.venice-products {

    position: relative;

    padding: 50px 0 65px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(55, 145, 63, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(55, 145, 63, 0.06),
            transparent 30%
        ),
        #f8fbf7;

    overflow: hidden;

}


/* =========================================================
   CONTAINER
========================================================= */

.venice-products-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   SECTION HEADER
========================================================= */

.venice-products-header {

    max-width: 720px;

    margin: 0 auto 48px;

    text-align: center;

}


.venice-section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    padding: 7px 14px;

    border: 1px solid rgba(39, 126, 47, 0.18);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.7);

    color: #32823a;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.3px;

}


.venice-section-label i {

    font-size: 12px;

}


.venice-products-header h2 {

    margin: 0;

    color: #103f1a;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.6px;

}


.venice-products-header h2 span {

    color: #398d40;

    font-style: italic;

}


.venice-products-header p {

    max-width: 620px;

    margin: 15px auto 0;

    color: #647466;

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   PRODUCTS GRID
========================================================= */

.venice-products-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.venice-product-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid rgba(44, 111, 51, 0.11);

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(25, 72, 30, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

}


.venice-product-card:hover {

    transform: translateY(-8px);

    border-color: rgba(52, 135, 60, 0.22);

    box-shadow:
        0 20px 45px rgba(25, 72, 30, 0.13);

}


/* =========================================================
   IMAGE AREA
========================================================= */

.venice-product-image {

    position: relative;

    height: 265px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f5faf4,
            #eef7ed
        );

}


/* subtle decorative circle */

.venice-product-image::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(76, 157, 81, 0.08);

    transform: translate(30px, 10px);

}


/* product image */

.venice-product-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 18px;

    transition:
        transform 0.5s ease;

}


.venice-product-card:hover
.venice-product-image img {

    transform: scale(1.05);

}


/* =========================================================
   BADGE
========================================================= */

.venice-product-badge {

    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 6px 9px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.94);

    color: #287a31;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.3px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);

}


.venice-product-badge i {

    font-size: 9px;

}


/* =========================================================
   IMAGE HOVER BUTTON
========================================================= */

.venice-product-overlay {

    position: absolute;

    right: 14px;

    bottom: 14px;

    z-index: 3;

}


.venice-product-overlay a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #24762d;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    opacity: 0;

    transform: translateY(8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

}


.venice-product-card:hover
.venice-product-overlay a {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   CONTENT
========================================================= */

.venice-product-content {

    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 20px 20px 21px;

}


/* category */

.venice-product-category {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 8px;

    color: #59935d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.4px;

    text-transform: uppercase;

}


.venice-product-category i {

    font-size: 10px;

}


/* title */

.venice-product-content h3 {

    margin: 0 0 8px;

    color: #173f1c;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 700;

}


/* description */

.venice-product-content p {

    margin: 0 0 17px;

    color: #6c786e;

    font-size: 13px;

    line-height: 1.65;

}


/* =========================================================
   PRODUCT LINK
========================================================= */

.venice-product-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;

    color: #24762d;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: gap 0.25s ease;

}


.venice-product-link i {

    font-size: 11px;

}


.venice-product-link:hover {

    gap: 13px;

}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .venice-products {

        padding: 75px 0 80px;

    }


    .venice-products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 22px;

    }


    .venice-product-image {

        height: 300px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .venice-products {

        padding: 60px 0 65px;

    }


    .venice-products-container {

        width: calc(100% - 28px);

    }


    .venice-products-header {

        margin-bottom: 30px;

    }


    .venice-section-label {

        font-size: 11px;

        padding: 6px 12px;

    }


    .venice-products-header h2 {

        font-size: 32px;

        line-height: 1.18;

    }


    .venice-products-header p {

        margin-top: 12px;

        font-size: 13px;

        line-height: 1.65;

    }


    /* 2 CARDS PER ROW */

    .venice-products-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 13px;

    }


    .venice-product-card {

        border-radius: 14px;

    }


    .venice-product-image {

        height: 205px;

    }


    .venice-product-image img {

        padding: 10px;

    }


    .venice-product-image::before {

        width: 130px;

        height: 130px;

    }


    .venice-product-badge {

        top: 9px;

        left: 9px;

        padding: 5px 7px;

        font-size: 8px;

    }


    .venice-product-badge i {

        font-size: 7px;

    }


    .venice-product-overlay {

        right: 9px;

        bottom: 9px;

    }


    .venice-product-overlay a {

        width: 32px;

        height: 32px;

        font-size: 10px;

    }


    .venice-product-content {

        padding: 15px 13px 16px;

    }


    .venice-product-category {

        margin-bottom: 6px;

        font-size: 8px;

        letter-spacing: 0.25px;

    }


    .venice-product-category i {

        font-size: 8px;

    }


    .venice-product-content h3 {

        margin-bottom: 6px;

        font-size: 17px;

    }


    .venice-product-content p {

        margin-bottom: 13px;

        font-size: 11px;

        line-height: 1.55;

    }


    .venice-product-link {

        font-size: 11px;

        gap: 6px;

    }


    .venice-product-link i {

        font-size: 9px;

    }


    /* BOTTOM CTA */

    .venice-products-footer {

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 13px;

        margin-top: 25px;

        padding: 17px 15px;

        text-align: center;

    }


    .venice-products-footer-text {

        justify-content: center;

        font-size: 11px;

        line-height: 1.5;

    }


    .venice-products-btn {

        padding: 10px 15px;

        font-size: 11px;

    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 370px) {

    .venice-products-grid {

        gap: 10px;

    }


    .venice-product-image {

        height: 180px;

    }


    .venice-product-content {

        padding: 13px 11px 14px;

    }


    .venice-product-content h3 {

        font-size: 15px;

    }


    .venice-product-content p {

        font-size: 10px;

    }
   .venice-product-link {

        font-size: 10px;

    }
}
/* =====================================================
   VENICE HEALTH CARE
   WHY CHOOSE US
====================================================== */

.venice-why {
    position: relative;
    padding: 105px 20px;

    background: #f7faf7;

    overflow: hidden;
}


/* ================= DECORATIVE ELEMENTS ================= */

.venice-why::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(61, 122, 69, 0.08);

    top: -220px;
    right: -150px;
}

.venice-why::after {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    border: 1px solid rgba(61, 122, 69, 0.06);

    bottom: -160px;
    left: -130px;
}


/* ================= CONTAINER ================= */

.venice-why-container {
    position: relative;
    z-index: 2;

    max-width: 1220px;
    margin: 0 auto;
}


/* ================= HEADER ================= */

.venice-why-header {
    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}


.venice-why-eyebrow {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    margin-bottom: 17px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #4a8451;
}


.venice-why-eyebrow i {
    font-size: 13px;
}


.venice-why-header h2 {
    margin: 0 0 17px;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.12;

    font-weight: 700;

    color: #193b25;
}


.venice-why-header h2 span {
    color: #4c8b55;
}


.venice-why-header p {
    max-width: 580px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.75;

    color: #68756c;
}


/* =====================================================
   FOUR CARD GRID
====================================================== */

.venice-why-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   CARD
====================================================== */

.venice-why-card {
    position: relative;

    min-height: 335px;

    padding: 27px 24px 25px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e4ebe5;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(28, 70, 38, 0.045);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Elegant top accent */

.venice-why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 24px;
    right: 24px;

    height: 3px;

    border-radius: 0 0 10px 10px;

    background: #4c8b55;

    transform: scaleX(0.25);

    transform-origin: center;

    transition: transform 0.35s ease;
}


.venice-why-card:hover {
    transform: translateY(-8px);

    border-color: #cbdccc;

    box-shadow:
        0 20px 45px rgba(28, 70, 38, 0.10);
}


.venice-why-card:hover::before {
    transform: scaleX(1);
}


/* =====================================================
   NUMBER
====================================================== */

.venice-why-number {
    align-self: flex-end;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #a2aea5;
}


/* =====================================================
   ICON
====================================================== */

.venice-why-icon {
    width: 58px;
    height: 58px;

    margin-top: 18px;
    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #edf5ee;

    color: #43804b;

    font-size: 21px;

    transition:
        transform 0.35s ease,
        border-radius 0.35s ease;
}


.venice-why-card:hover .venice-why-icon {
    transform: translateY(-3px);

    border-radius: 50%;
}


/* =====================================================
   CARD CONTENT
====================================================== */

.venice-why-card-content {
    flex: 1;
}


.venice-why-card h3 {
    margin: 0 0 13px;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 700;

    color: #213d29;
}


.venice-why-card p {
    margin: 0;

    font-size: 14px;

    line-height: 1.75;

    color: #6d786f;
}


/* =====================================================
   BOTTOM ARROW
====================================================== */

.venice-why-arrow {
    width: 34px;
    height: 34px;

    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f6f1;

    color: #4a8451;

    font-size: 12px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.venice-why-card:hover .venice-why-arrow {
    transform: translateX(5px);

    background: #e5f0e6;
}


/* =====================================================
   LARGE TABLET
====================================================== */

@media (max-width: 1100px) {

    .venice-why {
        padding: 90px 20px;
    }

    .venice-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .venice-why-card {
        min-height: 300px;
    }
}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 650px) {

    .venice-why {
        padding: 70px 16px;
    }


    .venice-why-header {
        margin-bottom: 38px;
    }


    .venice-why-eyebrow {
        margin-bottom: 14px;

        font-size: 10px;

        letter-spacing: 1.6px;
    }


    .venice-why-header h2 {
        margin-bottom: 15px;

        font-size: 32px;

        line-height: 1.15;
    }


    .venice-why-header p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* One card per row */

    .venice-why-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .venice-why-card {
        min-height: 0;

        padding: 24px 20px;

        border-radius: 15px;
    }


    .venice-why-card::before {
        left: 20px;
        right: 20px;
    }


    .venice-why-number {
        font-size: 10px;
    }


    .venice-why-icon {
        width: 50px;
        height: 50px;

        margin-top: 14px;
        margin-bottom: 20px;

        border-radius: 14px;

        font-size: 18px;
    }


    .venice-why-card h3 {
        font-size: 17px;

        margin-bottom: 9px;
    }


    .venice-why-card p {
        font-size: 13px;

        line-height: 1.7;
    }


    .venice-why-arrow {
        width: 32px;
        height: 32px;

        margin-top: 20px;
    }

}


/* =====================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 380px) {

    .venice-why {
        padding: 60px 14px;
    }


    .venice-why-header h2 {
        font-size: 29px;
    }


    .venice-why-card {
        padding: 22px 17px;
    }

}
/* =====================================================
   VENICE HEALTH CARE
   WHY CHOOSE US STRIP
====================================================== */

.venice-why-strip {
    position: relative;

    width: 100%;

    padding: 18px 20px 20px;

    background:
        linear-gradient(
            90deg,
            #f8fcfd 0%,
            #ffffff 28%,
            #ffffff 72%,
            #f8fcfd 100%
        );

    overflow: hidden;

    border-top: 1px solid rgba(80, 120, 100, 0.04);
    border-bottom: 1px solid rgba(80, 120, 100, 0.05);
}


/* =====================================================
   INNER
====================================================== */

.venice-why-inner {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 1120px;

    margin: 0 auto;
}


/* =====================================================
   HEADER
====================================================== */

.venice-why-heading {
    text-align: center;

    margin-bottom: 13px;
}


.venice-why-label {
    display: block;

    margin-bottom: 3px;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.1px;

    color: #3e7748;
}


.venice-why-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    line-height: 1.15;

    font-weight: 700;

    color: #172e4e;
}


/* =====================================================
   DECORATIVE LEAF
====================================================== */

.venice-why-decoration {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 5px;
}


.venice-why-line {
    width: 42px;
    height: 1px;

    background: #7da78a;
}


.venice-why-decoration i {
    position: relative;

    font-size: 10px;

    color: #4d8b56;

    transform: rotate(-10deg);
}


/* =====================================================
   BENEFITS ROW
====================================================== */

.venice-why-benefits {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    width: 100%;
}


/* =====================================================
   BENEFIT ITEM
====================================================== */

.venice-why-item {
    position: relative;

    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 7px 25px;
}


/* Vertical separator */

.venice-why-item + .venice-why-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;
    bottom: 5px;

    width: 1px;

    background: #dce3e3;
}


/* =====================================================
   ICON
====================================================== */

.venice-why-icon {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #397847;

    font-size: 25px;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.venice-why-item:hover .venice-why-icon {
    transform: translateY(-2px);

    color: #285f35;
}


/* =====================================================
   TEXT
====================================================== */

.venice-why-text {
    min-width: 0;
}


.venice-why-text h3 {
    margin: 0 0 4px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;
    line-height: 1.25;

    font-weight: 700;

    color: #172e4e;

    white-space: nowrap;
}


.venice-why-text p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
    line-height: 1.45;

    color: #626a70;
}


/* =====================================================
   ECG DECORATION
====================================================== */

.venice-why-ecg {
    position: absolute;

    z-index: 1;

    width: 190px;
    height: 60px;

    top: 48px;

    opacity: 0.48;

    pointer-events: none;
}


.venice-why-ecg svg {
    display: block;

    width: 100%;
    height: 100%;
}


.venice-why-ecg polyline {
    fill: none;

    stroke: #b7d7df;

    stroke-width: 1.2;

    vector-effect: non-scaling-stroke;
}


.venice-why-ecg-left {
    left: -12px;
}


.venice-why-ecg-right {
    right: -12px;

    transform: scaleX(-1);
}


/* =====================================================
   PLUS SYMBOL
====================================================== */

.venice-why-plus {
    position: absolute;

    z-index: 1;

    right: 6.5%;

    top: 8px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 55px;

    line-height: 1;

    font-weight: 700;

    color: rgba(255, 255, 255, 0.95);

    pointer-events: none;
}


/* =====================================================
   TABLET
====================================================== */

@media (max-width: 1000px) {

    .venice-why-strip {
        padding: 18px 15px 20px;
    }


    .venice-why-item {
        gap: 9px;

        padding-left: 15px;
        padding-right: 15px;
    }


    .venice-why-icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;

        font-size: 22px;
    }


    .venice-why-text h3 {
        font-size: 11px;
    }


    .venice-why-text p {
        font-size: 9px;
    }


    .venice-why-ecg {
        width: 150px;
    }

}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 700px) {

    .venice-why-strip {
        padding: 28px 16px 25px;

        background: #ffffff;
    }


    /* Hide large decorative ECG on mobile */

    .venice-why-ecg {
        display: none;
    }


    .venice-why-plus {
        right: 10px;

        top: 8px;

        font-size: 40px;

        color: rgba(226, 238, 231, 0.65);
    }


    /* Header */

    .venice-why-heading {
        margin-bottom: 24px;
    }


    .venice-why-label {
        margin-bottom: 6px;

        font-size: 10px;
    }


    .venice-why-heading h2 {
        font-size: 27px;
    }


    .venice-why-decoration {
        margin-top: 7px;
    }


    .venice-why-line {
        width: 30px;
    }


    /* 2 x 2 mobile grid */

    .venice-why-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        border-top: 1px solid #e2e9e5;
        border-left: 1px solid #e2e9e5;
    }


    .venice-why-item {
        justify-content: flex-start;

        min-height: 105px;

        padding: 18px 14px;

        gap: 11px;
    }


    /* Vertical separators */

    .venice-why-item + .venice-why-item::before {
        display: none;
    }


    /* Right column border */

    .venice-why-item:nth-child(even) {
        border-left: 1px solid #e2e9e5;
    }


    /* Horizontal separators */

    .venice-why-item:nth-child(n + 3) {
        border-top: 1px solid #e2e9e5;
    }


    .venice-why-icon {
        flex: 0 0 38px;

        width: 38px;
        height: 38px;

        font-size: 21px;
    }


    .venice-why-text h3 {
        font-size: 11px;

        line-height: 1.3;

        white-space: normal;
    }


    .venice-why-text p {
        font-size: 9px;

        line-height: 1.45;
    }


    .desktop-break {
        display: none;
    }

}


/* =====================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 420px) {

    .venice-why-strip {
        padding: 25px 12px 22px;
    }


    .venice-why-heading h2 {
        font-size: 24px;
    }


    .venice-why-item {
        min-height: 110px;

        padding: 16px 10px;

        gap: 9px;
    }


    .venice-why-icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;

        font-size: 18px;
    }


    .venice-why-text h3 {
        font-size: 11px;
    }


    .venice-why-text p {
        font-size: 11px;
    }

}


/* =====================================================
   VERY SMALL DEVICES
====================================================== */

@media (max-width: 340px) {

    .venice-why-heading h2 {
        font-size: 22px;
    }


    .venice-why-item {
        padding: 14px 7px;

        gap: 7px;
    }


    .venice-why-icon {
        flex-basis: 30px;

        width: 30px;
        height: 30px;

        font-size: 16px;
    }

}
/* =====================================================
   VENICE HEALTH CARE
   PURPOSE SECTION
====================================================== */

.venice-purpose {
    width: 100%;

    padding: 75px 20px;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   MAIN CONTAINER
====================================================== */

.venice-purpose-container {
    position: relative;

    max-width: 1180px;

    min-height: 430px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 48% 52%;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(20, 48, 78, 0.12);
}


/* =====================================================
   IMAGE SIDE
====================================================== */

.venice-purpose-image {
    position: relative;

    min-height: 430px;

    overflow: hidden;
}


.venice-purpose-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.7s ease;
}


.venice-purpose-container:hover
.venice-purpose-image img {
    transform: scale(1.045);
}


/* =====================================================
   IMAGE OVERLAY
====================================================== */

.venice-purpose-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 44, 72, 0.02),
            rgba(15, 44, 72, 0.18)
        );

    pointer-events: none;
}


/* =====================================================
   FLOATING BADGE
====================================================== */

.venice-purpose-badge {
    position: absolute;

    left: 28px;
    bottom: 28px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 17px;

    background: rgba(255, 255, 255, 0.94);

    border-radius: 9px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(8px);
}


.venice-purpose-badge-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf5ee;

    color: #43804c;

    font-size: 16px;
}


.venice-purpose-badge strong,
.venice-purpose-badge span {
    display: block;
}


.venice-purpose-badge strong {
    margin-bottom: 2px;

    font-size: 13px;

    line-height: 1.2;

    color: #17324f;
}


.venice-purpose-badge span {
    font-size: 10px;

    line-height: 1.3;

    color: #718079;
}


/* =====================================================
   BLUE CONTENT
====================================================== */

.venice-purpose-content {
    position: relative;

    display: flex;

    align-items: center;

    background: #153b63;

    overflow: hidden;
}


/* =====================================================
   BLUE DECORATIVE CIRCLE
====================================================== */

.venice-purpose-circle {
    position: absolute;

    width: 320px;
    height: 320px;

    right: -170px;
    top: -160px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 50%;
}


.venice-purpose-circle::after {
    content: "";

    position: absolute;

    inset: 30px;

    border: 1px solid rgba(255, 255, 255, 0.055);

    border-radius: 50%;
}


/* =====================================================
   PLUS
====================================================== */

.venice-purpose-plus {
    position: absolute;

    right: 38px;
    bottom: -18px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 100px;

    line-height: 1;

    font-weight: 300;

    color: rgba(255, 255, 255, 0.045);

    user-select: none;
}


/* =====================================================
   CONTENT INNER
====================================================== */

.venice-purpose-content-inner {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 50px 55px;
}


/* =====================================================
   LABEL
====================================================== */

.venice-purpose-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.68);
}


.venice-purpose-label span {
    display: inline-block;

    width: 30px;
    height: 1px;

    background: #a5d5b0;
}


/* =====================================================
   HEADING
====================================================== */

.venice-purpose-content h2 {
    max-width: 470px;

    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(32px, 3.5vw, 45px);

    line-height: 1.12;

    font-weight: 400;

    color: #ffffff;
}


.venice-purpose-content h2 strong {
    display: block;

    font-weight: 700;

    color: #b6dfbe;
}


/* =====================================================
   DESCRIPTION
====================================================== */

.venice-purpose-content p {
    max-width: 500px;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.73);
}


/* =====================================================
   HIGHLIGHTS
====================================================== */

.venice-purpose-highlights {
    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 23px;
}


.venice-purpose-highlight {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 11px;

    font-weight: 600;

    color: rgba(255, 255, 255, 0.86);
}


.venice-purpose-highlight i {
    width: 18px;
    height: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(169, 218, 180, 0.15);

    color: #a9d9b3;

    font-size: 9px;
}


/* =====================================================
   BUTTON
====================================================== */

.venice-purpose-button {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 27px;

    padding: 12px 18px;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.26);

    border-radius: 5px;

    font-size: 12px;

    font-weight: 600;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.06);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.venice-purpose-button i {
    transition: transform 0.3s ease;
}


.venice-purpose-button:hover {
    background: rgba(255, 255, 255, 0.13);

    border-color: rgba(255, 255, 255, 0.45);

    transform: translateY(-2px);
}


.venice-purpose-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   TABLET
====================================================== */

@media (max-width: 900px) {

    .venice-purpose {
        padding: 60px 18px;
    }


    .venice-purpose-container {
        grid-template-columns: 44% 56%;

        min-height: 400px;

        border-radius: 18px;
    }


    .venice-purpose-image {
        min-height: 400px;
    }


    .venice-purpose-content-inner {
        padding: 40px 38px;
    }


    .venice-purpose-content h2 {
        font-size: 34px;
    }


    .venice-purpose-content p {
        font-size: 13px;
    }


    .venice-purpose-highlights {
        gap: 13px 18px;
    }

}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 700px) {

    .venice-purpose {
        padding: 45px 14px;
    }


    .venice-purpose-container {
        display: flex;

        flex-direction: column;

        min-height: auto;

        border-radius: 16px;
    }


    /* Image becomes top */

    .venice-purpose-image {
        width: 100%;

        height: 250px;

        min-height: 250px;
    }


    .venice-purpose-badge {
        left: 18px;
        bottom: 18px;

        padding: 9px 13px;

        gap: 9px;
    }


    .venice-purpose-badge-icon {
        width: 32px;
        height: 32px;

        font-size: 14px;
    }


    .venice-purpose-badge strong {
        font-size: 11px;
    }


    .venice-purpose-badge span {
        font-size: 9px;
    }


    /* Blue section */

    .venice-purpose-content {
        min-height: 390px;
    }


    .venice-purpose-content-inner {
        padding: 38px 24px 40px;
    }


    .venice-purpose-label {
        margin-bottom: 13px;

        font-size: 9px;

        letter-spacing: 1.7px;
    }


    .venice-purpose-label span {
        width: 24px;
    }


    .venice-purpose-content h2 {
        margin-bottom: 16px;

        font-size: 31px;

        line-height: 1.15;
    }


    .venice-purpose-content p {
        font-size: 13px;

        line-height: 1.75;
    }


    .venice-purpose-highlights {
        flex-direction: column;

        gap: 11px;

        margin-top: 20px;
    }


    .venice-purpose-highlight {
        font-size: 11px;
    }


    .venice-purpose-button {
        margin-top: 24px;

        padding: 11px 16px;

        font-size: 11px;
    }


    .venice-purpose-circle {
        width: 240px;
        height: 240px;

        right: -140px;
        top: -120px;
    }


    .venice-purpose-plus {
        right: 15px;
        bottom: -12px;

        font-size: 75px;
    }

}


/* =====================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 380px) {

    .venice-purpose {
        padding: 38px 12px;
    }


    .venice-purpose-image {
        height: 220px;

        min-height: 220px;
    }


    .venice-purpose-content-inner {
        padding: 32px 20px 34px;
    }


    .venice-purpose-content h2 {
        font-size: 28px;
    }


    .venice-purpose-content p {
        font-size: 12px;
    }


    .venice-purpose-highlight {
        font-size: 10px;
    }

}
/* =====================================================
   VENICE HEALTH CARE
   MEDIUM HEIGHT TESTIMONIAL SECTION
====================================================== */

.vh-testimonials {
    width: 100%;
    padding: 42px 20px 38px;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   MAIN WRAPPER
====================================================== */

.vh-testimonials-wrap {
    width: 100%;
    max-width: 1180px;

    min-height: 185px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 210px minmax(0, 1fr);

    column-gap: 32px;

    align-items: center;
}


/* =====================================================
   LEFT CONTENT
====================================================== */

.vh-testimonials-intro {
    align-self: center;
}


.vh-testimonials-label {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #4a8151;
}


.vh-testimonials-intro h2 {
    margin: 0;

    max-width: 200px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.18;

    font-weight: 600;

    color: #183a28;
}


/* =====================================================
   DECORATIVE LEAF
====================================================== */

.vh-title-leaf {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 5px;

    margin: 8px 0 14px;
}


.vh-title-leaf span {
    display: block;

    width: 19px;

    height: 1px;

    background: #83a989;
}


.vh-title-leaf i {
    font-size: 10px;

    color: #4a8151;
}


/* =====================================================
   VIEW REVIEWS BUTTON
====================================================== */

.vh-view-reviews {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 101px;

    height: 30px;

    padding: 0 12px;

    border: 1px solid #7fa287;

    border-radius: 4px;

    background: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    color: #426d49;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.vh-view-reviews i {
    font-size: 8px;

    transition:
        transform .25s ease;
}


.vh-view-reviews:hover {
    background: #426d49;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(66, 109, 73, .15);
}


.vh-view-reviews:hover i {
    transform: translateX(3px);
}


/* =====================================================
   SLIDER
====================================================== */

.vh-testimonials-slider {
    position: relative;

    min-width: 0;

    padding-right: 30px;
}


/* =====================================================
   VIEWPORT
====================================================== */

.vh-testimonials-viewport {
    width: 100%;

    overflow: hidden;

    padding: 6px 3px 8px;
}


/* =====================================================
   TRACK
====================================================== */

.vh-testimonials-track {
    display: flex;

    gap: 14px;

    will-change: transform;

    transition:
        transform .55s
        cubic-bezier(.22, .61, .36, 1);
}


/* =====================================================
   TESTIMONIAL CARD
====================================================== */

.vh-review-card {
    position: relative;

    flex: 0 0 calc(
        (100% - 28px) / 3
    );

    min-width: 0;

    height: 142px;

    padding: 17px 18px 15px;

    display: flex;

    flex-direction: column;

    border: 1px solid #e5ebe6;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(
            29,
            64,
            37,
            .075
        );

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.vh-review-card:hover {
    transform: translateY(-4px);

    border-color: #d3dfd5;

    box-shadow:
        0 12px 28px rgba(
            29,
            64,
            37,
            .12
        );
}


/* =====================================================
   TOP
====================================================== */

.vh-review-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 22px;

    margin-bottom: 7px;
}


/* =====================================================
   QUOTE
====================================================== */

.vh-quote {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;

    line-height: 20px;

    font-weight: 700;

    color: #2f7740;
}


/* =====================================================
   STARS
====================================================== */

.vh-stars {
    font-size: 9px;

    line-height: 1;

    letter-spacing: 1.2px;

    color: #f1ad16;
}


/* =====================================================
   REVIEW TEXT
====================================================== */

.vh-review-card p {
    margin: 0;

    height: 51px;

    overflow: hidden;

    font-size: 14px;

    line-height: 1.55;

    color: #555f59;
}


/* =====================================================
   USER
====================================================== */

.vh-review-user {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: auto;
}


/* =====================================================
   AVATAR
====================================================== */

.vh-user-avatar {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f1e9;

    color: #397447;

    font-size: 11px;

    font-weight: 700;
}


/* =====================================================
   USER INFO
====================================================== */

.vh-user-info {
    min-width: 0;
}


.vh-user-info strong {
    display: block;

    margin-bottom: 2px;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 700;

    color: #274631;
}


.vh-user-info span {
    display: block;

    font-size: 11px;

    line-height: 1.2;

    color: #8a928d;
}


/* =====================================================
   NEXT BUTTON
====================================================== */

.vh-review-next {
    position: absolute;

    right: -1px;

    top: 50%;

    transform: translateY(-50%);

    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #28743b;

    color: #ffffff;

    cursor: pointer;

    font-size: 8px;

    box-shadow:
        0 6px 16px rgba(
            40,
            116,
            59,
            .25
        );

    z-index: 5;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.vh-review-next:hover {
    background: #216432;

    transform:
        translateY(-50%)
        scale(1.1);

    box-shadow:
        0 8px 20px rgba(
            40,
            116,
            59,
            .32
        );
}


.vh-review-next:active {
    transform:
        translateY(-50%)
        scale(.92);
}


/* =====================================================
   DOTS
====================================================== */

.vh-review-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    margin-top: 6px;
}


.vh-review-dots button {
    width: 6px;
    height: 6px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #d7e0d9;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.vh-review-dots button.active {
    width: 18px;

    border-radius: 6px;

    background: #4d8b56;
}


/* =====================================================
   LARGE TABLET
====================================================== */

@media (max-width: 1100px) {

    .vh-testimonials-wrap {
        grid-template-columns:
            195px
            minmax(0, 1fr);

        column-gap: 25px;
    }


    .vh-review-card {
        flex-basis:
            calc(
                (100% - 14px) / 2
            );
    }

}


/* =====================================================
   TABLET
====================================================== */

@media (max-width: 850px) {

    .vh-testimonials {
        padding: 38px 18px;
    }


    .vh-testimonials-wrap {
        grid-template-columns:
            175px
            minmax(0, 1fr);

        column-gap: 20px;
    }


    .vh-testimonials-intro h2 {
        font-size: 23px;
    }


    .vh-review-card {
        height: 145px;
    }

}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 700px) {

    .vh-testimonials {
        padding: 42px 15px 38px;
    }


    .vh-testimonials-wrap {
        display: block;

        min-height: auto;
    }


    /* ---------- INTRO ---------- */

    .vh-testimonials-intro {
        text-align: center;

        margin-bottom: 25px;
    }


    .vh-testimonials-intro h2 {
        max-width: none;

        font-size: 29px;

        line-height: 1.15;
    }


    .vh-title-leaf {
        justify-content: center;

        margin-top: 9px;

        margin-bottom: 14px;
    }


    .vh-view-reviews {
        height: 30px;

        font-size: 9px;
    }


    /* ---------- SLIDER ---------- */

    .vh-testimonials-slider {
        padding: 0 15px;
    }


    .vh-testimonials-viewport {
        padding:
            5px
            2px
            10px;
    }


    .vh-testimonials-track {
        gap: 12px;
    }


    .vh-review-card {
        flex: 0 0 100%;

        height: 158px;

        padding:
            18px
            19px
            16px;

        border-radius: 12px;
    }


    .vh-review-top {
        margin-bottom: 7px;
    }


    .vh-quote {
        font-size: 32px;
    }


    .vh-stars {
        font-size: 9px;
    }


    .vh-review-card p {
        height: auto;

        max-height: 62px;

        font-size: 11px;

        line-height: 1.65;
    }


    .vh-user-avatar {
        width: 31px;
        height: 31px;

        flex-basis: 31px;

        font-size: 8px;
    }


    .vh-user-info strong {
        font-size: 9px;
    }


    .vh-user-info span {
        font-size: 8px;
    }


    /* ---------- BUTTON ---------- */

    .vh-review-next {
        right: -2px;

        width: 30px;
        height: 30px;

        font-size: 9px;
    }


    .vh-review-dots {
        margin-top: 9px;
    }

}


/* =====================================================
   SMALL MOBILE
====================================================== */

@media (max-width: 380px) {

    .vh-testimonials {
        padding:
            35px
            10px
            32px;
    }


    .vh-testimonials-intro {
        margin-bottom: 20px;
    }


    .vh-testimonials-intro h2 {
        font-size: 26px;
    }


    .vh-testimonials-slider {
        padding: 0 11px;
    }


    .vh-review-card {
        height: 153px;

        padding:
            16px;
            16px;
    }

}
