/* =============================================
   DIGITEK SOLUTIONS — Global Stylesheet
   ============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --primary:       #1428a0;
  --primary-light: #0689d8;
  --primary-dark:  #1428a0;
  --accent:        #0689d8;
  --accent2:       #0689d8;
  --dark:          #0b0f1e;
  --dark2:         #111827;
  --dark3:         #1f2937;
  --card-bg:       #161d30;
  --text:          #e2e8f0;
  --text-muted:    #94a3b8;
  --white:         #ffffff;
  --border:        rgba(255,255,255,0.08);
  --gradient:      linear-gradient(135deg, #1428a0 0%, #0689d8 100%);
  --gradient2:     linear-gradient(135deg, #1428a0 0%, #0689d8 100%);
  --shadow:        0 20px 60px rgba(0,0,0,0.4);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.3);
  --radius:        16px;
  --radius-sm:     8px;
  --transition:    all 0.3s ease;
  --nav-h:         80px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-text { color: var(--accent2); }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,40,160,0.15);
  border: 1px solid rgba(20,40,160,0.3);
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(20,40,160,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(20,40,160,0.5); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--primary-light);
  background: rgba(20,40,160,0.15);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--gradient2);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(2, 182, 212
,0.4);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(2, 182, 212
,0.5); }

.btn svg { width: 18px; height: 18px; }

/* ---- Cards ---- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(20,40,160,0.3); }
.card:hover::before { opacity: 1; }

/* ============================================
   NAVBAR  — Exact match: digiteksolutiones.com
   ============================================ */

/* Always-visible dark navy bar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: #06101f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: #06101f;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  border-bottom-color: rgba(255,255,255,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* SVG-based "3/D" brand mark — three bold horizontal bars */
.logo-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  flex-shrink: 0;
}
.logo-icon span {
  display: block;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}
.logo-icon span:nth-child(1) { width: 100%; }   /* top    — full */
.logo-icon span:nth-child(2) { width: 60%; }    /* middle — short (forms the "3") */
.logo-icon span:nth-child(3) { width: 100%; }   /* bottom — full */

.logo-text-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 3px;
  padding-left: 42px; /* aligns under the text, past the icon */
}

/* ---- NAV PILL CONTAINER ---- */
.nav-links {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  padding: 5px 6px;
  gap: 2px;
}
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}
.nav-link.active {
  color: #ffffff !important;
  background: var(--gradient);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(20,40,160,0.45);
}
.nav-link.active:hover {
  background: var(--gradient);
  box-shadow: 0 6px 20px rgba(20,40,160,0.55);
}
.nav-link svg {
  width: 13px; height: 13px;
  opacity: 0.7;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* ---- DROPDOWN ---- */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 250px;
  background: #0d1b2e;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.dropdown a:hover {
  background: rgba(255,255,255,0.07);
  color: #ffffff;
}
.dropdown a .dd-icon {
  width: 32px; height: 32px;
  background: rgba(20,40,160,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- LET'S TALK BUTTON (Red + white arrow circle) ---- */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #1428a0
;
  border-radius: 100px;
  padding: 10px 10px 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(6,137,216,0.35);
}
.nav-cta:hover {
  background: #1428a0
;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(6,137,216,0.45);
}
.nav-cta-text { line-height: 1; }
.nav-cta-arrow {
  width: 34px; height: 34px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  flex-shrink: 0;
  transition: var(--transition);
}
.nav-cta-arrow svg {
  width: 16px; height: 16px;
  color: #1428a0
;
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(2px); }

/* ---- HAMBURGER ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #06101f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: #ffffff; }
.mobile-menu a.mobile-active {
  background: var(--gradient);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(20,40,160,0.4);
}
.mobile-menu .m-sep {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 0;
}
.mobile-menu .nav-cta {
  margin-top: 8px;
  justify-content: center;
  display: inline-flex;
}
.mobile-menu .m-sub {
  padding-left: 32px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
/* nav-cta inside mobile menu gets full width */
.mobile-menu .nav-cta { width: 100%; }

/* ============================================
   HERO SLIDER  — matches digiteksolutiones.com
   ============================================ */

/* ---- Outer shell ---- */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #061529;
}

/* ---- Background ---- */
.hs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Central blue radial glow */
.hs-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(10,60,130,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 50% 0%,   rgba(5,40,90,0.4)  0%, transparent 60%);
}

/* Decorative arc lines – top-left origin */
.hs-arcs {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 620px;
  height: 620px;
  opacity: 1;
}
.hs-arcs-r {
  top: auto;
  left: auto;
  bottom: -180px;
  right: -180px;
  width: 700px;
  height: 700px;
}

/* ---- Slide track ---- */
.hs-track-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.hs-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}

/* ---- Single slide ---- */
.hs-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 24px 100px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* Background image support — set via data-bg attribute + JS */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
 * ── WEB ADMIN: SLIDE OVERLAY ──────────────────────────────
 * Injected automatically by script.js when data-bg is set.
 * Controls readability of text over background images.
 * Adjust opacity via data-overlay="0.0–1.0" on the slide.
 * ──────────────────────────────────────────────────────────
 */
.hs-slide-overlay {
  position: absolute;
  inset: 0;
  /* default color overridden inline by JS from data-overlay-color */
  background: linear-gradient(
    to bottom,
    rgba(6,21,41,var(--hs-ov, 0.72))    0%,
    rgba(6,21,41,calc(var(--hs-ov, 0.72) * 0.85)) 50%,
    rgba(6,21,41,var(--hs-ov, 0.72))    100%
  );
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
/* No overlay when slide has no background image */
.hs-slide:not([data-bg]) .hs-slide-overlay,
.hs-slide[data-bg=""] .hs-slide-overlay {
  display: none;
}

/* Arc decorations show on top of overlay */
.hs-slide-arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hs-slide-arcs svg {
  position: absolute;
}
.hs-slide-arcs .arc-tl {
  top: -120px; left: -120px;
  width: 580px; height: 580px;
}
.hs-slide-arcs .arc-br {
  bottom: -150px; right: -150px;
  width: 600px; height: 600px;
}

/* Slide inner content always on top */
.hs-slide-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
  animation: hsFadeIn 0.6s ease both;
}

/* When a bg image is active, boost text contrast slightly */
.hs-slide.has-bg .hs-badge {
  background: rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(12px);
}
.hs-slide.has-bg .hs-desc {
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@keyframes hsFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hs-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

/* Main heading */
.hs-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 44px;
  letter-spacing: -0.01em;
}

/* "Digitek" / keyword red highlight box */
.hs-highlight {
  display: inline-block;
  background: #1428a0
;
  color: #ffffff;
  padding: 0 14px 4px;
  border-radius: 6px;
  font-style: normal;
  line-height: inherit;
  position: relative;
  top: -2px;
}

/* Bottom row: button + description */
.hs-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Red pill button (same family as nav CTA) */
.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #1428a0
;
  border-radius: 100px;
  padding: 12px 12px 12px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(6,137,216,0.4);
  transition: var(--transition);
}
.hs-btn:hover {
  background: #1428a0
;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(6,137,216,0.5);
}
.hs-btn-arrow {
  width: 38px; height: 38px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}
.hs-btn-arrow svg {
  width: 18px; height: 18px;
  color: #1428a0
;
}
.hs-btn:hover .hs-btn-arrow { transform: translateX(3px); }

/* Description text beside button */
.hs-desc {
  max-width: 300px;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ---- Prev / Next arrows ---- */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.hs-arrow svg { width: 20px; height: 20px; }
.hs-arrow:hover { background: #1428a0
; border-color: #1428a0
; color: #fff; }
.hs-prev { left: 24px; }
.hs-next { right: 24px; }

/* ---- Dot indicators ---- */
.hs-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hs-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hs-dot.active {
  width: 28px;
  background: #1428a0
;
}
.hs-dot:hover { background: rgba(255,255,255,0.6); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wa-label {
  background: #ffffff;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}
.whatsapp-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
.wa-icon {
  width: 52px; height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  flex-shrink: 0;
  transition: var(--transition);
}
.wa-icon svg { 
  width: 28px; 
  height: 28px; 
}
.wa-icon i { 
  font-size: 28px;
  color: white;
}
.whatsapp-float:hover .wa-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}

/* Keep these keyframes (used by other elements) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   PARTNERS / MARQUEE
   ============================================ */
/* ============================================
   PARTNERS MARQUEE — sliding logo cards
   ============================================ */
.partners-section {
  padding: 52px 0 56px;
  background: #061529;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

/* ── Centered pill label ── */
.partners-header {
  text-align: center;
  margin-bottom: 36px;
}
.partners-pill {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 24px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

/* ── Marquee outer clip ── */
.marquee-outer {
  overflow: hidden;
  /* Fade edges on left & right */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* ── Inner scrolling strip ── */
.marquee-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
  will-change: transform;
}
.marquee-inner:hover { animation-play-state: paused; }

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Individual card ── */
.pc-item {
  flex-shrink: 0;
  width: 186px;
  height: 100px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pc-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}
.pc-item::before { display: none; }
.pc-item::after  { display: none; }

/* ── Logo figure inside card ── */
.partner-logo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 14px;
}

/* SVG logos */
.psvg {
  width: 100%;
  height: 58px;
  overflow: visible;
}

/* Real image logos */
.partner-img {
  max-width: 140px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}
.pc-item:hover .partner-img {
  transform: scale(1.06);
}
/* Placeholder text for empty state */
.pc-placeholder-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

/* Hide figcaption visually (screen-reader only) */
.partner-logo-inner figcaption {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================
   ABOUT INTRO
   ============================================ */
/* ============================================
   ABOUT INTRO — image left, content right
   ============================================ */
.about-intro { background: var(--dark); }

.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Left image column ── */
.about-img-wrap {
  position: relative;
  /* Extra bottom+right space for the floating badge */
  padding-bottom: 28px;
  padding-right: 28px;
}

/* Image frame */
.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }

/* Gradient vignette over photo */
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(6,21,41,0.55) 100%
  );
  pointer-events: none;
}

/* ── Floating experience badge (bottom-right) ── */
.about-exp-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #1428a0, #0689d8);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(20,40,160,0.45);
  z-index: 2;
}
.about-exp-badge .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.about-exp-badge p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Floating stat chips ── */
.about-chip {
  position: absolute;
  background: rgba(10,18,36,0.90);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 2;
  animation: chipFloat 4s ease-in-out infinite;
}
.about-chip-1 { top: 32px; left: -20px; animation-delay: 0s; }
.about-chip-2 { top: 50%; left: -20px; transform: translateY(-50%); animation-delay: -2s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.about-chip-2 {
  animation-name: chipFloat2;
}
@keyframes chipFloat2 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}
.chip-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1428a0, #0689d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.chip-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

/* ── Right content column ── */
.about-content .section-label { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }

.about-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}
.tab-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   STATS
   ============================================ */
.stats-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(20,40,160,0.15);
  border: 1px solid rgba(20,40,160,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .icon-wrap {
  background: var(--gradient);
  border-color: transparent;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--accent); }
.service-link svg { width: 16px; height: 16px; }

/* ============================================
   PROCESS
   ============================================ */
.process-section { background: rgba(255,255,255,0.01); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
}
.process-step { text-align: center; padding: 32px 16px; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(20,40,160,0.4);
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; }

/* ============================================
   SKILLS
   ============================================ */
.skills-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.skill-list { display: flex; flex-direction: column; gap: 24px; }
.skill-item {}
.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.skill-header span { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.skill-header .pct { color: var(--accent); font-weight: 700; }
.skill-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 100px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.skills-content h2 { margin-bottom: 20px; }
.skills-content p { margin-bottom: 24px; }
.skill-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.sh-item {
  background: rgba(20,40,160,0.1);
  border: 1px solid rgba(20,40,160,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sh-icon { font-size: 1.2rem; }

/* ============================================
   WHY US
   ============================================ */
/* ============================================
   WHY CHOOSE US — photo + skills + 2×2 cards
   ============================================ */

.whu-section {
  padding: 100px 0;
  background: #061529;
}

/* Two-column layout */
.whu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── LEFT column ── */
.whu-left { position: relative; }

.whu-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;   /* allow skills card to overflow */
}

.whu-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ── Floating skills card ── */
.whu-skills-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 320px;
  background: rgba(12, 20, 38, 0.88);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 20px 22px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.whs-item { display: flex; flex-direction: column; gap: 6px; }

.whs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whs-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  line-height: 1.3;
  max-width: 200px;
}
.whs-pct {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  flex-shrink: 0;
  margin-left: 8px;
}

/* Bar track */
.whs-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: visible;
  position: relative;
}
.whs-fill {
  height: 100%;
  border-radius: 100px;
  position: relative;
  width: 0; /* animated by JS via skill-fill logic */
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
}
.whs-blue { background: #1a6baf; }
.whs-red  { background: #1428a0
; }

/* White cap at end of bar */
.whs-cap {
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(255,255,255,0.5);
}

/* ── RIGHT column ── */
.whu-right { display: flex; flex-direction: column; align-items: flex-start; }

/* Pill badge */
.whu-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.whu-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.whu-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* 2 × 2 feature cards grid */
.whu-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.whu-card {
  background: #111d30;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px 20px;
  transition: var(--transition);
}
.whu-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.whu-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.whu-card-head h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.whu-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  margin: 0;
}

/* Checkmark circle icons */
.whu-check {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whu-check svg { width: 16px; height: 16px; }
.whu-check-red  { background: #1428a0
; }
.whu-check-blue { background: #1a6baf; }

/* Responsive */
@media (max-width: 1024px) {
  .whu-layout { grid-template-columns: 1fr; gap: 80px; }
  .whu-img    { height: 400px; }
  .whu-skills-card { left: 16px; bottom: -20px; width: 300px; }
}
@media (max-width: 600px) {
  .whu-cards-grid { grid-template-columns: 1fr; }
  .whu-skills-card { width: calc(100% - 32px); left: 16px; }
  .whu-img { height: 320px; }
}

/* ============================================
   TESTIMONIALS — exact screenshot match
   ============================================ */

.testi-section {
  padding: 90px 0 72px;
  background: #050d1a;
  overflow: hidden;
}

/* ── Header ── */
.testi-header {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.testi-pill {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.testi-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 14px;
}

.testi-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  /* gradient blue-cyan text matching screenshot */
  background: linear-gradient(90deg, #7b9cde 0%, #5ab4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: center;
}
.hide-sm { display: inline; }

/* ── "Get A Quote" button ── */
.testi-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #1428a0
;
  border-radius: 100px;
  padding: 11px 11px 11px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(6,137,216,0.38);
  transition: var(--transition);
  margin-top: 2px;
}
.testi-btn:hover {
  background: #1428a0
;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6,137,216,0.48);
}
.testi-btn-arrow {
  width: 36px; height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.testi-btn-arrow svg { width: 17px; height: 17px; color: #1428a0
; }
.testi-btn:hover .testi-btn-arrow { transform: translateX(3px); }

/* ── Slider wrap ── */
.testi-slider-wrap {
  overflow: hidden;
  margin-bottom: 36px;
}

/* ── Sliding track ── */
.testi-track {
  display: flex;
  gap: 14px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* ── Card  ── */
.testi-card {
  /* exactly 4 per row desktop */
  min-width: calc(25% - 10.5px);
  flex-shrink: 0;
  background: #0c1626;
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 14px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.4);
}

/* Quote — italic, muted, fills card body */
.testi-quote {
  font-size: 0.845rem;
  font-style: italic;
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
  margin: 0 0 22px;
  flex: 1;
}

/* Reviewer row (sticks to bottom) */
.testi-reviewer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.055);
}

/* Portrait avatar circle */
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.10);
  background: #1a2a40;
}
.testi-avatar svg { width: 100%; height: 100%; display: block; }

/* Text under avatar */
.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testi-role {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Dot navigation ── */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.20);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.testi-dot.active {
  width: 9px;
  height: 9px;
  background: #ffffff;
}
.testi-dot:hover { background: rgba(255,255,255,0.48); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .testi-card { min-width: calc(50% - 7px); }
}
@media (max-width: 640px) {
  .testi-card { min-width: 100%; }
  .hide-sm { display: none; }
  .testi-sub { font-size: 0.85rem; }
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,40,160,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  gap: 12px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }
.portfolio-overlay h4 { color: white; text-align: center; }
.portfolio-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-align: center; margin: 0; }
.portfolio-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.portfolio-info {
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.portfolio-info h4 { font-size: 1rem; margin-bottom: 4px; }
.portfolio-info p { font-size: 0.82rem; margin: 0; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(20,40,160,0.3) 0%, transparent 70%), var(--dark2);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.cta-shape-1 { width: 300px; height: 300px; background: var(--primary); top: -100px; left: -100px; }
.cta-shape-2 { width: 300px; height: 300px; background: var(--accent); bottom: -100px; right: -100px; }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(20,40,160,0.2), rgba(6,182,212,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover .team-avatar { border-color: rgba(20,40,160,0.5); }
.team-socials {
  position: absolute;
  inset: 0;
  background: rgba(20,40,160,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-socials { opacity: 1; }
.team-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}
.team-social-btn:hover { background: white; color: var(--primary); }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--accent); font-weight: 600; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary-light); border-color: var(--primary-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(20,40,160,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.ci-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.ci-text span { font-size: 0.88rem; color: var(--text-muted); }

.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { border-color: var(--primary-light); background: rgba(20,40,160,0.05); box-shadow: 0 0 0 3px rgba(20,40,160,0.15); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; appearance: none; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p { font-size: 0.88rem; margin: 16px 0 24px; max-width: 280px; }
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a::before { content: '→'; font-size: 0.75rem; color: var(--primary-light); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact-list li span:first-child { color: var(--text); font-size: 1rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(20,40,160,0.2) 0%, transparent 70%), var(--dark);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--primary-light); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 8px 24px rgba(20,40,160,0.4);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }
.scroll-top svg { width: 20px; height: 20px; color: white; }

/* ============================================
   ANIMATIONS / AOS
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--card-bg);
  border: 1px solid rgba(20,40,160,0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 9999;
  transition: transform 0.4s ease;
  min-width: 280px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast .toast-icon { font-size: 1.4rem; }
.toast.success { border-color: rgba(34,197,94,0.4); }
.toast.success .toast-icon::before { content: '✅'; }
.toast.error { border-color: rgba(239,68,68,0.4); }
.toast.error .toast-icon::before { content: '❌'; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-intro .container { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 520px; margin: 0 auto; padding-bottom: 28px; padding-right: 28px; }
  .about-img { height: 380px; }
  .about-chip { display: none; } /* hide chips on tablet to avoid clutter */
  .skills-section .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .navbar .nav-cta { display: none; }   /* hide red button; mobile menu has its own */
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  /* whu-layout responsive handled inside .whu-section block above */
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  /* testi-card responsive handled inside testi-section block */
  /* Slider responsive */
  .hs-heading { font-size: clamp(2rem, 8vw, 3rem); }
  .hs-arrow { display: none; }
  .hs-bottom { flex-direction: column; align-items: center; gap: 20px; }
  .hs-desc { text-align: center; max-width: 320px; }
  /* WhatsApp */
  .wa-label { display: none; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .skill-highlights { grid-template-columns: 1fr; }
  .hs-heading { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hs-slide { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px; }
}
