/********** Welloscia Template CSS **********/
/********** Brand extracted from logo:
    Primary Green  : #1E5E38  (deep forest green)
    Accent Gold    : #C9865A  (warm sandy gold / oil drop)
    Light          : #FAFAF7  (warm off-white)
    Dark           : #162B1E  (near-black green)
    Mid Green      : #2E7D4F  (hover / interactive)
    Cream          : #F4EDE3  (warm cream for sections)
**********/

:root {
    --primary: #1E5E38;
    --primary-hover: #2E7D4F;
    --accent: #C9865A;
    --accent-hover: #B5724A;
    --secondary: #F4EDE3;
    --light: #FAFAF7;
    --dark: #162B1E;
    --muted: #5A7A65;
    --border: #D6E4DA;
    --soft: #f7f4ef;
    /* warm white background */
    --text: #1c1c1c;
}

/* ── Typography ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;600;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 400 !important;
}

/* ── Spacing ── */
.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* ── Buttons ── */
.btn {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.35s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 94, 56, 0.2);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #FFFFFF;
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #FFFFFF;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    border-radius: 50%;
}

/* ── Back to Top ── */


/* ── Navbar ── */
.navbar {
    background-color: var(--light);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Lato', sans-serif;
    padding: 30px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    outline: none;
    transition: color 0.3s ease;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 18px 16px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-light .navbar-brand img {
    max-height: 52px;
    transition: opacity 0.3s ease;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }
}

/* ── Hero / Carousel ── */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(22, 43, 30, 0.78) 0%,
            rgba(30, 94, 56, 0.55) 100%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 8%;
}

.carousel-caption h5 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
}

.carousel-caption h1 {
    color: #FFFFFF;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.15;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 11px;
    }

    .carousel-caption h1 {
        font-size: 28px;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(30, 94, 56, 0.6);
    border-radius: 50%;
    padding: 6px;
}

/* ── Top shape / Accent Bar ── */
.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--accent);
    transform: skew(40deg);
}

/* ── Section Labels ── */
.section-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

/* =========================
   SERVICE CARDS (FINAL PREMIUM VERSION)
========================= */

.service-item {
    position: relative;
    overflow: hidden;
    height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: 18px;

    transition: all 0.4s ease;
    transform: translateZ(0);
}

/* smooth lift hover */
.service-item:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 25px 60px rgba(30, 94, 56, 0.18);
    border-color: rgba(30, 94, 56, 0.25);
}

/* soft glow (top-left premium light) */
.service-item::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 180px;
    height: 180px;

    background: radial-gradient(circle,
            rgba(30, 94, 56, 0.18),
            transparent 70%);

    opacity: 0;
    transition: all 0.4s ease;
}

/* bottom premium wave */
.service-item::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 80px;

    background: linear-gradient(135deg,
            rgba(30, 94, 56, 0.08),
            rgba(201, 134, 90, 0.06));

    transform: translateY(40px);
    transition: all 0.4s ease;
}

/* activate effects on hover */
.service-item:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.service-item:hover::after {
    transform: translateY(0);
}

/* icon styling (your centered design preserved) */
.service-item .bg-primary {
    box-shadow: 0 12px 28px rgba(30, 94, 56, 0.25);
    transition: all 0.3s ease;
}

.service-item:hover .bg-primary {
    transform: scale(1.1) rotate(-6deg);
}

/* text styling */
.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
    transition: 0.3s ease;
}

/* paragraph micro interaction */
.service-item:hover p {
    transform: translateY(-2px);
}

/* keep content above effects */
.service-item * {
    position: relative;
    z-index: 2;
}

/* =========================
   INDUSTRY CARDS (UNCHANGED BUT CLEANED)
========================= */

#industries .card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--light);
    transition: 0.4s ease;
}

#industries .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(30, 94, 56, 0.12);
    border-color: var(--primary);
}

/* ── Team ── */
.team-item img {
    transform: scale(1.15);
    margin-left: -30px;
    transition: 0.5s;
    border-radius: 12px;
}

.team-item:hover img {
    margin-left: 0;
}

.team-item .team-text {
    left: -100%;
    background-color: var(--primary);
    transition: 0.5s;
}

.team-item .team-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: -60px;
    margin-top: -30px;
    border: 30px solid;
    border-color: transparent transparent transparent var(--primary);
}

.team-item:hover .team-text {
    left: 0;
}

/* ── Blog Cards ── */
.blog-item img {
    transition: 0.5s;
    border-radius: 12px 12px 0 0;
}

.blog-item:hover img {
    transform: scale(1.05);
}

.blog-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--light);
    transition: box-shadow 0.3s ease;
}

.blog-item:hover {
    box-shadow: 0 12px 32px rgba(30, 94, 56, 0.12);
}

/* ── Section Backgrounds ── */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-cream {
    background-color: var(--secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-muted {
    color: var(--muted) !important;
}

/* ── Dividers & Borders ── */
.border-primary {
    border-color: var(--primary) !important;
}

.border-accent {
    border-color: var(--accent) !important;
}

hr {
    border-color: var(--border);
    opacity: 1;
}

/* ── Cards (generic) ── */
.card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--light);
}

.card-header {
    background-color: var(--secondary);
    border-bottom: 1px solid var(--border);
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

/* ── Badges ── */
.badge-primary {
    background-color: var(--primary);
    color: #fff;
    border-radius: 50px;
    padding: 5px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-accent {
    background-color: var(--accent);
    color: #fff;
    border-radius: 50px;
    padding: 5px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
    position: fixed !important;
    width: 58px;
    height: 58px;
    bottom: 28px;
    right: 28px;
    background-color: #25D366 !important;
    color: #ffffff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999999 !important;
    transition: all 0.3s ease;
    animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d !important;
    color: #ffffff !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ── Loader ── */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: loaderBounce 0.9s infinite alternate;
}

.loader-dot:nth-child(2) {
    background-color: var(--accent);
    animation-delay: 0.3s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes loaderBounce {
    from {
        transform: translateY(0);
        opacity: 0.6;
    }

    to {
        transform: translateY(-16px);
        opacity: 1;
    }
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 99999;
    transition: width 0.1s ease;
}

/* ── Animations ── */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

    100% {
        transform: scale(1);
    }
}

/* ── Smooth Scroll ── */
html {
    scroll-behavior: smooth;
}

/* ── Testimonial / Quote ── */
.testimonial-item {
    background: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    position: relative;
}

.testimonial-item::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--accent);
    opacity: 0.25;
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
}

/* ── Input / Form ── */
.form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    background: var(--light);
    padding: 10px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 94, 56, 0.12);
    outline: none;
}

/* ── Footer ── */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Lato', sans-serif;
}

footer h5,
footer h6 {
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
}

footer .footer-brand-accent {
    color: var(--accent);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.12);
}


/* ── Video + Form Section ── */
/* =========================
   SECTION BACKGROUND
========================= */
.video-form-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   TITLE STYLE
========================= */
.section-title h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    color: var(--accent);
}

.section-title h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--accent);
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* =========================
   CARD STYLE (VIDEO + FORM)
========================= */
/* Section background */
.about-premium {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8f9ff, #f1f5ff);
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
}

.section-header h2 span {
    color: #0d6efd;
}

.section-header p {
    color: #666;
    margin-top: 8px;
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Cards */
.about-card {
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Video */
.video-frame {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer text */
.card-footer {
    margin-top: 15px;
}

/* Form */
.form-card h3 {
    margin-bottom: 5px;
}

.form-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Floating input */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.input-group textarea {
    min-height: 100px;
    resize: none;
}

/* Floating label effect */
.input-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    color: #888;
    font-size: 14px;
    transition: 0.2s ease;
    pointer-events: none;
    background: white;
    padding: 0 6px;
}

.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group input:valid+label,
.input-group textarea:valid+label {
    top: -10px;
    font-size: 12px;
    color: #0d6efd;
}

/* Button */
.form-card button {
    width: 100%;
    padding: 14px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.form-card button:hover {
    background: #0b5ed7;
    transform: scale(1.02);
}

/* Navbar alignment fix */
.navbar {
    display: flex;
    align-items: center;
}

/* Brand (logo container) */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

/* Logo fix */


/* Optional spacing improvement */
.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 6px;
}

/* Better vertical alignment for collapse */
.navbar-collapse {
    align-items: center;
}


.navbar {
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-nav .nav-link {
    font-size: 17px;
}

.logo-img-nav {
    height: 120px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    display: block;
}

/* =========================
   SECTION BASE
========================= */
.video-form-section {
    background: linear-gradient(135deg, #f7f9fc, #eef3f9);
    padding: 90px 0;
    font-family: 'Poppins', sans-serif;
}

.video-form-section .card-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.video-form-section .card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* =========================
   VIDEO SECTION
========================= */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 ratio */
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.info-below {
    margin-top: 18px;
    text-align: center;
}

.info-below h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1d3557;
    margin-bottom: 6px;
}

.info-below p {
    font-size: 14px;
    color: #6c757d;
}

/* =========================
   PREMIUM WELLocia FORM
========================= */

.form-box {
    display: flex;
    flex-direction: column;
    height: 100%;

    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;

    padding: 32px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-box h4 {
    font-size: 28px;
    font-weight: 700;
    color: #12344d;
    margin-bottom: 8px;
}

.form-box p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 25px;
}

.form-box form {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

/* Inputs */

.form-box input,
.form-box textarea {
    width: 100%;

    padding: 15px 18px;

    background: rgba(255, 255, 255, 0.65);

    border: 1px solid rgba(37, 211, 102, 0.15);

    border-radius: 14px;

    font-size: 15px;

    transition: all .3s ease;

    outline: none;
}

.form-box textarea {
    min-height: 130px;
    resize: none;
    flex: 1;
}

/* Hover */

.form-box input:hover,
.form-box textarea:hover {
    border-color: rgba(37, 211, 102, .35);
}

/* Focus */

.form-box input:focus,
.form-box textarea:focus {
    border-color: var(--primary);

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(37, 211, 102, .12);
}

/* Placeholder */

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: #94a3b8;
}

/* Button */

.form-box button {
    margin-top: auto;

    height: 54px;

    border: none;

    border-radius: 14px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--primary));

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all .35s ease;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, .25);
}

.form-box button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(37, 211, 102, .35);
}

/* Small top accent */

.form-box::before {
    content: "";

    width: 60px;
    height: 5px;

    background: var(--primary);

    border-radius: 20px;

    display: block;

    margin-bottom: 18px;
}

.form-box {
    position: relative;
    overflow: hidden;
}

.form-box::after {
    content: "";
    position: absolute;

    width: 250px;
    height: 250px;

    background: rgba(37, 211, 102, .18);

    border-radius: 50%;

    top: -120px;
    right: -120px;

    filter: blur(60px);

    z-index: 0;
}

.form-box * {
    position: relative;
    z-index: 1;
}

.form-box input,
.form-box textarea {
    background: rgba(255, 255, 255, .92);

    border: none;

    border-left: 4px solid transparent;

    transition: all .35s ease;
}

.form-box input:focus,
.form-box textarea:focus {
    border-left: 4px solid var(--primary);

    transform: translateX(4px);
}

.form-box button {
    height: 58px;

    border-radius: 16px;

    letter-spacing: .5px;

    text-transform: uppercase;

    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(37, 211, 102, .35);
}

.form-box button:hover {
    transform: translateY(-4px) scale(1.02);
}

/* ==========================
   INDUSTRY TICKER
========================== */
/* ===================================
   PREMIUM MOVING INDUSTRIES BAR
=================================== */
/* ==========================================
   PREMIUM INDUSTRY TICKER
========================================== */

.industry-ticker{
    background: var(--accent);
    position: relative;
    overflow: hidden;
    padding: 12px 0;
    border-top: 1px solid rgba(22,43,30,.08);
    border-bottom: 1px solid rgba(22,43,30,.08);
    white-space: nowrap;
}

.ticker-track{
    display: inline-flex;
    align-items: center;
    gap: 22px;
    min-width: max-content;
    animation: ticker-scroll 40s linear infinite;
    will-change: transform;
}

.ticker-track span{
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2px;
    flex-shrink: 0;
}

/* separator dots */

.ticker-track span.separator{
    color: rgba(22,43,30,.55);
    font-size: 18px;
    font-weight: 900;
}

/* smooth animation */

@keyframes ticker-scroll{
    from{
        transform: translateX(-50%);
    }
    to{
        transform: translateX(0);
    }
}

/* pause on hover */

.industry-ticker:hover .ticker-track{
    animation-play-state: paused;
}

/* ==========================
   LARGE DESKTOP
========================== */

@media (min-width:1400px){

.ticker-track{
    animation-duration:45s;
}

.ticker-track span{
    font-size:15px;
}
}

/* ==========================
   LAPTOP
========================== */

@media (max-width:1199px){

.ticker-track{
    gap:18px;
}

.ticker-track span{
    font-size:14px;
}
}

/* ==========================
   TABLET
========================== */

@media (max-width:991px){

.industry-ticker{
    padding:10px 0;
}

.ticker-track{
    gap:16px;
    animation-duration:45s;
}

.ticker-track span{
    font-size:13px;
}
}

/* ==========================
   MOBILE
========================== */

@media (max-width:767px){

.industry-ticker{
    padding:9px 0;
}

.ticker-track{
    gap:14px;
    animation-duration:45s;
}

.ticker-track span{
    font-size:12px;
    font-weight:600;
}

.ticker-track span.separator{
    font-size:14px;
}
}

/* ==========================
   SMALL IPHONES
========================== */

@media (max-width:375px){

.ticker-track{
    animation-duration:45s;
}

.ticker-track span{
    font-size:11px;
}
}

.section-subtitle {
    max-width: 700px;
    margin: 15px auto 0;
    color: #000204;
    font-size: 16px;
    padding: 5px;
}

.video-form-section {
    position: relative;
    padding: 100px 0;

    background:
        linear-gradient(rgba(245, 250, 247, 0.65),
            rgba(245, 250, 247, 0.65)),
        url("bg-image.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.about-points {
    margin-top: 20px;
}

.point {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #334155;
    transition: all .3s ease;
}

.point:hover {
    transform: translateX(6px);
    border-color: #25D366;
}


/* =========================
   RESPONSIVE FIX SYSTEM
========================= */

/* Large tablets */
@media (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {

    /* Navbar */
    .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 14px;
    }

    .logo-img-nav {
        height: 85px !important;
    }

    /* Hero */
    .carousel-caption {
        padding: 0 5%;
    }

    .carousel-caption h1 {
        font-size: 34px;
    }

    /* Grids → stack */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Sections spacing */
    .video-form-section,
    .about-premium {
        padding: 70px 0;
    }

    /* Section title */
    .section-title h2 {
        font-size: 34px;
    }

    /* Service cards */
    .service-item {
        height: auto;
        padding: 30px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    /* Navbar logo */
    .logo-img-nav {
        height: 65px !important;
    }

    /* Hero text */
    .carousel-caption h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .carousel-caption h5 {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Section spacing */
    .py-6,
    .pt-6,
    .pb-6 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Cards full width spacing */
    .about-card,
    .card-box,
    .form-box {
        padding: 20px;
    }

    /* Industry ticker */
    .ticker-track span {
        font-size: 13px;
        margin-right: 25px;
    }

    /* Buttons */
    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Small mobile */
@media (max-width: 576px) {

    /* Hero */
    .carousel-caption h1 {
        font-size: 22px;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 26px;
    }

    /* Form */
    .form-box h4 {
        font-size: 22px;
    }

    /* Navbar */
    .logo-img-nav {
        height: 55px !important;
    }

    /* Reduce padding further */
    .video-form-section,
    .about-premium {
        padding: 50px 0;
    }
}

/* =========================
   COMPACT PREMIUM NAVBAR
========================= */

.navbar {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    min-height: 64px;
}

/* Brand alignment fix */
.navbar-brand {
    padding: 0 !important;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Logo tuning */
.logo-img-nav {
    height: 90px !important;
    /* reduced from 120px */
    width: auto !important;
    max-height: 90px !important;
}

/* Nav links compact */
.navbar-light .navbar-nav .nav-link {
    padding: 10px 10px !important;
    font-size: 13px;
    letter-spacing: 0.4px;
}

/* Remove extra vertical stretch in sticky mode */
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 12px !important;
}

/* Center alignment */
.navbar .container {
    align-items: center;
}

/* Mobile cleanup */
@media (max-width: 991px) {
    .navbar {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .logo-img-nav {
        height: 55px !important;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }
}

/* =========================
   PREMIUM THANK YOU CARD
========================= */

.thank-you-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f7f7f3);
    border-radius: 22px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    transition: all .4s ease;
}

/* soft animated glow */
.thank-you-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(30, 94, 56, 0.12), transparent 70%);
    filter: blur(10px);
}

/* your existing accent circle upgraded */
.thank-you-card::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 134, 90, 0.12), transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
}

/* =========================
   SUCCESS ICON (premium float)
========================= */

.success-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E5E38, #2d7a4b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    box-shadow:
        0 18px 40px rgba(30, 94, 56, .35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: floatIcon 4s ease-in-out infinite;
}

/* subtle floating animation */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* =========================
   TEXT STYLING
========================= */

.thank-you-card h3 {
    color: #162B1E;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.thank-you-card p {
    color: #5f5f5f;
    font-size: 16.5px;
    line-height: 1.9;
    max-width: 520px;
    margin: 0 auto 30px;
}

/* =========================
   BUTTON (premium CTA)
========================= */

.join-channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg, #1E5E38, #2d7a4b);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 18px 40px rgba(30, 94, 56, .25);
    transition: all .35s ease;
}

/* glossy overlay effect */
.join-channel-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transition: 0.6s;
}

.join-channel-btn:hover::before {
    left: 100%;
}

.join-channel-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 25px 55px rgba(30, 94, 56, .35);
}

/* click feedback */
.join-channel-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/*About us*/

/* ==========================================
   ABOUT HERO
========================================== */

/* ==========================================
   ABOUT PAGE (WELLOCIA PREMIUM SYSTEM)
========================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* =========================
   PAGE HEADER (ULTRA PREMIUM)
========================= */

/* =========================
   PAGE HEADER (COMPACT NAVY)
========================= */

.page-header {
    position: relative;
    text-align: center;

    /* reduced height */
    padding: 70px 20px;

    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: #fff;
    padding: 80px 0;

    overflow: hidden;
}

/* soft glow (smaller + less aggressive) */
.page-header::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -140px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle,
            rgba(201, 134, 90, 0.18),
            transparent 70%);
    animation: floatGlow 7s ease-in-out infinite;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -140px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle,
            rgba(46, 125, 79, 0.15),
            transparent 70%);
    animation: floatGlow 8s ease-in-out infinite;
}

/* heading (smaller for balance) */
.page-header h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 8px;

    animation: fadeUp 0.8s ease forwards;
}

/* breadcrumb */
.page-header .breadcrumb {
    background: transparent;
    margin-top: 8px;
    font-size: 14px;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: 0.3s;
}

.page-header .breadcrumb-item.active {
    color: #ffffff;
}

/* animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(18px);
    }
}

/* mobile fix */
@media (max-width: 768px) {
    .page-header {
        padding: 55px 15px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

/* =========================
   COMPANY OVERVIEW (LUXURY CARD FEEL)
========================= */

/* ==========================================
   ABOUT PAGE PREMIUM GREEN THEME
========================================== */

/* SECTION SPACING */
section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

section:nth-child(odd) {
    background: #fff;
}

section:nth-child(even) {
    background: #FAFAF7;
}

/* FLOATING BACKGROUND SHAPES */

section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;

    background:
        radial-gradient(rgba(30, 94, 56, .05),
            transparent 70%);

    top: -250px;
    right: -250px;

    animation: floatBlob 12s ease-in-out infinite;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(40px);
    }
}

/* ==========================================
   SECTION TITLES
========================================== */

.section-eyebrow {
    display: inline-block;

    background: rgba(30, 94, 56, .08);

    color: var(--primary);

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.section-title {
    font-weight: 800;
    color: var(--dark);
}

.divider {
    width: 80px;
    height: 4px;

    border-radius: 50px;

    background:
        linear-gradient(90deg,
            var(--primary),
            var(--accent));
}

/* ==========================================
   COMPANY OVERVIEW
========================================== */

.overview-img {
    position: relative;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 30px 80px rgba(30, 94, 56, .15);

    transition: .7s ease;
}

.overview-img::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            transparent,
            rgba(22, 43, 30, .18));

    z-index: 2;
}

.overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 1s ease;
}

.overview-img:hover {
    transform:
        translateY(-12px);
}

.overview-img:hover img {
    transform:
        scale(1.08);
}

/* INFO BOXES */

.info-box {
    background: #fff;

    border-radius: 18px;

    padding: 24px 18px;

    text-align: center;

    border: 1px solid var(--border);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .05);

    transition: .4s ease;

    height: 100%;
}

.info-box:hover {
    transform:
        translateY(-10px);

    border-color: var(--primary);

    box-shadow:
        0 25px 60px rgba(30, 94, 56, .12);
}

.info-box .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.info-box .label {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}

/* ==========================================
   VISION MISSION
========================================== */

.vm-card {
    background: #fff;

    border-radius: 30px;

    padding: 45px;

    border: 1px solid var(--border);

    position: relative;

    overflow: hidden;

    transition: .6s ease;

    height: 100%;
}

.vm-card::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    top: -250px;
    right: -180px;

    background:
        radial-gradient(rgba(30, 94, 56, .08),
            transparent);

    transition: .6s ease;
}

.vm-card:hover {
    transform:
        translateY(-15px);

    box-shadow:
        0 35px 80px rgba(30, 94, 56, .12);
}

.vm-card:hover::before {
    transform: scale(1.4);
}

.vm-icon {
    width: 80px;
    height: 80px;

    border-radius: 22px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-hover));

    color: #fff;

    font-size: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    animation: pulseGlow 4s infinite;
}

@keyframes pulseGlow {
    50% {
        transform: translateY(-5px);
    }
}

/* ==========================================
   DIRECTOR SECTION
========================================== */

.director-section {
    background:
        linear-gradient(180deg,
            #fff,
            #F8FBF9);
}

.director-section .bg-white {
    border: none;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 35px 90px rgba(30, 94, 56, .10);
}

.director-section .bg-white::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;
    height: 100%;

    background:
        linear-gradient(var(--accent),
            var(--primary));
}

.director-photo {
    width: 150px;
    height: 150px;

    border-radius: 50%;

    object-fit: cover;

    border: 6px solid #fff;

    box-shadow:
        0 20px 50px rgba(30, 94, 56, .18);

    transition: .6s ease;
}

.director-photo:hover {
    transform:
        scale(1.08);
}

.quote-mark {
    position: absolute;

    top: -50px;
    left: -10px;

    font-size: 120px;

    color: var(--accent);

    opacity: .12;
}

/* ==========================================
   CORE VALUES
========================================== */

.value-card {
    background: #fff;

    border-radius: 24px;

    padding: 35px;

    border: 1px solid var(--border);

    transition: .5s ease;

    height: 100%;

    position: relative;

    overflow: hidden;
}

.value-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(30, 94, 56, .08),
            transparent);

    opacity: 0;

    transition: .5s ease;
}

.value-card:hover {
    transform:
        translateY(-12px);

    box-shadow:
        0 30px 70px rgba(30, 94, 56, .12);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 70px;
    height: 70px;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-hover));

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    margin-bottom: 20px;
}

.value-card h5 {
    color: var(--dark);
    font-weight: 700;
}

/* ==========================================
   WHY SECTION
========================================== */

/* ==========================
   WHY CHOOSE WELLOCIA
========================== */

/* ==========================================
   WHY CHOOSE WELLOCIA - GREEN THEME
========================================== */

.why-section {
    background:
        linear-gradient(135deg,
            var(--dark),
            var(--primary)) !important;

    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;

    width: 700px;
    height: 700px;

    top: -300px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(201, 134, 90, .18),
            transparent 70%);

    animation: floatBlob 10s ease-in-out infinite;
}

.why-section .section-eyebrow {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
}

.why-section .section-title {
    color: #fff !important;
}

.why-card {
    position: relative;

    height: 100%;

    background:
        rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .10);

    backdrop-filter: blur(20px);

    border-radius: 24px;

    padding: 35px;

    transition: .5s ease;

    z-index: 2;

    color: #fff;

    overflow: hidden;
}

.why-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    top: -80px;
    right: -80px;

    background:
        radial-gradient(rgba(201, 134, 90, .18),
            transparent 70%);

    opacity: 0;

    transition: .5s ease;
}

.why-card:hover {
    transform: translateY(-14px);

    background:
        rgba(255, 255, 255, .14);

    border-color: rgba(255, 255, 255, .20);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .25);
}

.why-card:hover::before {
    opacity: 1;
    transform: scale(1.4);
}

.why-card h5 {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255, 255, 255, .85) !important;
    line-height: 1.8;
    margin-bottom: 0;
}

.why-num {
    font-size: 52px;
    line-height: 1;
    font-weight: 900;

    color: var(--accent);

    margin-bottom: 15px;

    text-shadow:
        0 10px 25px rgba(201, 134, 90, .25);
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
    transition: .4s ease;
}

.btn:hover {
    transform: translateY(-4px);
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
========================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(80px);
    transition: 1s cubic-bezier(.22, .61, .36, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: 1s cubic-bezier(.22, .61, .36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: 1s cubic-bezier(.22, .61, .36, 1);
}

.reveal-show {
    opacity: 1;
    transform: none;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px) {

    section {
        padding: 70px 0;
    }

    .vm-card,
    .value-card,
    .why-card {
        padding: 28px;
    }

    .overview-img {
        margin-bottom: 20px;
    }

    .why-num {
        font-size: 42px;
    }
}

.overview-img:hover {
    transform:
        translateY(-12px) rotate(-1deg);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px rgba(30, 94, 56, .25);
}

.director-message {
    position: relative;
}

.btn-primary {
    background: var(--accent) !important;
    border: none !important;
    color: #fff !important;

    border-radius: 14px;
    font-weight: 600;

    transition: .4s ease;

    box-shadow:
        0 12px 30px rgba(201, 134, 90, .25);
}

.btn-primary:hover {
    background: var(--accent-hover) !important;

    transform: translateY(-4px);

    box-shadow:
        0 20px 45px rgba(201, 134, 90, .35);
}

.overview-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.overview-title span {
    display: block;
    color: var(--primary);
}

.overview-lead {
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 20px;
}

.overview-text {
    color: #666;
    line-height: 1.9;
    margin-bottom: 10px;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 16px 20px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 14px;

    transition: .4s ease;
}

.feature-item:hover {
    transform: translateX(10px);

    border-color: var(--primary);

    box-shadow:
        0 15px 35px rgba(30, 94, 56, .10);
}

.feature-icon {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
}

.feature-item span {
    font-weight: 600;
    color: var(--dark);
}

.mini-stat {
    background: #fff;

    border-radius: 18px;

    padding: 18px;

    text-align: center;

    border: 1px solid var(--border);

    transition: .4s ease;
}

.mini-stat:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(30, 94, 56, .10);
}

.mini-stat h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.mini-stat span {
    font-size: 13px;
    color: var(--muted);
}

.vm-card {
    background: linear-gradient(135deg,
            var(--accent),
            var(--accent-hover));

    color: #fff;

    border: none;

    border-radius: 30px;

    padding: 45px;

    position: relative;

    overflow: hidden;

    transition: .5s ease;

    height: 100%;
}

.vm-card::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    top: -220px;
    right: -180px;

    background:
        radial-gradient(rgba(255, 255, 255, .15),
            transparent 70%);

    transition: .5s ease;
}

.vm-card:hover {
    transform: translateY(-15px);

    box-shadow:
        0 30px 70px rgba(201, 134, 90, .30);
}

.vm-card:hover::before {
    transform: scale(1.3);
}

.vm-card h3 {
    color: #fff;
    font-weight: 700;
}

.vm-card p {
    color: rgba(255, 255, 255, .92);
}

.vm-icon {
    width: 80px;
    height: 80px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .15);

    border: 1px solid rgba(255, 255, 255, .20);

    backdrop-filter: blur(10px);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 25px;
}

.vision {
    background: linear-gradient(135deg,
            var(--accent),
            var(--accent-hover));
}

.mission {
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-hover));
}

.founder-card {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid var(--border);

    box-shadow:
        0 25px 60px rgba(30, 94, 56, .08);
}

.story-card {
    background: #fff;

    padding: 50px;

    border-radius: 30px;

    border: 1px solid var(--border);

    position: relative;

    box-shadow:
        0 30px 70px rgba(30, 94, 56, .08);
}

.story-card h3 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.story-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.quote-mark {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 20px;
}

.location-section{
  padding:100px 0;
  background:#fff;
}

.map-wrapper{
  position:relative;
  margin-top:50px;
}

.map-box{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.map-box iframe{
  width:100%;
  height:500px;
  border:none;
  display:block;
}

.location-card{
  position:absolute;
  top:30px;
  left:30px;
  z-index:10;

  background:#fff;
  padding:24px;
  border-radius:18px;

  max-width:300px;

  box-shadow:0 10px 40px rgba(0,0,0,.15);
}

.location-card h3{
  margin-bottom:10px;
  font-size:1.2rem;
  color:#111;
}

.location-card p{
  color:#666;
  line-height:1.7;
  margin-bottom:18px;
}

.direction-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background:#e8192c;
  color:#fff;

  padding:12px 18px;
  border-radius:50px;

  text-decoration:none;
  font-weight:600;

  transition:.3s ease;
}

.direction-btn:hover{
  transform:translateY(-2px);
}

@media (max-width:768px){

  .location-card{
    position:static;
    max-width:none;
    margin-bottom:20px;
  }

  .map-box iframe{
    height:400px;
  }

}
.center{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:30px 0;
}
/* ==========================================
   CONTACT MODERN SECTION (FINAL PREMIUM)
========================================== */

.contact-modern{
    padding:120px 0;
    background:
    linear-gradient(180deg, #ffffff, var(--soft));
    position:relative;
    overflow:hidden;
}

/* soft background glow */
.contact-modern::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    top:-300px;
    right:-250px;
    background:radial-gradient(circle, rgba(30,94,56,0.06), transparent 70%);
    animation:floatBlob 12s ease-in-out infinite;
}

/* TITLE */
.contact-title{
    font-size:clamp(2.4rem,5vw,4rem);
    font-weight:800;
    line-height:1.15;
    color:var(--dark);
    margin-bottom:20px;
    letter-spacing:-0.5px;
}

.contact-title span{
    color:var(--primary);
}

.contact-desc{
    font-size:17px;
    line-height:1.9;
    color:var(--muted);
    margin-bottom:40px;
}

/* ==========================================
   CONTACT INFO CARDS
========================================== */

.contact-cards{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-info-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:22px;

    display:flex;
    align-items:flex-start;
    gap:18px;

    transition:.4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.04);
}

.contact-info-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 25px 60px rgba(30,94,56,.12);
}

.contact-icon{
    width:58px;
    height:58px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-hover)
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    flex-shrink:0;
}

/* TEXT */
.contact-info-card h6{
    margin-bottom:6px;
    font-size:17px;
    font-weight:700;
    color:var(--dark);
}

.contact-info-card p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
    font-size:14px;
}

/* ==========================================
   FORM CARD (VERY PREMIUM LOOK)
========================================== */

.contact-form-card{
    background:#fff;

    border:1px solid var(--border);
    border-radius:28px;

    padding:45px;

    position:relative;
    overflow:hidden;

    box-shadow:0 30px 80px rgba(0,0,0,.06);
    transition:.5s ease;
}

.contact-form-card:hover{
    transform:translateY(-6px);
    box-shadow:0 40px 100px rgba(30,94,56,.12);
}

/* soft accent glow */
.contact-form-card::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    top:-200px;
    right:-200px;
    background:radial-gradient(circle, rgba(30,94,56,0.08), transparent 70%);
}

/* HEADER */
.form-header{
    margin-bottom:30px;
}

.form-header h3{
    font-weight:800;
    color:var(--dark);
    margin-bottom:10px;
}

.form-header p{
    color:var(--muted);
    margin:0;
    line-height:1.6;
}

/* ==========================================
   INPUTS (CLEAN MODERN UI)
========================================== */

.modern-input{
    height:58px;
    border-radius:14px;
    border:1px solid var(--border);
    background:#fff;
    padding:0 18px;

    font-size:14px;

    transition:.3s ease;
}

textarea.modern-input{
    height:auto;
    padding:16px 18px;
    min-height:140px;
}

.modern-input:focus{
    outline:none;
    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(30,94,56,.10);
}

/* ==========================================
   BUTTON (WHATSAPP STYLE PREMIUM)
========================================== */

.contact-btn{
    width:100%;
    height:60px;

    border:none;
    border-radius:14px;

    background:var(--primary);
    color:#fff;

    font-weight:700;
    font-size:15px;

    transition:.4s ease;

    box-shadow:0 15px 35px rgba(37,211,102,.25);
}

.contact-btn:hover{
    transform:translateY(-4px);
    background:var(--primary);
    box-shadow:0 25px 60px rgba(37,211,102,.35);
}

/* ==========================================
   ANIMATION
========================================== */

@keyframes floatBlob{
    50%{
        transform:translateY(30px);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .contact-modern{
        padding:80px 0;
    }

    .contact-form-card{
        padding:28px;
    }

    .contact-title{
        font-size:2.3rem;
    }
}
/* ==================================================
   SERVICES PAGE - WELLOCIA
================================================== */

:root{
    --primary:#3B7A57;
    --primary-dark:#1F4D36;
    --primary-light:#EAF5EF;
    --accent:#D4A64A;
    --text:#253329;
    --text-light:#6B756F;
    --white:#ffffff;
    --border:#E3ECE5;
    --section:#F8FAF8;
}

/* ==================================================
   GLOBAL
================================================== */

.hero,
.services-section,
.featured-section,
.training-section,
.guarantee-section,
.faq-section,
.cta-section{
    position:relative;
    overflow:hidden;
}

.section-eyebrow{
    display:inline-block;
    color:var(--primary);
    font-weight:700;
    font-size:.9rem;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-title{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:700;
    color:var(--primary-dark);
    margin-bottom:20px;
}

.section-sub{
    color:var(--text-light);
    font-size:1.05rem;
    line-height:1.8;
    max-width:700px;
    margin:auto;
}

/* ==================================================
   HERO
================================================== */

.hero{
    max-width:1300px;
    margin:auto;
    padding:100px 20px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:clamp(2.5rem,5vw,4.5rem);
    line-height:1.1;
    font-weight:800;
    color:var(--primary-dark);
    margin-bottom:25px;
}

.hero h1 em{
    color:var(--primary);
    font-style:normal;
}

.hero-desc{
    font-size:1.1rem;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:35px;
}

.hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--primary-light);
    color:var(--primary);
    padding:10px 18px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.btn-gold{
    background:var(--accent);
    color:#fff;
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-4px);
    color:#fff;
}

.btn-ghost{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-ghost:hover{
    background:var(--primary);
    color:#fff;
}

.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.stat-item{
    display:flex;
    flex-direction:column;
}

.stat-number{
    font-size:2rem;
    font-weight:800;
    color:var(--primary-dark);
}

.stat-label{
    color:var(--text-light);
    font-size:.95rem;
}

.hero-visual{
    display:grid;
    gap:25px;
}

.hero-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    border:1px solid var(--border);
    transition:.3s;
}

.hero-card:hover{
    transform:translateY(-8px);
}

.hero-card-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:var(--primary-light);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:28px;
    margin-bottom:20px;
}

.hero-card h4{
    color:var(--primary-dark);
    margin-bottom:12px;
}

/* ==================================================
   SERVICES
================================================== */

.services-section{
    background:var(--section);
    padding:110px 20px;
}

.services-header{
    text-align:center;
    margin-bottom:70px;
}

.services-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid var(--border);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.service-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.icon-navy,
.icon-gold{
    background:var(--primary-light);
    color:var(--primary);
}

.service-card h3{
    color:var(--primary-dark);
    margin-bottom:15px;
}

.service-card p{
    color:var(--text-light);
    line-height:1.8;
}

.service-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:25px;
}

.tag{
    background:var(--primary-light);
    color:var(--primary);
    padding:8px 15px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
}

/* ==================================================
   FEATURED PROCESS
================================================== */

.featured-section{
    padding:120px 20px;
}

.featured-inner{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.featured-visual{
    background:#fff;
    padding:40px;
    border-radius:30px;
    border:1px solid var(--border);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.process-step{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.step-dot{
    min-width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.step-info h5{
    color:var(--primary-dark);
}

.step-info p{
    color:var(--text-light);
}

.featured-list{
    list-style:none;
    padding:0;
}

.featured-list li{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    color:var(--text-light);
}

.featured-list i{
    color:var(--primary);
    margin-top:5px;
}

/* ==================================================
   TRAINING
================================================== */

.training-section{
    background:var(--section);
    padding:120px 20px;
}

.training-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.training-card{
    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    border:1px solid var(--border);
    margin-bottom:20px;
}

.tc-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:var(--primary-light);
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.roadmap-visual{
    background:#fff;
    padding:40px;
    border-radius:30px;
    border:1px solid var(--border);
}

.roadmap-title{
    font-size:1.5rem;
    font-weight:700;
    color:var(--primary-dark);
    margin-bottom:30px;
}

/* ==================================================
   GUARANTEE
================================================== */

.guarantee-section{
    padding:120px 20px;
}

.guarantee-inner{
    max-width:1300px;
    margin:auto;
    background:linear-gradient(135deg,var(--primary-dark),var(--primary));
    color:#fff;
    padding:70px;
    border-radius:35px;
}

.guarantee-inner h2{
    color:#fff;
    margin:20px 0;
}

.guarantee-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:40px;
}

.benefits-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.benefit-item{
    background:rgba(255,255,255,.08);
    padding:18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.benefit-check{
    color:#fff;
}

/* ==================================================
   FAQ
================================================== */

.faq-section{
    background:var(--section);
    padding:120px 20px;
}

.faq-container{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#fff;
    border-radius:20px;
    margin-bottom:20px;
    overflow:hidden;
    border:1px solid var(--border);
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    text-align:left;
    padding:25px 30px;
    font-weight:600;
    color:var(--primary-dark);
    display:flex;
    justify-content:space-between;
}

.faq-answer{
    padding:0 30px 25px;
    color:var(--text-light);
    line-height:1.8;
}

/* ==================================================
   CTA
================================================== */

.cta-section{
    padding:120px 20px;
}

.cta-inner{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:992px){

    .hero,
    .featured-inner,
    .training-grid{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .guarantee-inner{
        padding:50px 35px;
    }
}

@media(max-width:768px){

    .hero{
        padding:70px 20px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .hero-stats{
        gap:25px;
    }

    .section-title{
        font-size:2rem;
    }

    .hero h1{
        font-size:2.7rem;
    }

    .featured-section,
    .training-section,
    .services-section,
    .faq-section,
    .cta-section,
    .guarantee-section{
        padding:80px 20px;
    }
}

/* ==========================================
   JOB GUARANTEE POSTER
========================================== */

.roadmap-poster{
    position: relative;
}

.poster-img{
    width: 100%;
    display: block;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
    transition: .4s ease;
    background: #fff;
}

.poster-img:hover{
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0,0,0,.16);
}

.roadmap-poster::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(59,122,87,.08);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: -1;
}

.roadmap-poster::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(212,166,74,.12);
    border-radius: 50%;
    bottom: -25px;
    left: -25px;
    z-index: -1;
}
.hero-card{
    animation: floatCard 5s ease-in-out infinite;
}

.hero-card:nth-child(2){
    animation-delay: 1s;
}

.hero-card:nth-child(3){
    animation-delay: 2s;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}
.featured-content{
    background: linear-gradient(
        135deg,
        rgba(24,57,43,0.97),
        rgba(34,75,55,0.95)
    );
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}

.featured-content::before{
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(212,175,55,0.08);
    border-radius: 50%;
}

.featured-content::after{
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: rgba(212,175,55,0.05);
    border-radius: 50%;
}

.featured-content .section-eyebrow{
    color: var(--accent);
}

.featured-content .section-title{
    color: #fff;
}

.featured-content p{
    color: rgba(255,255,255,0.8) !important;
}

.featured-list li{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 14px;
    color: #fff;
    transition: .3s;
}

.featured-list li:hover{
    transform: translateX(8px);
    border-color: rgba(212,175,55,0.4);
}

.featured-list i{
    color: var(--accent);
    font-size: 20px;
}

.featured-list strong{
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.btn-navy{
    margin-top: 20px;
}
.savings-calculator-section{
    background: var(--soft);
}

.calculator-title{
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
}

.calculator-subtitle{
    color: var(--muted);
}

.calculator-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:30px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.slider-group{
    margin-bottom:40px;
}

.slider-group label{
    display:block;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.slider-value{
    color:var(--primary);
    font-size:28px;
    font-weight:800;
    margin-bottom:15px;
}

.slider-group input[type="range"]{
    width:100%;
    accent-color:var(--accent);
}

.cost-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:20px;
}

.cost-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:20px;
    text-align:center;
}

.cost-box h6{
    font-size:15px;
    margin-bottom:10px;
}

.cost-box span{
    font-size:28px;
    font-weight:800;
    color:var(--dark);
}

.featured{
    background:linear-gradient(135deg,var(--primary),var(--dark));
}

.featured h6,
.featured span{
    color:#fff;
}

.savings-box{
    background:linear-gradient(135deg,var(--primary),var(--dark));
    border-radius:18px;
    text-align:center;
    padding:35px;
}

.savings-box small{
    color:#fff;
    font-size:16px;
}

.savings-box h3{
    color:#fff;
    font-size:48px;
    font-weight:900;
    margin:15px 0;
}

@media (max-width: 991px){

    .calculator-card{
        grid-template-columns:1fr;
        padding:25px;
        gap:20px;
    }

    .cost-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .cost-box{
        padding:15px;
    }

    .cost-box span{
        font-size:22px;
    }

    .savings-box h3{
        font-size:36px;
    }
}

@media (max-width: 768px){

    .calculator-title{
        font-size:30px;
    }

    .calculator-subtitle{
        font-size:14px;
    }

    .calculator-card{
        padding:18px;
        gap:18px;
    }

    .slider-group{
        margin-bottom:25px;
    }

    .slider-group label{
        font-size:15px;
    }

    .slider-value{
        font-size:22px;
        margin-bottom:10px;
    }

   .cost-grid{
    grid-template-columns:1fr 1fr;
}
.featured{
    grid-column:1/-1;
}

    .cost-box{
        padding:14px;
        border-radius:12px;
    }

    .cost-box h6{
        font-size:13px;
        margin-bottom:6px;
    }

    .cost-box span{
        font-size:20px;
    }

    .savings-box{
        padding:20px;
    }

    .savings-box small{
        font-size:13px;
    }

    .savings-box h3{
        font-size:28px;
        margin:10px 0;
    }

    .savings-box .btn{
        width:100%;
        padding:12px;
    }
}

@media (max-width: 480px){

    .calculator-card{
        padding:15px;
    }

    .calculator-title{
        font-size:26px;
    }

    .slider-value{
        font-size:20px;
    }

    .cost-box{
        padding:12px;
    }

    .cost-box span{
        font-size:18px;
    }

    .savings-box h3{
        font-size:24px;
    }
}
/* ==========================================
   phone optimization
========================================== */

/* ==========================================
    CONSOLIDATED PHONE OPTIMIZATION (Under 768px)
========================================== */
@media (max-width: 767.98px) {

    /* Fixes the background image height container */
    .hero-banner img, 
    .hero-img {
        height: 45vh !important; /* Forcefully caps the banner height to 55% of the screen */
        object-fit: cover !important;
    }

    /* Controls the inner padding so content fits inside the shorter banner */
    .carousel-caption {
        padding: 40px 15px 20px 15px !important; /* Reduced top padding from 90px to 40px */
    }

    /* Scales down the main headline text */
    .carousel-caption h1,
    .responsive-heading {
        font-size: 1.45rem !important; /* Scaled down slightly more to fit beautifully */
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
        font-weight: 700;
    }

    /* Shrinks the descriptive paragraph */
    .small-mobile-text,
    .carousel-caption p {
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
        margin-bottom: 15px !important;
    }

    /* Makes sure the button fits well without taking up huge vertical space */
    .carousel-caption .btn {
        font-size: 0.85rem !important;
        padding: 8px 20px !important;
    }

   /* --- TICKER COMPRESSION (MOBILE ONLY) --- */
   /* --- TICKER COMPRESSION (EXTRA SMALL TEXT) --- */
    .industry-ticker {
        padding: 4px 0 !important; /* Absolute minimum vertical padding */
        height: auto !important;
        min-height: 0 !important;
    }

    .comparison-ticker {
        display: flex !important;
        flex-direction: row !important; 
        flex-wrap: nowrap !important;   /* Keeps everything tightly on one row */
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;            /* Extremely tight spacing */
        width: 100% !important;
    }

    .ticker-text {
        font-size: 10px !important;    /* Reduced to an ultra-compact micro font */
        font-weight: 700 !important;
        white-space: nowrap !important; 
        margin: 0 !important;
        line-height: 1 !important;
        letter-spacing: -0.2px;         /* Slightly tightens the characters to save width */
    }

    .ticker-vs {
        font-size: 8px !important;     /* Tiny micro badge */
        padding: 1px 4px !important;
        line-height: 1 !important;
        min-width: auto !important;
        margin: 0 !important;
    }
}

.overview-video{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.overview-video iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    display:block;
}
/* --- Global Resets & Typography --- */
.sourcing-page-wrapper *, 
.sourcing-page-wrapper *::before, 
.sourcing-page-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Section Layout Wrapper --- */
.sourcing-page-wrapper {
  background-color: var(--soft);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  width: 100%;
  min-height: calc(100vh - 140px); /* Adjust '140px' dynamically to the sum of your navbar + footer heights */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Max inner boundary container */
.sourcing-container {
  width: 100%;
  max-width: 1400px; /* Expands wider for clean desktop layouts */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Heading Block --- */
.sourcing-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.sourcing-header h1 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem); /* Dynamically sizes perfectly on mobile vs high-res screens */
  color: var(--dark);
  font-weight: 800;
  line-height: 1.3;
}

/* --- Fluid Grid Configuration --- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Drops down to stacked layout naturally on small monitors */
  gap: 24px;
  align-items: stretch;
}

/* --- Unified Card Aesthetics --- */
.card {
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22, 43, 30, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(22, 43, 30, 0.08);
}

/* Specific Highlight style for Wellocia column */
.card.highlight-card {
  border: 2px solid var(--primary);
  background-color: #ffffff;
}

/* Card Header Setup */
.card-header {
  padding: 24px 24px 12px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Organic top left graphic bullet block */
.card-header .bullet-dot {
  width: 28px;
  height: 28px;
  background-color: var(--border);
  border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
  flex-shrink: 0;
}

.card-header h2 {
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

.card-header h2 small {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  display: inline-block;
  margin-top: 4px;
}

/* --- Inline Card Mockup Visuals --- */
.card-illustration {
  height: 160px;
  margin: 12px 24px;
  background-color: #fafbfc;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* Visual 1: Agency Cash delivery */
.agency-visual .cash-box {
  background-color: #fcece2;
  border: 2px dashed var(--accent);
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  color: var(--accent-hover);
}
.agency-visual .cash-box span { font-size: 0.75rem; letter-spacing: 1px; display: block; }
.agency-visual .cash-box strong { font-size: 1.1rem; }

/* Visual 2: Costdrag breakdown */
.internal-hr-visual {
  display: flex;
  gap: 12px;
  background: transparent;
}
.cost-drag-box {
  flex: 1.3;
  background: white;
  border: 1px solid var(--dark);
  border-radius: 8px;
  padding: 10px;
}
.cost-drag-box h3 { font-size: 0.8rem; color: var(--accent-hover); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;}
.cost-row { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 3px; color: #444; }
.salary-box {
  flex: 0.7;
  background-color: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  text-align: center;
  padding: 8px;
}
.salary-box strong { font-size: 1.1rem; color: var(--dark); margin-top: 4px; }

/* Visual 3: Wellocia Flow */
.wellocia-visual {
  display: flex;
  gap: 8px;
  background: transparent;
}
.invoice-box {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.plan-tag { font-size: 0.65rem; background: var(--secondary); padding: 4px; margin-top: 6px; border-radius: 4px; }
.arrow-connector { color: var(--muted); font-size: 1.2rem; }
.infra-box { text-align: right; }
.predictable-text { font-size: 0.75rem; color: var(--muted); display: block; margin-bottom: 4px; }
.turnkey-badge {
  background-color: var(--primary);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

/* --- Features List Styling --- */
.points-list {
  list-style: none;
  padding: 0 24px;
  margin: 20px 0;
}

.points-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.points-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-size: 0.85rem;
}

.points-list li strong {
  color: var(--dark);
  display: block;
  font-weight: 600;
}

.points-list li span {
  color: #555555;
}

/* --- Card Costing Summary Boxes --- */
.card-footer-box {
  background-color: var(--secondary);
  padding: 20px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.4;
  border-top: 1px solid var(--border);
  margin-top: auto;
  color: var(--dark);
}

/* --- Bottom Pill Call To Action Layout --- */
.cta-action-container {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.cta-btn {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 6px 20px rgba(30, 94, 56, 0.15);
}

.cta-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.02);
}

.cta-btn:active {
  transform: scale(0.99);
}

/* --- High-Resolution/Big Screen Tweaks --- */
@media (min-width: 1400px) {
  .sourcing-container {
    gap: 48px;
  }
}

/* --- Mobile Adaptive Layout Breakpoint --- */
@media (max-width: 768px) {
  .sourcing-page-wrapper {
    padding: 24px 16px;
  }
  .comparison-grid {
    grid-template-columns: 1fr; /* Clean continuous mobile stack */
    gap: 24px;
  }
  .card-illustration {
    height: auto;
    min-height: 130px;
  }
}
/* --- Bottom Call To Action Layout (Background Removed) --- */
.cta-action-container {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  background: transparent; /* Ensures no background box shows up */
  border: none;
  padding: 0;
}

.cta-btn {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 6px 20px rgba(30, 94, 56, 0.15);
}

.cta-btn:hover {
  background-color: var(--primary-hover);
  transform: scale(1.02);
}

.cta-btn:active {
  transform: scale(0.99);
}
.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    cursor:pointer;
}
/* All selectors are strictly nested under .wl-premium-billing-scope to prevent global leaks */
/* ==========================================================================
   GLOBAL SCOPE LAYER (No leakages to your existing elements)
   ========================================================================== */
.wl-premium-billing-scope {
  box-sizing: border-box;
  width: 100%;
  background-color: var(--light);
  color: var(--text);
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
}

/* Enforce local box models */
.wl-premium-billing-scope * {
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-premium-billing-scope .wl-container {
  width: 100%;
  max-width: 1400px;
}

/* Header Section */
.wl-premium-billing-scope .wl-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wl-premium-billing-scope .wl-badge-pill {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.wl-premium-billing-scope .wl-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.wl-premium-billing-scope .wl-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   SUBSCRIPTION CARDS GRID (Horizontal Alignment Layout)
   ========================================================================== */
.wl-premium-billing-scope .wl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  /* Forces all items in the row to stretch to match the tallest sibling card */
  align-items: stretch; 
}

/* Premium Card Construction */
.wl-premium-billing-scope .wl-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column; /* Vertical alignment engine within individual cards */
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(22, 43, 30, 0.03);
}

.wl-premium-billing-scope .wl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(22, 43, 30, 0.08);
  border-color: var(--accent);
}

.wl-premium-billing-scope .wl-card-header {
  padding: 24px 20px 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--soft);
}

.wl-premium-billing-scope .wl-plan-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.wl-premium-billing-scope .wl-plan-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.wl-premium-billing-scope .wl-plan-volume {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 2px 0 0 0;
}

/* Flex grow pushes features apart and locks structural alignment */
.wl-premium-billing-scope .wl-card-body {
  padding: 24px 20px;
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
}

/* Pricing Blocks */
.wl-premium-billing-scope .wl-price-block {
  text-align: center;
  margin-bottom: 24px;
  color: var(--dark);
}

.wl-premium-billing-scope .wl-currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
}

.wl-premium-billing-scope .wl-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wl-premium-billing-scope .wl-period {
  font-size: 0.85rem;
  color: var(--muted);
}

.wl-premium-billing-scope .wl-custom-quote {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  padding: 4px 0;
}

/* Card Feature Contents */
.wl-premium-billing-scope .wl-features {
  flex-grow: 1; /* Pushes content down ensuring the buttons stay aligned precisely */
  display: flex;
  flex-direction: column;
}

.wl-premium-billing-scope .wl-feat-primary {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 10px 0;
}

.wl-premium-billing-scope .wl-feat-secondary {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  margin: 0;
}

.wl-premium-billing-scope .wl-disclaimer-box {
  font-size: 0.75rem;
  color: var(--muted);
  background-color: var(--soft);
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: auto; /* Attaches disclaimer neatly above footer context */
  line-height: 1.4;
  border: 1px solid var(--border);
}

.wl-premium-billing-scope .wl-highlight-badge {
  font-size: 0.82rem;
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  margin-top: auto; /* Fastens element layout cleanly */
  line-height: 1.4;
}

/* Action Footers */
.wl-premium-billing-scope .wl-card-footer {
  padding: 20px;
  background-color: #ffffff;
  border-top: 1px solid var(--soft);
}

/* Custom Element Overrides */
.wl-premium-billing-scope .wl-card-featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 10px 25px -5px rgba(201, 134, 90, 0.15);
}

.wl-premium-billing-scope .wl-card-featured .wl-plan-tag {
  color: var(--accent);
}

.wl-premium-billing-scope .wl-ribbon {
  position: absolute;
  top: 12px;
  right: -33px;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 33px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wl-premium-billing-scope .wl-card-custom {
  background-color: var(--soft);
  border-color: var(--secondary);
}
.wl-premium-billing-scope .wl-card-custom .wl-card-header {
  background-color: var(--secondary);
  border-bottom: 1px solid var(--border);
}
.wl-premium-billing-scope .wl-card-custom .wl-card-footer {
  background-color: transparent;
}
.wl-premium-billing-scope .tag-custom {
  color: var(--primary);
}

/* Call to Action Premium Buttons */
.wl-premium-billing-scope .wl-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.wl-premium-billing-scope .wl-btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.wl-premium-billing-scope .wl-btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
}

.wl-premium-billing-scope .wl-btn-solid {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}

.wl-premium-billing-scope .wl-btn-solid:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* ==========================================================================
   COMPACT FULL-SCREEN DARK SAFETY PANEL (Reworked Size Balance)
   ========================================================================== */
/* =========================================================
   PREMIUM SAFETY PANEL
   ========================================================= */

.wl-premium-billing-scope .wl-safety-panel{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:40px;

    margin-top:50px;
    padding:40px;

    background:linear-gradient(
        135deg,
        #14271c 0%,
        #1b3324 100%
    );

    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.05);

    overflow:hidden;
}

/* =========================================================
   COLUMN
   ========================================================= */

.wl-premium-billing-scope .wl-panel-col{
    min-width:0;
    display:flex;
    flex-direction:column;
}

.wl-premium-billing-scope .wl-panel-col.border-left{
    border-left:1px solid rgba(255,255,255,.08);
    padding-left:40px;
}

/* =========================================================
   HEADER
   ========================================================= */

.wl-premium-billing-scope .wl-panel-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
}

.wl-premium-billing-scope .wl-panel-icon{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:var(--primary);

    font-size:1.2rem;

    flex-shrink:0;
}

.wl-premium-billing-scope .wl-panel-header h3{
    margin:0;

    color:#ffffff;

    font-size:1.3rem;
    font-weight:700;
    line-height:1.3;
}

/* =========================================================
   CAPTION
   ========================================================= */

.wl-premium-billing-scope .wl-panel-caption{
    margin:0 0 22px;

    color:rgba(255,255,255,.72);

    font-size:.85rem;
    line-height:1.6;
    font-style:italic;
}

/* =========================================================
   LIST
   ========================================================= */

.wl-premium-billing-scope .wl-panel-list{
    list-style:none;
    margin:0;
    padding:0;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.wl-premium-billing-scope .wl-panel-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;

    padding:14px 18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    color:rgba(255,255,255,.88);

    font-size:.92rem;
    line-height:1.5;
}

.wl-premium-billing-scope .wl-panel-list li:hover{
    border-color:var(--accent);
    background:rgba(255,255,255,.07);
}

.wl-premium-billing-scope .wl-panel-list li strong{
    color:#ffffff;
    font-weight:700;
}

/* =========================================================
   BADGES
   ========================================================= */

.wl-premium-billing-scope .wl-panel-list li span{
    flex-shrink:0;

    padding:6px 12px;

    border-radius:8px;

    background:var(--primary);

    color:#fff !important;

    font-size:.8rem;
    font-weight:700;

    white-space:nowrap;
}

.wl-premium-billing-scope .caps-list li span{
    background:var(--accent);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:1100px){

    .wl-premium-billing-scope .wl-safety-panel{
        grid-template-columns:1fr;
        gap:30px;
        padding:30px;
    }

    .wl-premium-billing-scope .wl-panel-col.border-left{
        border-left:none;
        border-top:1px solid rgba(255,255,255,.08);

        padding-left:0;
        padding-top:30px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:768px){

    .wl-premium-billing-scope .wl-safety-panel{
        padding:22px;
        border-radius:16px;
        gap:24px;
    }

    .wl-premium-billing-scope .wl-panel-header h3{
        font-size:1.05rem;
    }

    .wl-premium-billing-scope .wl-panel-list li{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;

        padding:14px;
    }

    .wl-premium-billing-scope .wl-panel-list li span{
        width:100%;
        text-align:center;
        white-space:normal;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width:480px){

    .wl-premium-billing-scope .wl-safety-panel{
        padding:18px;
    }

    .wl-premium-billing-scope .wl-panel-header{
        gap:10px;
    }

    .wl-premium-billing-scope .wl-panel-icon{
        width:38px;
        height:38px;
        font-size:1rem;
    }

    .wl-premium-billing-scope .wl-panel-header h3{
        font-size:1rem;
    }

    .wl-premium-billing-scope .wl-panel-list li{
        font-size:.85rem;
    }
}
/* ==========================================================================
   UPDATED GRID FOR SWIPEABLE HORIZONTAL MOBILE CARDS
   ========================================================================== */

@media (max-width: 650px) {
  /* Transforms the grid into an elegant, infinite horizontal swipe-track */
  .wl-premium-billing-scope .wl-grid {
    grid-template-columns: repeat(4, 280px); /* Locks horizontal alignment */
    gap: 16px;
    overflow-x: auto; /* Enables touch scrolling */
    scroll-snap-type: x mandatory; /* Snaps cards cleanly into place */
    padding-bottom: 15px; /* Leaves room for modern scroll tracks */
    margin-right: -20px; /* Bleeds container over edge for beautiful UI */
    padding-right: 20px;
    -webkit-overflow-scrolling: touch; /* Butter-smooth iOS inertia scrolling */
  }

  /* Ensures each individual card snaps perfectly onto screen center on swipe */
  .wl-premium-billing-scope .wl-card {
    scroll-snap-align: center;
    width: 280px;
  }

  /* Optional: Modern custom subtle scrollbar track styling */
  .wl-premium-billing-scope .wl-grid::-webkit-scrollbar {
    height: 4px;
  }
  .wl-premium-billing-scope .wl-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  .wl-premium-billing-scope .wl-grid::-webkit-scrollbar-thumb {
    background: var(--accent, #c9865a);
    border-radius: 10px;
  }
}


.resume-section {
  width: 100%;
  min-height: 100vh;
  background: #0f1f16; /* optional your theme */
  color: white;
  text-align: center;
  padding: 40px 0 0;
}

.resume-section h2,
.resume-section p {
  margin: 0 0 10px;
}

.form-wrapper {
  width: 100%;
  height: calc(100vh - 120px); /* keeps it full page feel */
}

.form-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.slider-group {
    margin-bottom: 20px;
}

.slider-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1E5E38;
}

/* 🔥 Styled dropdown */
#planSelect {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #1E5E38;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none; /* removes default arrow styling */
    -webkit-appearance: none;
    -moz-appearance: none;

    /* custom arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%231E5E38' d='M5.5 7l4.5 5 4.5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

/* hover */
#planSelect:hover {
    border-color: #1E5E38;
    box-shadow: 0 0 0 3px rgba(30, 94, 56, 0.1);
}

/* focus */
#planSelect:focus {
    border-color: #2E7D4F;
    box-shadow: 0 0 0 3px rgba(30, 94, 56, 0.2);
}
#industries h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.7;
    color: #1E5E38;
    text-align: center;
}
/* DESKTOP */
.comparison-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* MOBILE SLIDER */
@media (max-width:768px){

    .comparison-grid{
        display:flex;
        overflow-x:auto;
        gap:20px;
        padding-bottom:15px;

        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;

        scrollbar-width:none;
    }

    .comparison-grid::-webkit-scrollbar{
        display:none;
    }

    .card{
        flex:0 0 90%;
        min-width:90%;
        scroll-snap-align:center;
    }

    .sourcing-header h1{
        font-size:1.4rem;
        text-align:center;
    }
}
.mobile-swipe-hint{
    display:none;
}

@media (max-width:768px){
    .mobile-swipe-hint{
        display:block;
        text-align:center;
        margin-bottom:15px;
        font-size:.9rem;
        color:#777;
        font-weight:600;
    }
}
/* ==========================================
   WELLLOCIA PREMIUM FOOTER V2
========================================== */

.wellocia-footer{
    background:
    radial-gradient(circle at top left,
    rgba(201,134,90,.10),
    transparent 35%),
    linear-gradient(180deg,#041321 0%,#020d17 100%);
    color:#d7dde3;
    position:relative;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

.wellocia-footer .container-fluid{
    max-width:1500px;
    margin:auto;
    padding:55px 40px 0;
}

/* ==========================
   TOP SECTION
========================== */

.footer-top{
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* ==========================
   HEADINGS
========================== */

.wellocia-footer h4{
    color:#D6A04D;
    font-size:17px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:24px;
    position:relative;
}

.wellocia-footer h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:38px;
    height:2px;
    background:#D6A04D;
}

/* ==========================
   LOGO
========================== */

.footer-brand img{
    max-width:220px;
    margin-bottom:22px;
}

.footer-brand p{
    font-size:14px;
    line-height:1.9;
    color:#c3ccd5;
    margin-bottom:25px;
}

/* ==========================
   BENEFITS
========================== */

.footer-benefits{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-benefits div{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:14px;
}

.footer-benefits i{
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid rgba(214,160,77,.6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#D6A04D;
    font-size:14px;
}

/* ==========================
   LINKS
========================== */

.wellocia-footer ul{
    margin:0;
    padding:0;
    list-style:none;
}

.wellocia-footer ul li{
    margin-bottom:10px;
}

.wellocia-footer ul li a{
    color:#d4d4d4;
    text-decoration:none;
    font-size:14px;
    transition:.25s ease;
    display:flex;
    align-items:center;
}

.wellocia-footer ul li a::before{
    content:"›";
    color:#D6A04D;
    margin-right:8px;
    font-size:18px;
}

.wellocia-footer ul li a:hover{
    color:#D6A04D;
    transform:translateX(4px);
}

/* ==========================
   CONTACT
========================== */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    font-size:14px;
    color:#fff;
}

.contact-item i{
    color:#D6A04D;
    width:18px;
    font-size:17px;
    margin-top:2px;
}

/* ==========================
   SOCIAL
========================== */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:22px;
    margin-bottom:22px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#D6A04D;
    border-color:#D6A04D;
    color:#041321;
    transform:translateY(-3px);
}

/* ==========================
   CTA BOX
========================== */

.footer-cta{
    border:1px solid rgba(214,160,77,.35);
    border-radius:10px;
    padding:18px;
    background:rgba(255,255,255,.02);
    transition:.3s;
}

.footer-cta:hover{
    border-color:#D6A04D;
    transform:translateY(-4px);
}

.footer-cta h5{
    color:#fff;
    font-size:18px;
    margin-bottom:6px;
}

.footer-cta p{
    color:#c9d2da;
    font-size:13px;
    margin-bottom:10px;
}

.footer-cta a{
    color:#D6A04D;
    font-weight:600;
    text-decoration:none;
}

/* ==========================
   MIDDLE STRIP
========================== */

.footer-middle{
    display:grid;
    grid-template-columns:260px 1fr 380px;
    gap:30px;
    align-items:center;
    padding:28px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-tagline{
    color:#D6A04D;
    font-size:20px;
    font-weight:700;
}

.footer-description{
    font-size:14px;
    line-height:1.8;
    color:#d0d7de;
}

/* ==========================
   STATS
========================== */

.footer-stats{
    display:flex;
    justify-content:space-between;
    text-align:center;
}

.footer-stats h3{
    color:#D6A04D;
    font-size:28px;
    margin-bottom:4px;
    font-weight:700;
}

.footer-stats span{
    color:#d0d0d0;
    font-size:13px;
}

/* ==========================
   LEGAL LINKS
========================== */

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    padding:20px 0;
}

.footer-links a{
    color:#d5d5d5;
    text-decoration:none;
    font-size:13px;
    transition:.25s;
}

.footer-links a:hover{
    color:#D6A04D;
}

/* ==========================
   COPYRIGHT
========================== */

.copyright{
    text-align:center;
    padding:15px 0 25px;
    border-top:1px dashed rgba(255,255,255,.08);
    color:#b7c1ca;
    font-size:13px;
}

/* ==========================
   TABLET
========================== */

@media(max-width:1199px){

.footer-middle{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-stats{
    justify-content:center;
    gap:35px;
}
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

.wellocia-footer .container-fluid{
    padding:45px 25px 0;
}

.wellocia-footer h4{
    margin-top:10px;
}

.footer-brand img{
    max-width:180px;
}

.footer-middle{
    gap:20px;
}

.footer-stats{
    flex-direction:column;
    gap:20px;
}

.footer-links{
    gap:12px;
}

.footer-links a{
    font-size:12px;
}
}
/* ==================================================
   WELLLOCIA MODERN PREMIUM FORM
================================================== */

.wellocia-form-card{
    background:#ffffff;

    border:1px solid var(--border);

    border-radius:28px;

    padding:38px;

    height:100%;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 1px 2px rgba(0,0,0,.03),
    0 12px 30px rgba(0,0,0,.04);
}

/* Top Accent */

.wellocia-form-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
}

/* ==================================================
   BADGE
================================================== */

.wellocia-form-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(30,94,56,.08);

    color:var(--primary);

    font-size:12px;

    font-weight:700;

    margin-bottom:18px;
}

/* ==================================================
   HEADING
================================================== */

.wellocia-form-card h3{

    color:var(--dark);

    font-size:1.9rem;

    line-height:1.2;

    font-weight:800;

    margin-bottom:16px;
}

.wellocia-form-intro{

    color:var(--muted);

    font-size:14px;

    line-height:1.8;

    margin-bottom:30px;
}

/* ==================================================
   FORM GRID
================================================== */

.wellocia-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:16px;
}

.field-group{
    margin-bottom:16px;
}

/* ==================================================
   LABELS
================================================== */

.field-group label{

    display:block;

    margin-bottom:7px;

    font-size:12px;

    font-weight:600;

    color:var(--dark);
}

/* ==================================================
   INPUTS
================================================== */

.field-group input,
.field-group select,
.field-group textarea{

    width:100%;

    background:var(--light);

    border:1px solid transparent;

    border-radius:14px;

    padding:15px 16px;

    color:var(--dark);

    font-size:15px;

    transition:all .25s ease;
}

.field-group textarea{

    min-height:130px;

    resize:vertical;
}

/* Placeholder */

.field-group input::placeholder,
.field-group textarea::placeholder{

    color:#8a978f;
}

/* Focus */

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus{

    outline:none;

    background:#fff;

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(30,94,56,.08);
}

/* ==================================================
   SELECT
================================================== */

.field-group select{

    appearance:none;

    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20'%3E%3Cpath fill='%231E5E38' d='M5.5 7l4.5 5 4.5-5z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 16px center;

    padding-right:48px;
}

/* ==================================================
   BUTTON
================================================== */

.wellocia-submit-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:15px;

    font-weight:700;

    transition:all .25s ease;

    margin-top:10px;
}

.wellocia-submit-btn:hover{

    background:var(--primary-hover);

    transform:translateY(-2px);
}

/* ==================================================
   TRUST ROW
================================================== */

.wellocia-trust-row{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:16px;

    margin-top:18px;

    color:var(--muted);

    font-size:13px;

    font-weight:500;
}

/* ==================================================
   THANK YOU
================================================== */

#thankYouBox{

    background:var(--light);

    border:1px solid var(--border);

    border-radius:18px;

    padding:24px;

    color:var(--dark);

    line-height:1.8;
}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:768px){

    .wellocia-form-card{
        padding:26px;
    }

    .wellocia-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .wellocia-form-card h3{
        font-size:1.6rem;
    }

    .wellocia-form-intro{
        font-size:14px;
    }

    .wellocia-trust-row{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }
}
/* ==========================================
   CORE SPECIALIZED VERTICALS
========================================== */

.specialized-verticals{
    margin-top:28px;
}

.verticals-header{
    margin-bottom:18px;
}

.verticals-header h3{
    font-size:1.4rem;
    font-weight:800;
    color:var(--dark);
    margin:0;
}

.vertical-card{

    background:#fff;

    border:1px solid rgba(30,94,56,.08);

    border-radius:18px;

    padding:18px 20px;

    margin-bottom:14px;

    transition:.3s ease;

    position:relative;

    overflow:hidden;
}

.vertical-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:4px;
    height:100%;

    background:var(--primary);
}

.vertical-card:hover{

    transform:translateY(-3px);

    box-shadow:
    0 12px 30px rgba(30,94,56,.08);
}

.vertical-title{

    font-size:13px;

    font-weight:800;

    letter-spacing:.08em;

    color:var(--primary);

    margin-bottom:8px;
}

.vertical-card p{

    margin:0;

    font-size:14px;

    line-height:1.7;

    color:#6b7280;
}

@media(max-width:768px){

    .vertical-card{
        padding:16px;
    }

    .verticals-header h3{
        font-size:1.2rem;
    }
}
.navbar-nav .nav-link {
    text-transform: none !important;
}


/* ═══════════════════════════════════════
   WELLOCIA MISSION / VISION SECTION
══════════════════════════════════════════ */

.wm-section {
    background: var(--light);
    overflow: hidden;
    padding: 80px 0;
}

/* HEADER */
.wm-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.wm-title {
    color: var(--dark);
    letter-spacing: -0.5px;
}

.wm-title span {
    color: var(--primary);
}

.wm-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* LEFT TEXT */
.wm-text-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.wm-text-block p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text);
    opacity: .9;
    text-align: justify;
    margin-bottom: 12px;
}

/* GRID */
.wm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* CARD */
.wm-card {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s ease;
}

.wm-card:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 12px 24px rgba(22, 43, 30, 0.05);
}

/* FULL CARD */
.wm-card.full {
    grid-column: span 2;
}

/* ICON */
.wm-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 12px;
    background: var(--secondary);
}

.wm-icon.geo { color: var(--primary); }
.wm-icon.lightning { color: var(--accent); }
.wm-icon.shield { color: var(--muted); }

/* FLEX CARD */
.wm-flex {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* TEXT INSIDE CARDS */
.wm-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.wm-card p {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
    margin: 0;
}

/* MOBILE */
@media (max-width: 992px) {
    .wm-grid {
        grid-template-columns: 1fr;
    }

    .wm-card.full {
        grid-column: auto;
    }
}
/* ==========================================================================
   PRODUCTION-GRADE DESIGN SYSTEM (Scoped strictly to avoid style bleed)
   ========================================================================== */

.wellocia-premium-framework {
    --fluid-bounce: cubic-bezier(0.25, 1, 0.5, 1);
    --font-mono-code: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* --- Structural Background Blocks --- */
.wellocia-premium-framework .core-verticals-layout {
    background-color: var(--light);
    padding: 2rem 0;
}

.wellocia-premium-framework .geo-footprint-layout {
    background-color: var(--soft);
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
}

/* --- Structural Header System --- */
.wellocia-premium-framework .meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono-code);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.wellocia-premium-framework .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.wellocia-premium-framework .display-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--dark);
}

.wellocia-premium-framework .display-caption {
    font-size: 1.2rem;
    color: var(--muted);
    margin-top: 1rem;
    font-weight: 400;
}

/* --- Custom Grid Border Architecture (Clean Slate Look) --- */
.wellocia-premium-framework .custom-grid-border {
    border: 1px solid var(--border);
    background-color: #ffffff;
}

.wellocia-premium-framework .project-panel-card {
    position: relative;
    border-right: 1px solid var(--border);
}

.wellocia-premium-framework .project-panel-card:last-child {
    border-right: none;
}

.wellocia-premium-framework .panel-inner {
    padding: 3.5rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #ffffff;
    transition: background-color 0.4s var(--fluid-bounce);
}

.wellocia-premium-framework .panel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.wellocia-premium-framework .panel-index {
    font-family: var(--font-mono-code);
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}

.wellocia-premium-framework .panel-pill {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background-color: var(--light);
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.wellocia-premium-framework .panel-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.wellocia-premium-framework .panel-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Micro-Interaction Highlight Overlay line */
.wellocia-premium-framework .panel-corner-line {
    position: absolute;
    bottom: 0; left: 0; width: 0%; height: 3px;
    background-color: var(--accent);
    transition: width 0.4s var(--fluid-bounce);
}

/* Premium Card Hover State Mechanics */
@media (min-width: 992px) {
    .wellocia-premium-framework .project-panel-card:hover .panel-inner {
        background-color: var(--light);
    }
    .wellocia-premium-framework .project-panel-card:hover .panel-corner-line {
        width: 100%;
    }
}

/* --- Geographic Layout Architecture --- */
.wellocia-premium-framework .geo-accented-heading {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.wellocia-premium-framework .geometric-shape {
    width: 40px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 2rem;
}

.wellocia-premium-framework .lead-narrative-text {
    font-size: 1.4rem;
    line-height: 1.75;
    color: var(--dark);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.wellocia-premium-framework .sub-narrative-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 3rem;
}

/* Editorial Native Hypertext Underlining */
.wellocia-premium-framework .text-anchor-token {
    font-weight: 700;
    color: var(--primary);
    box-shadow: inset 0 -3px 0 var(--border);
    transition: box-shadow 0.25s ease;
    padding: 0 1px;
}

.wellocia-premium-framework .text-anchor-token:hover {
    box-shadow: inset 0 -12px 0 var(--border);
}

/* --- Editorial Embedded Action Link Banner --- */
.wellocia-premium-framework .contextual-card-banner {
    position: relative;
    padding-left: 2rem;
}

.wellocia-premium-framework .banner-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background-color: var(--accent);
}

.wellocia-premium-framework .banner-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.wellocia-premium-framework .interactive-action-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.wellocia-premium-framework .link-circle-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background-color: #ffffff;
    flex-shrink: 0;
    transition: var(--fluid-bounce) 0.35s;
}

.wellocia-premium-framework .link-circle-arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.35s var(--fluid-bounce);
}

/* Hover Mechanics for Contextual Banner */
.wellocia-premium-framework .interactive-action-link:hover {
    color: var(--primary-hover) !important;
}

.wellocia-premium-framework .interactive-action-link:hover .link-circle-arrow {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.wellocia-premium-framework .interactive-action-link:hover .link-circle-arrow svg {
    transform: translate(2px, -2px);
}

/* --- Layout Sticky Engine & Breakpoints --- */
@media (min-width: 992px) {
    .wellocia-premium-framework .sticky-side-panel {
        position: sticky;
        top: 5rem;
        height: fit-content;
    }
}

@media (max-width: 991px) {
    .wellocia-premium-framework .display-title {
        font-size: 2.5rem;
    }
    .wellocia-premium-framework .geo-accented-heading {
        font-size: 1.85rem;
    }
    .wellocia-premium-framework .project-panel-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .wellocia-premium-framework .project-panel-card:last-child {
        border-bottom: none;
    }
    .wellocia-premium-framework .panel-inner {
        padding: 2.5rem 1.5rem;
    }
    .wellocia-premium-framework .lead-narrative-text {
        font-size: 1.2rem;
    }
}
.wl-feat-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.wl-feat-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E5E38;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
}
.wl-header{
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 20px 15px;
}

.wl-badge-pill{
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  background: #1E5E38;
  color: #fff;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.wl-title{
  font-size: 32px;
  font-weight: 700;
  color: #162B1E;
  line-height: 1.3;
  margin-bottom: 12px;
}

.wl-subtitle{
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.wl-header-highlights{
  margin-top: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.wl-header-highlights p{
  margin-bottom: 8px;
}

.wl-header-highlights strong{
  color: #1E5E38;
}
/* Modern Dynamic Shadows */
:root {
  --wl-shadow-sm: 0 2px 4px rgba(22, 43, 30, 0.03);
  --wl-shadow-md: 0 10px 30px -10px rgba(22, 43, 30, 0.08);
  --wl-shadow-lg: 0 20px 40px -15px rgba(22, 43, 30, 0.15);
  --wl-radius: 16px;
  --wl-radius-sm: 10px;
  --wl-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Premium ease-out curve */
}

/* Base Wrapper & Entrance Animation Base */
.wl-info-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background-color: var(--light);
}
.wl-info-block:last-child {
  margin-bottom: 0;
}
/* Scroll-Driven Entrance Animation 
   (Apply '.wl-fade-in' class to '.wl-info-block' in HTML to trigger, 
   or let them load naturally with CSS fallback)
*/
.wl-info-block {
  background: #ffffff;
  border-radius: var(--wl-radius);
  padding: 3rem;
  margin-bottom: 4rem;
  border: 1px solid var(--border);
  box-shadow: var(--wl-shadow-md);
  transition: var(--wl-transition);
  animation: wlSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Sequential delay for blocks if loaded together */
.wl-info-block:nth-child(2) { animation-delay: 0.15s; }
.wl-info-block:nth-child(3) { animation-delay: 0.3s; }
.wl-info-block:nth-child(4) { animation-delay: 0.45s; }

@keyframes wlSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wl-info-block h2 {
  color: var(--dark);
  font-size: 1.85rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.wl-info-block > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* List Item Interactions */
.wl-info-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.wl-info-block ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  color: var(--text);
  transition: var(--wl-transition);
}

.wl-info-block ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  transition: var(--wl-transition);
}

/* Subtle shift of text on hovering over container lists */
.wl-info-block ul:hover li:not(:hover) {
  opacity: 0.6; /* Dim other bullet points to focus on current one */
}

.wl-info-block ul li:hover {
  transform: translateX(4px);
  color: var(--dark);
}

/* 1. One-Time Recruitment Card */
.wl-info-card {
  background-color: var(--soft);
  border-left: 5px solid var(--accent);
  border-radius: var(--wl-radius-sm);
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shimmer gleam effect behind pricing card */
.wl-info-card::after {
  content: '';
  position: absolute;
  top: 0; left: -50%; width: 200%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
  z-index: -1;
}

.wl-info-card:hover::after {
  left: 120%;
}

.wl-info-card p strong {
  color: var(--accent);
  font-size: 1.25rem;
  display: inline-block;
  transition: var(--wl-transition);
}

.wl-info-card:hover p strong {
  transform: scale(1.03);
  color: var(--accent-hover);
}

/* 2. Timeline Component (Interactive Sequence) */
.wl-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.wl-step {
  background: var(--soft);
  padding: 2rem;
  border-radius: var(--wl-radius-sm);
  border-top: 4px solid var(--primary);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--wl-transition);
}

.wl-step h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
  transition: var(--wl-transition);
}

/* Timeline Hover Steps Chain */
.wl-step:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: var(--wl-shadow-lg);
  border-color: transparent;
}

.wl-step:hover h4 {
  color: var(--primary-hover);
  border-color: var(--primary);
}

/* 3. Comparison Cards (3D Lift Feature) */
.wl-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
  padding: 1rem 0;
}

.wl-col {
  background: var(--light);
  padding: 2.5rem 2rem;
  border-radius: var(--wl-radius-sm);
  border: 1px solid var(--border);
  transition: var(--wl-transition);
}

.wl-col:hover:not(.wl-highlight) {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: var(--wl-shadow-md);
}

/* Wellocia Standout Highlight Card */
.wl-col.wl-highlight {
  background: var(--secondary);
  border: 2px solid var(--accent);
  box-shadow: var(--wl-shadow-lg);
  transform: scale(1.03);
  position: relative;
}

.wl-col.wl-highlight::before {
  content: '★ RECOMMENDED';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(201, 134, 90, 0.3);
}

.wl-col.wl-highlight h3 {
  color: var(--accent);
  font-weight: 700;
}

.wl-col.wl-highlight ul li::before {
  color: var(--accent);
}

/* Dynamic pop effect on your company column */
.wl-col.wl-highlight:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 50px -15px rgba(22, 43, 30, 0.2);
  border-color: var(--accent-hover);
}

/* 4. Table UI Micro-interactions */
.wl-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--wl-radius-sm);
  overflow: hidden;
  box-shadow: var(--wl-shadow-sm);
}

.wl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  transition: var(--wl-transition);
}

.wl-row:last-child {
  border-bottom: none;
}

.wl-row:nth-child(even):not(.wl-head) {
  background: var(--soft);
}

/* Zebra row highlights on mouse track */
.wl-row:not(.wl-head):hover {
  background: #ffffff;
  transform: scale(1.008);
  padding-left: 2.25rem; /* Slight slide indentation mimicry */
  box-shadow: inset 4px 0 0 0 var(--primary);
}

.wl-head {
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
  .wl-info-block {
    padding: 2rem 1.5rem;
    animation: wlSlideUp Mobile 0.6s ease-out;
  }
  
  .wl-col.wl-highlight {
    transform: none;
  }
  
  .wl-col.wl-highlight:hover {
    transform: translateY(-4px);
  }
  
  .wl-row:not(.wl-head):hover {
    transform: none;
    padding-left: 1rem;
    box-shadow: none;
  }

  .wl-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
  }
  
  .wl-head {
    display: none;
  }

  .wl-row:not(.wl-head) span:first-child {
    font-weight: 700;
    color: var(--dark);
  }

  .wl-row:not(.wl-head) span:last-child {
    color: var(--primary);
  }
}
/* ==========================================================
   WELLOCIA INDUSTRIES PAGE
========================================================== */

.wl-industries-page{

background:var(--light);

overflow:hidden;

}


/* HERO */

.wl-industry-hero{

position:relative;

background:

linear-gradient(
135deg,
rgba(22,43,30,.92),
rgba(30,94,56,.88)
),

url("img/industries/bg.webp");

background-size:cover;

background-position:center;

padding:120px 0;

color:#fff;

}


.wl-hero-tag{

display:inline-block;

padding:10px 18px;

border-radius:100px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

font-weight:600;

letter-spacing:1px;

margin-bottom:25px;

}


.wl-industry-hero h1{

font-size:62px;

font-weight:800;

line-height:1.1;

margin-bottom:25px;

}


.wl-industry-hero h1 span{

display:block;

color:var(--accent);

}


.wl-industry-hero p{

font-size:18px;

line-height:1.9;

opacity:.95;

max-width:650px;

}


.wl-hero-buttons{

display:flex;

gap:20px;

margin-top:40px;

}


.wl-hero-buttons .btn{

padding:15px 35px;

border-radius:50px;

font-weight:600;

}


.wl-hero-buttons .btn-success{

background:var(--primary);

border:none;

}


.wl-hero-buttons .btn-success:hover{

background:var(--primary-hover);

}


.wl-hero-buttons .btn-outline-light{

border:2px solid #fff;

}


.wl-hero-image{

position:relative;

}


.wl-hero-image img{

border-radius:28px;

box-shadow:0 35px 80px rgba(0,0,0,.35);

}


/* INTRO */

.wl-introduction{

padding:90px 0;

background:#fff;

}


.wl-small-title{

font-size:14px;

font-weight:700;

letter-spacing:2px;

text-transform:uppercase;

color:var(--primary);

margin-bottom:15px;

}


.wl-introduction h2{

font-size:46px;

font-weight:700;

color:var(--dark);

}


.wl-introduction p{

font-size:18px;

line-height:2;

color:var(--muted);

}


.wl-highlight-box{

background:var(--secondary);

padding:40px;

border-radius:24px;

height:100%;

border:1px solid var(--border);

}


.wl-highlight-box h4{

font-size:60px;

font-weight:800;

color:var(--primary);

margin-bottom:10px;

}


.wl-highlight-box p{

margin:0;

line-height:1.8;

}


/* STICKY NAVIGATION */

.wl-industry-navigation{

position:sticky;

top:75px;

z-index:99;

background:#fff;

padding:20px 0;

border-top:1px solid var(--border);

border-bottom:1px solid var(--border);

}


.wl-nav-wrapper{

display:flex;

gap:18px;

overflow-x:auto;

padding-bottom:5px;

scrollbar-width:none;

}


.wl-nav-wrapper::-webkit-scrollbar{

display:none;

}


.wl-nav-wrapper a{

white-space:nowrap;

text-decoration:none;

padding:12px 22px;

background:var(--secondary);

border-radius:100px;

font-weight:600;

color:var(--dark);

transition:.35s;

}


.wl-nav-wrapper a:hover{

background:var(--primary);

color:#fff;

transform:translateY(-3px);

}


/* MOBILE */

@media(max-width:992px){

.wl-industry-hero{

padding:100px 0 70px;

text-align:center;

}

.wl-industry-hero h1{

font-size:42px;

}

.wl-hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.wl-hero-image{

margin-top:50px;

}

.wl-introduction{

text-align:center;

}

.wl-highlight-box{

margin-top:30px;

}

}
/*==========================================================
    PREMIUM INDUSTRY SECTION
==========================================================*/

.wl-industry-section{
    position:relative;
    padding:clamp(70px,8vw,120px) 0;
    overflow:hidden;
    background:#fff;
}

.wl-industry-section.wl-light{
    background:linear-gradient(180deg,#fcfbf8,#f8f5ef);
}

/*==========================================================
    IMAGE
==========================================================*/

.wl-industry-image{

    width:100%;
    height:clamp(250px,30vw,360px);

    object-fit:cover;
    object-position:center;

    border-radius:24px;

    display:block;

    box-shadow:
    0 20px 60px rgba(0,0,0,.10);

    transition:
    transform .45s ease,
    box-shadow .45s ease;

}

.wl-industry-image:hover{

    transform:translateY(-8px);

    box-shadow:
    0 35px 80px rgba(0,0,0,.16);

}

/*==========================================================
    NUMBER
==========================================================*/

.wl-industry-number{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:clamp(58px,5vw,68px);
    height:clamp(58px,5vw,68px);

    border-radius:50%;

    background:rgba(30,94,56,.08);

    color:var(--primary);

    font-size:clamp(20px,2vw,24px);

    font-weight:700;

    margin-bottom:28px;

}

/*==========================================================
    HEADING
==========================================================*/

.wl-industry-section h2{

    position:relative;

    font-size:clamp(2rem,3vw,2.75rem);

    font-weight:700;

    line-height:1.2;

    color:var(--dark);

    margin-bottom:22px;

    letter-spacing:-.5px;

}

.wl-industry-section h2::after{

    content:"";

    display:block;

    width:72px;

    height:4px;

    margin-top:18px;

    border-radius:20px;

    background:var(--accent);

}

/*==========================================================
    PARAGRAPH
==========================================================*/

.wl-industry-section p{

    max-width:620px;

    font-size:clamp(1rem,1.15vw,1.08rem);

    line-height:1.9;

    color:#617166;

    margin-bottom:34px;

}

/*==========================================================
    ROLE TITLE
==========================================================*/

.wl-role-title{

    font-size:.82rem;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:18px;

}

/*==========================================================
    ROLE GRID
==========================================================*/

.wl-role-grid{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

/*==========================================================
    ROLE PILLS
==========================================================*/

.wl-role-grid span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:50px;

    color:var(--dark);

    font-size:.9rem;

    font-weight:600;

    transition:all .35s ease;

}

.wl-role-grid span::before{

    content:"";

    width:8px;

    height:8px;

    flex-shrink:0;

    border-radius:50%;

    background:var(--primary);

}

.wl-role-grid span:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

    transform:translateY(-3px);

}

.wl-role-grid span:hover::before{

    background:#fff;

}

.wl-light .wl-role-grid span{

    background:#fff;

}

/*==========================================================
    LARGE DESKTOP
==========================================================*/

@media (min-width:1400px){

.wl-industry-section .container{

    max-width:1320px;

}

.wl-industry-section p{

    max-width:580px;

}

}

/*==========================================================
    LAPTOP
==========================================================*/

@media (min-width:992px){

.wl-industry-section .row{

    align-items:center;

}

.wl-industry-section .col-lg-6:first-child{

    padding-right:55px;

}

.wl-industry-section .order-lg-2{

    padding-left:55px;

}

}

/*==========================================================
    TABLETS
==========================================================*/

@media (max-width:991.98px){

.wl-industry-section{

    text-align:center;

}

.wl-industry-image{

    margin-bottom:40px;

}

.wl-industry-number{

    margin:0 auto 24px;

}

.wl-industry-section h2::after{

    margin:18px auto 0;

}

.wl-industry-section p{

    margin:0 auto 32px;

}

.wl-role-grid{

    justify-content:center;

}

}

/*==========================================================
    MOBILE
==========================================================*/

@media (max-width:767.98px){

.wl-industry-section{

    padding:65px 0;

}

.wl-industry-image{

    height:240px;

    border-radius:18px;

}

.wl-industry-section h2{

    margin-bottom:18px;

}

.wl-industry-section p{

    line-height:1.8;

}

.wl-role-grid{

    gap:10px;

}

.wl-role-grid span{

    padding:10px 14px;

    font-size:.82rem;

}

}

/*==========================================================
    SMALL MOBILE (iPhone SE, etc.)
==========================================================*/

@media (max-width:480px){

.wl-industry-image{

    height:210px;

}

.wl-industry-section h2{

    font-size:1.8rem;

}

.wl-industry-number{

    width:54px;

    height:54px;

    font-size:18px;

}

.wl-role-grid{

    justify-content:center;

}

.wl-role-grid span{

    width:100%;

    justify-content:center;

}

}
/*==================================================
HERO
==================================================*/

.wl-industry-hero{

    position:relative;

    display:flex;
    align-items:center;

    min-height:620px;

    padding:120px 0;

    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(22,43,30,.90) 0%,
        rgba(22,43,30,.78) 35%,
        rgba(22,43,30,.45) 65%,
        rgba(22,43,30,.20) 100%
    ),
    url("hero.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.wl-hero-content{

    max-width:680px;

}

.wl-hero-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

    margin-bottom:24px;

    backdrop-filter:blur(12px);

}

.wl-hero-content h1{

    color:#fff;

    font-size:clamp(2.5rem,5vw,4.8rem);

    font-weight:700;

    line-height:1.08;

    margin-bottom:24px;

}

.wl-hero-content h1 span{

    display:block;

    color:#66d07f;

}

.wl-hero-content p{

    color:rgba(255,255,255,.90);

    font-size:18px;

    line-height:1.9;

    max-width:600px;

    margin-bottom:40px;

}

.wl-hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.wl-hero-buttons .btn{

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    min-width:190px;

}

/*=========================
Tablet
=========================*/

@media(max-width:991px){

.wl-industry-hero{

    min-height:520px;

    padding:100px 0;

    background-position:70% center;

}

.wl-hero-content{

    text-align:center;

    margin:auto;

}

.wl-hero-content p{

    margin-left:auto;
    margin-right:auto;

}

.wl-hero-buttons{

    justify-content:center;

}

}

/*=========================
Mobile
=========================*/

@media(max-width:767px){

.wl-industry-hero{

    min-height:460px;

    padding:80px 0;

    background-position:75% center;

}

.wl-hero-buttons{

    flex-direction:column;

    align-items:center;

}

.wl-hero-buttons .btn{

    width:100%;
    max-width:280px;

}

.wl-hero-content h1{

    font-size:2.2rem;

}

.wl-hero-content p{

    font-size:16px;

}

}

/*=========================
Small Phones
=========================*/

@media(max-width:480px){

.wl-industry-hero{

    min-height:420px;

    padding:70px 0;

}

.wl-hero-tag{

    font-size:11px;

    padding:8px 16px;

}

}
/*==========================================================
                INDUSTRIES HERO
==========================================================*/

.wl-industries-page .wl-industry-hero{

    position: relative;

    display: flex;
    align-items: center;

    height: 460px;

    overflow: hidden;

    background-image:
    linear-gradient(
        90deg,
        rgba(22,43,30,.85) 0%,
        rgba(22,43,30,.72) 40%,
        rgba(22,43,30,.42) 70%,
        rgba(22,43,30,.18) 100%
    ),
    url("hero.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}

/*==========================================================
CONTENT
==========================================================*/

.wl-industries-page .wl-hero-content{

    max-width:650px;

}

.wl-industries-page .wl-hero-tag{

    display:inline-flex;
    align-items:center;

    padding:9px 18px;

    margin-bottom:20px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:.78rem;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.wl-industries-page .wl-hero-content h1{

    color:#fff;

    font-size:clamp(2.1rem,4vw,3.8rem);

    font-weight:700;

    line-height:1.1;

    margin-bottom:20px;

}

.wl-industries-page .wl-hero-content h1 span{

    display:block;

    color:var(--accent);

}

.wl-industries-page .wl-hero-content p{

    color:rgba(255,255,255,.90);

    font-size:clamp(.98rem,1.1vw,1.08rem);

    line-height:1.8;

    max-width:600px;

    margin-bottom:30px;

}

.wl-industries-page .wl-hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.wl-industries-page .wl-hero-buttons .btn{

    min-width:180px;

    height:52px;

    border-radius:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    transition:.35s;

}

/*==========================================================
Large Desktop
==========================================================*/

@media (min-width:1400px){

.wl-industries-page .wl-industry-hero{

    height:520px;

}

}

/*==========================================================
Laptop
==========================================================*/

@media (max-width:1199px){

.wl-industries-page .wl-industry-hero{

    height:430px;

}

}

/*==========================================================
Tablet
==========================================================*/

@media (max-width:991.98px){

.wl-industries-page .wl-industry-hero{

    height:400px;

    background-position:65% center;

}

.wl-industries-page .wl-hero-content{

    text-align:center;

    margin:auto;

}

.wl-industries-page .wl-hero-content p{

    margin-left:auto;
    margin-right:auto;

}

.wl-industries-page .wl-hero-buttons{

    justify-content:center;

}

}

/*==========================================================
Mobile
==========================================================*/

@media (max-width:767.98px){

.wl-industries-page .wl-industry-hero{

    height:360px;

    background-position:70% center;

}

.wl-industries-page .wl-hero-content h1{

    margin-bottom:16px;

}

.wl-industries-page .wl-hero-content p{

    font-size:.95rem;

    line-height:1.7;

    margin-bottom:24px;

}

.wl-industries-page .wl-hero-buttons{

    flex-direction:column;

    align-items:center;

    gap:12px;

}

.wl-industries-page .wl-hero-buttons .btn{

    width:100%;

    max-width:270px;

    min-width:unset;

    height:48px;

}

}

/*==========================================================
Small Phones (iPhone SE etc.)
==========================================================*/

@media (max-width:480px){

.wl-industries-page .wl-industry-hero{

    height:330px;

    background-position:75% center;

}

.wl-industries-page .wl-hero-tag{

    font-size:.7rem;

    padding:8px 15px;

    letter-spacing:1.5px;

}

.wl-industries-page .wl-hero-content h1{

    font-size:1.9rem;

}

.wl-industries-page .wl-hero-content p{

    display:none;

}

}
/* ═══════════════════════════════════════
   WELLLOCIA PREMIUM ABOUT SECTION
══════════════════════════════════════ */

.wellocia-about{
    background: linear-gradient(135deg, #FAFAF7, #F4EDE3);
}

/* GRID LAYOUT */
.wellocia-hero-grid{
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    max-width: 1150px;
    margin: auto;
}

/* LEFT SIDE TEXT */
.hero-left h3{
    font-size: 1.8rem;
    color: #162B1E;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-left p{
    font-size: 1.05rem;
    line-height: 1.9;
    color: #162B1E;
    margin-bottom: 15px;
}

.hero-left .accent-text{
    color: #1E5E38;
    font-weight: 600;
    background: rgba(30,94,56,0.06);
    padding: 12px 15px;
    border-left: 4px solid #C9865A;
    border-radius: 8px;
}

/* RIGHT INFO CARDS */
.hero-right{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card{
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(22, 43, 30, 0.06);
    border: 1px solid rgba(30, 94, 56, 0.08);
    transition: 0.3s ease;
}

.info-card:hover{
    transform: translateY(-4px);
}

.info-card h4{
    font-size: 1rem;
    color: #1E5E38;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-card p{
    font-size: 0.95rem;
    color: #5A7A65;
    margin: 0;
}

/* BOTTOM HIGHLIGHT */
.wellocia-highlight-box{
    max-width: 1150px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, rgba(30,94,56,0.08), rgba(201,134,90,0.08));
    padding: 30px;
    border-radius: 14px;
    border-left: 5px solid #C9865A;
}

.wellocia-highlight-box h3{
    font-size: 1.4rem;
    color: #162B1E;
    margin-bottom: 10px;
}

.wellocia-highlight-box p{
    font-size: 1.05rem;
    line-height: 1.8;
    color: #162B1E;
}

/* RESPONSIVE */
@media (max-width: 900px){

    .wellocia-hero-grid{
        grid-template-columns: 1fr;
    }

}
/* ═══════════════════════════════════════
   CORE VERTICALS — PREMIUM REDESIGN SYSTEM
══════════════════════════════════════ */

.core-verticals-premium{
    padding: 110px 0;
    background:
      radial-gradient(900px circle at 10% 10%, rgba(30,94,56,0.08), transparent 60%),
      radial-gradient(800px circle at 90% 20%, rgba(201,134,90,0.07), transparent 55%),
      linear-gradient(135deg, #FAFAF7, #F4EDE3);
}

/* HEADER */
.cv-header{
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

.cv-kicker{
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #5A7A65;
}

.cv-title{
    font-size: 3rem;
    font-weight: 900;
    color: #162B1E;
    margin: 10px 0;
    line-height: 1.1;
}

.cv-subtitle{
    font-size: 1.05rem;
    color: rgba(22,43,30,0.75);
}

/* GRID LAYOUT */
.cv-grid{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* LEFT STORY */
.cv-story{
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30,94,56,0.12);
    border-radius: 22px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

.cv-story h3{
    font-size: 1.6rem;
    font-weight: 800;
    color: #1E5E38;
    margin-bottom: 15px;
}

.cv-story p{
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(22,43,30,0.85);
}

/* BADGE */
.cv-badge{
    margin-top: 25px;
    display: inline-block;
    padding: 10px 14px;
    font-size: 0.85rem;
    border-radius: 999px;
    background: rgba(30,94,56,0.08);
    color: #1E5E38;
    font-weight: 600;
}

/* RIGHT STACK */
.cv-stack{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* CARDS */
.cv-card{
    background: white;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(30,94,56,0.10);
    box-shadow: 0 18px 40px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cv-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1E5E38, #C9865A);
}

.cv-card h4{
    font-size: 1.15rem;
    font-weight: 800;
    color: #162B1E;
    margin-bottom: 8px;
}

.cv-card p{
    font-size: 0.98rem;
    color: rgba(22,43,30,0.75);
    line-height: 1.6;
}

/* HOVER */
.cv-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px){
    .cv-grid{
        grid-template-columns: 1fr;
    }

    .cv-title{
        font-size: 2.2rem;
    }

    .cv-story{
        padding: 30px;
    }
}
/* ═══════════════════════════════════════
   GEO FOOTPRINT — PREMIUM EXTENSION
══════════════════════════════════════ */

.geo-footprint-layout{
    padding: 110px 0;
    background:
      radial-gradient(900px circle at 80% 10%, rgba(30,94,56,0.08), transparent 60%),
      radial-gradient(800px circle at 20% 80%, rgba(201,134,90,0.06), transparent 55%),
      linear-gradient(135deg, #FAFAF7, #F4EDE3);
    position: relative;
    overflow: hidden;
}

/* subtle ambient layer */
.geo-footprint-layout::before{
    content:"";
    position:absolute;
    inset:0;
    background: url("https://www.transparenttextures.com/patterns/noise.webp");
    opacity: 0.03;
    pointer-events:none;
}

/* ═════════ LEFT STICKY PANEL ═════════ */

.sticky-side-panel{
    position: relative;
}

.sticky-inner-content{
    position: sticky;
    top: 120px;
    padding: 40px 30px;
}

/* headline */
.geo-accented-heading{
    font-size: 2.2rem;
    font-weight: 900;
    color: #162B1E;
    line-height: 1.25;
    letter-spacing: -0.5px;
    position: relative;
}

/* decorative underline accent */
.geo-accented-heading::after{
    content:"";
    display:block;
    width: 80px;
    height: 3px;
    margin-top: 18px;
    background: linear-gradient(90deg, #1E5E38, #C9865A);
    border-radius: 2px;
}

/* geometric visual block */
.geometric-shape{
    width: 140px;
    height: 140px;
    margin-top: 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(30,94,56,0.15), rgba(201,134,90,0.15));
    transform: rotate(10deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* soft shine effect */
.geometric-shape::before{
    content:"";
    position:absolute;
    inset:-40%;
    background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 60%);
    transform: rotate(25deg);
}

/* ═════════ RIGHT CONTENT AREA ═════════ */

.narrative-scroller{
    padding: 20px 10px;
}

/* main paragraph */
.lead-narrative-text{
    font-size: 1.25rem;
    line-height: 1.95;
    color: #162B1E;
    margin-bottom: 25px;
}

/* secondary paragraph */
.sub-narrative-text{
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(22,43,30,0.82);
}

/* highlight tokens */
.text-anchor-token{
    color: #1E5E38;
    font-weight: 800;
}

/* ═════════ CTA CARD (IMPORTANT PART) ═════════ */

.contextual-card-banner{
    margin-top: 40px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(30,94,56,0.12);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

/* subtle top accent line */
.banner-line{
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #1E5E38, #C9865A);
    margin-bottom: 15px;
    border-radius: 2px;
}

/* CTA heading */
.contextual-card-banner h5{
    font-size: 1.1rem;
    font-weight: 800;
    color: #162B1E;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* LINK */
.interactive-action-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #1E5E38;
    font-weight: 600;
    transition: all 0.35s ease;
}

/* hover interaction */
.interactive-action-link:hover{
    color: #162B1E;
    transform: translateX(4px);
}

/* arrow circle */
.link-circle-arrow{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(30,94,56,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    background: rgba(255,255,255,0.6);
}

/* hover effect */
.interactive-action-link:hover .link-circle-arrow{
    transform: rotate(45deg);
    background: rgba(30,94,56,0.08);
}

/* ═════════ RESPONSIVE ═════════ */

@media (max-width: 992px){

    .sticky-inner-content{
        position: relative;
        top: auto;
        padding: 20px 10px;
        margin-bottom: 30px;
    }

    .geo-accented-heading{
        font-size: 1.7rem;
    }

    .geometric-shape{
        width: 110px;
        height: 110px;
    }

    .lead-narrative-text{
        font-size: 1.1rem;
    }
}
.geo-footprint-layout{
    padding-bottom: 20px !important;
}

.cta-section{
    margin-top: 0 !important;
    padding-top: 20px !important;
}
.wm-subtitle{
   
    color: var(--muted);
    margin-top: 10px;
}
/* Full Width isolated Scoping Engine Layout */
.wellocia-hr-landing {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #1c1c1c;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 0 !important; /* Locks hard flush to the footer */
  margin-bottom: 0 !important;
}

.wellocia-hr-landing * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fluid Layout Strategy for Max Monitor Span */
.wellocia-hr-landing .hr-container {
  width: 100%;
  max-width: 1440px; /* Expands maximum visual display span */
  margin: 0 auto;
  padding: 0 4%;
}

.wellocia-hr-landing .hr-container-fluid {
  width: 100%;
  max-width: 100%; /* Removes side barriers for edge-to-edge content tracking */
  padding: 0 4%;
  margin: 0 auto;
}

.wellocia-hr-landing .grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1024px) {
  .wellocia-hr-landing .grid-2-col {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
  }
}

/* Background Brand Arcs */
.wellocia-hr-landing .top-brand-arch {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: 110px;
  background: radial-gradient(circle at top left, var(--primary, #1E5E38) 70%, transparent 72%);
  z-index: 1;
  pointer-events: none;
}

/* Hero Content Tuning */
.wellocia-hr-landing .hr-hero {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.wellocia-hr-landing .brand-sub {
  font-family: 'Georgia', serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: bold;
  color: var(--dark, #162B1E);
  line-height: 1;
}

.wellocia-hr-landing .brand-dept {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  color: var(--dark, #162B1E);
  margin-top: 5px;
  margin-bottom: 25px;
}

.wellocia-hr-landing .hr-hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--dark, #162B1E);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wellocia-hr-landing .hr-hero h1 .accent-text {
  color: var(--accent, #C9865A);
}

/* Poster Custom Tagline Component */
.wellocia-hr-landing .tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px auto;
  max-width: 100%;
}

.wellocia-hr-landing .tagline-row::before,
.wellocia-hr-landing .tagline-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--accent, #C9865A);
  display: none;
}

@media (min-width: 600px) {
  .wellocia-hr-landing .tagline-row::before,
  .wellocia-hr-landing .tagline-row::after {
    display: block;
  }
}

.wellocia-hr-landing .tagline-text {
  color: var(--dark, #162B1E);
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.wellocia-hr-landing .star, .wellocia-hr-landing .star-orange {
  color: var(--accent, #C9865A);
  font-size: 0.85rem;
}

.wellocia-hr-landing .hero-desc, .wellocia-hr-landing .hero-subdesc {
  max-width: 950px;
  margin: 0 auto 18px auto;
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  color: #333333;
  text-align: center;
}

/* Badge Headers */
.wellocia-hr-landing .section-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}

.wellocia-hr-landing .section-badge-wrapper.mid-section {
  justify-content: center;
  margin-bottom: 35px;
}

.wellocia-hr-landing .pill-badge {
  background-color: var(--dark, #162B1E);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wellocia-hr-landing .badge-text-only {
  color: var(--dark, #162B1E);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SVG Wrapper Architecture */
.wellocia-hr-landing .icon-wrapper, .wellocia-hr-landing .step-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wellocia-hr-landing .icon-wrapper svg {
  fill: var(--primary, #1E5E38);
  width: 100%;
  height: 100%;
}

.wellocia-hr-landing .step-icon svg {
  fill: var(--muted, #5A7A65);
  width: 100%;
  height: 100%;
}

/* Dynamic Interactive Feature Cards */
.wellocia-hr-landing .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .wellocia-hr-landing .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wellocia-hr-landing .feature-card {
  background-color: #ffffff;
  border: 1px solid var(--border, #D6E4DA);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;
}

.wellocia-hr-landing .feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary, #1E5E38);
  box-shadow: 0 12px 30px rgba(22, 43, 30, 0.08);
}

.wellocia-hr-landing .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.wellocia-hr-landing .card-header h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark, #162B1E);
  text-transform: uppercase;
}

.wellocia-hr-landing .feature-card p, .wellocia-hr-landing .bullet-list li {
  font-size: 0.88rem;
  color: #444444;
}

.wellocia-hr-landing .bullet-list {
  list-style: none;
}

.wellocia-hr-landing .bullet-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}

.wellocia-hr-landing .bullet-list li::before {
  content: "•";
  color: var(--accent, #C9865A);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Subscription Column Side */
.wellocia-hr-landing .sub-boxed-wrapper {
  border: 1px solid var(--border, #D6E4DA);
  border-radius: 14px;
  padding: 24px;
  background-color: #ffffff;
}

.wellocia-hr-landing .timeline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wellocia-hr-landing .step {
  background-color: var(--light, #FAFAF7);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #333333;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.wellocia-hr-landing .step:hover {
  background-color: #ffffff;
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.wellocia-hr-landing .arrow {
  text-align: center;
  color: var(--accent, #C9865A);
  font-size: 1rem;
  line-height: 1;
}

/* Feature Table */
.wellocia-hr-landing .comparison-table-wrapper {
  margin-top: 30px;
  border: 1px solid var(--border, #D6E4DA);
  border-radius: 6px;
  overflow-x: auto;
}

.wellocia-hr-landing .table-title {
  background-color: var(--dark, #162B1E);
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.wellocia-hr-landing .comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.wellocia-hr-landing .comparison-table th,
.wellocia-hr-landing .comparison-table td {
  padding: 10px 14px;
  border: 1px solid var(--border, #D6E4DA);
}

.wellocia-hr-landing .comparison-table th {
  background-color: var(--secondary, #F4EDE3);
  color: var(--dark, #162B1E);
  font-weight: 700;
}

.wellocia-hr-landing .comparison-table tr {
  transition: background-color 0.2s ease;
}

.wellocia-hr-landing .comparison-table tr:hover td {
  background-color: #fafbfc;
}

.wellocia-hr-landing .comparison-table td:last-child {
  font-weight: 700;
}

.wellocia-hr-landing .comparison-table .check {
  color: var(--primary, #1E5E38);
  margin-right: 4px;
}

/* Perfect For Section Matrix Grid */
.wellocia-hr-landing .hr-perfect-for {
  margin: 60px 0;
}

.wellocia-hr-landing .target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .wellocia-hr-landing .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .wellocia-hr-landing .target-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wellocia-hr-landing .target-card {
  border: 1px solid var(--border, #D6E4DA);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.wellocia-hr-landing .target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.wellocia-hr-landing .target-svg-wrapper {
  width: 38px;
  height: 38px;
  margin: 0 auto 14px auto;
}

.wellocia-hr-landing .target-svg-wrapper svg {
  fill: var(--primary, #1E5E38);
  width: 100%;
  height: 100%;
}

.wellocia-hr-landing .target-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark, #162B1E);
  margin-bottom: 8px;
}

.wellocia-hr-landing .target-card p {
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.4;
}

/* Flushed CTA Footer Integration Element spanning 100vw */
.wellocia-hr-landing .hr-cta-banner {
  background-color: var(--dark, #162B1E);
  color: #ffffff;
  padding: 60px 0 70px 0;
  position: relative;
  width: 100%;
  margin-bottom: 0 !important;
  margin-top: 40px;
}

.wellocia-hr-landing .cta-flex {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

@media (min-width: 992px) {
  .wellocia-hr-landing .cta-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.wellocia-hr-landing .cta-left h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 800;
}

.wellocia-hr-landing .cta-left h2 .accent-title {
  color: var(--accent, #C9865A);
}

.wellocia-hr-landing .cta-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 550px) {
  .wellocia-hr-landing .cta-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
  }
}

.wellocia-hr-landing .cta-features div {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6eae7;
}

.wellocia-hr-landing .check-circle {
  color: var(--accent, #C9865A);
}

.wellocia-hr-landing .cta-right {
  width: 100%;
}

@media (min-width: 992px) {
  .wellocia-hr-landing .cta-right {
    width: auto;
  }
}

.wellocia-hr-landing .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--accent, #C9865A);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  font-weight: 700;
  border-radius: 30px;
  font-size: 1rem;
  width: 100%;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wellocia-hr-landing .cta-button:hover {
  background-color: var(--accent-hover, #B5724A);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 134, 90, 0.3);
}

.wellocia-hr-landing .phone-svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* Decorative Footer Arch Graphics */
.wellocia-hr-landing .bottom-brand-arch {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 130px;
  background: radial-gradient(circle at bottom right, var(--accent, #C9865A) 60%, transparent 63%);
  pointer-events: none;
}

/* --- Smooth Keyframe Animation Engines --- */
.wellocia-hr-landing .animated-fade-in {
  animation: hrFadeIn 0.8s ease-out forwards;
}

.wellocia-hr-landing .animated-slide-up {
  opacity: 0;
  animation: hrSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes hrFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hrSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Structural Breakpoint Fallbacks */
@media (max-width: 1023px) {
  .wellocia-hr-landing .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .wellocia-hr-landing .features-grid,
  .wellocia-hr-landing .cta-features {
    grid-template-columns: 1fr;
  }
  .wellocia-hr-landing .target-grid {
    grid-template-columns: 1fr;
  }
}
.hr-cta-banner .cta-left h2 {
    color: #fff;
}
/* Isolated Global Variables to Lock Poster Color Schemes */
.wellocia-hr-tech-landing {
  --dark-green: #0a331c;
  --bright-orange: #d97d41;
  --text-black: #1a1a1a;
  --text-muted: #555555;
  --bg-light: #fcfcf9;
  --border-tint: #e4ebe6;
  
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: var(--text-black);
  line-index: 1.5;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding: 40px 0 0 0;
}

.wellocia-hr-tech-landing * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fluid Layout Engine */
.wellocia-hr-tech-landing .tech-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 25px;
}

.wellocia-hr-tech-landing .tech-container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}

/* Header Content Layout */
.wellocia-hr-tech-landing .tech-hero {
  text-align: center;
  margin-bottom: 50px;
}

.wellocia-hr-tech-landing .brand-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.wellocia-hr-tech-landing .brand-main {
  font-family: 'Georgia', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1;
}

.wellocia-hr-tech-landing .brand-sub {
  font-size: 0.85rem;
  letter-spacing: 6px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

.wellocia-hr-tech-landing .main-title {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 900;
  color: var(--dark-green);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.wellocia-hr-tech-landing .sub-tagline-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.wellocia-hr-tech-landing .sub-tagline-row h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--bright-orange);
  font-weight: 700;
}

.wellocia-hr-tech-landing .diamond {
  color: var(--bright-orange);
  font-size: 1.2rem;
}

.wellocia-hr-tech-landing .hero-paragraph {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Section Header Badges */
.wellocia-hr-tech-landing .column-header-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  white-space: nowrap;
}

.wellocia-hr-tech-landing .column-header-badge.center-badge {
  justify-content: center;
  margin-bottom: 35px;
}

.wellocia-hr-tech-landing .column-header-badge h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bright-orange);
  letter-spacing: 0.5px;
}

/* Two Pillar Main Split */
@media (min-width: 992px) {
  .wellocia-hr-tech-landing .grid-2-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
  }
}

/* Left: Hardware Component Grid Layout */
.wellocia-hr-tech-landing .hardware-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 520px) {
  .wellocia-hr-tech-landing .hardware-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

.wellocia-hr-tech-landing .hw-card {
  background: #ffffff;
  border: 1px solid var(--border-tint);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wellocia-hr-tech-landing .hw-card h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 12px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wellocia-hr-tech-landing .hw-img-placeholder {
  background-color: var(--bg-light);
  border: 1px dashed #c4d4cc;
  height: 130px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.wellocia-hr-tech-landing .img-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.wellocia-hr-tech-landing .hw-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Right: Software Matrix List */
.wellocia-hr-tech-landing .software-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wellocia-hr-tech-landing .sw-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-tint);
}

.wellocia-hr-tech-landing .sw-row:last-child {
  border-bottom: none;
}

.wellocia-hr-tech-landing .sw-icon-circle {
  width: 42px;
  height: 42px;
  background-color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wellocia-hr-tech-landing .sw-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.wellocia-hr-tech-landing .sw-icon-circle .currency-symbol {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
}

.wellocia-hr-tech-landing .sw-content h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 3px;
}

.wellocia-hr-tech-landing .sw-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Section 3: AI Innovations Layout Row */
.wellocia-hr-tech-landing .ai-innovations-section {
  margin-top: 60px;
  padding: 40px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-tint);
  border-bottom: 1px solid var(--border-tint);
}

.wellocia-hr-tech-landing .ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .wellocia-hr-tech-landing .ai-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

.wellocia-hr-tech-landing .ai-card {
  text-align: center;
  padding: 10px;
}

.wellocia-hr-tech-landing .ai-icon-wrapper {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px auto;
  border: 1px solid var(--border-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.wellocia-hr-tech-landing .ai-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-green);
}

.wellocia-hr-tech-landing .ai-text h5 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.wellocia-hr-tech-landing .ai-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Section 4: Why Choose Ribbons */
.wellocia-hr-tech-landing .why-choose-section {
  padding: 60px 0;
}

.wellocia-hr-tech-landing .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .wellocia-hr-tech-landing .why-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
}

.wellocia-hr-tech-landing .why-card {
  text-align: center;
}

.wellocia-hr-tech-landing .why-icon-container {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wellocia-hr-tech-landing .why-icon-container svg {
  width: 32px;
  height: 32px;
  fill: var(--bright-orange);
}

.wellocia-hr-tech-landing .why-card h5 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 6px;
}

.wellocia-hr-tech-landing .why-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Section 5: Bottom Industries Ribbon Box */
.wellocia-hr-tech-landing .tech-footer-ribbon {
  background-color: var(--dark-green);
  color: #ffffff;
  padding: 30px 0;
  width: 100%;
}

.wellocia-hr-tech-landing .ribbon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 25px;
  text-align: center;
}

@media (min-width: 768px) {
  .wellocia-hr-tech-landing .ribbon-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
}

.wellocia-hr-tech-landing .ribbon-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wellocia-hr-tech-landing .ribbon-item strong {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.wellocia-hr-tech-landing .ribbon-item span {
  font-size: 0.7rem;
  color: #a4c2b0;
}

/* Secondary Foot Link Maps */
.wellocia-hr-tech-landing .footer-links-row {
  text-align: center;
  padding-top: 25px;
}

.wellocia-hr-tech-landing .footer-links-row h4 {
  font-size: 0.85rem;
  color: var(--bright-orange);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.wellocia-hr-tech-landing .links-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 0.85rem;
  color: #cbdad0;
}

.wellocia-hr-tech-landing .links-flex .splitter {
  color: rgba(255,255,255,0.3);
}

.wellocia-hr-tech-landing .links-flex .active {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

/* Network Accents */
.wellocia-hr-tech-landing .network-bg-left,
.wellocia-hr-tech-landing .network-bg-right {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.4;
  pointer-events: none;
}
.wellocia-hr-tech-landing .network-bg-left { top: 20px; left: 10px; border-left: 2px solid var(--bright-orange); border-top: 2px solid var(--bright-orange); border-radius: 40px 0 0 0; }
.wellocia-hr-tech-landing .network-bg-right { top: 20px; right: 10px; border-right: 2px solid var(--dark-green); border-top: 2px solid var(--dark-green); border-radius: 0 40px 0 0; }

.why-choose-section .why-card h5,
.why-choose-section .why-card p{
    color: var(--text) !important;
}
.hw-image{
    width:85%;
    height:110px;
    margin:18px auto;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8f8f8;
    border-radius:14px;
    overflow:hidden;
}

.hw-image img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:transform .4s ease;
}

.hw-card:hover .hw-image img{
    transform:scale(1.05);
}
/* Tablet */
@media (max-width:992px){
    .hw-image{
        width:80%;
        height:100px;
    }
}

/* Mobile */
@media (max-width:768px){
    .hw-image{
        width:75%;
        height:90px;
    }
}

/* Small Mobile */
@media (max-width:480px){
    .hw-image{
        width:70%;
        height:80px;
    }
}
.hw-image{
    width:100%;
    height:130px;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    background:#fff;
    border-radius:12px;
}

.hw-image img{
    display:block;
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    margin:auto;
}


.hw-card:hover .hw-image img{
    transform:scale(1.03);
}
@media (max-width:992px){
    .hw-image{
        width:80%;
        height:100px;
    }
}

@media (max-width:768px){
    .hw-image{
        width:75%;
        height:90px;
    }
}

@media (max-width:480px){
    .hw-image{
        width:70%;
        height:80px;
    }
}
.hw-image img{
    transform:scale(1.4);
}
/*=============================
  OTHER SERVICES
==============================*/

.other-services{
    padding:90px 0;
    background:#fff;
}

.other-services .section-header{
    max-width:760px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    background:rgba(201,134,90,.12);
    color:var(--accent);
    padding:8px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:18px;
}

.other-services h2{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:18px;
}

.other-services p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

.services-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.service-box{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:24px;
    padding:45px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.service-box::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.service-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--primary),#2c7c58);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:28px;
}

.service-box h3{
    font-size:30px;
    color:var(--primary);
    margin-bottom:18px;
    font-weight:700;
}

.service-box p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:35px;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:var(--accent);
    color:#fff;
    transform:translateX(5px);
}

.service-btn i{
    transition:.3s;
}

.service-btn:hover i{
    transform:translateX(6px);
}

/* Responsive */

@media(max-width:992px){

.services-wrapper{
    grid-template-columns:1fr;
}

.service-box{
    padding:35px;
}

.other-services h2{
    font-size:34px;
}

}

@media(max-width:576px){

.other-services{
    padding:70px 0;
}

.service-box{
    padding:28px;
}

.service-icon{
    width:65px;
    height:65px;
    font-size:28px;
}

.service-box h3{
    font-size:24px;
}

.other-services h2{
    font-size:28px;
}

}
/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

/* Large Laptops */
@media (max-width:1400px){

.other-services{
    padding:80px 0;
}

.service-box{
    padding:40px;
}

.other-services h2{
    font-size:38px;
}

}


/* Laptops */
@media (max-width:1200px){

.services-wrapper{
    gap:25px;
}

.service-box{
    padding:35px;
}

.service-box h3{
    font-size:26px;
}

.service-icon{
    width:72px;
    height:72px;
    font-size:30px;
}

}


/* Tablets */
@media (max-width:991px){

.other-services{
    padding:70px 0;
}

.other-services .section-header{
    margin-bottom:50px;
}

.other-services h2{
    font-size:34px;
}

.other-services p{
    font-size:16px;
}

.services-wrapper{
    grid-template-columns:1fr;
    max-width:700px;
    margin:auto;
    gap:25px;
}

.service-box{
    padding:35px;
}

.service-box h3{
    font-size:28px;
}

.service-box p{
    margin-bottom:28px;
}

.service-btn{
    width:100%;
    justify-content:center;
}

}


/* Large Phones */
@media (max-width:767px){

.other-services{
    padding:60px 0;
}

.other-services .section-header{
    margin-bottom:40px;
}

.section-tag{
    font-size:12px;
    padding:8px 18px;
}

.other-services h2{
    font-size:30px;
    line-height:1.3;
}

.other-services p{
    font-size:15px;
    line-height:1.7;
}

.service-box{
    padding:30px 25px;
    border-radius:20px;
}

.service-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    font-size:26px;
    margin-bottom:22px;
}

.service-box h3{
    font-size:24px;
    margin-bottom:14px;
}

.service-box p{
    font-size:15px;
    margin-bottom:25px;
}

.service-btn{
    padding:14px;
    font-size:15px;
    width:100%;
    justify-content:center;
}

}


/* Small Phones */
@media (max-width:575px){

.other-services{
    padding:55px 0;
}

.other-services .container{
    padding-left:18px;
    padding-right:18px;
}

.section-tag{
    font-size:11px;
}

.other-services h2{
    font-size:26px;
}

.other-services p{
    font-size:14px;
}

.service-box{
    padding:25px 20px;
    border-radius:18px;
}

.service-icon{
    width:58px;
    height:58px;
    font-size:22px;
    border-radius:15px;
}

.service-box h3{
    font-size:22px;
}

.service-box p{
    font-size:14px;
    line-height:1.8;
}

.service-btn{
    padding:13px;
    font-size:14px;
    border-radius:10px;
}

}


/* Very Small Devices */
@media (max-width:360px){

.other-services h2{
    font-size:22px;
}

.service-box{
    padding:20px 16px;
}

.service-box h3{
    font-size:20px;
}

.service-icon{
    width:52px;
    height:52px;
    font-size:20px;
}

.service-btn{
    font-size:13px;
    padding:12px;
}

}
/*==================================================
   SOURCING COMPARISON SECTION
==================================================*/

.sourcing-page-wrapper{
    background:var(--soft);
    padding:70px 20px;
    overflow:hidden;
}

.sourcing-container{
    max-width:1400px;
    margin:auto;
}

.sourcing-header{
    text-align:center;
    margin-bottom:50px;
}

.sourcing-header h1{
    font-size:clamp(2rem,3vw,2.8rem);
    line-height:1.25;
    color:var(--dark);
    font-weight:800;
}

/*==========================
Desktop Grid
==========================*/

.comparison-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

/*==========================
Card
==========================*/

.card{
    background:#fff;
    border-radius:22px;
    border:1px solid var(--border);
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    height:100%;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

.highlight-card{
    border:2px solid var(--primary);
}

/*==========================
Header
==========================*/

.card-header{
    display:flex;
    gap:14px;
    padding:26px;
}

.bullet-dot{
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--accent);
    margin-top:7px;
    flex-shrink:0;
}

.card-header h2{
    font-size:1.35rem;
    line-height:1.3;
    color:var(--dark);
}

.card-header small{
    color:#777;
}

/*==========================
IMAGE
==========================*/

.card-image{
    margin:0 22px 22px;
    border-radius:18px;
    overflow:hidden;
    background:#f7f7f7;
    border:1px solid #eee;
}

.card-image img{
    width:100%;
    display:block;
    height:auto;
}

/*==========================
Content
==========================*/

.cost-drag-box,
.salary-box,
.invoice-box{
    margin:0 22px 18px;
}

.points-list{
    list-style:none;
    padding:0 24px 25px;
    margin:0;
}

.points-list li{
    position:relative;
    padding-left:22px;
    margin-bottom:16px;
    line-height:1.55;
}

.points-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:1px;
    color:var(--primary);
    font-weight:bold;
}

.points-list strong{
    display:block;
    margin-bottom:2px;
}

.points-list span{
    color:#666;
    font-size:.93rem;
}

.card-footer-box{
    margin-top:auto;
    background:var(--secondary);
    padding:22px;
    text-align:center;
    border-top:1px solid var(--border);
    font-weight:600;
}

/*==================================================
TABLET
==================================================*/

@media (max-width:992px){

.comparison-grid{
    gap:20px;
}

}

/*==================================================
MOBILE SLIDER
==================================================*/

@media (max-width:768px){

.comparison-grid{

display:flex;

overflow-x:auto;

overflow-y:hidden;

scroll-snap-type:x mandatory;

scroll-padding:18px;

gap:18px;

padding:0 18px 12px;

margin:0 -18px;

-webkit-overflow-scrolling:touch;

scrollbar-width:none;

}

.comparison-grid::-webkit-scrollbar{

display:none;

}

.card{

flex:0 0 88%;

max-width:88%;

scroll-snap-align:center;

border-radius:20px;

}

.card-image{

margin:0 16px 18px;

}

.card-header{

padding:20px;

}

.card-header h2{

font-size:1.2rem;

}

.points-list{

padding:0 18px 20px;

}

.card-footer-box{

padding:18px;

}

}

/*==================================================
SMALL PHONES
==================================================*/

@media (max-width:480px){

.card{

flex:0 0 92%;

max-width:92%;

}

.card-header h2{

font-size:1.08rem;

}

.card-image{

margin:0 14px 16px;

}

}

/*==================================================
LARGE PHONES
==================================================*/

@media (min-width:481px) and (max-width:768px){

.card{

flex:0 0 80%;

max-width:80%;

}

}
/* --- Namespaced Isolated Footer Component Styles --- */
.wellocia-footer-section {
    /* Scoped theme variables (Will NOT affect :root or rest of the page) */
    --f-bg: #031326;
    --f-text: #94a3b8;
    --f-accent: #f59e0b;
    --f-white: #ffffff;
    --f-border: #1e293b;

    background-color: var(--f-bg);
    color: var(--f-text);
    padding: 60px 40px 20px 40px;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.wellocia-footer-section *, 
.wellocia-footer-section *::before, 
.wellocia-footer-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Top Columns Section --- */
.wellocia-footer-section .w-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr 1.2fr 1.3fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.wellocia-footer-section .w-footer-col h3 {
    color: var(--f-accent);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.wellocia-footer-section .w-footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--f-accent);
}

.wellocia-footer-section .w-footer-col ul {
    list-style: none;
}

.wellocia-footer-section .w-footer-col ul li {
    margin-bottom: 10px;
}

.wellocia-footer-section .w-footer-col ul li a {
    color: var(--f-text);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.wellocia-footer-section .w-footer-col ul li a i {
    color: var(--f-accent);
    font-size: 11px;
    margin-right: 8px;
}

.wellocia-footer-section .w-footer-col ul li a:hover {
    color: var(--f-white);
}

/* --- Brand Identity Box --- */
.wellocia-footer-section .w-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.wellocia-footer-section .w-brand-text h2 {
    color: var(--f-white);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.wellocia-footer-section .w-brand-text span {
    color: var(--f-text);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.wellocia-footer-section .w-brand-desc {
    font-size: 13px;
    margin-bottom: 25px;
    color: var(--f-text);
}

.wellocia-footer-section .w-features-list {
    list-style: none;
}

.wellocia-footer-section .w-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--f-white);
    font-size: 13px;
}

.wellocia-footer-section .w-features-list li .w-icon-wrap {
    border: 1px solid var(--f-accent);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--f-accent);
    font-size: 12px;
    flex-shrink: 0;
}

/* --- Contact Info & Widgets --- */
.wellocia-footer-section .w-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--f-text);
}

.wellocia-footer-section .w-contact-info li i {
    color: var(--f-accent);
    margin-top: 4px;
    font-size: 16px;
}

.wellocia-footer-section .w-social-title {
    color: var(--f-accent);
    font-size: 14px;
    text-transform: uppercase;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.wellocia-footer-section .w-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.wellocia-footer-section .w-social-icons a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--f-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--f-white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.wellocia-footer-section .w-social-icons a:hover {
    border-color: var(--f-accent);
    color: var(--f-accent);
}

.wellocia-footer-section .w-cta-box {
    border: 1px solid var(--f-border);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(30, 41, 59, 0.2);
}

.wellocia-footer-section .w-cta-box i {
    font-size: 28px;
    color: var(--f-white);
}

.wellocia-footer-section .w-cta-text p {
    color: var(--f-white);
    font-weight: 600;
    font-size: 14px;
}

.wellocia-footer-section .w-cta-text span {
    font-size: 11px;
    color: var(--f-text);
    display: block;
    margin-bottom: 4px;
}

.wellocia-footer-section .w-cta-text a {
    color: var(--f-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Banner & Stats (Middle) --- */
.wellocia-footer-section .w-footer-middle {
    border-top: 1px solid var(--f-border);
    border-bottom: 1px solid var(--f-border);
    padding: 30px 0;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.wellocia-footer-section .w-middle-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.wellocia-footer-section .w-shake-hand-icon {
    font-size: 40px;
    color: var(--f-accent);
}

.wellocia-footer-section .w-tagline {
    color: var(--f-accent);
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.wellocia-footer-section .w-middle-desc {
    font-size: 13px;
    color: var(--f-text);
    line-height: 1.5;
}

.wellocia-footer-section .w-middle-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.wellocia-footer-section .w-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.wellocia-footer-section .w-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: var(--f-border);
}

.wellocia-footer-section .w-stat-item i {
    font-size: 22px;
    color: var(--f-accent);
    margin-bottom: 8px;
}

.wellocia-footer-section .w-stat-num {
    color: var(--f-white);
    font-weight: 700;
    font-size: 16px;
}

.wellocia-footer-section .w-stat-label {
    font-size: 11px;
    color: var(--f-text);
    white-space: nowrap;
}

/* --- Fine Print Links (Bottom) --- */
.wellocia-footer-section .w-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    text-align: center;
}

.wellocia-footer-section .w-bottom-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.wellocia-footer-section .w-bottom-links a {
    color: var(--f-text);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.wellocia-footer-section .w-bottom-links a:hover {
    color: var(--f-white);
}

.wellocia-footer-section .w-divider {
    color: var(--f-border);
}

.wellocia-footer-section .w-copyright {
    font-size: 12px;
    color: var(--f-text);
}

/* --- Responsive Adaptations --- */
@media (max-width: 1200px) {
    .wellocia-footer-section .w-footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    .wellocia-footer-section .w-footer-middle {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .wellocia-footer-section .w-middle-right {
        width: 100%;
        justify-content: space-around;
    }
    .wellocia-footer-section .w-stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .wellocia-footer-section {
        padding: 40px 20px 20px 20px;
    }
    .wellocia-footer-section .w-footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .wellocia-footer-section .w-middle-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .wellocia-footer-section .w-tagline {
        white-space: normal;
    }
    .wellocia-footer-section .w-middle-right {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .wellocia-footer-section .w-footer-top {
        grid-template-columns: 1fr;
    }
    .wellocia-footer-section .w-middle-right {
        justify-content: space-between;
    }
}
.w-footer-logo{
    display:block;
    max-width:220px;
    width:100%;
    height:auto;
    object-fit:contain;
}
