/* ===================================
   ARCH HR LIMITED — MODERN REDESIGN 2026
   Palette: Navy #0b1d3a | Cyan #00b4d8 | Ice #caf0f8 | Off-white #f7f9fc
   Font: Inter (Google Fonts)
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@600;700;800&display=swap');

/* ── Variables ── */
:root {
    --navy:        #0b1d3a;
    --navy-mid:    #122447;
    --cyan:        #00b4d8;
    --cyan-light:  #48cae4;
    --ice:         #caf0f8;
    --off-white:   #f7f9fc;
    --surface:     #ffffff;
    --border:      #e4eaf2;
    --text:        #0f1e35;
    --text-muted:  #5a6a82;
    --accent:      #0077b6;

    --grad-cyan:   linear-gradient(135deg, #00b4d8 0%, #48cae4 100%);
    --grad-navy:   linear-gradient(135deg, #0b1d3a 0%, #122447 100%);
    --grad-hero:   linear-gradient(135deg, rgba(11,29,58,0.78) 0%, rgba(0,119,182,0.45) 100%);

    --r-sm:  8px;
    --r-md:  14px;
    --r-lg:  22px;
    --r-xl:  32px;

    --sh-sm:  0 2px 12px rgba(11,29,58,0.07);
    --sh-md:  0 6px 24px rgba(11,29,58,0.12);
    --sh-lg:  0 16px 48px rgba(11,29,58,0.18);
    --sh-cyan: 0 8px 30px rgba(0,180,216,0.35);

    --ease: all 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--surface);
    overflow-x: hidden;
}
img { display:block; max-width:100%; }
a { text-decoration:none; }
ul { list-style:none; }

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

/* ===================================
   NAVIGATION  — dark solid bar
   =================================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: var(--navy);
    z-index: 1000;
    transition: var(--ease);
}
.navbar.scrolled {
    background: rgba(11,29,58,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    max-width: 1300px;
    margin: 0 auto;
}
.logo-container a { display:inline-flex; align-items:center; }
.logo { height: 86px; width:auto; transition: var(--ease); }
.logo:hover { transform: scale(1.04); }

.nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
}
.nav-link {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: var(--r-sm);
    transition: var(--ease);
    letter-spacing: 0.2px;
}
.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(0,180,216,0.18);
}
.nav-link.active {
    color: var(--cyan);
    font-weight: 600;
}

/* CTA nav button */
.nav-link.nav-cta {
    background: var(--grad-cyan);
    color: #fff !important;
    padding: 9px 22px;
    font-weight: 600;
    box-shadow: var(--sh-cyan);
}
.nav-link.nav-cta:hover { transform:translateY(-2px); box-shadow: 0 12px 36px rgba(0,180,216,0.45); }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 26px; height: 3px;
    background: rgba(255,255,255,0.8);
    border-radius: 3px;
    transition: var(--ease);
}

/* ===================================
   HERO — split layout: text left, image right
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
    padding-top: 92px;
}

/* Background photo bleeds into right side */
.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background-image: url('hero-home.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.55;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,29,58,1) 38%, rgba(11,29,58,0.55) 65%, rgba(0,119,182,0.1) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 24px 80px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,180,216,0.15);
    border: 1px solid rgba(0,180,216,0.35);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.hero-eyebrow i { font-size:11px; }

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}
.hero-title span {
    background: var(--grad-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 42px;
    max-width: 500px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 1.4rem;
    z-index: 2;
    animation: bounce 2.2s infinite;
    cursor: pointer;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-10px); }
}

/* inner-page hero — shorter */
.hero-small {
    min-height: 52vh;
    padding-top: 92px;
}
.hero-small::after { opacity: 0.35; }
.hero-small .hero-content {
    padding: 40px 24px 60px;
    text-align: left;
}

/* per-page hero backgrounds */
.services-page .hero::after { background-image: url('services.jpg'); }
.about-page    .hero::after { background-image: url('about_us.jpg'); }
.privacy-page  .hero::after { background-image: url('privacy.jpg'); }
.terms-page    .hero::after { background-image: url('terms.jpg'); }
.contact-page  .hero::after { background-image: url('contact.jpg'); }

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1px;
}
.btn-primary {
    background: var(--grad-cyan);
    color: #fff;
    box-shadow: var(--sh-cyan);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow: 0 14px 40px rgba(0,180,216,0.45); }

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-3px);
}

.btn-accent {
    background: #fff;
    color: var(--navy);
    box-shadow: var(--sh-md);
}
.btn-accent:hover { transform:translateY(-3px); box-shadow: var(--sh-lg); }

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}
.btn-outline:hover { background: var(--cyan); color:#fff; transform:translateY(-2px); }

/* ===================================
   SECTION BASE
   =================================== */
.section { padding: 100px 0; }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
}
.section-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

/* ===================================
   ANIMATIONS
   =================================== */
.animate-fade-in        { animation: fadeUp 0.85s ease-out both; }
.animate-fade-in-delay  { animation: fadeUp 0.85s ease-out 0.25s both; }
.animate-fade-in-delay-2{ animation: fadeUp 0.85s ease-out 0.5s both; }

@keyframes fadeUp {
    from { opacity:0; transform: translateY(28px); }
    to   { opacity:1; transform: translateY(0); }
}
.fade-in-on-scroll {
    opacity:0;
    transform: translateY(40px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.fade-in-on-scroll.visible { opacity:1; transform:translateY(0); }

/* ===================================
   INTRO — image LEFT, text RIGHT on dark bg
   =================================== */
.intro-section {
    background: var(--navy);
    color: #fff;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.intro-image-wrap { position:relative; }
.section-image {
    width: 100%;
    border-radius: var(--r-lg);
    object-fit: cover;
    display: block;
    box-shadow: var(--sh-lg);
}
.intro-image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(0,180,216,0.3);
    border-radius: calc(var(--r-lg) + 6px);
    z-index: -1;
}
.intro-content .section-title { color:#fff; }
.intro-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.85;
    margin-bottom: 18px;
}
.focus-box {
    background: rgba(0,180,216,0.12);
    border-left: 4px solid var(--cyan);
    padding: 24px 28px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin-top: 28px;
}
.focus-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.focus-box p { color: rgba(255,255,255,0.75); font-size:1.05rem; }

/* ===================================
   APPROACH / STATS STRIP
   =================================== */
.approach-section { background: var(--off-white); }
.approach-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}
.approach-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.approach-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 36px 26px;
    text-align: left;
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}
.approach-card::after {
    content:'';
    position: absolute;
    bottom:0; left:0; right:0;
    height: 3px;
    background: var(--grad-cyan);
    transform: scaleX(0);
    transition: var(--ease);
}
.approach-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); border-color:var(--cyan); }
.approach-card:hover::after { transform:scaleX(1); }
.approach-icon {
    width: 52px; height: 52px;
    background: var(--grad-cyan);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.approach-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.approach-card p { color:var(--text-muted); font-size:0.95rem; line-height:1.65; }
.approach-cta { text-align:center; }

/* ===================================
   INDUSTRIES
   =================================== */
.industries-section { background: var(--surface); }
.industries-header { margin-bottom: 56px; }
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.industry-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--ease);
    cursor: pointer;
}
.industry-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
}
.industry-icon {
    width: 56px; height: 56px;
    background: var(--grad-cyan);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: var(--ease);
}
.industry-card:hover .industry-icon { background: rgba(255,255,255,0.15); }
.industry-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); transition:var(--ease); }
.industry-card:hover h3 { color:#fff; }
.industries-cta { margin-top: 40px; }

/* ===================================
   WHY CHOOSE — image RIGHT, text LEFT
   =================================== */
.why-choose-section { background: var(--off-white); }
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-choose-content .section-title { margin-bottom: 32px; }
.why-choose-list { display:flex; flex-direction:column; gap:0; }
.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
}
.why-choose-list li:last-child { border-bottom:none; }
.why-choose-list li i {
    width: 36px; height: 36px;
    background: rgba(0,180,216,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1rem;
    flex-shrink:0;
    margin-top:2px;
}
.why-choose-image-wrap { position:relative; }
.why-choose-image-wrap::after {
    content:'';
    position: absolute;
    inset: 12px -12px -12px 12px;
    background: var(--grad-cyan);
    border-radius: var(--r-lg);
    z-index:-1;
    opacity:0.15;
}

/* ===================================
   CLIENTS / TRUSTED
   =================================== */
.clients-section {
    background: var(--navy);
    padding: 70px 0;
}
.clients-header { text-align:center; margin-bottom:48px; }
.clients-header .section-title { color:#fff; }
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.client-logo {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    padding: 28px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
}
.client-logo:hover {
    background: rgba(0,180,216,0.15);
    border-color: rgba(0,180,216,0.35);
    transform: translateY(-4px);
}
.placeholder-logo {
    display:flex; flex-direction:column;
    align-items:center; gap:8px;
    font-size: 0.8rem; font-weight:700;
    color: rgba(255,255,255,0.5);
    text-transform:uppercase;
    letter-spacing:0.5px;
    text-align:center;
    transition:var(--ease);
}
.placeholder-logo i { font-size:1.6rem; color:rgba(0,180,216,0.5); }
.client-logo:hover .placeholder-logo { color:rgba(255,255,255,0.85); }
.client-logo:hover .placeholder-logo i { color:var(--cyan); }
.clients-caption {
    text-align:center;
    color:rgba(255,255,255,0.45);
    font-size:0.95rem;
    font-style:italic;
}

/* ===================================
   CTA BAND
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content:'';
    position:absolute;
    width:600px; height:600px;
    border-radius:50%;
    background: rgba(255,255,255,0.06);
    top:-200px; right:-150px;
}
.cta-section::after {
    content:'';
    position:absolute;
    width:400px; height:400px;
    border-radius:50%;
    background: rgba(255,255,255,0.04);
    bottom:-120px; left:-100px;
}
.cta-content {
    position:relative; z-index:1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}
.cta-title {
    font-family:'Sora',sans-serif;
    font-size: clamp(1.6rem,3vw,2.4rem);
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}
.cta-text { font-size:1.05rem; color:rgba(255,255,255,0.82); }
.cta-buttons { display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end; }
.cta-section .btn-secondary {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-detail-section { background: var(--off-white); }
.services-header { margin-bottom:56px; }
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-detail-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    box-shadow: var(--sh-sm);
    border: 1.5px solid var(--border);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}
.service-detail-card::before {
    content:'';
    position:absolute;
    top:0; left:0; right:0;
    height:4px;
    background: var(--grad-cyan);
    transform:scaleX(0);
    transform-origin:left;
    transition: var(--ease);
}
.service-detail-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); border-color:var(--cyan); }
.service-detail-card:hover::before { transform:scaleX(1); }
.service-icon {
    width:60px; height:60px;
    background: var(--grad-cyan);
    border-radius: var(--r-md);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.6rem;
    margin-bottom:22px;
}
.service-detail-card h3 { font-size:1.2rem; font-weight:700; color:var(--navy); margin-bottom:12px; }
.service-detail-card p { color:var(--text-muted); line-height:1.75; margin-bottom:14px; }
.service-list li {
    padding: 7px 0 7px 22px;
    position:relative;
    color:var(--text-muted);
    font-size:0.95rem;
}
.service-list li::before {
    content:'▸';
    position:absolute;
    left:0;
    color:var(--cyan);
    font-weight:700;
}

/* ===================================
   PROCESS TIMELINE — horizontal cards
   =================================== */
.process-section { background: var(--navy); }
.process-header { text-align:center; margin-bottom:64px; }
.process-header .section-title { color:#fff; }
.process-header .section-label { color:var(--cyan); }
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 100%;
}
.process-timeline::before {
    content:'';
    position:absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(0,180,216,0.3);
}
.process-step {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding: 0 12px 40px;
    position:relative;
}
.process-step-number {
    width: 72px; height:72px;
    border-radius: 50%;
    background: var(--navy-mid);
    border: 2px solid rgba(0,180,216,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--cyan);
    font-size:1.2rem;
    font-weight:800;
    margin-bottom:20px;
    position:relative;
    z-index:1;
    transition:var(--ease);
}
.process-step:hover .process-step-number {
    background: var(--grad-cyan);
    border-color: transparent;
    color:#fff;
    transform:scale(1.1);
}
.process-step-content h3 {
    font-size:0.95rem;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
}
.process-step-content p { color:rgba(255,255,255,0.5); font-size:0.875rem; }

/* ===================================
   INDUSTRIES FULL — services page
   =================================== */
.industries-full-section { background: var(--surface); }
.industries-detail-grid {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.industry-detail-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    transition: var(--ease);
}
.industry-detail-card:hover { transform:translateY(-6px); box-shadow:var(--sh-md); border-color:var(--cyan); }
.industry-icon-large {
    width:60px; height:60px;
    background: var(--grad-cyan);
    border-radius:var(--r-md);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.8rem;
    margin-bottom:18px;
    transition:var(--ease);
}
.industry-detail-card:hover .industry-icon-large { transform: scale(1.08) rotate(4deg); }
.industry-detail-card h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:12px; }
.industry-detail-card p { color:var(--text-muted); font-size:0.95rem; line-height:1.75; }

/* ===================================
   ABOUT PAGE
   =================================== */
.story-section { background: var(--off-white); }
.story-content { max-width:820px; }
.story-text {
    font-size:1.1rem;
    color:var(--text-muted);
    line-height:1.85;
    margin-bottom:22px;
}

.mission-section {
    background: var(--grad-navy);
    position:relative;
    overflow:hidden;
}
.mission-section::before {
    content:'';
    position:absolute;
    width:500px; height:500px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
    top:-100px; right:-100px;
}
.mission-content { max-width:720px; }
.mission-icon {
    width:80px; height:80px;
    border-radius:50%;
    background: rgba(0,180,216,0.15);
    border: 2px solid rgba(0,180,216,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.2rem;
    color:var(--cyan);
    margin-bottom:28px;
}
.mission-content .section-title { color:#fff; }
.mission-text { font-size:1.15rem; color:rgba(255,255,255,0.75); line-height:1.85; }

.team-section { background: var(--surface); }
.team-header { margin-bottom:16px; }
.team-intro { margin-bottom:56px; }
.team-intro-text { color:var(--text-muted); font-size:1.05rem; line-height:1.8; margin-bottom:16px; }
.team-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:28px;
}
.team-member-card {
    background: var(--off-white);
    border-radius: var(--r-lg);
    overflow:hidden;
    border: 1.5px solid var(--border);
    transition: var(--ease);
    display:flex;
    flex-direction:column;
}
.team-member-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); border-color:var(--cyan); }
.team-member-image {
    overflow:hidden;
    background: var(--off-white);
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 16px;
}
.team-member-image img {
    width:auto;
    max-width:100%;
    max-height: 320px;
    height:auto;
    display:block;
    object-fit:contain;
    transition:var(--ease);
}
.team-member-card:hover .team-member-image img { transform:scale(1.03); }
.team-member-info { padding:28px 28px 32px; }
.team-member-info h3 { font-size:1.2rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.team-member-position {
    font-size:0.88rem;
    font-weight:700;
    color:var(--cyan);
    text-transform:uppercase;
    letter-spacing:0.8px;
    margin-bottom:14px;
}
.team-member-bio { color:var(--text-muted); font-size:0.95rem; line-height:1.75; }

/* Values */
.values-section { background: var(--off-white); }
.values-header { margin-bottom:56px; }
.values-grid {
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:24px;
}
.value-card {
    background: var(--surface);
    border:1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 26px;
    text-align:center;
    transition:var(--ease);
}
.value-card:hover { transform:translateY(-8px); box-shadow:var(--sh-lg); border-color:var(--cyan); }
.value-icon {
    width:64px; height:64px;
    background: var(--grad-cyan);
    border-radius:var(--r-md);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    color:#fff;
    font-size:1.6rem;
}
.value-card h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
.value-card p { color:var(--text-muted); font-size:0.95rem; line-height:1.65; }

/* Standout */
.standout-section { background: var(--navy); }
.standout-content { max-width:900px; margin:0 auto; text-align:center; }
.standout-content .section-title { color:#fff; }
.standout-grid {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:16px;
    margin-top:44px;
}
.standout-item {
    display:flex;
    align-items:center;
    gap:16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius:var(--r-md);
    padding:20px 24px;
    text-align:left;
    transition:var(--ease);
}
.standout-item:hover { background:rgba(0,180,216,0.12); border-color:rgba(0,180,216,0.3); }
.standout-item i { color:var(--cyan); font-size:1.4rem; flex-shrink:0; }
.standout-item p { color:rgba(255,255,255,0.8); font-weight:500; font-size:0.98rem; }

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-details-section { background: var(--navy); padding:72px 0; }
.contact-details-grid {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:24px;
}
.contact-detail-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius:var(--r-lg);
    padding: 40px 28px;
    text-align:center;
    transition:var(--ease);
}
.contact-detail-card:hover { background:rgba(0,180,216,0.1); border-color:rgba(0,180,216,0.35); transform:translateY(-6px); }
.contact-detail-icon {
    width:64px; height:64px;
    background: var(--grad-cyan);
    border-radius:var(--r-md);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    color:#fff;
    font-size:1.6rem;
}
.contact-detail-card h3 { font-size:1.05rem; font-weight:700; color:#fff; margin-bottom:10px; }
.contact-detail-card p { color:rgba(255,255,255,0.65); font-size:1rem; line-height:1.65; }

.contact-form-section { background: var(--off-white); }
.contact-form-wrapper { max-width:780px; margin:0 auto; }
.contact-form-header { margin-bottom:40px; }
.contact-form-header p { color:var(--text-muted); font-size:1.05rem; margin-top:8px; }
.contact-form {
    background: var(--surface);
    padding: 52px;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    border: 1.5px solid var(--border);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { margin-bottom:22px; }
.form-group label {
    display:block;
    margin-bottom:8px;
    color:var(--text);
    font-weight:600;
    font-size:0.9rem;
    letter-spacing:0.2px;
}
.required { color:#e53935; }
.form-group input,
.form-group select,
.form-group textarea {
    width:100%;
    padding:14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--r-sm);
    font-size:15px;
    font-family:inherit;
    color:var(--text);
    background: var(--off-white);
    transition:var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline:none;
    border-color:var(--cyan);
    background:#fff;
    box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.file-upload-wrapper { position:relative; }
.file-upload-wrapper input[type="file"] { position:absolute; opacity:0; width:0; height:0; }
.file-upload-label {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:36px;
    border: 2px dashed var(--border);
    border-radius:var(--r-md);
    cursor:pointer;
    transition:var(--ease);
    background:var(--off-white);
    text-align:center;
}
.file-upload-label:hover { border-color:var(--cyan); background:rgba(0,180,216,0.04); }
.file-upload-label i { font-size:2.4rem; color:var(--cyan); margin-bottom:10px; }
.file-upload-label span { color:var(--text-muted); font-size:0.95rem; }
.file-name { display:block; margin-top:10px; color:var(--cyan); font-weight:600; font-size:0.9rem; }
.btn-submit { width:100%; margin-top:20px; justify-content:center; font-size:16px; }
.form-message {
    margin-top:18px; padding:14px;
    border-radius:var(--r-sm);
    text-align:center; font-weight:600;
    display:none;
}
.form-message.success { background:#dcfce7; color:#166534; display:block; }
.form-message.error   { background:#fee2e2; color:#991b1b; display:block; }

/* FAQ */
.faq-section { background: var(--surface); }
.faq-header { margin-bottom:48px; }
.faq-grid { max-width:820px; margin:0 auto; }
.faq-item {
    background:var(--off-white);
    border:1.5px solid var(--border);
    border-radius:var(--r-md);
    margin-bottom:14px;
    overflow:hidden;
    transition:var(--ease);
}
.faq-item:hover { border-color:var(--cyan); }
.faq-question {
    padding:22px 26px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:var(--ease);
}
.faq-question h3 { font-size:1rem; font-weight:600; color:var(--navy); margin:0; }
.faq-question i { color:var(--cyan); font-size:0.9rem; transition:var(--ease); }
.faq-item.active { border-color:var(--cyan); background:var(--surface); }
.faq-item.active .faq-question i { transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease-out; }
.faq-item.active .faq-answer { max-height:500px; }
.faq-answer p { padding:0 26px 22px; color:var(--text-muted); line-height:1.8; font-size:0.97rem; }

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #071428;
    color:#fff;
    padding: 72px 0 28px;
}
.footer-grid {
    display:grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap:48px;
    margin-bottom:48px;
    padding-bottom:48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height:68px; width:auto; margin-bottom:16px; }
.footer-tagline { color:rgba(255,255,255,0.5); font-size:0.9rem; line-height:1.6; }
.footer-col h4 {
    color:#fff;
    font-size:0.8rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.4px;
    margin-bottom:22px;
}
.footer-links li { margin-bottom:11px; }
.footer-links a {
    color:rgba(255,255,255,0.55);
    font-size:0.92rem;
    transition:var(--ease);
}
.footer-links a:hover { color:var(--cyan); padding-left:4px; }
.footer-company-details li {
    color:rgba(255,255,255,0.55);
    font-size:0.88rem;
    line-height:1.6;
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
}
.footer-company-details li i { color:var(--cyan); font-size:0.82rem; margin-top:4px; flex-shrink:0; width:13px; }
.footer-company-details strong { color:#fff; font-size:0.95rem; }
.footer-bottom {
    text-align:center;
    color:rgba(255,255,255,0.3);
    font-size:0.85rem;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-content-section { background:var(--off-white); }
.legal-content { max-width:860px; margin:0 auto; }
.legal-intro { font-size:0.9rem; color:var(--text-muted); font-style:italic; margin-bottom:32px; }
.legal-content h2 {
    font-size:1.5rem; color:var(--navy);
    margin-top:44px; margin-bottom:18px;
    padding-bottom:10px;
    border-bottom:2px solid var(--cyan);
}
.legal-content h3 { font-size:1.1rem; color:var(--navy); margin-top:24px; margin-bottom:12px; }
.legal-content p { font-size:1rem; line-height:1.85; color:var(--text); margin-bottom:18px; }
.legal-content ul { margin:14px 0 22px 28px; line-height:1.8; }
.legal-content ul li { margin-bottom:9px; color:var(--text); }
.legal-content strong { color:var(--navy); font-weight:600; }
.contact-box {
    background:var(--surface);
    padding:24px 28px;
    border-radius:var(--r-md);
    border-left:4px solid var(--cyan);
    margin:20px 0;
    box-shadow:var(--sh-sm);
}
.contact-box p { margin-bottom:8px; }
.contact-box p:last-child { margin-bottom:0; }

/* ===================================
   SECTION IMAGE (shared)
   =================================== */
.section-image {
    width:100%;
    border-radius:var(--r-lg);
    object-fit:cover;
    display:block;
    box-shadow:var(--sh-lg);
    transition:var(--ease);
}
.section-image:hover { transform:translateY(-6px); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .approach-grid,
    .process-timeline,
    .values-grid { grid-template-columns: repeat(2,1fr); }
    .services-detail-grid { grid-template-columns: repeat(2,1fr); }
    .industries-grid { grid-template-columns: repeat(2,1fr); }
    .clients-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .industries-detail-grid { grid-template-columns: repeat(2,1fr); }
    .approach-header { grid-template-columns:1fr; gap:24px; }
    .process-timeline::before { display:none; }
    .cta-content { grid-template-columns:1fr; gap:28px; }
    .cta-buttons { justify-content:flex-start; }
}

@media (max-width: 768px) {
    /* Fix intro image decorative border overflowing on mobile */
    .intro-image-wrap { overflow:hidden; }
    .intro-image-wrap::before { display:none; }
    .section-image { width:100%; border-radius:var(--r-md); }

    .hamburger { display:flex; }
    .nav-menu {
        position:fixed;
        top:92px; left:-100%;
        flex-direction:column;
        background:var(--navy);
        width:100%;
        padding:28px 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.4);
        transition:var(--ease);
        gap:6px;
    }
    .nav-menu.active { left:0; }
    .hero::after { width:100%; clip-path:none; opacity:0.25; }
    .hero-content { max-width:100%; }
    .hero-title { font-size:2rem; }
    .hero-subtitle { font-size:1rem; }
    .hero-buttons { flex-direction:column; }
    .btn { width:100%; max-width:320px; justify-content:center; }
    .intro-grid,
    .why-choose-grid { grid-template-columns:1fr; gap:40px; }
    .approach-grid,
    .process-timeline,
    .values-grid,
    .services-detail-grid,
    .industries-grid,
    .industries-detail-grid,
    .standout-grid,
    .contact-details-grid { grid-template-columns:1fr; }
    .clients-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:1fr; gap:32px; }
    .form-row { grid-template-columns:1fr; }
    .contact-form { padding:28px 20px; }
    .section { padding:72px 0; }
    .process-step { flex-direction:row; text-align:left; }
    .cta-content { grid-template-columns:1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size:1.7rem; }
    .section-title { font-size:1.6rem; }
    .clients-grid { grid-template-columns:repeat(2,1fr); }
}
