/* ============================================================
   Highway International IT — Main Stylesheet  v2
   Fonts: Open Sans (body/UI) · Raleway (headings)
   Palette: --ink #0A0E1A · --navy #0D1B3E · --blue #1A6EF5
            --sky #38BDF8 · --offwhite #F4F6FB · --mid #6B7A99
   ============================================================ */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    background: #F4F6FB;
    color: #0A0E1A;
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
    --ink:      #0A0E1A;
    --navy:     #0D1B3E;
    --blue:     #1A6EF5;
    --sky:      #38BDF8;
    --white:    #FFFFFF;
    --offwhite: #F4F6FB;
    --mist:     #E8EDF7;
    --mid:      #6B7A99;
    --border:   #D1D9EE;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm:   0 2px 8px  rgba(10,14,26,.08);
    --shadow-md:   0 8px 32px rgba(10,14,26,.12);
    --shadow-lg:   0 20px 60px rgba(10,14,26,.16);
    --shadow-blue: 0 8px 32px rgba(26,110,245,.25);

    --transition:   .3s cubic-bezier(.4,0,.2,1);
    --section-pad: 96px 0;
}

/* ── Typography — Raleway headings + Open Sans body ─────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    line-height: 1.18;
    letter-spacing: -.015em;
    color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; }
h4 { font-size: .95rem; font-weight: 600; }
p  { font-family: 'Open Sans', sans-serif; color: var(--mid); line-height: 1.8; font-size: .9375rem; }

/* White text helpers for dark backgrounds */
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5  { color: var(--white); }
.section--dark p   { color: rgba(255,255,255,.72); }

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5  { color: var(--white); }
.section--navy p   { color: rgba(255,255,255,.68); }

/* Section label pill */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
    font-family: 'Open Sans', sans-serif;
}
.section-label::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--blue);
    border-radius: 2px;
    flex-shrink: 0;
}
.section--dark  .section-label,
.section--navy  .section-label,
.process-section .section-label,
.cta-banner      .section-label { color: var(--sky); }
.section--dark  .section-label::before,
.section--navy  .section-label::before,
.process-section .section-label::before,
.cta-banner      .section-label::before { background: var(--sky); }

/* ── Layout ──────────────────────────────────────────────────── */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section   { padding: var(--section-pad); }

.section--dark  { background: var(--ink); }
.section--navy  { background: var(--navy); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: #0f55d4; border-color: #0f55d4; transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.38); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-blue); }

/* ── Badge ───────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}
.badge-blue   { background: rgba(26,110,245,.12); color: var(--blue); }
.badge-green  { background: rgba(34,197,94,.12);  color: #16a34a; }
.badge-orange { background: rgba(251,146,60,.12); color: #ea580c; }
.badge-sky    { background: rgba(56,189,248,.15); color: #0284c7; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 4%;
    transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
}

/* ── Logo image ─────────────────────────────────────────────── */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Fixed width so logo never steals space from links */
    width: 180px;
}
.nav-logo-img {
    width: 100%;          /* fills the 180px container */
    /*height: 200px;*/
    max-height: 252px;
    object-fit: contain;
    object-position: left center;
    display: block;
    /* Dark logo → white on transparent navbar */
    filter: brightness(0) invert(1);
    transition: filter var(--transition), opacity var(--transition);
}
#navbar.scrolled .nav-logo-img {
    filter: none;         /* restore original dark logo on white bar */
}
.nav-logo:hover .nav-logo-img { opacity: .85; }

/* Footer logo — always on dark bg */
.footer-logo { width: 160px; }
.footer-logo-img {
    width: 100%; height: auto; max-height: 46px;
    object-fit: contain; object-position: left center;
    filter: brightness(0) invert(1);
    opacity: .88;
    transition: opacity .2s;
}
.footer-logo:hover .footer-logo-img { opacity: 1; }

/* ── Nav links ──────────────────────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255,255,255,.88);
    transition: color var(--transition);
    position: relative;
    white-space: nowrap;
}
#navbar.scrolled .nav-links a { color: var(--mid); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 100%;
    height: 2px; background: var(--blue);
    border-radius: 2px;
    transition: right var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { right: 0; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.88); font-size: .875rem; font-weight: 600; transition: color var(--transition); }
#navbar.scrolled .dropdown-toggle { color: var(--mid); }
.dropdown-toggle svg { width: 13px; height: 13px; transition: transform .2s; flex-shrink: 0; }
.nav-dropdown:hover .dropdown-toggle { color: var(--blue); }
.nav-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%; transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transition: opacity .2s, transform .2s, visibility .2s;
    box-shadow: var(--shadow-md);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    color: var(--ink) !important; font-size: .85rem;
    transition: background var(--transition);
}
.dropdown-menu a:hover { background: var(--mist); }
.dropdown-menu a::after { display: none !important; }
.drop-icon {
    width: 32px; height: 32px; background: var(--mist);
    border-radius: 6px; display: grid; place-items: center; flex-shrink: 0;
}
.drop-icon svg { width: 16px; height: 16px; color: var(--blue); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-actions .btn { padding: 9px 20px; font-size: .84rem; }
.nav-actions .btn-outline { border-color: rgba(255,255,255,.38); }
#navbar.scrolled .nav-actions .btn-outline { border-color: var(--border); color: var(--ink); }
#navbar.scrolled .nav-actions .btn-outline:hover { background: var(--mist); }

/* ── Hamburger ──────────────────────────────────────────────── */
.hamburger {
    display: none;           /* shown only in mobile via media query */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 26px; height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* SVG hamburger icon colours */
.hamburger .ham-open,
.hamburger .ham-close {
    color: var(--white);
    transition: color var(--transition);
    display: block;
}
#navbar.scrolled .hamburger .ham-open,
#navbar.scrolled .hamburger .ham-close { color: var(--ink); }
.hamburger.open .ham-open  { display: none  !important; }
.hamburger.open .ham-close { display: block !important; }

/* ── Mobile menu ────────────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 20px 5% 32px;
    overflow-y: auto;
    border-top: 2px solid var(--blue);
    box-shadow: var(--shadow-lg);
    z-index: 998;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 0;
    font-weight: 600; font-size: .95rem;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu a svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.mobile-menu .mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .btn { justify-content: center; width: 100%; }

/* ══════════════════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity .9s ease;
    display: flex; align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(10,14,26,.82) 0%, rgba(13,27,62,.65) 50%, rgba(26,110,245,.15) 100%);
}
.slide-content {
    position: relative; z-index: 2;
    width: 92%; max-width: 1200px;
    margin: 0 auto; padding-top: 76px;
}
.slide-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,110,245,.2);
    border: 1px solid rgba(26,110,245,.4);
    border-radius: 100px;
    padding: 5px 16px;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--sky);
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}
.slide-eyebrow span { width: 6px; height: 6px; background: var(--sky); border-radius: 50%; }
.slide-content h1 { color: var(--white); max-width: 700px; margin-bottom: 18px; }
.slide-content h1 em { font-style: normal; color: var(--sky); }
.slide-content p { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 500px; margin-bottom: 32px; }
.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-controls {
    position: absolute; bottom: 32px; left: 0; right: 0;
    z-index: 10;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 4px;
    background: rgba(255,255,255,.38); cursor: pointer;
    transition: all .3s; border: none;
}
.slider-dot.active { background: var(--sky); width: 26px; }
.slider-arrows {
    position: absolute; top: 50%; left: 0; right: 0;
    z-index: 10; transform: translateY(-50%);
    display: flex; justify-content: space-between;
    pointer-events: none; padding: 0 20px;
}
.slider-arrow {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    display: grid; place-items: center;
    cursor: pointer; pointer-events: all;
    transition: background .2s; backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--blue); border-color: var(--blue); }
.slider-arrow svg { width: 20px; height: 20px; }

/* ══════════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════════ */
.stats-bar { background: var(--white); box-shadow: var(--shadow-md); position: relative; z-index: 2; }
.stats-bar .container {
    display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
    padding: 26px 28px;
    display: flex; align-items: center; gap: 14px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 46px; height: 46px;
    background: rgba(26,110,245,.09);
    border-radius: var(--radius-sm);
    display: grid; place-items: center; flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; color: var(--blue); }
.stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 1.7rem; font-weight: 800;
    color: var(--ink); line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--mid); margin-top: 3px; font-family: 'Open Sans', sans-serif; }

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--blue);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(26,110,245,.22); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: grid; place-items: center;
    margin-bottom: 20px;
    transition: transform .3s;
}
.service-card:hover .service-card-icon { transform: scale(1.1); }
.service-card-icon svg { width: 26px; height: 26px; }
.icon-blue   { background: rgba(26,110,245,.1);  color: var(--blue); }
.icon-sky    { background: rgba(56,189,248,.1);  color: #0284c7; }
.icon-violet { background: rgba(139,92,246,.1);  color: #7c3aed; }
.icon-green  { background: rgba(34,197,94,.1);   color: #16a34a; }
.icon-orange { background: rgba(251,146,60,.1);  color: #ea580c; }
.icon-pink   { background: rgba(236,72,153,.1);  color: #db2777; }
.service-card h3 { margin-bottom: 9px; }
.service-card p  { font-size: .875rem; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .84rem; font-weight: 700; color: var(--blue);
    margin-top: 18px; transition: gap .2s;
    font-family: 'Open Sans', sans-serif;
}
.service-card:hover .service-link { gap: 10px; }
.service-link svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */
.why-us { background: var(--mist); }
.why-us-image {
    position: relative; border-radius: var(--radius-xl);
    overflow: hidden; aspect-ratio: 4/3;
}
.why-us-image img { width: 100%; height: 100%; object-fit: cover; }
.why-us-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--white); border-radius: var(--radius-md);
    padding: 14px 18px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
}
.why-us-badge-icon {
    width: 42px; height: 42px;
    background: rgba(26,110,245,.1);
    border-radius: 10px; display: grid; place-items: center;
}
.why-us-badge-icon svg { width: 20px; height: 20px; color: var(--blue); }
.why-us-badge-text strong { display: block; font-size: 1rem; color: var(--ink); font-family: 'Raleway', sans-serif; }
.why-us-badge-text span   { font-size: .76rem; color: var(--mid); }
.why-us-content { padding-left: 16px; }
.why-us-content h2 { margin-bottom: 14px; }
.why-us-content > p { margin-bottom: 32px; }
.features-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.feature-item  { display: flex; gap: 14px; align-items: flex-start; }
.feature-check {
    width: 34px; height: 34px;
    background: rgba(26,110,245,.1); border-radius: 50%;
    display: grid; place-items: center; flex-shrink: 0; margin-top: 2px;
}
.feature-check svg { width: 17px; height: 17px; color: var(--blue); }
.feature-item h4 { margin-bottom: 3px; }
.feature-item p  { font-size: .86rem; }

/* ══════════════════════════════════════════════════════════════
   TECH MARQUEE
══════════════════════════════════════════════════════════════ */
.tech-marquee { background: var(--ink); padding: 52px 0; overflow: hidden; }
.marquee-label {
    text-align: center; font-size: .72rem;
    letter-spacing: .15em; text-transform: uppercase;
    color: rgba(255,255,255,.38); margin-bottom: 28px;
    font-family: 'Open Sans', sans-serif;
}
.marquee-track { display: flex; gap: 0; }
.marquee-inner {
    display: flex; gap: 40px; align-items: center;
    animation: marquee 28s linear infinite; white-space: nowrap;
}
.marquee-inner:hover { animation-play-state: paused; }
.tech-pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 22px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    color: rgba(255,255,255,.7); font-size: .84rem; font-weight: 600; flex-shrink: 0;
    transition: border-color .2s, color .2s;
    font-family: 'Open Sans', sans-serif;
}
.tech-pill:hover { border-color: var(--blue); color: var(--white); }
.tech-pill svg { width: 18px; height: 18px; color: var(--blue); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════════════════ */
.portfolio-grid {
    display: grid; grid-template-columns: repeat(12,1fr);
    gap: 18px; margin-top: 52px;
}
.portfolio-item {
    border-radius: var(--radius-lg); overflow: hidden;
    position: relative; cursor: pointer;
}
.portfolio-item:nth-child(1) { grid-column: 1 / 8; }
.portfolio-item:nth-child(2) { grid-column: 8 / 13; }
.portfolio-item:nth-child(3) { grid-column: 1 / 5; }
.portfolio-item:nth-child(4) { grid-column: 5 / 9; }
.portfolio-item:nth-child(5) { grid-column: 9 / 13; }
.portfolio-img {
    width: 100%; aspect-ratio: 16/10;
    object-fit: cover; display: block;
    transition: transform .6s ease;
}
.portfolio-item:nth-child(1) .portfolio-img,
.portfolio-item:nth-child(2) .portfolio-img { aspect-ratio: 16/9; }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,14,26,.88) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 22px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-img { transform: scale(1.04); }
.portfolio-info h4 { color: var(--white); font-size: .95rem; margin-bottom: 3px; }
.portfolio-info span { font-size: .78rem; color: rgba(255,255,255,.62); font-family: 'Open Sans', sans-serif; }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS / SHOP
══════════════════════════════════════════════════════════════ */
.shop-section { background: var(--offwhite); }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 44px; }
.product-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-img-wrap {
    aspect-ratio: 4/3; background: var(--mist);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.product-img-wrap img { width: 80%; object-fit: contain; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-discount {
    position: absolute; top: 12px; left: 12px;
    background: var(--blue); color: var(--white);
    font-size: .68rem; font-weight: 700;
    padding: 3px 10px; border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
}
.product-wishlist {
    position: absolute; top: 12px; right: 12px;
    width: 30px; height: 30px; background: var(--white);
    border-radius: 50%; display: grid; place-items: center;
    box-shadow: var(--shadow-sm); opacity: 0; transition: opacity .2s;
    cursor: pointer; border: none;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist svg { width: 14px; height: 14px; color: var(--mid); }
.product-body { padding: 15px; }
.product-category { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 5px; font-family: 'Open Sans', sans-serif; }
.product-body h4  { font-size: .9rem; margin-bottom: 6px; color: var(--ink); line-height: 1.4; }
.product-rating   { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 12px; height: 12px; color: #f59e0b; }
.product-rating span { font-size: .75rem; color: var(--mid); font-family: 'Open Sans', sans-serif; }
.product-pricing { display: flex; align-items: center; justify-content: space-between; }
.price-current { font-size: 1.05rem; font-weight: 800; color: var(--ink); font-family: 'Raleway', sans-serif; }
.price-old { font-size: .82rem; color: var(--mid); text-decoration: line-through; margin-left: 5px; font-family: 'Open Sans', sans-serif; }
.btn-cart {
    width: 34px; height: 34px; background: rgba(26,110,245,.1);
    border-radius: 8px; border: none;
    display: grid; place-items: center; cursor: pointer; transition: background .2s;
}
.btn-cart:hover { background: var(--blue); }
.btn-cart:hover svg { color: var(--white); }
.btn-cart svg { width: 17px; height: 17px; color: var(--blue); transition: color .2s; }

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.process-section { background: var(--navy); }
.process-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; margin-top: 52px; position: relative;
}
.process-grid::before {
    content: '';
    position: absolute; top: 36px; left: 12.5%; right: 12.5%;
    height: 1px; background: rgba(255,255,255,.14); z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(26,110,245,.2);
    border: 1px solid rgba(26,110,245,.4);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-family: 'Raleway', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--sky);
    position: relative;
}
.step-num::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 1px dashed rgba(56,189,248,.28);
}
.process-step h3  { color: var(--white); margin-bottom: 9px; font-size: 1.05rem; }
.process-step p   { font-size: .84rem; color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.testimonial-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
    position: relative; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card.featured { background: var(--blue); border-color: var(--blue); }
.testimonial-card.featured p,
.testimonial-card.featured .t-name,
.testimonial-card.featured .t-role { color: rgba(255,255,255,.92) !important; }
.quote-icon { width: 32px; height: 32px; margin-bottom: 16px; color: var(--blue); opacity: .28; }
.testimonial-card.featured .quote-icon { color: var(--white); opacity: .38; }
.testimonial-card > p { font-size: .875rem; line-height: 1.75; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial-card.featured .t-avatar { border-color: rgba(255,255,255,.3); }
.t-name { font-weight: 700; font-size: .875rem; color: var(--ink); font-family: 'Raleway', sans-serif; }
.t-role { font-size: .76rem; color: var(--mid); font-family: 'Open Sans', sans-serif; }

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #0a1a4e 60%, rgba(26,110,245,.35) 100%);
    padding: 76px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 380px; height: 380px; border-radius: 50%;
    background: radial-gradient(circle, rgba(26,110,245,.28) 0%, transparent 70%);
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -80px; left: 10%;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,.14) 0%, transparent 70%);
}
.cta-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    gap: 36px; flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 10px; }
.cta-text p  { color: rgba(255,255,255,.7); max-width: 460px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 52px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .4s; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-meta time { font-size: .76rem; color: var(--mid); font-family: 'Open Sans', sans-serif; }
.blog-body h3 { font-size: 1rem; margin-bottom: 7px; line-height: 1.45; }
.blog-body p  { font-size: .85rem; }
.read-more {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .84rem; font-weight: 700; color: var(--blue);
    margin-top: 14px; transition: gap .2s; font-family: 'Open Sans', sans-serif;
}
.blog-card:hover .read-more { gap: 9px; }
.read-more svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════════════════════════ */
.partners { background: var(--mist); padding: 52px 0; }
.partners-inner { text-align: center; }
.partners-label { font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--mid); margin-bottom: 32px; font-family: 'Open Sans', sans-serif; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.partner-logo {
    font-family: 'Raleway', sans-serif; font-size: 1.05rem; font-weight: 800;
    color: rgba(10,14,26,.22); letter-spacing: -.01em; transition: color .3s; cursor: default;
}
.partner-logo:hover { color: var(--blue); }

/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--offwhite); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 52px;
    align-items: start;
}

/* Left: info + map */
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 28px; }

.contact-detail-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.contact-detail {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }
.cd-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(26,110,245,.1);
    border-radius: 10px; display: grid; place-items: center;
    margin-top: 1px;
}
.cd-icon svg { width: 20px; height: 20px; color: var(--blue); }
.cd-text strong { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; font-family: 'Raleway', sans-serif; }
.cd-text span, .cd-text a { font-size: .875rem; color: var(--mid); transition: color .2s; font-family: 'Open Sans', sans-serif; }
.cd-text a:hover { color: var(--blue); }

/* Map embed */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: 240px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Right: form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 28px; font-size: .875rem; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.cf-group label {
    font-size: .78rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; color: var(--ink);
    font-family: 'Open Sans', sans-serif;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem; color: var(--ink);
    background: var(--offwhite);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,110,245,.12);
    background: var(--white);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(107,122,153,.55); }
.cf-group textarea { resize: vertical; min-height: 120px; }
.cf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A99' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; cursor: pointer; }
.cf-submit { width: 100%; padding: 14px; font-size: .95rem; justify-content: center; margin-top: 4px; }
.cf-note { font-size: .76rem; color: var(--mid); text-align: center; margin-top: 12px; font-family: 'Open Sans', sans-serif; }


/* Kill WPForms' own container spacing/borders so your .contact-form-wrap styling shows through */
.contact-form-wrap .wpforms-container { margin: 0; }
.contact-form-wrap .wpforms-form { all: unset; display: block; }

/* Two-column rows — requires a WPForms "Layout" field wrapping Name+Email, Phone+Company */
.contact-form-wrap .wpforms-layout-column-wrapper,
.contact-form-wrap .wpforms-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Each WPForms field ≈ your .cf-group */
.contact-form-wrap .wpforms-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px !important;
    padding: 0 !important;
}

/* Labels ≈ your .cf-group label */
.contact-form-wrap .wpforms-field label,
.contact-form-wrap .wpforms-field-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink);
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

/* Required asterisk color match (WPForms wraps it in .wpforms-required-label) */
.contact-form-wrap .wpforms-required-label { color: var(--ink); }

/* Inputs/selects/textareas ≈ your .cf-group input,select,textarea */
.contact-form-wrap .wpforms-field input[type="text"],
.contact-form-wrap .wpforms-field input[type="email"],
.contact-form-wrap .wpforms-field input[type="tel"],
.contact-form-wrap .wpforms-field input[type="number"],
.contact-form-wrap .wpforms-field select,
.contact-form-wrap .wpforms-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: .9rem;
    color: var(--ink);
    background: var(--offwhite);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.contact-form-wrap .wpforms-field input:focus,
.contact-form-wrap .wpforms-field select:focus,
.contact-form-wrap .wpforms-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,110,245,.12);
    background: var(--white);
}

.contact-form-wrap .wpforms-field input::placeholder,
.contact-form-wrap .wpforms-field textarea::placeholder {
    color: rgba(107,122,153,.55);
}

.contact-form-wrap .wpforms-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* Dropdown arrow to match your custom SVG chevron */
.contact-form-wrap .wpforms-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A99' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

/* Submit button ≈ your .cf-submit, layered on top of your .btn .btn-primary */
.contact-form-wrap .wpforms-submit-container { margin-top: 4px; }
.contact-form-wrap button[type="submit"].wpforms-submit {
    width: 100%;
    padding: 14px;
    font-size: .95rem;
    justify-content: center;
}

/* WPForms error messages — restyle to fit rather than default red banner look */
.contact-form-wrap .wpforms-error {
    font-size: .78rem;
    color: #d64545;
    margin-top: 4px;
}
.contact-form-wrap .wpforms-field.wpforms-has-error input,
.contact-form-wrap .wpforms-field.wpforms-has-error select,
.contact-form-wrap .wpforms-field.wpforms-has-error textarea {
    border-color: #d64545;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px; padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: .86rem; line-height: 1.78; max-width: 270px; color: rgba(255,255,255,.55); }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
    width: 35px; height: 35px; border-radius: 8px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    display: grid; place-items: center; color: rgba(255,255,255,.56);
    transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.social-btn svg { width: 15px; height: 15px; }
.footer-col h5 {
    color: var(--white); font-size: .82rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase;
    margin-bottom: 18px; font-family: 'Raleway', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
    font-size: .86rem; color: rgba(255,255,255,.48);
    transition: color .2s; display: flex; align-items: center; gap: 5px;
    font-family: 'Open Sans', sans-serif;
}
.footer-col ul a:hover { color: var(--sky); }
.footer-col ul a::before { content: '›'; color: var(--blue); font-size: 1rem; }

/* Newsletter */
.footer-newsletter { margin-top: 18px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1; background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm); padding: 10px 13px;
    color: var(--white); font-size: .86rem;
    font-family: 'Open Sans', sans-serif;
    outline: none; transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.28); }
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form button {
    padding: 10px 16px; background: var(--blue);
    border: none; border-radius: var(--radius-sm);
    color: var(--white); font-weight: 600; cursor: pointer;
    font-size: .86rem; font-family: 'Open Sans', sans-serif; transition: background .2s;
}
.newsletter-form button:hover { background: #0f55d4; }

.footer-bottom {
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
    font-size: .78rem; color: rgba(255,255,255,.28);
    font-family: 'Open Sans', sans-serif;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,.28); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--sky); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL  &  BACK-TO-TOP
══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

#back-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--blue); color: var(--white); border: none;
    display: grid; place-items: center; cursor: pointer;
    opacity: 0; transform: translateY(12px);
    transition: opacity .3s, transform .3s;
    box-shadow: var(--shadow-blue); z-index: 500;
}
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top svg { width: 19px; height: 19px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .nav-logo { width: 150px; }
    .nav-links { gap: 20px; }
    .grid-4, .products-grid { grid-template-columns: repeat(2,1fr); }
    .portfolio-item:nth-child(1) { grid-column: 1 / 13; }
    .portfolio-item:nth-child(2) { grid-column: 1 / 7; }
    .portfolio-item:nth-child(3) { grid-column: 7 / 13; }
    .portfolio-item:nth-child(4) { grid-column: 1 / 7; }
    .portfolio-item:nth-child(5) { grid-column: 7 / 13; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; flex-direction: row; gap: 40px; align-items: flex-start; }
    .footer-brand p { max-width: 320px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 900px (tablet)
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    :root { --section-pad: 72px 0; }

    /* Navbar: hide desktop links, show hamburger */
    .nav-links, .nav-actions { display: none !important; }
    .hamburger { display: flex !important; }
    .nav-logo  { width: 160px; }

    /* Grids */
    .stats-bar .container    { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2)  { border-right: none; }
    .stat-item:nth-child(4)  { border-right: none; }

    .grid-2              { grid-template-columns: 1fr; }
    .why-us-content      { padding-left: 0; }

    .services-grid       { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid   { grid-template-columns: repeat(2,1fr); }
    .blog-grid           { grid-template-columns: repeat(2,1fr); }
    .process-grid        { grid-template-columns: repeat(2,1fr); gap: 32px; }
    .process-grid::before { display: none; }

    .cta-inner           { flex-direction: column; text-align: center; }
    .cta-actions         { justify-content: center; }

    .contact-grid        { grid-template-columns: 1fr; }

    .footer-grid         { grid-template-columns: 1fr 1fr; }
    .footer-brand        { grid-column: 1 / -1; flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — 640px (mobile)
══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    :root { --section-pad: 56px 0; }

    #navbar { padding: 0 4%; }
    .nav-inner { height: 68px; }
    .nav-logo  { width: 140px; }
    .mobile-menu { top: 68px; }
    .hamburger { display: flex !important; }

    h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .products-grid,
    .grid-3          { grid-template-columns: 1fr; }

    .portfolio-item:nth-child(n) { grid-column: 1 / 13; }

    .stats-bar .container { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 18px 16px; gap: 10px; border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4)    { border-bottom: none; }

    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid  { grid-template-columns: 1fr; }

    .hero         { min-height: 100svh; }
    .slide-content { padding-top: 68px; }
    .slider-arrows { padding: 0 10px; }
    .slider-arrow  { width: 38px; height: 38px; }

    .why-us-image { aspect-ratio: 3/2; }

    .cf-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 18px; }

    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; }

    .partners-logos { gap: 20px; }
    .footer-bottom  { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }

    #back-top { bottom: 20px; right: 20px; width: 38px; height: 38px; }
}

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .marquee-inner { animation: none; }
    .reveal { opacity: 1; transform: none; }
    * { transition-duration: .01ms !important; }
}
