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

/* ================= ROOT ================= */
:root {
  --bg-dark: #05060a;
  --bg-section: #0a0d14;
  --text-main: #ffffff;
  --text-muted: #aab0c0;
  --accent: #6b5cff;
  --accent-hover: #584bff;
  --gold: #d4af37;
}

/* ================= BASE ================= */
body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.site-logo {
  height: 28px;
}

.main-nav a,
.main-nav button {
  margin-left: 28px;
  background: none;
  border: none;
  color: var(--text-main);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav button:hover {
  opacity: 0.85;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background:
    radial-gradient(ellipse at top left, rgba(107,92,255,0.12), transparent 60%),
    url("assets/curve.webp") center / cover no-repeat;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 18px;
  margin-bottom: 12px;
}

.hero-subtext.muted {
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;      /* vertical alignment fix */
  gap: 16px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* FORCE identical box model */
.hero-actions a,
.hero-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;              /* lock height */
  padding: 0 32px;           /* horizontal only */
  line-height: 1;            /* kill baseline drift */

  border-radius: 999px;
  box-sizing: border-box;
}

/* HARD NORMALISE */
.hero-actions a,
.hero-actions button {
  height: 48px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  box-sizing: border-box;
}


/* ================= SECTION 2 — SYSTEMS ================= */
.section-systems {
  background: var(--bg-section);
  padding: 10rem 0;
}

.systems-manifesto {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
}

.manifesto-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.manifesto-body {
  max-width: 620px;
}

.manifesto-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #b9c0d4;
  margin-bottom: 1.5rem;
}

.manifesto-body .lead {
  font-size: 1.15rem;
  color: #fff;
}

.manifesto-body .label {
  margin-top: 3.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7f87a2;
}

.manifesto-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 3rem 0;
}

.manifesto-body .outcome {
  font-size: 1.1rem;
  color: #fff;
}

/* ================= SECTION 3 — CAPABILITIES ================= */
.capabilities {
  position: relative;
  background: url("assets/1sec3.webp") center / cover no-repeat;
  padding: 140px 0;
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8,12,24,0.75), rgba(8,12,24,0.85));
}

.capabilities-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.capabilities-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.capabilities-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  margin-bottom: 18px;
}

.capabilities-intro {
  font-size: 18px;
  color: #cbd2e6;
}

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

.capability-card {
  background: linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.capability-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  margin-bottom: 14px;
}

/* ================= SECTION 4 — TESTIMONIALS ================= */
.section-testimonials {
  position: relative;
  padding: 120px 0;
  background: url("assets/tes.webp") center / cover no-repeat;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(4,8,20,0.85), rgba(4,8,20,0.9));
}

.section-testimonials .container {
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px;
}

.testimonial-card .stars {
  color: #f5c451;
  margin-bottom: 16px;
}

/* ================= SECTION 5 — CTA ================= */
.section-cta {
  padding: 120px 0;
  background: url("assets/shim.webp") center / cover no-repeat;
  text-align: center;
}

.section-cta h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 18px;
  color: #0a0f24;
}

.section-cta p {
  font-size: 17px;
  color: #2b3042;
  margin-bottom: 36px;
}

.cta-note {
  font-size: 13px;
  color: #5b6275;
}

.btn-gold {
  margin-top: 24px;
  padding: 16px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f2d675);
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* ================= MODAL ================= */
/* ================= MODAL FORM ================= */

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

.audit-form label {
  display: fixed;
  flex-direction: column;
  font-size: 13px;
  font-weight: 500;
  color: #cfd6ff;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;

  background: rgba(4, 8, 20, 0.85);
  z-index: 9999;
}


.audit-form input {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 14px;
}

.audit-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.audit-form input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.35);
}

/* Submit button */
.audit-form button {
  margin-top: 10px;
  align-self: center;
  width: 100%;
  max-width: 240px;
}
/* ================= FORM SUCCESS ================= */

.form-success {
  text-align: center;
}

.form-success h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.form-success p {
  font-size: 14px;
  color: #cfd6ff;
  line-height: 1.6;
}


/* ================= FOOTER ================= */
.site-footer {
  background: #050812;
  padding: 110px 0 40px;
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr 1fr;
  gap: 64px;
}

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

.audit-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 500;
  color: #cfd6ff;
}

.audit-form input {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 14px;
}

.audit-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.audit-form input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.35);
}

/* Submit button */
.audit-form button {
  margin-top: 10px;
  align-self: center;
  width: 100%;
  max-width: 240px;
}
/* Footer logo sizing */
.footer-logo-large {
  height: 84px;        /* sweet spot */
  width: auto;
  max-width: 100%;
  display: block;
}


.footer-bottom {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #9aa3c2;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .systems-manifesto,
  .capabilities-grid,
  .testimonials-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.footer-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #cfd6ff;
  cursor: pointer;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/*==========================================ABOUT======================*/
/* ================= ABOUT HERO ================= */
.about-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url("assets/aby.jpg") center / cover no-repeat;
  color: #ffffff;
}
/* =========================
   GLOBAL HEADER (FIXED)
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;

  background: linear-gradient(180deg, #050814, #070b1a);
  z-index: 1000;

  overflow: hidden;
}

/* Inner container */
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-header .logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* Navigation */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

/* Offset content for fixed header */
body {
  margin: 0;
  padding-top: 72px;
}

.about-hero,
.services-hero,
.home-hero {
  padding-top: 72px; /* same as header height */
}
body {
  margin: 0;
}



/* Soft dark overlay for readability */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 8, 20, 0.85) 0%,
    rgba(4, 8, 20, 0.75) 100%
  );
  z-index: 1;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Eyebrow */
.about-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9aa3c2;
}

/* Headline */
.about-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

/* Lead paragraph */
.about-hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #eef1ff;
  margin-bottom: 18px;
  max-width: 640px;
}

/* Supporting paragraph */
.about-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #cfd6ff;
  max-width: 640px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .about-hero h1 {
    font-size: 34px;
  }
}
/* ================= ABOUT: WHAT WE BELIEVE (LIGHT) ================= */
.about-beliefs.light {
  padding: 140px 0;
  background: #f6f7fb; /* pearl white */
  color: #0a0f24;
}

/* Grid */
.about-beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}

/* Left column */
.beliefs-left h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0f24;
}

/* Right column */
.beliefs-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Base belief text */
.belief-line {
  font-size: 19px;
  line-height: 1.7;
  color: #2b3042;
  max-width: 720px;
}

/* Opening conviction */
.belief-line.strong {
  font-size: 21px;
  font-weight: 500;
  color: #0a0f24;
}

/* Accent line */
.belief-line.accent {
  margin-top: 16px;
  font-size: 21px;
  font-weight: 600;
  color: #b89b2d; /* softened gold for light bg */
}

/* Responsive */
@media (max-width: 900px) {
  .about-beliefs-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .belief-line,
  .belief-line.strong,
  .belief-line.accent {
    font-size: 18px;
  }
}
/* ================= ABOUT: HOW WE WORK ================= */
/* =========================
   ABOUT — SECTION 3
========================= */

.about-section {
  padding: 96px 0;
}

/* Light pearl background with soft depth */
.light-bg {
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.88)
    ),
    url("/assets/images/section-light-bg.jpg") center / cover no-repeat;
}

/* Grid layout */
.about-workflow-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Reverse columns for visual rhythm */
.about-workflow.reverse .about-workflow-grid {
  grid-template-columns: 1fr 1.2fr;
}

/* LEFT — steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.workflow-steps .step {
  font-size: 18px;
  line-height: 1.5;
  color: #1b1f2a;
  padding-left: 18px;
  border-left: 3px solid rgba(212, 175, 55, 0.35);
}

/* RIGHT — anchor */
.workflow-anchor h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0c1020;
  margin-bottom: 16px;
}

.workflow-anchor p {
  font-size: 18px;
  line-height: 1.6;
  color: #3b4256;
  max-width: 460px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .about-workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workflow-anchor h2 {
    font-size: 30px;
  }
}
.about-workflow {
  background:
    linear-gradient(
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.88)
    ),
    url("/assets/images/section-light-bg.jpg") center/cover no-repeat;
}
/* =========================
   ABOUT — SECTION 3
========================= */

.about-section {
  padding: 96px 0;
}

/* Light pearl background with soft depth */
.light-bg {
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.88)
    ),
    url("/assets/images/section-light-bg.jpg") center / cover no-repeat;
}

/* Grid layout */
.about-workflow-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Reverse columns for visual rhythm */
.about-workflow.reverse .about-workflow-grid {
  grid-template-columns: 1fr 1.2fr;
}

/* LEFT — steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.workflow-steps .step {
  font-size: 18px;
  line-height: 1.5;
  color: #1b1f2a;
  padding-left: 18px;
  border-left: 3px solid rgba(212, 175, 55, 0.35);
}

/* RIGHT — anchor */
.workflow-anchor h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0c1020;
  margin-bottom: 16px;
}

.workflow-anchor p {
  font-size: 18px;
  line-height: 1.6;
  color: #3b4256;
  max-width: 460px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .about-workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workflow-anchor h2 {
    font-size: 30px;
  }
}
/* =========================
   ABOUT — OUR ORIGIN
========================= */

.about-origin {
  background: linear-gradient(
    180deg,
    #050814 0%,
    #070b1a 100%
  );
  padding: 140px 0;
  color: #ffffff;
}

.origin-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-origin h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.about-origin p {
  font-size: 18px;
  line-height: 1.65;
  color: #cfd6ff;
  margin-bottom: 14px;
}

.about-origin .origin-emphasis {
  margin-top: 24px;
  font-weight: 600;
  color: #ffffff;
}
/* =========================
   ABOUT — LEADERSHIP & TEAM
========================= */

.about-leadership {
  background: #f7f8fb;
  padding: 140px 0;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.leadership-copy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #0a0f24;
}

.leadership-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: #2b3042;
  margin-bottom: 14px;
}

.leadership-lead {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.lead-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7c5cff;
  margin-bottom: 12px;
}

.leadership-lead h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0a0f24;
}

.leadership-lead p {
  font-size: 16px;
  line-height: 1.6;
  color: #3a415a;
}

/* Responsive */
@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.leadership-copy::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #d4af37;
  margin-top: 32px;
}

/*==================Global Service================*/

/* ================= SERVICES HERO ================= */

/* ===============================
   SERVICES HERO
================================ */

.services-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 96px; /* fixed header offset */
  background: url("assets/dat.webp") center / cover no-repeat;
  overflow: hidden;
}

/* Overlay — controlled contrast */
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 20, 0.86),
    rgba(5, 8, 20, 0.94)
  );
  z-index: 1;
}

/* Inner content */
.services-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 24px;
}

/* Eyebrow / kicker */
.services-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9fb0ff;
  margin-bottom: 16px;
}

/* Headline */
.services-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Subtext */
.services-hero-subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #cfd6ff;
  max-width: 720px;
  margin-bottom: 36px;
}

/* Actions */
.services-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .services-hero {
    min-height: auto;
    padding: 140px 0 100px;
  }

  .services-hero-inner {
    padding: 0 20px;
  }

  .services-hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
/* ===============================
   SERVICES INTRO SECTION
================================ */

.services-intro {
  background: #f6f7fb; /* pearl white */
  padding: 120px 0;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

/* Left content */
.services-intro-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #0b1020;
  margin-bottom: 20px;
}

.services-intro-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #3c4257;
  max-width: 520px;
}

/* Right points */
.services-intro-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-intro-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2433;
}

.services-intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4c14a; /* Antler gold */
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .services-intro {
    padding: 90px 0;
  }

  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ===============================
   SERVICES SYSTEM SECTION
================================ */

/* ===============================
   SERVICES FLOW (LIGHT)
================================ */

.services-flow {
  position: relative;
  background: #f6f7fb; /* pearl white */
  padding: 140px 0;
  color: #0a0f24;
}

/* remove dark overlay completely */
.services-flow-overlay {
  display: none;
}

.services-flow-inner {
  position: relative;
  max-width: 900px;
}

/* Header */
.services-flow-header h2 {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #0a0f24;
}

.services-flow-header p {
  font-size: 18px;
  color: #3a415a;
  margin-bottom: 80px;
}

/* Steps */
.services-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.flow-step {
  max-width: 520px;
}

.flow-index {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #b89b2d; /* refined gold on light */
}

.flow-step h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #0a0f24;
}

.flow-step p {
  font-size: 16px;
  line-height: 1.7;
  color: #3b4256;
}

/* Vertical connector */
.flow-line {
  width: 1px;
  height: 48px;
  background: rgba(184, 155, 45, 0.35);
}

.services-flow .container {
  max-width: 1100px;
}
.services-flow-steps {
  position: relative;
  padding-left: 48px;
}

.services-flow-steps::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(184,155,45,0.15),
    rgba(184,155,45,0.45),
    rgba(184,155,45,0.15)
  );
}
.flow-step {
  position: relative;
  padding-left: 24px;
}
.flow-index {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b89b2d;
  margin-bottom: 8px;
  position: relative;
}

.flow-index::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #b89b2d;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(184,155,45,0.45);
}
.flow-step {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.flow-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   SERVICES CARDS
================================ */

.services-cards {
  background: #0b1020;
  padding: 140px 0;
}

.services-cards-header {
  max-width: 520px;
  margin-bottom: 80px;
}

.services-cards-header h2 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 14px;
}

.services-cards-header p {
  color: #aab0ff;
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.service-card:hover {
  border-color: #e5c24b;
  box-shadow: 0 0 40px rgba(229,194,75,0.18);
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

.service-card p {
  font-size: 16px;
  color: #cfd6ff;
  line-height: 1.6;
  margin-bottom: 26px;
}

.service-btn {
  font-size: 14px;
  color: #e5c24b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.service-btn:hover {
  border-bottom-color: #e5c24b;
}

/* Responsive */
@media (max-width: 900px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b1020;
  padding: 14px 0;
  border-radius: 10px;
  display: none;
  min-width: 220px;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 14px;
}

.submenu li a:hover {
  background: rgba(229,194,75,0.12);
}
.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background: url("assets/dat.webp") center / cover no-repeat;

  /* Header compensation */
  padding-top: 120px;
  padding-bottom: 80px;

  overflow: hidden;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 20, 0.75),
    rgba(5, 8, 20, 0.95)
  );
  z-index: 1;
}
/* =========================
   SERVICES — CORE SECTION
========================= */

/* ================= SERVICES SHOWCASE ================= */

.services-showcase {
  background: linear-gradient(180deg, #050814, #070b1a);
  padding: 140px 0;
}

.services-showcase .container {
  max-width: 1100px;
}

/* Feature block */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;

  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}

.service-feature.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.service-media img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* Content */
.service-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9fb0ff;
}

.service-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  margin: 18px 0 28px;
  color: #ffffff;
}

.service-points {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.service-points li {
  font-size: 16px;
  line-height: 1.7;
  color: #cfd6ff;
  margin-bottom: 10px;
}

.service-points strong {
  color: #ffffff;
}

/* Button */
.btn-gold.glow {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #b89b2d);
  color: #0a0f24;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(212,175,55,0.6);

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-gold.glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(212,175,55,0.8);
}

/* Responsive */
@media (max-width: 900px) {
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
    padding: 40px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.services-close {
  background: #f6f7fb;
  padding: 140px 0;
}

.services-close-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 80px 72px;
  box-shadow: 0 30px 80px rgba(10,15,36,0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}

.services-close h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a0f24;
  margin-bottom: 18px;
}

.services-close p {
  font-size: 17px;
  line-height: 1.65;
  color: #3b4256;
  margin-bottom: 14px;
}

.services-close ul {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.services-close li {
  font-size: 16px;
  color: #2b3042;
  margin-bottom: 12px;
}

.services-close-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-close-cta .btn-gold {
  margin-top: 24px;
}
.modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ======================== webdev =========================== */
/* ===============================
   WEB DEV HERO
================================ */


.webdev-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background-image: url("./assets/webd/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding-top: 140px; /* header offset */
  padding-bottom: 100px;
  overflow: hidden;
}

/* Dark overlay */
.webdev-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 20, 0.75),
    rgba(5, 8, 20, 0.92)
  );
  z-index: 1;
}

/* Content wrapper */
.webdev-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}

/* Eyebrow */
.webdev-hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #e5c24b;
}

/* Headline */
.webdev-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 26px;
}

.webdev-hero h1 span {
  color: #e5c24b;
}

/* Subtext */
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #cfd6ff;
  max-width: 520px;
  margin-bottom: 44px;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* Secondary link */
.hero-secondary {
  font-size: 14px;
  color: #cfd6ff;
  text-decoration: none;
  position: relative;
}

.hero-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #e5c24b;
  transition: width 0.3s ease;
}

.hero-secondary:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*============== section 1 =============== */
/* ===============================
   WEB DEV — SYSTEM FLOW (SECTION 1)
================================ */

.webdev-system {
  background: #f7f8fc;
  padding: 140px 0;
  color: #0b1020;
}

.webdev-system-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdev-system-header {
  max-width: 620px;
  margin-bottom: 90px;
}

.webdev-system-header h2 {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 14px;
}

.webdev-system-header p {
  font-size: 18px;
  color: #4a4f8a;
}

/* Steps */
.webdev-system-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.system-step {
  position: relative;
  padding-left: 22px;
}

.system-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 100%;
  background: rgba(229, 194, 75, 0.6);
}

.step-index {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #e5c24b;
  font-weight: 600;
}

.system-step h3 {
  font-size: 22px;
  margin: 10
  px 0 12px;
}

.system-step p {
  font-size: 16px;
  line-height: 1.7;
  color: #2e3366;
}

/* Responsive */
@media (max-width: 900px) {
  .webdev-system-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/*======= section 2 ==========================*/
/* ===============================
   WEB DEV — IMPACT (SECTION 2)
================================ */

.webdev-impact {
  background: radial-gradient(
    circle at top left,
    #0f1430,
    #070b1a 70%
  );
  padding: 140px 0;
  color: #ffffff;
}

.webdev-impact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdev-impact-header {
  max-width: 620px;
  margin-bottom: 80px;
}

.webdev-impact-header h2 {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 14px;
}

.webdev-impact-header p {
  font-size: 18px;
  color: #b8c0ff;
}

/* Cards */
.webdev-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px;
  transition: all 0.35s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  border-color: #e5c24b;
  box-shadow: 0 20px 50px rgba(229, 194, 75, 0.15);
}

.impact-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.impact-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #d6dbff;
}

/* Responsive */
@media (max-width: 900px) {
  .webdev-impact-grid {
    grid-template-columns: 1fr;
  }
}

/*============== section 3 ================= */
/* ===============================
   WEB DEV — SECTION 3
   Why Web Development Matters
================================ */

.webdev-why {
  background: #ffffff;
  padding: 140px 0;
  color: #0a0f24;
}

.webdev-why-inner {
  max-width: 1100px;
}

/* Header */
.webdev-why-header {
  max-width: 560px;
  margin-bottom: 80px;
}

.webdev-why-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}

.webdev-why-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #3a415a;
}

/* Grid */
.webdev-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

/* Items */
.why-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0a0f24;
}

.why-item p {
  font-size: 16px;
  line-height: 1.65;
  color: #3a415a;
}

/* Closing line */
.webdev-why-close {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  color: #0a0f24;
}

/* Responsive */
@media (max-width: 900px) {
  .webdev-why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .webdev-why {
    padding: 100px 0;
  }
}

/* ===============================
   WEB DEV — SECTION 4 : PROCESS
================================ */

.webdev-process {
  position: relative;
  padding: 140px 0;
  background-image: url("assets/webd/s4.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay for readability */
.webdev-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 24, 0.75),
    rgba(6, 10, 24, 0.92)
  );
  z-index: 1;
}

.webdev-process-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.process-header {
  max-width: 620px;
}

.process-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.process-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #cfd6ff;
}

/* Grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 72px;
}

/* Step Card */
.process-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px;
  color: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Hover polish (NO JS yet) */
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 194, 75, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Step index */
.process-step .step-index {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #e5c24b;
  margin-bottom: 12px;
}

/* Step title */
.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Step text */
.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: #d6dbff;
}

/* Responsive */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}




/* ==============section 5 ================
/* ===============================
   WEB DEV — SECTION 5 (OUTCOMES)
================================ */

.webdev-outcomes {
  position: relative;
  padding: 140px 0;
  background-image: url("assets/webd/s5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.webdev-outcomes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 18, 0.7);
  z-index: 1;
}

.webdev-outcomes-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.outcomes-header {
  max-width: 560px;
  margin-bottom: 80px;
}

.outcomes-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.outcomes-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #cfd6ff;
}

/* Grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Individual outcome */
.outcome {
  padding: 32px;
  border-left: 2px solid rgba(229, 194, 75, 0.35);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.outcome:hover {
  transform: translateY(-6px);
  border-color: #e5c24b;
}

.outcome h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.outcome p {
  font-size: 15px;
  line-height: 1.6;
  color: #d6dcff;
}

/* Responsive */
@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}
/*============== section 6 ================*/
/* ===============================
   WEB DEV FAQ (SECTION 6)
================================ */

.webdev-faq {
  position: relative;
  padding: 140px 0;
  background: url("./assets/webd/s6.webp") center / cover no-repeat;
  color: #ffffff;
}

.webdev-faq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 20, 0.85),
    rgba(5, 8, 20, 0.95)
  );
}

.webdev-faq-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdev-faq-header {
  max-width: 520px;
  margin-bottom: 60px;
}

.webdev-faq-header h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
}

.webdev-faq-header p {
  font-size: 16px;
  color: #cfd6ff;
}

/* FAQ Items */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border 0.3s ease;
}

.faq-item.active {
  border-color: rgba(229,194,75,0.6);
}

/* Question */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  color: #e5c24b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #d6dbff;
}
/*================== Section 7 =================*/
/* ===============================
   WEB DEV — SECTION 7 (CLOSE)
================================ */

.webdev-close {
  padding: 160px 0;
  background: #f7f8fb;
  color: #0a0f24;
  text-align: center;
}

.webdev-close-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.webdev-close h2 {
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 800;
  margin-bottom: 24px;
}

.webdev-close-lead {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.webdev-close-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3b4256;
  margin-bottom: 48px;
}

.webdev-close-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.webdev-close-note {
  font-size: 13px;
  color: #6b728a;
}
/*============ 4 =============
/* Reveal polish only (content already visible) */
.process-step {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.process-step.is-visible {
  transform: translateY(0);
}
