:root {
  --bg: #07111f;
  --bg-soft: #0d1c31;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-dark: #0c1628;
  --stroke: rgba(18, 44, 79, 0.1);
  --primary: #22c1c3;
  --primary-2: #4f7df3;
  --text: #12213a;
  --muted: #5d6b84;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 28, 59, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--surface-soft);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: "Manrope", sans-serif; margin: 0; }
p { margin: 0; }

.section-block { padding: 104px 0; position: relative; }
.section-light { background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%); }
.section-dark { background: radial-gradient(circle at top left, rgba(79,125,243,0.18), transparent 30%), linear-gradient(180deg, #081322 0%, #0b1830 100%); color: var(--white); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(79, 125, 243, 0.08);
  color: var(--primary-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-head { max-width: 760px; margin-bottom: 44px; }
.centered-head { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2,
.section-block h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.08; letter-spacing: -0.03em; }
.section-head p,
.section-copy { font-size: 17px; line-height: 1.8; color: var(--muted); margin-top: 18px; }
.section-dark .section-head p { color: rgba(255,255,255,0.72); }

#header {
  padding: 18px 0;
  transition: all .3s ease;
  background: rgba(7, 17, 31, 0.64);
  backdrop-filter: blur(16px);
}
#header.header-scrolled { background: rgba(7, 17, 31, 0.92); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.nav-shell {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}
.logo img { max-height: 56px; }
.navbar { padding: 0; }
.navbar ul { margin: 0; padding: 0; display: flex; align-items: center; gap: 24px; list-style: none; }
.navbar a { color: rgba(255,255,255,.82); font-size: 15px; font-weight: 600; }
.navbar a:hover, .navbar .active { color: var(--white); }
.btn-nav {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white) !important;
  box-shadow: 0 14px 28px rgba(79,125,243,.28);
}
.mobile-nav-toggle { display: none; color: #fff; font-size: 30px; cursor: pointer; }

#header, .nav-shell, .navbar { overflow: visible; }
#header { z-index: 9999; }
.navbar { position: relative; }

#skills .strength-meta span {
  color: #3f5987;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
#skills .strength-meta strong {
  color: #173f8a;
  font-weight: 800;
}
#skills .strength-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(18, 33, 58, 0.10);
  overflow: hidden;
}
#skills .strength-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}
#skills .process-graphic {
  min-height: 320px;
}
#skills .process-graphic-svg text {
  paint-order: stroke;
  stroke: rgba(10, 23, 44, 0.18);
  stroke-width: 1px;
}
.featured-team img[alt="Asif M S Mahamud"] {
  object-position: center top;
}


.hero-section {
  position: relative;
  padding: 172px 0 108px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(34,193,195,.18), transparent 22%), radial-gradient(circle at 85% 20%, rgba(79,125,243,.22), transparent 24%), linear-gradient(180deg, #07111f 0%, #0b1830 100%);
  color: var(--white);
}
.hero-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .45;
}
.hero-blur-one { width: 280px; height: 280px; background: #22c1c3; top: 120px; right: 12%; }
.hero-blur-two { width: 240px; height: 240px; background: #4f7df3; left: -60px; bottom: 80px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
}
.eyebrow span {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.hero-section h1 {
  font-size: clamp(42px, 7vw, 74px);
  line-height: .98;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}
.hero-copy {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255,255,255,.76);
  max-width: 610px;
}
.hero-actions { gap: 16px; margin: 34px 0 36px; }
.btn-primary-cta, .btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(79,125,243,.3);
}
.btn-secondary-cta {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}
.hero-metrics .metric-card {
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
}
.metric-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
}
.metric-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}
.hero-visual-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(2,8,19,.34);
}
.visual-header small { color: rgba(255,255,255,.64); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.visual-header h4 { margin-top: 6px; font-size: 22px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px; background: rgba(34,193,195,.12); color: #a9ffff; font-size: 13px; font-weight: 700;
}
.hero-dashboard { margin: 22px 0; border-radius: 22px; overflow: hidden; }
.hero-mini-panels .mini-panel {
  height: 100%;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.mini-panel span { display:block; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.58); margin-bottom: 8px; }
.mini-panel strong { display:block; font-size: 18px; margin-bottom: 10px; }
.mini-panel p { color: rgba(255,255,255,.7); line-height: 1.7; font-size: 14px; }

.insight-points { margin-top: 28px; display: grid; gap: 14px; }
.point-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 18px;
  background: rgba(79,125,243,.04); border: 1px solid rgba(79,125,243,.08);
  color: var(--text); font-weight: 600;
}
.point-item i { color: var(--primary-2); font-size: 18px; }
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.insight-card {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 22, 40, .06);
}
.accent-card { background: linear-gradient(180deg, #eff8ff 0%, #ffffff 100%); }
.dark-card { background: linear-gradient(180deg, #0d1830 0%, #132443 100%); color: var(--white); }
.dark-card p { color: rgba(255,255,255,.72); }
.card-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(34,193,195,.16), rgba(79,125,243,.18));
  color: var(--primary-2); font-size: 24px; margin-bottom: 18px;
}
.dark-card .card-icon { color: #90fff7; background: rgba(255,255,255,.08); }
.insight-card h3 { font-size: 22px; margin-bottom: 12px; }
.insight-card p { line-height: 1.8; color: var(--muted); }

.capability-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.capability-icon {
  width: 56px; height: 56px; border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(34,193,195,.2), rgba(79,125,243,.25));
  color: #9fe5ff; font-size: 24px; margin-bottom: 18px;
}
.capability-card h3 { font-size: 22px; margin-bottom: 12px; }
.capability-card p { color: rgba(255,255,255,.72); line-height: 1.8; }
.capability-band {
  margin-top: 56px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.process-graphic { border-radius: 24px; }
.subheadline { font-size: 34px; line-height: 1.15; margin-bottom: 26px; }
.strength-bars { display: grid; gap: 18px; }
.strength-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; margin-bottom: 8px;
}
.strength-meta span { color: rgba(255,255,255,.82); }
.strength-meta strong { color: #173f8a; font-weight: 800; }
.strength-bar {
  width: 100%; height: 12px; border-radius: 999px;
  background: rgba(255,255,255,.08); overflow: hidden;
}
.strength-bar span {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.timeline-grid { position: relative; }
.timeline-card {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(12,22,40,.06);
  box-shadow: var(--shadow);
}
.timeline-number {
  display: inline-flex; width: 48px; height: 48px; border-radius: 14px; align-items: center; justify-content: center;
  font-weight: 800; color: var(--white); background: linear-gradient(135deg, var(--primary), var(--primary-2)); margin-bottom: 18px;
}
.timeline-card h3 { font-size: 21px; margin-bottom: 10px; }
.timeline-card p { color: var(--muted); line-height: 1.8; }

.clients-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}
.clients-slider-wrap {
  overflow: hidden;
  padding: 26px 0;
  border-radius: 28px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(12,22,40,.06);
  box-shadow: var(--shadow);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.clients-logo {
  width: 132px;
  height: 74px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .8;
}
.clients-logo:hover { filter: grayscale(0%); opacity: 1; }

.client-marquee {
  overflow: hidden;
  padding: 26px 0;
  border-radius: 28px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(12,22,40,.06);
  box-shadow: var(--shadow);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  will-change: transform;
}
.marquee-track.marquee-ready {
  animation: logo-marquee 36s linear infinite;
}
.client-marquee:hover .marquee-track { animation-play-state: paused; }
.process-graphic {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%);
  border: 1px solid rgba(12,22,40,.06);
  box-shadow: var(--shadow);
}
.process-graphic-svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.strength-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .08);
  overflow: hidden;
}
.strength-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-distance, 50%))); }
}

.team-section { background: linear-gradient(180deg, #0b1830 0%, #08111f 100%); color: var(--white); }
.team-section .section-head p { color: rgba(255,255,255,.72); }
.team-card {
  height: 100%;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.featured-team {
  display: flex; gap: 20px; align-items: center;
  min-height: 100%;
}
.team-card img {
  border-radius: 22px;
  object-fit: cover;
  background: rgba(255,255,255,.08);
}
.featured-team img { width: 165px; height: 200px; }
.compact-team img { width: 100%; height: 260px; margin-bottom: 16px; }
.role {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #92fff7;
  font-weight: 700;
}
.team-card h3 { font-size: 24px; margin-bottom: 10px; }
.team-card p { color: rgba(255,255,255,.74); line-height: 1.75; }
.compact-team h3 { font-size: 20px; }

.cta-section {
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}
.cta-shell {
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0a172c 0%, #10244a 100%);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(15,36,74,.28);
}
.cta-shell h2 { font-size: clamp(30px, 4vw, 48px); margin: 10px 0 14px; }
.cta-shell p { color: rgba(255,255,255,.72); line-height: 1.8; }

.contact-section { background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%); }
.contact-info-card,
.contact-form-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12,22,40,.06);
}
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(12,22,40,.07);
}
.contact-item:last-of-type { margin-bottom: 28px; }
.contact-item i {
  width: 48px; height: 48px; border-radius: 14px; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(79,125,243,.08); color: var(--primary-2); font-size: 22px;
}
.contact-item h3 { font-size: 20px; margin-bottom: 6px; }
.contact-item p, .contact-item a { color: var(--muted); line-height: 1.75; }
.map-wrap iframe { border-radius: 22px; }
.contact-form-card h3 { font-size: 30px; margin-bottom: 12px; }
.contact-form-card p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.form-control {
  border-radius: 18px;
  border: 1px solid rgba(12,22,40,.12);
  padding: 16px 18px;
  min-height: 56px;
  color: var(--text);
  background: #fbfdff;
}
.form-control:focus {
  border-color: rgba(79,125,243,.5);
  box-shadow: 0 0 0 4px rgba(79,125,243,.1);
}
textarea.form-control { min-height: 180px; }
.inline-link { font-weight: 700; color: var(--primary-2); }

#footer {
  padding: 28px 0 38px;
  background: #07111f;
  color: rgba(255,255,255,.8);
}
.footer-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-logo { max-height: 44px; margin-bottom: 10px; }
.footer-copy { color: rgba(255,255,255,.58); }
.footer-links, .footer-socials { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.78); font-weight: 600; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff;
}

@media (max-width: 991.98px) {
  .mobile-nav-toggle { display: block; position: relative; z-index: 10001; }
  .navbar ul {
    display: none;
    position: absolute;
    top: calc(100% + 12px); left: auto; right: 0;
    width: min(320px, calc(100vw - 24px));
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7,17,31,.98);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
    z-index: 10000;
  }
  .navbar.navbar-mobile ul { display: flex; }
  .navbar ul li { width: 100%; }
  .navbar a, .btn-nav { display: block; width: 100%; padding: 14px 16px; border-radius: 16px; }
  .btn-nav { text-align: center; margin-top: 6px; }
  .hero-section { min-height: auto; padding-top: 150px; }
  .insight-grid { grid-template-columns: 1fr; }
  .featured-team { flex-direction: column; align-items: flex-start; }
  .featured-team img { width: 100%; height: 300px; }
}

@media (max-width: 767.98px) {
  .section-block { padding: 82px 0; }
  #skills .strength-meta { gap: 10px; }
  #skills .strength-meta span { font-size: 12px; line-height: 1.4; max-width: 78%; }
  #skills .strength-meta strong { font-size: 12px; flex-shrink: 0; }
  #skills .process-graphic { min-height: 240px; padding: 12px; }
  .nav-shell { padding: 10px 14px; }
  .logo img { max-height: 44px; }
  .hero-section h1 { font-size: 44px; }
  .hero-copy { font-size: 16px; }
  .hero-visual-card, .contact-info-card, .contact-form-card, .cta-shell, .capability-band { padding: 22px; }
  .section-head h2, .section-block h2 { font-size: 34px; }
  .subheadline { font-size: 28px; }
  .clients-logo { width: 108px; }
}


#why-us .section-tag {
  margin-bottom: 16px;
}
#why-us h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 700px;
  margin-bottom: 18px;
}
#why-us > .container > .row > .col-lg-6:first-child > p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-bottom: 34px;
}
.process-accordion {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}
.process-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(34,193,195,.22), rgba(79,125,243,.28));
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.process-card h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.16;
  margin: 2px 0 10px;
}
.process-card p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin: 0;
}
@media (max-width: 991.98px) {
  #why-us h2 {
    font-size: clamp(32px, 7vw, 48px);
  }
  #why-us > .container > .row > .col-lg-6:first-child > p {
    font-size: 18px;
    margin-bottom: 26px;
  }
  .process-card {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px 18px;
  }
  .process-card span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }
  .process-card h3 {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 8px;
  }
  .process-card p {
    font-size: 16px;
  }
}
