/**
 * Template CSS
 */
*, ::before, ::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Keep a normal, visible page scrollbar — just slim and brand-tinted so it
   reads as part of the design instead of a stray line. */
html {
    scrollbar-width: thin;              /* Firefox */
    scrollbar-color: #cbd5e1 #f1f5f9;   /* Firefox: thumb, track */
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 8px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #f97316;
}

:root {
    --primary: #f97316;
    --secondary: #ea580c;
    --light: #F8F2F0;
    --dark: #0f172a;
}

.text-justify {
    text-align: justify !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.service-item a.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span {
    background: var(--secondary);
}



/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

/* ==========================================================================
   ✨ CUSTOM COMPONENT STYLES (ADDED BY ANTIGRAVITY)
   ========================================================================== */

/* 🚀 SMOOTH SCROLL REVEAL (PROGRESSIVE ENHANCEMENT) */
.reveal-on-scroll {
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal-on-scroll.init-hidden {
    opacity: 0;
    transform: translateY(35px);
}
.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 📍 PULSING MAP DOTS */
.map-pulse-marker {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #f97316;
    border-radius: 50%;
    z-index: 10;
}
.map-pulse-marker::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #f97316;
    animation: mapPulse 2s infinite ease-out;
    opacity: 0;
}
.map-pulse-marker.hq-marker {
    width: 16px;
    height: 16px;
    background-color: #ea580c;
    border: 2px solid #fff;
}
.map-pulse-marker.hq-marker::after {
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border-color: #ea580c;
}
/* Cross-border corridor pins — navy, to read apart from the orange domestic hubs */
.map-pulse-marker.border-marker {
    width: 11px;
    height: 11px;
    background-color: #0369a1;
    border: 2px solid #fff;
}
.map-pulse-marker.border-marker::after {
    border-color: #0369a1;
}
@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* 🚚 INFOGRAPHIC DESIGN ELEMENTS */
.process-step-badge {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
    font-weight: 800;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f97316;
    margin: 0 auto;
}

/* 🌡️ COLD CHAIN PULSING STATUS */
.temp-ok-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulseGreen 1.5s infinite;
}
@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ==========================================================================
   Vyanex business page system
   ========================================================================== */
.vx-page {
    --vx-orange: #f97316;
    --vx-orange-dark: #ea580c;
    --vx-dark: #0f172a;
    --vx-ink: #1e293b;
    --vx-muted: #64748b;
    --vx-line: #e2e8f0;
    background: #fff;
    color: var(--vx-ink);
    font-family: 'Roboto', sans-serif;
}

.vx-page *,
.vx-page *::before,
.vx-page *::after {
    letter-spacing: 0;
}

.vx-page p {
    color: var(--vx-muted);
    font-size: 1.02rem;
    line-height: 1.78;
    text-align: justify;
}

.vx-hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.vx-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--vx-orange), transparent);
}

.vx-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 5rem;
    max-width: 860px;
}

.vx-eyebrow,
.vx-section-label {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--vx-orange);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.vx-eyebrow::before,
.vx-section-label::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--vx-orange);
    display: inline-block;
}

.vx-hero h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: .98;
    margin: 0 0 1rem;
}

.vx-hero p {
    color: #cbd5e1;
    max-width: 730px;
    font-size: 1.16rem;
    line-height: 1.75;
}

.vx-breadcrumb {
    margin: 0 0 1.1rem;
}

.vx-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}

.vx-breadcrumb li {
    list-style: none;
    color: #64748b;
}

.vx-breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color .2s ease;
}

.vx-breadcrumb a:hover {
    color: #fff;
}

.vx-breadcrumb li[aria-current="page"] {
    color: var(--vx-orange);
}

.vx-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.vx-section-alt {
    background: #f8fafc;
}

.vx-section-dark {
    background: var(--vx-dark);
    color: #fff;
}

.vx-section-dark p,
.vx-section-dark .vx-section-head p {
    color: #cbd5e1;
}

.vx-section-head {
    max-width: 850px;
    margin-bottom: 3rem;
}

.vx-section-head h2,
.vx-copy-block h2 {
    color: var(--vx-dark);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.vx-section-dark .vx-section-head h2 {
    color: #fff;
}

.vx-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.vx-split-reverse .vx-image-panel {
    order: 2;
}

.vx-copy-block {
    min-width: 0;
}

.vx-image-panel {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 430px;
    background: #111827;
}

.vx-image-panel img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.vx-image-panel:hover img {
    transform: scale(1.045);
}

.vx-image-panel figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.25rem;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(0deg, rgba(15, 23, 42, .88), transparent);
}

.vx-line-list {
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
    display: grid;
    gap: 1.15rem;
}

.vx-line-list li {
    list-style: none;
    border-left: 2px solid var(--vx-line);
    padding-left: 1.25rem;
    transition: border-color .25s ease, transform .25s ease;
}

.vx-line-list li:hover {
    border-left-color: var(--vx-orange);
    transform: translateX(6px);
}

.vx-line-list strong {
    display: block;
    color: var(--vx-dark);
    font-weight: 800;
    margin-bottom: .25rem;
}

.vx-line-list span {
    color: var(--vx-muted);
    line-height: 1.65;
}

.vx-line-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--vx-line);
    border-left: 1px solid var(--vx-line);
}

.vx-line-item {
    padding: 2rem;
    border-right: 1px solid var(--vx-line);
    border-bottom: 1px solid var(--vx-line);
    background: transparent;
    transition: background .25s ease, transform .25s ease;
}

.vx-line-item:hover {
    background: rgba(249, 115, 22, .045);
    transform: translateY(-4px);
}

.vx-line-item i {
    color: var(--vx-orange);
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.vx-line-item h3,
.vx-process h3 {
    color: var(--vx-dark);
    font-size: 1.22rem;
    font-weight: 900;
    margin-bottom: .75rem;
}

.vx-line-item p,
.vx-process p {
    font-size: .96rem;
    margin: 0;
}

.vx-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.vx-metric {
    padding: 2rem 1.3rem;
    border-left: 1px solid rgba(255,255,255,.16);
    transition: background .25s ease;
}

.vx-metric:first-child {
    border-left: 0;
}

.vx-metric:hover {
    background: rgba(249, 115, 22, .08);
}

.vx-metric strong {
    color: var(--vx-orange);
    display: block;
    font-size: clamp(2.1rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: .75rem;
}

.vx-metric span {
    color: #e2e8f0;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.vx-process {
    counter-reset: vx-step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 2px solid var(--vx-orange);
}

.vx-process article {
    counter-increment: vx-step;
    padding: 2rem 1.4rem 0 0;
    position: relative;
}

.vx-process article::before {
    content: counter(vx-step, decimal-leading-zero);
    display: block;
    color: var(--vx-orange);
    font-size: .85rem;
    font-weight: 900;
    margin-bottom: 1.4rem;
}

.vx-process span {
    color: var(--vx-muted);
    display: block;
    font-weight: 800;
    margin-bottom: .45rem;
    text-transform: uppercase;
    font-size: .74rem;
}

.vx-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 1rem;
}

.vx-gallery figure {
    min-height: 330px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.vx-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.vx-gallery figure:hover img {
    transform: scale(1.05);
}

.vx-gallery figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(0deg, rgba(15, 23, 42, .88), transparent);
}

.vx-contact-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.vx-contact-layout h2 {
    color: var(--vx-dark);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.vx-contact-list {
    display: grid;
    gap: 1.1rem;
    margin-top: 2rem;
}

.vx-contact-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .35rem 1rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--vx-line);
}

.vx-contact-list i {
    grid-row: span 2;
    color: var(--vx-orange);
    margin-top: .25rem;
}

.vx-contact-list strong {
    color: var(--vx-dark);
    font-weight: 900;
}

.vx-contact-list span {
    color: var(--vx-muted);
}

.vx-form {
    display: grid;
    gap: 1.1rem;
    padding-left: 2rem;
    border-left: 2px solid var(--vx-orange);
}

.vx-form label {
    display: grid;
    gap: .45rem;
    color: var(--vx-dark);
    font-weight: 800;
}

.vx-form span {
    font-size: .9rem;
}

.vx-form input,
.vx-form textarea,
.vx-form select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #cbd5e1;
    background: transparent;
    color: var(--vx-dark);
    padding: .85rem 0;
    outline: none;
    transition: border-color .2s ease;
}

.vx-form input:focus,
.vx-form textarea:focus,
.vx-form select:focus {
    border-bottom-color: var(--vx-orange);
}

.vx-form button {
    justify-self: start;
    background: var(--vx-dark);
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: .95rem 1.6rem;
    font-weight: 900;
    transition: background .25s ease, transform .25s ease;
}

.vx-form button:hover {
    background: var(--vx-orange);
    transform: translateY(-2px);
}

.vx-map-section iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    filter: grayscale(.25);
}

@media (max-width: 991.98px) {
    .vx-hero {
        min-height: 52vh;
    }

    .vx-split,
    .vx-contact-layout {
        grid-template-columns: 1fr;
    }

    .vx-split-reverse .vx-image-panel {
        order: initial;
    }

    .vx-line-grid,
    .vx-metrics,
    .vx-process,
    .vx-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vx-form {
        padding-left: 0;
        border-left: 0;
        border-top: 2px solid var(--vx-orange);
        padding-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .vx-section {
        padding: 4rem 0;
    }

    .vx-hero-inner {
        padding-top: 5.5rem;
        padding-bottom: 4rem;
    }

    .vx-page p {
        font-size: .98rem;
    }

    .vx-line-grid,
    .vx-metrics,
    .vx-process,
    .vx-gallery {
        grid-template-columns: 1fr;
    }

    .vx-image-panel,
    .vx-image-panel img {
        min-height: 300px;
    }
}

/* --- PREMIUM ANIMATIONS & LAYOUTS --- */
.vyanex-premium-page p { font-family: 'Roboto', sans-serif !important; text-align: justify !important; }
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-on-scroll.is-revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.img-mask-reveal { overflow: hidden; position: relative; }
.img-mask-reveal img { transform: scale(1.15); transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1); }
.img-mask-reveal:hover img { transform: scale(1.03); }
.premium-hover-slide { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.group:hover .premium-hover-slide { transform: translateX(12px); }
.premium-line-divider { position: relative; }
.premium-line-divider::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: #e2e8f0; transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.group:hover .premium-line-divider::after { width: 100%; }

/* Remove smooth scroll behavior forced by bootstrap */
html, :root { scroll-behavior: auto !important; }



/* =====================================================================
   Small kicker / eyebrow text — italic site-wide
   These are the little uppercase lines that sit above section headings
   ("Our Story", "What We Do", "Where the effort goes", …). Kept in one
   place so every page picks the style up through header.php.
   ===================================================================== */
.eyebrow,
.kicker,
[class*="-eyebrow"],
[class*="-kicker"],
.uppercase.tracking-widest,
.text-uppercase.tracking-widest {
    font-style: italic;
}

/* The breadcrumb line in the page hero (Home / Our Story / …) — present on
   every page, so the rule hangs off the shared aria-label rather than the
   many per-page class names. */
nav[aria-label="breadcrumb"],
nav[aria-label="breadcrumb"] ol,
nav[aria-label="breadcrumb"] li,
nav[aria-label="breadcrumb"] a,
.csr-bc,
.csr-bc li,
.csr-bc a,
.vx-breadcrumb,
.vx-breadcrumb li,
.vx-breadcrumb a {
    font-style: italic;
}
