/*
Theme Name: TechWork360
Theme URI: https://techwork360.com
Author: TechWork360
Author URI: https://techwork360.com
Description: A professional digital agency theme for TechWork360 featuring WordPress, Shopify, WooCommerce, SEO, UI/UX Design and eCommerce services.
Version: 2.1.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techwork360
Tags: business, agency, one-page, responsive, custom-colors
*/

/* ============================================================
   RESET & ROOT VARIABLES
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue:       #1E5BE5;
    --blue-dark:  #1344C0;
    --blue-light: #EEF3FF;
    --teal:       #00C8A0;
    --dark:       #0D1B2A;
    --dark2:      #1A2B3C;
    --text:       #3D4F60;
    --muted:      #7A8A99;
    --border:     #E0E8F0;
    --white:      #FFFFFF;
    --light-bg:   #F4F7FB;
    --font:       'Inter', 'Segoe UI', Arial, sans-serif;
    --radius:     10px;
    --radius-lg:  18px;
    --shadow-sm:  0 2px 12px rgba(30,91,229,0.08);
    --shadow:     0 6px 28px rgba(30,91,229,0.13);
    --shadow-lg:  0 14px 48px rgba(30,91,229,0.18);
    --trans:      all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; transition: var(--trans); }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: 90px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 14px;
}
.tag-label::before,
.tag-label::after {
    content: '—';
    color: var(--blue);
    font-weight: 400;
}

.sec-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.sec-title span { color: var(--blue); }

.sec-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    line-height: 1.8;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    font-family: var(--font);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,91,229,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--blue);
}
.btn-white:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-arrow::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s;
}
.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================================
   TOP INFO BAR (like reference Image 1 & 3)
============================================================ */
#topbar {
    background: var(--dark);
    padding: 9px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
}
.topbar-item .icon {
    width: 16px; height: 16px;
    opacity: 0.7;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
}
.topbar-item a {
    color: rgba(255,255,255,0.75);
}
.topbar-item a:hover { color: var(--teal); }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.topbar-badge {
    background: var(--blue);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    transition: var(--trans);
}
.topbar-badge:hover { background: var(--blue-dark); }

/* ============================================================
   MAIN NAVIGATION
============================================================ */
#site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: var(--trans);
}
#site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 12px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-mark {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}
.logo-text {
    font-size: 20px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.logo-text span { color: var(--blue); }
.logo-sub {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    margin-top: -2px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    background: var(--blue-light);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
/* nav-phone removed */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    width: 22px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--trans);
    display: block;
}

/* ============================================================
   CRITICAL: Ensure content is always visible
   (Fixes blank white page issue on all WordPress page loads)
============================================================ */
body {
    visibility: visible !important;
    opacity: 1 !important;
}
main, #main, .site-main,
section, article, .entry-content,
.page-content, .post-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Hide WordPress default page content areas we don't use */
.page-template-default .entry-content:empty,
.page-template-default .hentry:empty {
    display: none !important;
}

/* ============================================================
   HERO SECTION (inspired by all 3 references)
============================================================ */
#hero {
    background: linear-gradient(135deg, #EEF3FF 0%, #F8FAFE 60%, #EFF6FF 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape-1 {
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30,91,229,0.08), rgba(0,200,160,0.06));
}
.hero-shape-2 {
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(30,91,229,0.05);
}
.hero-dots {
    position: absolute;
    top: 40px; right: 520px;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, rgba(30,91,229,0.18) 2px, transparent 2px);
    background-size: 18px 18px;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,91,229,0.10);
    border: 1px solid rgba(30,91,229,0.20);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.hero-tag .dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
.hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero-title span {
    color: var(--blue);
    position: relative;
    display: inline;
}
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 2px;
}
.hero-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 480px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-avatars {
    display: flex;
}
.trust-avatars .av {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border: 2px solid white;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
}
.trust-avatars .av:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--muted); }
.trust-text strong { color: var(--dark); }

/* Hero Visual */
.hero-visual {
    position: relative;
}
.hero-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--dark);
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    display: block;
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--radius-lg);
    display: block;
}
.hero-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.85);
    padding: 32px;
}
.hero-img-placeholder .big-icon { font-size: 64px; margin-bottom: 12px; }
.hero-img-placeholder p { font-size: 14px; opacity: 0.7; }
/* Floating stat cards on hero image */
.hero-float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    animation: float-y 3s ease-in-out infinite;
}
.hero-float-card .hfc-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.hfc-blue { background: var(--blue-light); }
.hfc-green { background: rgba(0,200,160,0.12); }
.hero-float-card .hfc-num {
    font-size: 20px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}
.hero-float-card .hfc-label { color: var(--muted); font-size: 11px; font-weight: 600; }
.hfc-top-left  { top: 20px; left: -24px; animation-delay: 0s; }
.hfc-bot-right { bottom: 24px; right: -24px; animation-delay: 1s; }
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.hero-rating-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.hero-rating-badge .stars { color: #FBBF24; }

/* ============================================================
   SERVICE STRIP (like reference Image 1 — icon boxes row)
============================================================ */
#service-strip {
    background: var(--white);
    padding: 0 0 0;
    position: relative;
    z-index: 2;
}
.service-strip-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 40px;
}
.strip-item {
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--trans);
    cursor: default;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover {
    background: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.strip-item:hover .strip-icon { background: rgba(255,255,255,0.18); color: white; }
.strip-item:hover .strip-name { color: white; }
.strip-icon {
    width: 52px; height: 52px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
    transition: var(--trans);
}
.strip-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--trans);
    line-height: 1.4;
}

/* ============================================================
   CLIENTS / TRUST BAR
============================================================ */
#clients-bar {
    background: var(--light-bg);
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.clients-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.clients-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.client-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.client-logo {
    font-size: 16px;
    font-weight: 800;
    color: var(--muted);
    opacity: 0.55;
    transition: var(--trans);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.client-logo:hover { opacity: 1; color: var(--blue); }
.client-logo .cl-icon { font-size: 18px; }
.cl-divider {
    width: 1px; height: 24px;
    background: var(--border);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
#about {
    background: var(--white);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}
.about-visual-wrap {
    position: relative;
}
.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--dark);
    position: relative;
    width: 100%;
    max-width: 520px;
    display: block;
}
.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-img-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.8);
}
.about-img-placeholder .big-icon { font-size: 56px; margin-bottom: 10px; }
.about-img-placeholder p { font-size: 13px; opacity: 0.6; }
/* Overlapping second image (like reference 3) */
.about-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -28px;
    width: 220px;
    height: 160px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue-dark), #0D2A6E);
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.about-img-secondary .years-num {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: white;
}
.about-img-secondary .years-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.about-dots {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, rgba(30,91,229,0.3) 2px, transparent 2px);
    background-size: 14px 14px;
    border-radius: 8px;
    z-index: -1;
}
/* About content */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 32px;
}
.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feat-icon-box {
    width: 46px; height: 46px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--trans);
}
.about-feat-item:hover .feat-icon-box { background: var(--blue); }
.feat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.about-phone-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.apc-icon {
    width: 44px; height: 44px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--blue);
}
.apc-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.apc-num { font-size: 16px; font-weight: 800; color: var(--dark); }
.apc-num a { color: var(--dark); }
.apc-num a:hover { color: var(--blue); }

/* ============================================================
   SERVICES SECTION
============================================================ */
#services {
    background: var(--light-bg);
}
.services-header {
    text-align: center;
    margin-bottom: 56px;
}
.services-header .sec-sub { margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    cursor: default;
    min-height: 280px;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transform: scaleX(0);
    transition: var(--trans);
    transform-origin: left;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30,91,229,0.15);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card.featured {
    background: var(--blue);
    border-color: var(--blue);
}
.svc-card.featured .svc-icon-box { background: rgba(255,255,255,0.18); }
.svc-card.featured .svc-num  { color: rgba(255,255,255,0.5); }
.svc-card.featured .svc-name { color: white; }
.svc-card.featured .svc-desc { color: rgba(255,255,255,0.75); }
.svc-card.featured .svc-link { color: rgba(255,255,255,0.9); }
.svc-icon-box {
    width: 60px; height: 60px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: var(--trans);
}
.svc-card:not(.featured):hover .svc-icon-box {
    background: var(--blue);
    transform: scale(1.08);
}
.svc-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.svc-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.svc-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.svc-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.svc-link:hover { gap: 10px; }
.services-footer {
    text-align: center;
    margin-top: 48px;
}
.services-footer p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 15px;
}

/* ============================================================
   HOW WE WORK / PROCESS
============================================================ */
#process {
    background: var(--white);
}
.process-header {
    text-align: center;
    margin-bottom: 60px;
}
.process-header .sec-sub { margin: 0 auto; }

/* Grid — connector line via ::before pseudo-element, contained entirely within grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    align-items: start;
}
/* Horizontal line between the 3 circles — scoped to grid, cannot escape */
.process-grid::before {
    content: '';
    position: absolute;
    top: 49px;
    left: calc(16.67% + 50px);
    right: calc(16.67% + 50px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    z-index: 0;
    pointer-events: none;
}
.proc-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 28px 40px;
}
.proc-step-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.proc-step-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 28px rgba(30,91,229,0.30);
    transition: var(--trans);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.proc-icon {
    line-height: 1;
    display: block;
}
.proc-step:hover .proc-step-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(30,91,229,0.40);
}
.proc-step-num {
    position: absolute;
    top: -6px; right: -6px;
    width: 28px; height: 28px;
    background: var(--teal);
    color: var(--dark);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    z-index: 3;
}
.proc-step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
}
.proc-step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
    text-align: left;
}
.proc-step-list {
    text-align: left;
    width: 100%;
}
.proc-step-list li {
    font-size: 13px;
    color: var(--muted);
    padding: 4px 0 4px 22px;
    position: relative;
    line-height: 1.6;
}
.proc-step-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
}
/* CSS-only entry animation — no JS dependency */
@keyframes procStepIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.proc-step-1 { animation: procStepIn 0.55s ease 0.05s both; }
.proc-step-2 { animation: procStepIn 0.55s ease 0.20s both; }
.proc-step-3 { animation: procStepIn 0.55s ease 0.35s both; }

/* Timeline Promise Bar */
.process-promise {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    border-radius: var(--radius);
    padding: 36px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.pp-item {
    border-right: 1px solid rgba(255,255,255,0.10);
    padding: 0 24px;
}
.pp-item:last-child { border-right: none; }
.pp-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
}
.pp-value {
    font-size: 22px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}
.pp-value span { color: var(--teal); }

/* ============================================================
   STATS / COUNTER SECTION
============================================================ */
#stats-section {
    background: var(--blue);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.stats-bg-shape {
    position: absolute;
    top: -40%;
    right: -5%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}
.stat-block {
    text-align: center;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-block:last-child { border-right: none; }
.stat-icon {
    font-size: 36px;
    margin-bottom: 10px;
}
.stat-num {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: white;
    line-height: 1;
}
.stat-num sup { font-size: 24px; color: var(--teal); }
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============================================================
   PORTFOLIO SECTION
============================================================ */
#portfolio {
    background: var(--light-bg);
}
.portfolio-header {
    text-align: center;
    margin-bottom: 48px;
}
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
    font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(30,91,229,0.25);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.port-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--trans);
    min-height: 340px;
}
.port-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.port-thumb {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--dark), var(--blue));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.port-thumb img { width: 100%; height: 100%; object-fit: cover; }
.port-thumb-content {
    text-align: center;
    color: rgba(255,255,255,0.8);
    padding: 20px;
}
.port-thumb-content .big-icon { font-size: 36px; margin-bottom: 8px; }
.port-thumb-url {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
}
.port-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,91,229,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans);
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay a {
    background: white;
    color: var(--blue);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.port-overlay a:hover { background: var(--teal); color: var(--dark); }
.port-info { padding: 20px; }
.port-cat {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.port-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.port-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}
.port-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ptag {
    font-size: 11px;
    background: var(--light-bg);
    color: var(--muted);
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why-us {
    background: var(--white);
}
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.why-content .sec-sub { margin-bottom: 36px; }
.why-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}
.reason-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--trans);
}
.reason-item:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-3px);
}
.reason-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 6px;
    font-style: italic;
}
.reason-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.reason-desc { font-size: 13px; color: var(--muted); }
/* Comparison table side */
.why-table-wrap {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}
.why-table-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.wt-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4px;
    margin-bottom: 8px;
}
.wt-cell {
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    text-align: center;
}
.wt-cell:first-child { text-align: left; }
.wt-cell.hl { color: var(--blue); }
.wt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4px;
    border-top: 1px solid var(--border);
    transition: var(--trans);
}
.wt-row:hover { background: rgba(30,91,229,0.03); border-radius: 6px; }
.wt-row .wt-cell {
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    font-weight: 500;
    font-size: 13px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wt-row .wt-cell:first-child {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--dark);
}
.ic-yes  { color: #10B981; font-size: 16px; }
.ic-no   { color: #EF4444; font-size: 16px; }
.ic-maybe{ color: #F59E0B; font-size: 13px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
    background: var(--light-bg);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 16px;
}
.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}
.rating-stars { color: #FBBF24; font-size: 22px; letter-spacing: 3px; }
.rating-info { font-size: 14px; color: var(--muted); font-weight: 600; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--trans);
    position: relative;
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(30,91,229,0.2);
}
.testi-quote-icon {
    font-size: 40px;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.testi-stars { color: #FBBF24; font-size: 14px; margin-bottom: 14px; }
.testi-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--muted); }
.testi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.ttag {
    font-size: 11px;
    background: var(--blue-light);
    color: var(--blue);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
}

/* ============================================================
   CTA BANNER
============================================================ */
#cta-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 50%, #0A1E5C 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-bg-circle-1 {
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.cta-bg-circle-2 {
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.cta-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cta-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    margin: 0 auto 36px;
    max-width: 560px;
    line-height: 1.7;
}
.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.cta-items {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}
.cta-item .ci { font-size: 16px; }

/* ============================================================
   CONTACT SECTION
============================================================ */
#contact {
    background: var(--white);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.contact-info-col .sec-sub { margin-bottom: 36px; }
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.ci-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--trans);
}
.ci-row:hover {
    border-color: var(--blue);
    transform: translateX(5px);
}
.ci-icon-box {
    width: 42px; height: 42px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--blue);
    flex-shrink: 0;
}
.ci-row-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 2px;
}
.ci-row-val { font-size: 14px; font-weight: 700; color: var(--dark); }
.ci-row-val a { color: var(--dark); }
.ci-row-val a:hover { color: var(--blue); }
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,160,0.10);
    border: 1px solid rgba(0,200,160,0.25);
    color: #009973;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
}
.live-badge .live-dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: blink 2s infinite;
}
/* Form */
.contact-form-wrap {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.form-head-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-head-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
}
.form-msg {
    display: none;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}
.form-msg.success {
    background: rgba(0,200,160,0.10);
    border: 1px solid rgba(0,200,160,0.3);
    color: #007A5E;
}
.form-msg.error {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
    color: #C53030;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: var(--trans);
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,91,229,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}
.form-submit-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30,91,229,0.35);
}
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
    background: var(--dark);
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--blue); }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: var(--teal); }
.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 700;
    transition: var(--trans);
    text-decoration: none;
}
.footer-social:hover {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    transform: translateY(-2px);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.footer-col ul li a::before {
    content: '›';
    color: var(--blue);
    font-weight: 900;
    font-size: 14px;
    opacity: 0;
    transition: var(--trans);
}
.footer-col ul li a:hover {
    color: var(--teal);
    padding-left: 4px;
}
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.30); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delays for sibling cards */
.services-grid .fade-up:nth-child(1),
.portfolio-grid .fade-up:nth-child(1),
.testi-grid .fade-up:nth-child(1),
.stats-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.services-grid .fade-up:nth-child(2),
.portfolio-grid .fade-up:nth-child(2),
.testi-grid .fade-up:nth-child(2),
.stats-grid .fade-up:nth-child(2) { transition-delay: 0.10s; }
.services-grid .fade-up:nth-child(3),
.portfolio-grid .fade-up:nth-child(3),
.testi-grid .fade-up:nth-child(3),
.stats-grid .fade-up:nth-child(3) { transition-delay: 0.20s; }
.services-grid .fade-up:nth-child(4),
.portfolio-grid .fade-up:nth-child(4),
.testi-grid .fade-up:nth-child(4),
.stats-grid .fade-up:nth-child(4) { transition-delay: 0.30s; }
.services-grid .fade-up:nth-child(5),
.portfolio-grid .fade-up:nth-child(5) { transition-delay: 0.40s; }
.services-grid .fade-up:nth-child(6),
.portfolio-grid .fade-up:nth-child(6) { transition-delay: 0.50s; }
/* process steps use CSS animation directly — see @keyframes procStepIn */

/* ============================================================
   MOBILE NAV
============================================================ */
@media (max-width: 960px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(13,27,42,0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        gap: 4px;
        transform: translateY(-110%);
        transition: var(--trans);
        z-index: 998;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { color: rgba(255,255,255,0.85); padding: 12px 16px; }
    .nav-links a:hover { background: rgba(255,255,255,0.08); color: white; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */
@media (max-width: 1024px) {
    .hero-inner       { grid-template-columns: 1fr; }
    .hero-visual      { display: none; }
    .about-inner      { grid-template-columns: 1fr; }
    .about-visual-wrap{ display: none; }
    .why-inner        { grid-template-columns: 1fr; }
    .service-strip-inner { grid-template-columns: repeat(3, 1fr); }
    .footer-top       { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section-pad { padding: 60px 0; }
    #topbar       { display: none; }
    .services-grid   { grid-template-columns: 1fr; }
    .portfolio-grid  { grid-template-columns: 1fr; }
    .process-grid    { grid-template-columns: 1fr; gap: 32px; }
    .process-grid::before { display: none; }
    .process-promise { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px; }
    .pp-item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px; }
    .stats-grid      { grid-template-columns: 1fr 1fr; }
    .stat-block      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding: 20px; }
    .testi-grid      { grid-template-columns: 1fr; }
    .contact-inner   { grid-template-columns: 1fr; }
    .service-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-top      { grid-template-columns: 1fr; }
    .why-reasons     { grid-template-columns: 1fr; }
    .form-grid       { grid-template-columns: 1fr; }
    .clients-inner   { flex-direction: column; gap: 20px; }
    .wt-head, .wt-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .wt-cell:last-child { display: none; }
    .hero-btns       { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .service-strip-inner { grid-template-columns: 1fr 1fr; }
    .process-promise { grid-template-columns: 1fr; }
    .stats-grid      { grid-template-columns: 1fr; }
    .footer-top      { grid-template-columns: 1fr; }
    .cta-items       { flex-direction: column; align-items: center; }
}
