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

:root {
  --primary: #00C4CC;
  --primary-dark: #0099a8;
  --secondary: #00BCD4;
  --dark: #ffffff;
  --dark2: #F4F7F9;
  --card-bg: #ffffff;
  --text: #0D2342;
  --text-muted: #5a7a8a;
  --border: rgba(0,196,204,0.25);
  --gradient: linear-gradient(135deg, #0D2342, #00C4CC);
}

html { scroll-behavior: smooth; }

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

/* Hero uses Playfair Display, everything else Inter sans-serif */
.hero h1 { font-family: 'Playfair Display', Georgia, serif; }

/* ── LOGO IMAGE ── */
.logo-img {
  height: 50px;
  width: 300;
  object-fit: contain;
  display: block;

}
.footer-logo-link { display: inline-block; margin-bottom: 4px; }

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

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 10px 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,196,204,0.1);
  transition: all 0.3s;
}
.nav-inner { display: flex; align-items: center; gap: 40px; }
.logo { text-decoration: none; display: inline-flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 32px; margin-left: auto; }
.nav-links a { color: #0D2342; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { margin-left: 16px; }
.hamburger { display: none; font-size: 1.4rem; cursor: pointer; color: #0D2342; margin-left: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #00C4CC, #0099a8);
  color: #fff; padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,196,204,0.3);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--primary); color: var(--primary);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ── SECTION COMMON ── */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(0,196,204,0.12);
  color: var(--primary); padding: 6px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
  border: 1px solid rgba(0,196,204,0.25);
}
.section-header h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.highlight { background: linear-gradient(135deg, #00C4CC, #EBF1F5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f0feff 0%, #d0f5f7 40%, #00C4CC 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(13,35,66,0.08) 0%, transparent 70%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}

/* Heading: California Serif style via Playfair Display */
.hero-text h1 {
  font-size: 4.4rem; font-weight: 900; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
  font-family: 'Playfair Display', Georgia, serif;
}
.hero-h1-line1 {
  display: block;
  color: #0D2342;
  font-style: normal;
  font-weight: 900;
}
.hero-h1-line2 {
  display: block;
  color: #00C4CC;
  font-style: italic;
  font-weight: 900;
  -webkit-text-fill-color: #00C4CC;
  background: none;
}

/* Subtext styled */
.hero-text p {
  font-size: 1.08rem; line-height: 1.8; margin-bottom: 36px; max-width: 480px;
  color: #3a5a6a;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  border-left: 3px solid #00C4CC;
  padding-left: 16px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; }
.stat strong { display: block; font-size: 2rem; font-weight: 800; color: #0D2342; }
.stat span { color: #5a7a8a; font-size: 0.9rem; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-main-img {
  width: 100%; max-width: 1520px; height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 24px 80px rgba(0,196,204,0.4));
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.04);} }



/* ── SHOWCASE (WHITE top + CYAN cards) ── */
.showcase-section { background: #ffffff; padding: 0; overflow: hidden; }
.showcase-top { text-align: center; padding: 72px 80px 56px; display: flex; flex-direction: column; align-items: center; gap: 24px; background: #ffffff; }
.showcase-section .svstrip-label { display: none !important; }
.showcase-brand { font-size: 0.82rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--primary); margin: 0; }
.showcase-top h2 { font-size: 2.6rem; font-weight: 800; color: #0D2342; line-height: 1.2; margin: 0; }
.showcase-hl { color: var(--primary); font-style: italic; }
.showcase-sub { color: #5a7a8a; font-size: 0.95rem; line-height: 1.85; max-width: 680px; margin: 0; }
.showcase-stats { display: flex; gap: 48px; justify-content: center; }
.showcase-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.showcase-stat span { font-size: 0.8rem; color: #5a7a8a; text-transform: uppercase; letter-spacing: 1.5px; }
.showcase-nav-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.showcase-nav-links a { display: inline-flex; align-items: center; gap: 7px; background: rgba(0,196,204,0.08); border: 1px solid rgba(0,196,204,0.3); color: var(--primary); padding: 9px 20px; border-radius: 50px; font-size: 0.83rem; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s; }
.showcase-nav-links a:hover { background: var(--primary); color: #fff; }

/* SERVICE CARDS ROW — cyan background */
.showcase-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0 48px 52px;
  background: #00C4CC;
}
.sc-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  margin: 8px;
  padding: 28px 16px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 10px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.sc-card:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.sc-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: #0D2342;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  margin-bottom: 4px;
}
.sc-icon i { font-size: 1.1rem; color: #00C4CC; }
.sc-card h4 { font-size: 0.88rem; font-weight: 700; color: #ffffff; margin: 0; }
.sc-card p  { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; }

/* VIDEO STRIP — cyan section, video with top margin */
.showcase-video-strip {
  position: relative;
  margin: 16px 48px 56px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  background: #0D2342;
}
.svstrip-track {
  position: relative; width: 100%; height: 100%;
}
.svstrip-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.svstrip-slide.active { opacity: 1; }
.svstrip-slide video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.svstrip-label {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: rgba(13,35,66,0.82);
  backdrop-filter: blur(10px);
  color: #fff; padding: 12px 32px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 700;
  border: 1px solid rgba(0,196,204,0.45);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.svstrip-label i { color: var(--primary); }
.svstrip-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: rgba(255,255,255,0.12);
  border-radius: 0 0 24px 24px;
}
.svstrip-bar {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width linear;
  border-radius: 0 0 0 24px;
}

@media (max-width: 1024px) {
  .showcase-cards { grid-template-columns: repeat(3, 1fr); padding: 40px 32px 48px; }
}
@media (max-width: 768px) {
  .showcase-top { padding: 52px 24px 40px; }
  .showcase-top h2 { font-size: 1.9rem; }
  .showcase-cards { grid-template-columns: repeat(2, 1fr); padding: 32px 16px 40px; }
  .showcase-video-strip { margin: 0 16px 40px; height: 300px; }
}
@media (max-width: 480px) {
  .showcase-cards { grid-template-columns: 1fr; }
  .showcase-stats { gap: 28px; }
}

/* ── SCALE SECTION (CYAN) ── */
.scale-section { background: #00C4CC; padding: 100px 0; position: relative; overflow: hidden; }
.scale-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.12) 0%, transparent 70%); pointer-events:none; }
.scale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative; z-index: 1;
}
.scale-image { display: flex; justify-content: center; align-items: center; }
.scale-img {
  width: 100%; max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  object-fit: cover;
}
.scale-text .section-tag {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
}
.scale-text h2 {
  font-size: 2.6rem; font-weight: 800;
  color: #ffffff; margin-bottom: 20px; line-height: 1.2;
}
.scale-highlight {
  background: none;
  -webkit-text-fill-color: unset;
  color: #0D2342;
  font-style: italic;
}
.scale-text p { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.scale-p2 { margin-bottom: 28px !important; }
.scale-tags {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
}
.scale-tags span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff; padding: 8px 18px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.scale-tags span i { font-size: 1rem; }
.btn-scale {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0D2342;
  color: #ffffff; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(13,35,66,0.35);
}
.btn-scale:hover { background: #0a1a2e; transform: translateY(-2px); }

@media (max-width: 768px) {
  .scale-inner { grid-template-columns: 1fr; gap: 40px; }
  .scale-text h2 { font-size: 2rem; }
  .scale-image { order: -1; }
}
/* ── BUSINESS VERTICALS HORIZONTAL SLIDER ── */
.verticals-section { background: #ffffff; padding: 80px 0 0; overflow: hidden; }
.verticals-header { text-align: center; padding: 0 24px 50px; background: #ffffff; }
.verticals-header h2 { font-size: 2.4rem; font-weight: 800; color: #00C4CC; margin-bottom: 12px; }
.verticals-header h2 .highlight { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: #00C4CC; color: #00C4CC; }
.verticals-header p { color: #5a7a8a; max-width: 560px; margin: 0 auto; }

/* Outer wrapper — clips overflow */
.vslider-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Track — all slides in a row */
.vslider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* Each slide = full viewport width: 1/3 text + 2/3 video */
.vslide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 500px;
}

/* LEFT: text content — cyan */
.vslide-text {
  display: flex; flex-direction: column;
  justify-content: center; gap: 14px;
  padding: 28px 28px 28px 40px;
  background: #00C4CC;
}
.vslide-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff; padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; width: fit-content;
}
.vslide-tag i { font-size: 0.85rem; }
.vslide-text h3 { font-size: 1.45rem; font-weight: 800; color: #ffffff; line-height: 1.25; margin: 0; }
.vhl { background: none; -webkit-text-fill-color: unset; color: #0D2342; font-style: italic; }
.vslide-text p { color: rgba(255,255,255,0.88); font-size: 0.85rem; line-height: 1.7; margin: 0; }
.btn-vslide {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #00C4CC, #0099a8);
  color: #fff; padding: 12px 26px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem; text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,196,204,0.35);
}
.btn-vslide:hover { opacity: 0.88; transform: translateY(-2px); }

/* RIGHT: video — takes 2/3 width */
.vslide-video {
  position: relative;
  overflow: hidden;
}
.vslide-video video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 300px;
}

/* ARROWS — hidden */
.vslider-arrow { display: none; }

/* DOTS */
.vslider-dots { display: flex; justify-content: center; gap: 10px; padding: 20px 0; background: #ffffff; }
.vdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,196,204,0.3); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.vdot.active { background: var(--primary); transform: scale(1.35); }

@media (max-width: 900px) {
  .vslide { grid-template-columns: 1fr; min-height: auto; }
  .vslide-text { padding: 36px 24px; }
  .vslide-text h3 { font-size: 1.4rem; }
  .vslide-video video { min-height: 200px; }
}

/* ── AI DRIVEN SECTION (CYAN) ── */
.aidriven-section { background: #00C4CC; padding: 100px 0; position: relative; overflow: hidden; }
.aidriven-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 50% 70% at 10% 50%, rgba(255,255,255,0.12) 0%, transparent 65%); pointer-events:none; }
.aidriven-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
.aidriven-image { display: flex; justify-content: center; align-items: center; }
.aidriven-img {
  width: 100%; max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.25);
}
.aidriven-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #ffffff; padding: 6px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
}
.aidriven-text h2 {
  font-size: 2.6rem; font-weight: 800;
  color: #ffffff; margin-bottom: 20px; line-height: 1.2;
}
.aidriven-highlight {
  color: #0D2342;
  font-style: italic;
}
.aidriven-text p { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.aidriven-p2 { margin-bottom: 36px !important; }
.btn-aidriven {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0D2342;
  color: #ffffff; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(13,35,66,0.35);
}
.btn-aidriven:hover { background: #0a1a2e; transform: translateY(-2px); }

@media (max-width: 768px) {
  .aidriven-inner { grid-template-columns: 1fr; gap: 40px; }
  .aidriven-text h2 { font-size: 2rem; }
  .aidriven-image { order: -1; }
}

/* ── INNOVATE SECTION (WHITE) ── */
.innovate-section { background: #ffffff; padding: 100px 0; position: relative; overflow: hidden; }
.innovate-bg-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,196,204,0.45), rgba(0,196,204,0.1) 60%, transparent);
  pointer-events: none;
}
.innovate-bg-circle.c1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.innovate-bg-circle.c2 { width: 350px; height: 350px; bottom: -100px; left: -80px; }
.innovate-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  position: relative; z-index: 1;
}
.innovate-text h2 { font-size: 2.6rem; font-weight: 800; color: #0D2342; margin-bottom: 16px; line-height: 1.2; }
.innovate-text > p { color: #5a7a8a; font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }
.innovate-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 24px; margin-bottom: 36px;
}
.innovate-list li { display: flex; align-items: flex-start; gap: 16px; }
.innovate-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, #00C4CC, #0099a8);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,196,204,0.3);
}
.innovate-icon i { font-size: 1.1rem; color: #ffffff; }
.innovate-list strong { display: block; font-size: 1rem; font-weight: 700; color: #0D2342; margin-bottom: 4px; }
.innovate-list p { color: #5a7a8a; font-size: 0.9rem; line-height: 1.6; margin: 0; }
.innovate-image { position: relative; display: flex; justify-content: center; align-items: center; }
.innovate-img {
  width: 100%; max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,196,204,0.18);
  object-fit: cover;
  border: 3px solid rgba(0,196,204,0.2);
}
.innovate-badge {
  position: absolute; bottom: -16px; left: 20px;
  background: linear-gradient(135deg, #00C4CC, #0099a8);
  border-radius: 16px; padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,196,204,0.35);
  color: #ffffff;
}
.innovate-badge i { font-size: 1.6rem; }
.innovate-badge span { font-size: 0.85rem; font-weight: 700; line-height: 1.4; }

@media (max-width: 768px) {
  .innovate-inner { grid-template-columns: 1fr; gap: 40px; }
  .innovate-text h2 { font-size: 2rem; }
  .innovate-image { order: 1; margin-bottom: 20px; }
}

/* ── ENVISION BANNER ── */
.envision-section {
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.envision-text-block {
  background: #00C4CC;
  text-align: center;
  padding: 56px 24px 48px;
}
.envision-text-block h2 {
  font-size: 2.8rem; font-weight: 800;
  color: #ffffff; line-height: 1.2; margin-bottom: 14px;
}
.envision-text-block p {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  max-width: 580px; margin: 0 auto; line-height: 1.75;
}
.envision-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .envision-text-block h2 { font-size: 1.9rem; }
  .envision-text-block p { font-size: 0.9rem; }
}

/* ── TRUSTED (WHITE) ── */
.trusted { padding: 60px 0; background: #ffffff; border-top: 1px solid rgba(0,196,204,0.15); border-bottom: 1px solid rgba(0,196,204,0.15); }
.trusted-label { text-align: center; color: #5a7a8a; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 36px; font-weight: 600; }
.trusted-logos { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.trusted-logos span { color: #0D2342; font-weight: 700; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; border: 1px solid rgba(0,196,204,0.2); transition: color 0.2s, background 0.2s; cursor: default; }
.trusted-logos span:hover { color: var(--primary); background: rgba(0,196,204,0.06); }

/* ── SERVICES ── */
.services { background: #ffffff; padding: 0 0 100px; }
.services-header-band {
  background: #00C4CC;
  text-align: center;
  padding: 60px 24px 50px;
  margin-bottom: 60px;
}
.services-header-band h2 { font-size: 2.4rem; font-weight: 800; color: #ffffff; margin-bottom: 12px; }
.services-header-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: #00C4CC; border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px; padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(0,196,204,0.15);
}
.service-card:hover { transform: translateY(-8px); border-color: #0D2342; box-shadow: 0 20px 60px rgba(0,196,204,0.25); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon i { font-size: 1.6rem; color: #ffffff; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: #ffffff; }
.service-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-bottom: 20px; }
.learn-more { color: #ffffff; font-size: 0.9rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.learn-more:hover { gap: 10px; }

/* ── ABOUT ── */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; display: flex; justify-content: center; }
.about-img-box {
  width: 340px; height: 340px; border-radius: 24px;
  background: #EBF1F5; border: 1px solid rgba(0,196,204,0.2);
  display: flex; align-items: center; justify-content: center;
}
.about-icon-big { font-size: 8rem; color: var(--primary); }
.about-badge-box {
  position: absolute; bottom: -20px; right: 20px;
  background: linear-gradient(135deg, #00C4CC, #0099a8); border-radius: 16px;
  padding: 16px 24px; text-align: center;
}
.about-badge-box strong { display: block; font-size: 2rem; font-weight: 800; color: #fff; }
.about-badge-box span { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.about-text > p { color: #5a7a8a; margin-bottom: 28px; }
.about-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; color: #0D2342; }
.about-list i { color: var(--primary); font-size: 1rem; }

/* ── PORTFOLIO (CYAN) ── */
.portfolio { background: #00C4CC; }
.portfolio .section-header h2 { color: #ffffff; }
.portfolio .section-header p { color: rgba(255,255,255,0.85); }

.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.portfolio-card {
  background: #ffffff; border: 1px solid rgba(0,196,204,0.2);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 16px rgba(0,196,204,0.06);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,196,204,0.12); }
.portfolio-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.p1 { background: linear-gradient(135deg, #6c3bff22, #6c3bff44); }
.p2 { background: linear-gradient(135deg, #ff3b6c22, #ff3b6c44); }
.p3 { background: linear-gradient(135deg, #00d4ff22, #00d4ff44); }
.p4 { background: linear-gradient(135deg, #3bff9022, #3bff9044); }
.p1 i { color: #6c3bff; }
.p2 i { color: #ff3b6c; }
.p3 i { color: #00d4ff; }
.p4 i { color: #3bff90; }
.portfolio-info { padding: 24px; }
.portfolio-info span { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.portfolio-info h4 { font-size: 1.1rem; font-weight: 700; margin: 8px 0; color: #0D2342; }
.portfolio-info p { color: #5a7a8a; font-size: 0.9rem; }

/* ── PROCESS (WHITE bg, cyan cards) ── */
.process { background: #ffffff; }
.process .section-header h2 { color: #0D2342; }
.process .section-header h2 .highlight { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: #00C4CC; color: #00C4CC; }
.process .section-tag { background: rgba(0,196,204,0.12); color: #00C4CC; border-color: rgba(0,196,204,0.25); }
.process-steps { display: flex; align-items: stretch; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step {
  background: #00C4CC;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  max-width: 220px;
  flex: 1;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,196,204,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,196,204,0.35); }
.step-num {
  font-size: 2.8rem; font-weight: 800; color: #ffffff;
  margin-bottom: 12px; line-height: 1;
  opacity: 0.9;
}
.step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #ffffff; }
.step p { color: rgba(255,255,255,0.88); font-size: 0.85rem; line-height: 1.6; }
.step-arrow { display: none; }

/* ── TEAM (WHITE) ── */
.team { background: #ffffff; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #ffffff; border: 1px solid rgba(0,196,204,0.2);
  border-radius: 20px; padding: 32px 20px; text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  box-shadow: 0 2px 16px rgba(0,196,204,0.06);
}
.team-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(0,196,204,0.12); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 16px;
}
.team-avatar i { font-size: 2.2rem; color: var(--primary); }
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: #0D2342; }
.team-card span { color: #5a7a8a; font-size: 0.85rem; }
.team-social { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.team-social a { color: var(--text-muted); font-size: 1rem; transition: color 0.2s; }
.team-social a:hover { color: var(--primary); }


/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: #ffffff; border: 1px solid rgba(0,196,204,0.2);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 2px 16px rgba(0,196,204,0.06);
}
.stars { color: #ffd700; margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card > p { color: #5a7a8a; font-size: 0.95rem; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar i { font-size: 2.4rem; color: var(--primary); }
.testimonial-author strong { display: block; font-size: 0.95rem; color: #0D2342; }
.testimonial-author span { color: #5a7a8a; font-size: 0.82rem; }

/* ── CONTACT (CYAN) ── */
.contact { background: #00C4CC; }
.contact-info h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; color: #ffffff; }
.contact-info > p { color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.contact-info .section-tag { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color: #ffffff; margin-bottom: 16px; }
.contact-item span { color: rgba(255,255,255,0.85); }
.contact-item i { background: rgba(255,255,255,0.2); color: #ffffff; }
.social-links a { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: #ffffff; }
.social-links a:hover { background: #0D2342; border-color: #0D2342; }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item i { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  background: #ffffff; border: 1px solid rgba(0,196,204,0.3);
  border-radius: 12px; padding: 14px 18px; color: #0D2342;
  font-family: inherit; font-size: 0.95rem; outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8aaabb; }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { align-self: flex-start; }

/* ── FOOTER ── */
.footer { background: #0D2342; border-top: 1px solid rgba(0,196,204,0.2); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; padding-bottom: 60px; }
.footer-brand .logo { font-size: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 16px 0 24px; max-width: 260px; }
.footer-links h5 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: #ffffff; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

.footer-newsletter h5 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: #ffffff; }
.footer-newsletter p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(0,196,204,0.3);
  border-radius: 50px; padding: 10px 18px; color: #ffffff;
  font-family: inherit; font-size: 0.88rem; outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form .btn-primary { padding: 10px 20px; font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(0,196,204,0.15); padding: 24px 0;
  text-align: center; color: rgba(255,255,255,0.45); font-size: 0.88rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; background: #ffffff;
    padding: 24px; gap: 20px; border-bottom: 1px solid rgba(0,196,204,0.2);
    box-shadow: 0 8px 24px rgba(0,196,204,0.1);
  }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 2.8rem; letter-spacing: -0.5px; }
  .hero-text p { border-left: none; padding-left: 0; border-top: 3px solid #00C4CC; padding-top: 12px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { display: none; }
  .services-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.8rem; }
  .team-grid { grid-template-columns: 1fr; }
}
