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

:root {
  --navy: #050c18;
  --navy2: #0a172a;
  --navy3: #0f233f;
  --navy-card: #0c1c33;
  --navy-border: rgba(255, 255, 255, 0.08);
  --navy-border-hover: rgba(22, 183, 240, 0.35);
  
  --red: #ef1b24;
  --red-hover: #d8121a;
  --red-glow: rgba(239, 27, 36, 0.25);
  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.25);
  --blue: #2563eb;
  
  --white: #ffffff;
  --paper: #f8fafc;
  --paper-card: #ffffff;
  --ink: #0f172a;
  --ink-secondary: #334155;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --line: #e2e8f0;
  --line-dark: #1e293b;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 30px -4px rgba(0, 0, 0, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 50px -12px rgba(2, 6, 23, 0.15);
  --shadow-dark: 0 20px 45px -10px rgba(0, 0, 0, 0.5);
  
  --max: 1260px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* -------------------------------------------------------------
   ACCESSIBILITY & SKIP LINK
------------------------------------------------------------- */
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  z-index: 1000;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip:focus {
  top: 20px;
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------- */
.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 12, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.nav.scrolled {
  height: 72px;
  background: rgba(5, 12, 24, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 175px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
  transition: var(--transition);
}

.brand-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.footer .brand-logo {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 18px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.navlinks a {
  position: relative;
  color: #cbd5e1;
  padding: 6px 0;
}

.navlinks a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: var(--radius-full);
  transition: width 0.25s ease;
}

.navlinks a:hover,
.navlinks a.active {
  color: #ffffff;
}

.navlinks a:hover:after,
.navlinks a.active:after {
  width: 100%;
}

.navcta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.navcta {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.navcta:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn.red {
  background: linear-gradient(135deg, #ef1b24 0%, #dc1019 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px var(--red-glow);
}

.btn.red:hover {
  background: linear-gradient(135deg, #f02d36 0%, #ef1b24 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(239, 27, 36, 0.4);
}

.btn.outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.menu {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

/* -------------------------------------------------------------
   HERO SECTION (21st.dev inspired Glow & Synapse Network Banner)
------------------------------------------------------------- */
.hero {
  min-height: 88vh;
  padding-top: 140px;
  padding-bottom: 130px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(22, 183, 240, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(239, 27, 36, 0.15) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.82) 0%, rgba(5, 12, 24, 0.94) 100%),
    url("hero-office.jpg");
}

.synapse-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(239, 27, 36, 0.1);
  border: 1px solid rgba(239, 27, 36, 0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #ff5e62;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5e62;
  box-shadow: 0 0 8px #ff5e62;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 800;
  max-width: 920px;
  margin: 12px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  max-width: 680px;
  color: #94a3b8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 36px 0;
}

/* Trust Proof Badges (Bento Style) */
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof > div {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.proof > div:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(22, 183, 240, 0.3);
  transform: translateY(-2px);
}

.proof strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.proof span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

/* -------------------------------------------------------------
   BENTO SOLUTIONS GRID (Modern 21st.dev Nested Card Style)
------------------------------------------------------------- */
.overlap {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.solutions-wrapper {
  position: relative;
}

.solution-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-item {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(2, 9, 18, 0.12);
  border-color: #cbd5e1;
}

.card-preview-container {
  position: relative;
  height: 210px;
  background: #06111f;
  overflow: hidden;
}

.card-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-item:hover .card-preview-container img {
  transform: scale(1.06);
}

.card-floating-badge {
  position: absolute;
  bottom: 16px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 3;
  color: #fff;
  font-size: 20px;
  border: 2px solid #ffffff;
}

.badge-it { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.badge-elv { background: linear-gradient(135deg, #b91c1c, #ef4444); }
.badge-av { background: linear-gradient(135deg, #6b21a8, #a855f7); }
.badge-digital { background: linear-gradient(135deg, #c2410c, #f97316); }
.badge-smart { background: linear-gradient(135deg, #047857, #10b981); }
.badge-managed { background: linear-gradient(135deg, #0369a1, #0ea5e9); }

.card-content-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-content-body h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
  color: var(--ink);
}

.card-content-body p {
  color: #64748b;
  line-height: 1.6;
  font-size: 13.5px;
  margin-bottom: 22px;
}

.view-solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: 0.8px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  margin-top: auto;
  transition: var(--transition);
}

.view-solution-link:hover {
  color: var(--red-hover);
  transform: translateX(4px);
}

/* Second portion: Project Showcase & Gallery Section */
.gallery-portion {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.gallery-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 440px;
}

.gallery-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(5, 12, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.gallery-overlay-badge h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.gallery-overlay-badge p {
  color: #cbd5e1;
  font-size: 13px;
  margin: 0;
}

.arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.8px;
  font-weight: 800;
  color: var(--red);
  margin-top: auto;
  transition: var(--transition);
}

.arrow:hover {
  color: var(--red-hover);
  transform: translateX(4px);
}

/* -------------------------------------------------------------
   SECTIONS & DARK CONTAINER BLOCKS
------------------------------------------------------------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section.dark {
  background: linear-gradient(180deg, #050c18 0%, #0a172a 100%);
  color: #fff;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.sectionhead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
}

.sectionhead h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  font-weight: 800;
  margin: 8px 0 0;
}

.sectionhead p {
  max-width: 520px;
  line-height: 1.7;
  color: var(--muted-light);
  font-size: 15px;
}

/* Process Timeline (Modern 21st.dev Approach Section) */
.process {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: stretch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.step {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.step:hover {
  border-top-color: var(--red);
  transform: translateY(-2px);
}

.step b {
  display: inline-block;
  color: #ef1b24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.step h4 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
  color: #ffffff;
}

.step p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
}

.processimg {
  min-height: 420px;
  border-radius: 20px;
  background: url("process-engineering.jpg") center/cover no-repeat;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* -------------------------------------------------------------
   FEATURED PROJECTS (Modern 21st.dev Project Cards)
------------------------------------------------------------- */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
  border-color: rgba(22, 183, 240, 0.5);
}

.project:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 24, 0.15) 0%, rgba(5, 12, 24, 0.75) 55%, rgba(5, 12, 24, 0.98) 100%);
  z-index: 1;
}

.project > * {
  position: relative;
  z-index: 2;
}

.project h3 {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin: 0 0 10px;
}

.project p {
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.project:nth-child(1) { background-image: url("enterprise-office.jpg"); }
.project:nth-child(2) { background-image: url("control-room.jpg"); }
.project:nth-child(3) { background-image: url("meeting-room.jpg"); }

/* -------------------------------------------------------------
   INDUSTRIES & MANAGED SERVICES GRIDS (Clean Border Box)
------------------------------------------------------------- */
.industrygrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.industry {
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 36px 30px;
  min-height: 170px;
  transition: var(--transition);
}

.industry:hover {
  background: #f8fafc;
  transform: none;
  box-shadow: inset 0 0 0 2px var(--cyan);
}

.industry h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.industry p {
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.65;
}

.featurelist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.feature {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.feature:before {
  content: "✓";
  color: var(--red);
  font-weight: 800;
}

.dark .feature {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
}

.dark .feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(22, 183, 240, 0.3);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   PAGE HEROES (Inner Pages - UI/UX Max Pro & 21st.dev Glow)
------------------------------------------------------------- */
.pagehero {
  padding: 180px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(22, 183, 240, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(239, 27, 36, 0.14) 0%, transparent 45%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.88) 0%, rgba(5, 12, 24, 0.96) 100%),
    url("hero-office.jpg");
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pagehero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  pointer-events: none;
}

.pagehero .wrap {
  position: relative;
  z-index: 2;
}

.pagehero h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  letter-spacing: -1.8px;
  line-height: 1.05;
  font-weight: 800;
  max-width: 880px;
  margin: 12px 0 20px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pagehero p {
  max-width: 720px;
  line-height: 1.75;
  color: #94a3b8;
  font-size: 16.5px;
}

.pagehero.it-page { 
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,12,24,0.85), rgba(5,12,24,0.96)), 
    url("it-datacenter.jpg"); 
}
.pagehero.elv-page { 
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(239, 27, 36, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,12,24,0.85), rgba(5,12,24,0.96)), 
    url("security-cctv.jpg"); 
}
.pagehero.av-page { 
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,12,24,0.85), rgba(5,12,24,0.96)), 
    url("av-boardroom.jpg"); 
}
.pagehero.digital-page { 
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,12,24,0.85), rgba(5,12,24,0.96)), 
    url("digital-signage.jpg"); 
}

/* -------------------------------------------------------------
   DETAIL & ARTICLE LAYOUTS
------------------------------------------------------------- */
.detail {
  padding: 90px 0;
}

.detailgrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.detail h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  letter-spacing: -1px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.detail p, .detail li {
  color: var(--ink-secondary);
  line-height: 1.75;
  font-size: 15px;
}

.detailimg {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}

.itimg { background-image: url("server-room.jpg"); }
.elvimg { background-image: url("control-room.jpg"); }
.avimg { background-image: url("meeting-room.jpg"); }
.digitalimg { background-image: url("retail-display.jpg"); }

.visual-banner {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.about-visual { background-image: url("about-team.jpg"); }
.industries-visual { background-image: url("industries-projects.jpg"); }
.contact-visual { background-image: url("contact-city.jpg"); }
.partner-visual { background-image: url("partner-ecosystem.jpg"); }

/* -------------------------------------------------------------
   PORTFOLIO, PARTNERS, INSIGHTS & ABOUT
------------------------------------------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

.portfolio-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-card > div {
  padding: 28px;
}

.portfolio-card span, .partner-card b, .insight-card span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--red);
  text-transform: uppercase;
}

.portfolio-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 12px;
}

.portfolio-card p, .partner-card p, .insight-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.partner-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 30px;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.partner-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 8px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.insight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover img {
  transform: scale(1.04);
}

.insight-card .body {
  padding: 24px;
}

.insight-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 8px 0 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 34px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 183, 240, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.about-stat:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #16b7f0, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-stat:hover:before {
  opacity: 1;
}

.about-stat strong {
  display: block;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.2px;
  margin-bottom: 6px;
}

.about-stat span {
  display: block;
  color: #94a3b8;
  font-size: 13.5px;
  font-weight: 500;
}

.about-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-process > div {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.about-process > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 27, 36, 0.3);
}

.about-process img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-process > div:hover img {
  transform: scale(1.05);
}

.about-process h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 22px 24px 10px;
  letter-spacing: -0.3px;
}

.about-process p {
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 24px 24px;
}

.about-process h3, .about-process p {
  margin: 16px 24px 0;
}

.about-process p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

/* Call to Action Banner */
.cta-panel {
  background: linear-gradient(135deg, #050c18 0%, #0d2238 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-dark);
}

.cta-panel h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 10px;
}

.cta-panel p {
  color: #94a3b8;
  max-width: 640px;
  font-size: 15px;
}

/* Quote Panel */
.quote-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.quote-panel blockquote {
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.quote-panel p {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Article / Case Study Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.article {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  padding-bottom: 40px;
}

.article > *:not(.article-hero) {
  margin-left: 40px;
  margin-right: 40px;
}

.article-hero {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 35px;
}

.article h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.article h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article .lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.article p {
  line-height: 1.8;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.article-side img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 20px;
  min-height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.mini-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* -------------------------------------------------------------
   CONTACT FORM & BOX
------------------------------------------------------------- */
.contactbox {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.contactbox h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.formgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-secondary);
  letter-spacing: 0.2px;
}

.field input, .field textarea, .field select {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  color: var(--ink);
  outline: 0;
  transition: var(--transition);
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-glow);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

/* -------------------------------------------------------------
   FLOATING ACTIONS (WhatsApp & Direct Contact)
------------------------------------------------------------- */
.float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.float .wa {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.float .wa:hover {
  background: #20ba5a;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.footer {
  background: #030811;
  color: #ffffff;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .brand-logo {
  width: 175px;
  max-height: 65px;
  margin-bottom: 16px;
}

.footgrid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 48px;
}

.footer h4 {
  font-size: 11px;
  color: #ff5e62;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer a, .footer p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 2;
  display: block;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 24px;
  color: #64748b;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -------------------------------------------------------------
   REVEAL & INTERSECTION ANIMATIONS
------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------------------------- */
@media (max-width: 1080px) {
  .wrap { padding: 0 24px; }
  .solution-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .gallery-portion { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .process, .detailgrid, .article-layout { grid-template-columns: 1fr; }
  .projects { grid-template-columns: repeat(2, 1fr); }
  .industrygrid { grid-template-columns: repeat(2, 1fr); }
  .footgrid { grid-template-columns: repeat(2, 1fr); }
  .featurelist { grid-template-columns: repeat(2, 1fr); }
  .processimg { min-height: 320px; }
}

@media (max-width: 820px) {
  .nav { height: 74px; }
  .nav.scrolled { height: 68px; }
  .navcta { display: none; }
  .menu { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 22px;
    z-index: 105;
  }
  
  .navlinks {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(5, 12, 24, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 90px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
  }
  
  .navlinks.open {
    right: 0;
  }

  .navlinks a {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 90px; }
  .proof { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .solution-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .grid4 { grid-template-columns: 1fr; }
  .projects { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 75px 0; }
  .sectionhead { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 35px; }
  .cta-panel { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  .partner-grid, .insight-grid, .about-process { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .wrap { padding: 0 16px; }
  .hero h1 { font-size: 36px; }
  .proof { grid-template-columns: 1fr; }
  .solution-grid-modern { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .industrygrid { grid-template-columns: 1fr; }
  .featurelist { grid-template-columns: 1fr; }
  .formgrid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .mini-gallery { grid-template-columns: 1fr; }
  .footgrid { grid-template-columns: 1fr; gap: 32px; }
  .copy { flex-direction: column; gap: 10px; text-align: center; }
  .contactbox { padding: 24px; }
  .gallery-visual-card { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
