/* ============================================================
   SEE Website — Revamp Theme (preview)
   Loaded AFTER css/style.css to override colours and add new
   components that don't exist in the live site.
   Palette source: data/SEE Color Pallet -1.pptx
   ============================================================ */

:root {
    --see-primary:        #1A4A43;   /* deeper teal for stronger contrast */
    --see-primary-dark:   #2E5FA0;   /* richer steel blue */
    --see-primary-light:  #5FB8C2;   /* punchier light cyan */
    --see-secondary-l:    #2FA4DC;   /* saturated sky blue */
    --see-secondary-d:    #5A4A99;   /* deeper purple */
    --see-alt-text:       #2E5FA0;
    --see-alt-dark:       #305C82;
    --see-alt-accent:     #7A00B5;   /* sharper accent */
    --see-bg-soft:        #E5F8F8;   /* slightly cooler soft bg */
    --see-bg-card:        #F8F9FA;
    --see-text:           #131c21;   /* darker primary copy            */
    --see-body:           #2b363e;   /* deeper body for stronger contrast */
    --see-muted:          #4a565f;
    --see-border:         #d8e3e6;   /* slightly stronger border */
    --see-header-h:       66px;     /* compact header height          */
}

/* ---------- Global resets / colour overrides ---------- */
body            { color: var(--see-text); }
/* Override style.css's #677078 which is too washed out */
p, .lead, ul li, ol li,
body p, body .lead { color: var(--see-body) !important; }
/* But muted helpers stay muted */
.text-muted, .copyright p, .see-card p, .see-card li,
.see-section-title p, .see-team-card .where {
    color: var(--see-muted) !important;
}
.see-section-title p { color: var(--see-muted) !important; }

a               { color: var(--see-primary); }
a:hover, a:focus{ color: var(--see-alt-accent); text-decoration: none; }
h1, h2, h3, h4  { color: var(--see-primary); }

/* The live theme paints things with #235954.
   Re-tone them through the new variable. */
.btn.primary-btn,
.btn-primary,
.see-btn {
    background: var(--see-primary);
    border-color: var(--see-primary);
    color: #fff;
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .25s ease;
    line-height: 1.4;
    text-transform: none;
    font-size: 15px;
}
.btn.primary-btn:hover,
.btn-primary:hover,
.see-btn:hover {
    background: var(--see-primary-dark);
    border-color: var(--see-primary-dark);
    color: #fff;
}
.see-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 10px 26px;
    font-weight: 600;
    transition: all .25s ease;
    display: inline-block;
}
.see-btn-ghost:hover { background: #fff; color: var(--see-primary); }

/* ============================================================
   COMPACT HEADER  — overrides .logo-top-info / .main-menu chrome
   ============================================================ */
header {
    background: #fff;
    border-bottom: 1px solid var(--see-border);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .header-area {
    min-height: var(--see-header-h);
    display: block;
}

/* Hide the original tall two-row layout */
header .logo-top-info { padding: 0 !important; }
header .top-info-social { display: none !important; }
header .row.logo-top-info { margin: 0 !important; display: none; }   /* hide the legacy row entirely */

/* New single-bar layout */
.see-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--see-header-h);
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}
.see-topbar .see-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--see-primary);
    flex: 0 0 auto;
}
.see-topbar .see-brand img {
    height: 44px;
    width: auto;
    display: block;
}
.see-topbar .see-brand:hover { color: var(--see-primary-dark); }

.see-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.see-nav li { display: block; }
.see-nav li a {
    display: block;
    padding: 10px 16px;
    color: var(--see-text);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: .2px;
    transition: all .2s ease;
    text-transform: none;
}
.see-nav li a:hover           { color: var(--see-primary); background: var(--see-bg-soft); }
.see-nav li.active a          { color: var(--see-primary); }
.see-nav li.active a::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--see-primary);
    margin-top: 4px;
    border-radius: 2px;
}

/* Top-right action: contact button */
.see-nav .see-cta {
    margin-left: 6px;
    padding: 8px 16px;
    background: var(--see-primary);
    color: #fff !important;
    border-radius: 4px;
    
}
.see-nav .see-cta:hover { background: var(--see-primary-dark); }
.see-nav .see-cta::after { display: none !important; }

/* Active page: keep button looking like a button, no underline or colour bleed */
.see-nav li.active .see-cta {
    background: var(--see-primary-dark);
    color: #fff !important;
    
}
.see-nav li.active .see-cta::after { display: none !important; }

/* Hamburger */
.see-burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--see-border);
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
}
.see-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--see-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.see-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.see-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.see-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile nav ---- */
@media (max-width: 900px) {
    .see-burger { display: inline-flex; }
    .see-nav {
        position: absolute;
        top: var(--see-header-h);
        right: 0; left: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 12px 14px;
        border-top: 1px solid var(--see-border);
        box-shadow: 0 8px 18px rgba(0,0,0,.06);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }
    .see-nav.open {
        max-height: 480px;
        opacity: 1;
        pointer-events: auto;
    }
    .see-nav li a { padding: 12px 14px; }
    .see-nav li.active a::after { display: none; }
    .see-nav li.active a { background: var(--see-bg-soft); border-radius: 4px; }
    .see-nav .see-cta { margin: 10px 10px 0px 10px !important; text-align: center; }
}
@media (max-width: 480px) {
    .see-topbar .see-brand img { height: 38px; }
    :root { --see-header-h: 60px; }
}

/* ---------- New hero ---------- */
.see-hero {
    position: relative;
    min-height: 540px;
    background:
        linear-gradient(135deg, rgba(37,89,81,.85), rgba(64,117,170,.78)),
        url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=1920&q=70') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}
.see-hero .container { padding: 80px 15px; }
.see-hero h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 22px;
}
.see-hero h1 .accent { color: var(--see-primary-light); }
.see-hero p {
    font-size: 19px;
    line-height: 1.65;
    max-width: 780px;
    margin-bottom: 30px;
    opacity: .95;
    color: #fff !important;          /* override darker p override */
}
.see-hero .cta-row .btn,
.see-hero .cta-row .see-btn-ghost { margin-right: 12px; /*margin-bottom: 10px; */}

/* ---------- Section helpers ---------- */
.see-section          { padding: 80px 0; }
.see-section.alt      { background: var(--see-bg-soft); }
.see-section.dark     { background: var(--see-primary); color: #fff; }
.see-section.dark h2,
.see-section.dark h3  { color: #fff; }
.see-section.dark p   { color: rgba(255,255,255,.92) !important; }
.see-section .lead    { font-size: 18px; line-height: 1.75; }
.see-section-title    { text-align: center; margin-bottom: 50px; }
.see-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}
.see-section-title .kicker {
    display: inline-block;
    color: var(--see-primary-dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.see-section-title p {
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto;
}

/* ---------- Page-title banner (sub-pages) ---------- */
.see-page-title {
    background: linear-gradient(135deg, var(--see-primary) 0%, var(--see-alt-dark) 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}
.see-page-title h1     { color: #fff; margin: 0 0 12px; font-size: 42px; font-weight: 700; }
.see-page-title .crumb { color: rgba(255,255,255,.85) !important; font-size: 14px; }
.see-page-title .crumb a { color: var(--see-primary-light); }

/* ============================================================
   EQUAL-HEIGHT CARD GRID — Bootstrap 3 floats break this, so we
   force flex on rows whose direct children should match heights.
   ============================================================ */
.see-equal-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.see-equal-row > [class*="col-"] {
    display: flex;
    float: none;
    margin-bottom: 28px;
}
.see-equal-row > [class*="col-"] > .see-card {
    width: 100%;
    margin-bottom: 0;
}

/* Fallback: ensure every card on a Bootstrap row stretches */
.row .see-card { height: 100%; }

/* Make rows containing team cards / testimonials flex so height: 100% works */
.row:has(> [class*="col-"] > .see-team-card),
.row:has(> [class*="col-"] > .see-testimonial) {
    display: flex;
    flex-wrap: wrap;
}
.row:has(> [class*="col-"] > .see-team-card) > [class*="col-"],
.row:has(> [class*="col-"] > .see-testimonial) > [class*="col-"] {
    display: flex;
    float: none;
}

/* ---------- Generic feature card ---------- */
.see-card {
    background: #fff;
    border: 1px solid var(--see-border);
    border-radius: 8px;
    padding: 28px 24px;
    transition: all .3s ease;
    margin-bottom: 28px;
    width: 100%;
}
.see-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(37,89,81,.12);
    border-color: var(--see-primary-light);
}
.see-card .icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--see-bg-soft);
    color: var(--see-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.see-card h3 { font-size: 18px; margin: 0 0 12px; color: var(--see-primary); line-height: 1.3; }
.see-card p,
.see-card li { color: var(--see-muted) !important; font-size: 14.5px; line-height: 1.65; }
.see-card ul { padding-left: 18px; margin: 0; }
.see-card ul li { margin-bottom: 6px; }

/* ---------- Two-up "About SEE" / "What we do" rows ---------- */
.see-split {
    display: flex; align-items: center; gap: 50px;
    flex-wrap: wrap;
}
.see-split > div { flex: 1 1 380px; }
.see-split .copy h2 { font-size: 32px; margin-bottom: 16px; }
.see-split .copy p  { font-size: 16.5px; line-height: 1.75; margin-bottom: 22px; }
.see-split .visual {
    border-radius: 12px;
    min-height: 320px;
    background:
        linear-gradient(135deg, rgba(37,89,81,.55), rgba(64,117,170,.4)),
        url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1200&q=70') center/cover;
}
.see-split.alt .visual {
    background:
        linear-gradient(135deg, rgba(115,101,167,.55), rgba(64,117,170,.4)),
        url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1200&q=70') center/cover;
}

/* ---------- Client tiles (About page) ---------- */
.see-client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.see-client-grid .tile {
    background: #fff;
    border: 1px solid var(--see-border);
    padding: 18px 16px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    color: var(--see-primary-dark);
    transition: all .25s ease;
    font-size: 14.5px;
}
.see-client-grid .tile:hover {
    background: var(--see-primary);
    color: #fff;
    border-color: var(--see-primary);
    transform: translateY(-3px);
}

/* ---------- Team cards ---------- */
.see-team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    margin-bottom: 30px;
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.see-team-card:hover { box-shadow: 0 14px 38px rgba(37,89,81,.15); }
.see-team-card .photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 28px auto 0;
    background: linear-gradient(135deg, var(--see-primary) 0%, var(--see-alt-dark) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; font-weight: 700; letter-spacing: 2px;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #fff;
    box-shadow: 0 6px 18px rgba(37,89,81,.18);
}
.see-team-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}
.see-team-card .body  { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; text-align: center; }
.see-team-card .body p.bio { text-align: left; }
.see-team-card .links { text-align: center; }
.see-team-card .body h3 { margin: 0 0 4px; }
.see-team-card .role  {
    color: var(--see-primary-dark);
    font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
    font-weight: 700; margin-bottom: 14px; display: block;
}
.see-team-card .bio   { font-size: 14.5px; line-height: 1.7; }
.see-team-card .links { margin-top: auto; padding-top: 16px; }
.see-team-card .links a {
    margin-right: 10px;
    color: var(--see-primary);
    font-size: 18px;
}
.see-team-card .links a:hover { color: var(--see-alt-accent); }

/* ---------- Approach pill list ---------- */
.see-pill-list { list-style: none; padding: 0; margin: 24px 0 0; }
.see-pill-list li {
    background: #fff;
    border-left: 4px solid var(--see-primary);
    padding: 14px 18px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.see-pill-list li b { color: var(--see-primary); }

/* ---------- Testimonials ---------- */
.see-testimonial {
    background: #fff;
    border-radius: 10px;
    padding: 32px 28px 26px;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    position: relative;
    margin-bottom: 30px;
    transition: all .3s ease;
}
.see-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(37,89,81,.12);
    border-color: var(--see-primary-light);
}
.see-testimonial::before {
    content: "\201C";
    position: absolute;
    top: -10px; left: 18px;
    font-size: 90px;
    line-height: 1;
    color: var(--see-primary-light);
    font-family: Georgia, serif;
}
.see-testimonial .quote { font-style: italic; margin: 12px 0 22px; line-height: 1.7; }
.see-testimonial .who   { font-weight: 700; color: var(--see-primary); margin-bottom: 0; }
.see-testimonial .where { font-size: 13px; }

/* ---------- Expertise alternating blocks ---------- */
.see-expertise-row {
    display: flex; align-items: center; gap: 50px;
    flex-wrap: wrap;
    padding: 50px 0;
    border-bottom: 1px solid var(--see-border);
}
.see-expertise-row:last-child { border-bottom: 0; }
.see-expertise-row .thumb {
    flex: 0 0 160px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--see-bg-soft);
    border: 4px solid #fff;
    box-shadow: 0 6px 20px rgba(37,89,81,.12);
}
.see-expertise-row .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.see-expertise-row .copy { flex: 1 1 500px; }
.see-expertise-row h3    { font-size: 24px; margin: 0 0 16px; }
.see-expertise-row ul    { padding-left: 20px; }
.see-expertise-row ul li { margin-bottom: 8px; line-height: 1.65; }

/* ---------- Why choose us (contact page) ---------- */
.see-why ul { list-style: none; padding: 0; }
.see-why li {
    padding: 14px 0;
    border-bottom: 1px solid var(--see-border);
    font-size: 15.5px;
    line-height: 1.6;
    display: flex;
    gap: 14px;
}
.see-why li:last-child { border-bottom: 0; }
.see-why li .fa {
    color: var(--see-primary);
    font-size: 18px;
    margin-top: 3px;
}
.see-why li b { color: var(--see-primary); display: block; margin-bottom: 2px; }

/* ============================================================
   FOOTER  — full-bleed bands + better mobile stacking
   ============================================================ */
.see-footer {
    background: #1c2c34;
    color: #d3dde2;
    padding: 60px 0 0;
}
.see-footer h4 { color: #fff; font-size: 17px; margin-bottom: 22px; letter-spacing: 1px; text-transform: uppercase; }
.see-footer a  { color: #d3dde2; }
.see-footer a:hover { color: var(--see-primary-light); }
.see-footer p, .see-footer li { color: #d3dde2 !important; }
.see-footer .blurb { font-size: 14.5px; line-height: 1.75; max-width: 360px; }
.see-footer ul.links { list-style: none; padding: 0; margin: 0; }
.see-footer ul.links li { padding: 6px 0; }
.see-footer .connect p { margin-bottom: 8px; font-size: 14.5px; }
.see-footer .social-icons {
    list-style: none; padding: 0; margin-top: 12px; display: flex; gap: 10px;
}
.see-footer .social-icons li { padding: 0; }
.see-footer .social-icons a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
}
.see-footer .social-icons a:hover { background: var(--see-primary); }

/* Full-width copyright band (lives OUTSIDE the .container so the
   colour reaches the page edges) */
.see-copyright {
    background: rgba(0,0,0,.25);
    margin-top: 48px;
    padding: 18px 0;
    color: #93a3ab;
}
.see-copyright .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.see-copyright a { color: #93a3ab; }
.see-copyright a:hover { color: #fff; }

/* Footer mobile */
@media (max-width: 767px) {
    .see-footer { padding: 36px 0 0; text-align: left; }
    .see-footer .row > [class*="col-"] {
        margin-bottom: 0;
        padding-top: 24px;
        padding-bottom: 24px;
        border-top: 1px solid rgba(255,255,255,.10);
    }
    .see-footer .row > [class*="col-"]:first-child { border-top: none; padding-top: 0; }
    .see-footer .blurb { max-width: none; }
    .see-footer h4 { margin-top: 0; margin-bottom: 14px; }
    .see-footer ul.links { display: block; text-align: left; }
    .see-footer .connect p { display: flex; align-items: center; gap: 8px; justify-content: flex-start; }
    .see-footer .connect p .fa { width: 18px; text-align: center; }
    .see-footer .social-icons { justify-content: flex-start; margin-top: 8px; }
    .see-copyright { margin-top: 0; border-top: 1px solid rgba(255,255,255,.10); }
    .see-copyright .container { flex-direction: column; text-align: left; gap: 6px; }
}

/* ---------- Form ---------- */
.see-form .form-control {
    border: 1px solid var(--see-border);
    border-radius: 6px;
    padding: 12px 16px;
    box-shadow: none;
    font-size: 15px;
    line-height: 1.5;
    height: auto;
}
.see-form .form-control:focus {
    border-color: var(--see-primary);
    box-shadow: 0 0 0 3px rgba(37,89,81,.12);
}
.see-form textarea.form-control { min-height: 140px; }

/* ---------- Responsive bumps ---------- */
@media (max-width: 768px) {
    .see-hero { min-height: 460px; }
    .see-hero h1 { font-size: 34px; }
    .see-section { padding: 56px 0; }
    .see-section-title h2 { font-size: 28px; }
    .see-page-title { padding: 50px 0 40px; }
    .see-page-title h1 { font-size: 30px; }
    .see-expertise-row { padding: 30px 0; gap: 24px; }
    .see-expertise-row .thumb { flex: 0 0 110px; width: 110px; height: 110px; }
    .see-section.dark .container { flex-direction: column; text-align: center; }

    /* Team cards and testimonials: add gap between stacked columns on mobile */
    .row:has(> [class*="col-"] > .see-team-card) > [class*="col-"],
    .row:has(> [class*="col-"] > .see-testimonial) > [class*="col-"] {
        margin-bottom: 28px;
    }
    .row:has(> [class*="col-"] > .see-team-card) > [class*="col-"]:last-child,
    .row:has(> [class*="col-"] > .see-testimonial) > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
}

/* Contact page: "Why choose us" column spacing from form on tablet/mobile */
@media (max-width: 991px) {
    .see-why-col { margin-top: 40px; }
}

/* tiny utility */
.see-mt-30 { margin-top: 30px; }
.see-mb-0  { margin-bottom: 0 !important; }

/* ============================================================
   CLIENTS & PARTNERS — moving-logo marquee + work-with banner
   ============================================================ */
.see-partners-intro {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
    font-size: 17px;
    line-height: 1.75;
    color: var(--see-body);
}
.see-marquee {
    overflow: hidden;
    position: relative;
    padding: 18px 0;
    background: #fff;
    border: 1px solid var(--see-border);
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.see-marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: see-marquee-slide 35s linear infinite;
}
.see-marquee:hover .see-marquee-track { animation-play-state: paused; }
.see-marquee-item {
    flex: 0 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
.see-marquee-item img {
    max-height: 56px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.see-marquee-item img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}
/* Placeholder text-tile when a real logo isn't yet provided */
.see-marquee-item .logo-placeholder {
    height: 56px;
    min-width: 150px;
    padding: 0 22px;
    border: 1.5px dashed var(--see-border);
    border-radius: 8px;
    color: var(--see-muted);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--see-bg-soft);
}
@keyframes see-marquee-slide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.see-work-banner {
    margin-top: 36px;
    padding: 28px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--see-primary) 0%, var(--see-alt-dark) 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 24px rgba(26,74,67,.18);
}
.see-work-banner h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 26px;
    letter-spacing: .5px;
}
.see-work-banner p {
    color: rgba(255,255,255,.92) !important;
    margin: 0;
    font-size: 15.5px;
}
@media (max-width: 768px) {
    .see-marquee-track { gap: 36px; animation-duration: 28s; }
    .see-marquee-item { height: 56px; }
    .see-marquee-item img { max-height: 44px; max-width: 140px; }
    .see-work-banner h3 { font-size: 22px; }
}
