﻿/* --- Variables & Reset --- */
:root {
  --primary: #00b8d4;
  --primary-dark: #0097a7;
  --primary-light: #26c6da;
  --accent: #00acc1;
  --accent-glow: rgba(0, 184, 212, 0.5);
  --text-main: #334155;
  --text-light: #64748b;
  --bg-surface: #f8fafc;
  --white: #ffffff;
  --grad-primary: linear-gradient(135deg, #00b8d4 0%, #0097a7 100%);
  --grad-accent: linear-gradient(135deg, #00b8d4 0%, #00acc1 100%);
  --grad-glass: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.05);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.1), 0 2px 4px -1px rgba(15,23,42,0.06);
  --shadow-xl: 0 20px 25px -5px rgba(15,23,42,0.1), 0 10px 10px -5px rgba(15,23,42,0.04);
  --shadow-glow: 0 0 20px rgba(0, 184, 212, 0.4);
  --radius: 16px;
  --nav-height: 80px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-surface);
  color: var(--text-main);
  overflow-x: hidden;
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 40px 40px;
}
h1, h2, h3, h4, .btn, .nav-link {
  font-family: 'DM Sans', sans-serif;
  color: #0d47a1;
}

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.section-padding { padding: 100px 0; }
.section-light { background-color: #f7f2ea; }
.section-alt { background-color: #efe8dc; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.9rem;
  color: #5b606b;
  margin-bottom: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 184, 212, 0.1);
  color: #00838f;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 184, 212, 0.25);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--grad-accent);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-glow);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 184, 212, 0.5);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* --- Navigation --- */
nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 20px;
  margin: 0 20px;
  border-radius: 16px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  padding: 0 30px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.logo i { color: var(--primary); font-size: 1.8rem; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
  background: #022b32;
  color: white;
}
.hero-left {
  position: relative;
  padding: 140px 80px 120px;
  background: linear-gradient(135deg, #022b32 0%, #043b45 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('assets/banner1.png');
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.25;
  filter: saturate(0) brightness(0.7);
  z-index: -1;
}
.hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 43, 50, 0.2) 0%, rgba(2, 43, 50, 0.8) 100%);
  z-index: -1;
}
.hero-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7dbe3;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  font-weight: 800;
  color: white;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 40px;
  color: #dbeff2;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.hero-ticker span {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.hero-right {
  position: relative;
  min-height: 70vh;
  background: #0c191b;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Division Detail Pages --- */
.division-page {
  background: var(--bg-surface);
}
.division-hero {
  position: relative;
  background: linear-gradient(135deg, #022b32 0%, #043b45 100%);
  color: #f8f9fb;
  padding: 140px 0 90px;
  overflow: hidden;
  margin-top: 0;
}
.division-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/banner1.png');
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.2;
  filter: saturate(0) brightness(0.7);
}
.division-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 43, 50, 0.35) 0%, rgba(2, 43, 50, 0.9) 100%);
}
.division-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  z-index: 1;
}
.division-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 12px;
  color: #f8f9fb;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.division-hero p {
  color: #d7e6ea;
  line-height: 1.75;
}
.division-hero .eyebrow {
  color: #b7dbe3;
  margin-bottom: 10px;
}
.division-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 6px;
}
.division-tag {
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  color: #f8f9fb;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.18);
}
.division-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.division-hero-image {
  position: relative;
  height: 100%;
  transform: translateY(8px);
}
.division-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.08);
}
.division-hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(12, 24, 32, 0.82);
  color: #f8f3e9;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}
.division-section {
  padding: 90px 0 80px;
}
.division-section .section-header {
  text-align: left;
  margin-bottom: 30px;
}
.division-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.division-panel {
  background: #f8f3e9;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(12,24,32,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  display: grid;
  gap: 12px;
}
.division-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #3b3f47;
  line-height: 1.8;
}
.division-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 16px 0 0;
}
.division-highlight {
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
  color: #1c1f25;
  font-weight: 700;
}
.division-cta-card {
  background: #0f1216;
  color: #f7f2ea;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}
.division-cta-card p {
  margin: 0;
  color: #d7e6ea;
}

/* --- Hook Sections --- */
.showcase {
  background: #efe8dc;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 32px;
}
.showcase-card {
  background: #f8f3e9;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.1);
  border: 1px solid rgba(12, 24, 32, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
  border-color: rgba(12, 24, 32, 0.14);
}
.showcase-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-card:hover .showcase-media img {
  transform: scale(1.05);
}
.showcase-overlay-title {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: #f7f8fa;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 12px 32px rgba(0,0,0,0.5);
  line-height: 0.95;
}
.showcase-body {
  padding: 24px 24px 18px;
  display: grid;
  gap: 12px;
}
.showcase-meta {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b606b;
}
.showcase-body p {
  color: #3b3f47;
  line-height: 1.75;
}
.showcase-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 2px 4px;
  color: #1f2933;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- About --- */
.about-modern {
  background: #f4eee3;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.about-text p {
  color: #3b3f47;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-stats {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
  color: #1f2933;
  font-weight: 700;
}
.about-stats span {
  display: block;
  font-size: 1.4rem;
  color: #c86a2a;
}
.about-visuals {
  display: grid;
  gap: 16px;
}
.about-main,
.about-secondary {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.about-main img,
.about-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-main { min-height: 260px; }
.about-secondary { min-height: 180px; }
.about-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 14px;
  background: rgba(20,24,32,0.82);
  color: #f4eee3;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* --- Vision --- */
.vision-stack {
  background: #e9e2d7;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.vision-card {
  background: #f7f2ea;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(12, 24, 32, 0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.vision-media {
  height: 180px;
  overflow: hidden;
}
.vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vision-content {
  padding: 22px 20px 20px;
  display: grid;
  gap: 10px;
}
.vision-meta {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5b606b;
  font-size: 0.9rem;
}
.vision-content h3 {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #1c1f25;
}
.vision-content p {
  color: #3b3f47;
  line-height: 1.7;
}
.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.value-chips span {
  padding: 8px 12px;
  background: #e0d6c8;
  border-radius: 12px;
  font-weight: 700;
  color: #1f2933;
  letter-spacing: 0.02em;
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 6px;
  color: #3b3f47;
}
.value-list strong { color: #1f2933; }

/* --- Solutions --- */
.solutions {
  background: #e7e0d5;
}
.solutions-intro {
  max-width: 860px;
  margin: 20px auto 40px;
  color: #3b3f47;
  line-height: 1.7;
  text-align: left;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.solution-card {
  background: #f8f3e9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(12,24,32,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  border-color: rgba(12,24,32,0.12);
}
.solution-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.solution-card:hover .solution-media img { transform: scale(1.05); }
.solution-overlay-title {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #f8f9fb;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0,0,0,0.45);
  line-height: 0.95;
}
.solution-body {
  padding: 22px 20px 18px;
  display: grid;
  gap: 10px;
}
.solution-meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5b606b;
  font-size: 0.9rem;
}
.solution-body p {
  color: #3b3f47;
  line-height: 1.7;
}

.who-modern {
  background: #efe8dc;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.who-card {
  background: #f8f3e9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(12,24,32,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  border-color: rgba(12,24,32,0.12);
}
.who-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.who-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.who-card:hover .who-media img { transform: scale(1.05); }
.who-overlay-title {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #f8f9fb;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.who-body {
  padding: 22px 20px 18px;
  display: grid;
  gap: 10px;
}
.who-meta {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #5b606b;
  font-size: 0.9rem;
}
.who-body p {
  color: #3b3f47;
  line-height: 1.7;
}

.process-modern {
  background: #f4eee3;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.engagement-card {
  background: #f8f3e9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(12,24,32,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.engagement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  border-color: rgba(12,24,32,0.12);
}
.engagement-media {
  height: 180px;
  overflow: hidden;
}
.engagement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.engagement-card:hover .engagement-media img { transform: scale(1.05); }
.engagement-body {
  padding: 22px 20px 18px;
  display: grid;
  gap: 10px;
}
.engagement-meta {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5b606b;
  font-size: 0.9rem;
}
.engagement-body h3 {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #1c1f25;
}
.engagement-body p {
  color: #3b3f47;
  line-height: 1.7;
}
.engagement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.engagement-tags span {
  padding: 8px 12px;
  background: #e0d6c8;
  border-radius: 12px;
  font-weight: 700;
  color: #1f2933;
  letter-spacing: 0.02em;
}
.process-stack {
  margin-top: 50px;
  background: #f8f3e9;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid rgba(12,24,32,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.process-stack h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #1f2933;
}
.process-timeline {
  display: grid;
  gap: 16px;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f2933;
  color: #f8f3e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.process-step p {
  color: #3b3f47;
  line-height: 1.6;
}
/* --- Services (Divisions) --- */
.divisions { background: #e7e0d5; }
.division-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 48px;
}
.division-card {
  background: #f7f2ea;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
  border: 1px solid rgba(12, 24, 32, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.division-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.division-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.16);
  border-color: rgba(12, 24, 32, 0.14);
}
.division-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.division-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.division-card:hover .division-media img {
  transform: scale(1.05);
}
.division-overlay-title {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  color: #f8f9fb;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 14px 32px rgba(0,0,0,0.45);
  line-height: 0.95;
}
.division-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(20, 24, 32, 0.85);
  color: #f2ede4;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
.division-body {
  padding: 28px 26px 12px;
  display: grid;
  gap: 14px;
}
.division-meta {
  font-size: 0.9rem;
  color: #5b606b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.division-body h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  color: #1c1f25;
}
.division-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
  color: #434b56;
  font-size: 0.96rem;
}
.division-body li {
  padding-left: 14px;
  position: relative;
}
.division-body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c86a2a;
  font-weight: 700;
}
.division-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px 20px;
  border-top: 1px solid rgba(12, 24, 32, 0.08);
  color: #1f2933;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Projects --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.project-item {
  height: 320px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.project-item:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,184,212,0.1);
}
.project-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
  padding: 30px 20px;
  transform: translateY(20px);
  opacity: 0.9;
  transition: 0.4s;
}
.project-item:hover .project-bg { transform: scale(1.1); }
.project-item:hover .project-overlay { transform: translateY(0); opacity: 1; }
.project-overlay h4 { color: white; font-size: 1.1rem; margin-bottom: 4px; }
.project-overlay p { color: #cbd5e1; font-size: 0.9rem; }

/* --- Feature Boxes --- */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-box {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12), 0 4px 10px rgba(0,184,212,0.1);
}
.feature-box h2 { font-size: 1.6rem; margin-bottom: 12px; }
.feature-box p { color: var(--text-light); line-height: 1.8; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #0f1216;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  border-color: rgba(255,255,255,0.08);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: rgba(255,255,255,0.08);
  top: -10px; left: 18px;
}
.testimonial-card p {
  margin-top: 18px;
  color: #e7e9ec;
  font-size: 0.98rem;
  line-height: 1.7;
}
.star-rating { color: #c86a2a; font-size: 1rem; letter-spacing: 2px; }/* --- Process --- */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.step {
  flex: 1 1 200px;
  max-width: 260px;
  background: white;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(0, 184, 212, 0.08);
  transition: all 0.3s ease;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12), 0 4px 10px rgba(0,184,212,0.1);
}
.step-number {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  margin: 0 auto 10px;
  box-shadow: 0 6px 16px rgba(0, 184, 212, 0.35), inset 0 -2px 4px rgba(0,0,0,0.1);
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: flex-start;
}
.gallery-item {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.18), 0 4px 12px rgba(0,184,212,0.1);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery-item .badge {
  position: absolute;
  top: 16px; left: 16px;
  margin: 0;
  background: rgba(15,23,42,0.9);
  color: white;
  border: none;
}

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; }
details {
  background: white;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0, 184, 212, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}
details:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.1), 0 2px 6px rgba(0,184,212,0.1);
  border-color: rgba(0, 184, 212, 0.25);
}
details[open] {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 3px 8px rgba(0,184,212,0.15);
  border-color: var(--primary);
}
summary {
  list-style: none;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  padding-right: 26px;
}
summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}
details[open] summary::after { content: '–'; }
.faq-content {
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #00838f 0%, #00acc1 100%);
  border-radius: 30px;
  padding: 80px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 20px 50px rgba(0, 184, 212, 0.25);
}
.cta-section h2 { color: white; font-size: 2.4rem; margin-bottom: 16px; }
.circle-decor {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cd-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.cd-2 { width: 300px; height: 300px; bottom: -50px; right: -50px; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}
.contact-info-tile {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 184, 212, 0.1);
}
.contact-info-tile:hover {
  background: white;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: rgba(0, 184, 212, 0.2);
}
.contact-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 184, 212, 0.3), inset 0 -2px 4px rgba(0,0,0,0.1);
}
.modern-form {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 8px 16px rgba(0,184,212,0.08);
  border: 1px solid rgba(0, 184, 212, 0.1);
}
.input-group { margin-bottom: 18px; text-align: left; }
.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-main);
}
.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: 0.3s;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--primary);
  outline: none;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 184, 212, 0.15), 0 0 0 3px rgba(0, 184, 212, 0.1);
}

/* --- Final CTA Banner --- */
.service-areas {
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-top: 20px;
}
.cta-banner {
  background: #0f1216;
  padding: 70px 0;
  text-align: center;
  color: white;
  margin-top: 20px;
}
.cta-banner h2 { color: white; font-size: 2rem; margin-bottom: 10px; }

/* --- Footer --- */
footer {
  background: linear-gradient(to bottom, #00838f 0%, #006673 100%);
  color: #cbd5e1;
  padding: 80px 0 30px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-links li { list-style: none; margin-bottom: 10px; }
.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-icons a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: white;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* --- Animations & Effects --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 212, 0);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(0, 184, 212, 0.3);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

.zoom-on-hover {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zoom-on-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 184, 212, 0.25) !important;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Stagger animation delays */
.fade-in-up:nth-child(1) { animation-delay: 0s; }
.fade-in-up:nth-child(2) { animation-delay: 0.15s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.45s; }

/* --- Responsive --- */
@media (max-width: 968px) {
  nav { margin: 10px 12px; padding: 0 18px; }
  .nav-links { display: none; }
  .division-hero { padding: 110px 0 60px; }
  .division-hero .container { grid-template-columns: 1fr; }
  .division-hero-image { order: -1; margin-bottom: 18px; }
  .division-section { padding: 70px 0 60px; }
  .division-cta-card { flex-direction: column; align-items: flex-start; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
    margin-top: -60px;
  }
  .hero-left {
    padding: 120px 28px 80px;
    text-align: left;
  }
  .hero-title { font-size: clamp(2.6rem, 10vw, 4.6rem); }
  .hero-right { min-height: 50vh; }
  .division-grid { grid-template-columns: 1fr; }
  .division-overlay-title { font-size: clamp(2.2rem, 9vw, 3.6rem); }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-overlay-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 12px; }
  .vision-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-overlay-title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hook-block { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  /* Make image grid layouts single column on mobile */
  [style*="grid-template-columns: 1fr 200px"],
  [style*="grid-template-columns: 1fr 220px"],
  [style*="grid-template-columns: 1fr 240px"],
  [style*="grid-template-columns: 1fr 280px"],
  [style*="grid-template-columns: 180px 1fr"],
  [style*="grid-template-columns: 200px 1fr"],
  [style*="grid-template-columns: 220px 1fr"],
  [style*="grid-template-columns: 240px 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Stack process image banners */
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .section-padding { padding: 70px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 22px 60px; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.8rem); }
  .division-hero { padding: 90px 0 50px; }
  .division-hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .division-tags { gap: 8px; }
  .division-panel { padding: 20px; }
  .division-cta-card { text-align: left; }
  .division-grid { gap: 26px; }
  .division-overlay-title { font-size: clamp(1.8rem, 11vw, 3rem); }
  .showcase-overlay-title { font-size: clamp(1.8rem, 10vw, 3rem); }
  .showcase-body { padding: 20px 18px 14px; }
  .about-text h2 { font-size: 2.1rem; }
  .about-visuals { grid-template-columns: 1fr; }
  .vision-content { padding: 18px 16px 16px; }
  .vision-content h3 { font-size: 1.05rem; }
  .solutions-grid { gap: 20px; }
  .solution-body { padding: 18px 16px 14px; }
  
  /* Single column for all multi-column grids on small screens */
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

