:root {
  --white: #ffffff;
  --black: #111111;
  --nav-black: #000000;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --light: #f8fafc;
  --border: #e5e7eb;
  --muted: #4b5563;
  --soft: #64748b;
  --shadow: 0 18px 45px rgba(15, 23, 42, .09);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, .13);
  --font-head: "Poppins", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  overflow: hidden;
  background: var(--white);
}

.navbar {
  background: rgba(0, 0, 0, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}
.navbar-brand {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  box-shadow: 0 14px 34px rgba(37, 99, 235, .36);
}
.navbar .nav-link {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  font-size: .94rem;
  transition: color .2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--blue); }
.navbar-toggler {
  border-color: rgba(255, 255, 255, .22);
}
.navbar-toggler:focus { box-shadow: 0 0 0 .15rem rgba(37, 99, 235, .35); }

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: .88rem 1.24rem;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 16px 36px rgba(37, 99, 235, .26);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 20px 42px rgba(37, 99, 235, .32);
}
.btn-outline-light {
  color: var(--black);
  border-color: #cbd5e1;
  background: #fff;
}
.btn-outline-light:hover {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.12;
  letter-spacing: 0;
}
.display-title {
  max-width: 1040px;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.lead-text {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  max-width: 780px;
}
.muted { color: var(--muted); }
.section {
  padding: 6.8rem 0;
  position: relative;
  background: var(--white);
}
.section-sm { padding: 4.5rem 0; }
.section-title {
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  max-width: 920px;
  font-weight: 800;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .13em;
}
.section-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 8rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(248, 250, 252, .92), rgba(255, 255, 255, .97)),
    radial-gradient(circle at 72% 28%, rgba(37, 99, 235, .12), transparent 30rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.hero-content { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .78rem;
  border: 1px solid rgba(37, 99, 235, .18);
  color: var(--blue);
  background: #eff6ff;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  box-shadow: 0 10px 26px rgba(37, 99, 235, .08);
}

.hero-dashboard {
  position: relative;
  min-height: 540px;
  border-radius: 24px;
  padding: 1.2rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(248,250,252,.94)),
    radial-gradient(circle at 80% 0%, rgba(37,99,235,.14), transparent 22rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-dashboard::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 20%;
  height: 240px;
  background: rgba(37, 99, 235, .08);
  transform: rotate(-8deg);
}
.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .65rem .8rem 1rem;
  position: relative;
  z-index: 1;
}
.window-dots {
  display: flex;
  gap: .4rem;
}
.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}
.window-dots span:first-child { background: #f87171; }
.window-dots span:nth-child(2) { background: #facc15; }
.window-dots span:nth-child(3) { background: #22c55e; }
.dashboard-label {
  color: var(--soft);
  font-weight: 800;
  font-size: .82rem;
}
.chart-panel,
.insight-panel,
.strategy-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.chart-panel {
  min-height: 245px;
  padding: 1.2rem;
}
.chart-grid {
  height: 158px;
  display: flex;
  align-items: end;
  gap: .7rem;
  padding-top: 1rem;
  border-bottom: 1px solid var(--border);
}
.chart-bar {
  flex: 1;
  min-width: 18px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #60a5fa, var(--blue));
  animation: barGrow 1.5s ease both;
  transform-origin: bottom;
}
.chart-bar:nth-child(2) { animation-delay: .08s; opacity: .9; }
.chart-bar:nth-child(3) { animation-delay: .16s; opacity: .95; }
.chart-bar:nth-child(4) { animation-delay: .24s; }
.chart-bar:nth-child(5) { animation-delay: .32s; opacity: .92; }
.chart-bar:nth-child(6) { animation-delay: .4s; }
.chart-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 122px;
  height: 3px;
  background: var(--black);
  transform: rotate(-12deg);
}
.chart-line::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue);
}
.insight-panel {
  width: 70%;
  margin: 1rem 0 0 auto;
  padding: 1rem;
}
.strategy-panel {
  width: 63%;
  margin-top: 1rem;
  padding: 1rem;
}
.progress-track {
  height: 9px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}
.progress-track span {
  display: block;
  height: 100%;
  width: 78%;
  background: var(--blue);
  border-radius: inherit;
}
.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .82rem .95rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 900;
  animation: floatCard 5s ease-in-out infinite;
}
.floating-card i { color: var(--blue); }
.floating-card.one { top: 88px; right: 8px; }
.floating-card.two { top: 220px; left: -10px; animation-delay: .8s; }
.floating-card.three { right: 22px; bottom: 96px; animation-delay: 1.4s; }
.floating-card.four { left: 36px; bottom: 28px; animation-delay: 2s; }

@keyframes barGrow {
  from { transform: scaleY(.2); opacity: .35; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.glass-card,
.service-card,
.industry-card,
.metric-card,
.profile-card,
.case-card,
.blog-card,
.value-card,
.logo-card,
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.glass-card { padding: 1.65rem; }
.metric-card,
.stat-card {
  padding: 1.25rem;
  min-width: 150px;
}
.metric-card strong,
.stat-card strong {
  display: block;
  font-family: var(--font-head);
  color: var(--black);
  font-size: 1.85rem;
  font-weight: 800;
}
.floating-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, .14);
  flex: 0 0 auto;
}
.service-card,
.industry-card,
.profile-card,
.case-card,
.blog-card,
.value-card,
.logo-card {
  height: 100%;
  padding: 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card {
  border-top: 4px solid var(--blue);
}
.service-card:hover,
.industry-card:hover,
.case-card:hover,
.blog-card:hover,
.value-card:hover,
.logo-card:hover,
.profile-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, .35);
  box-shadow: var(--shadow-lg);
}
.service-card h2,
.service-card h3,
.blog-card h2,
.blog-card h3 { font-size: 1.22rem; }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.pill-list li {
  border: 1px solid var(--border);
  background: var(--light);
  border-radius: 999px;
  padding: .4rem .7rem;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

.band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1.28rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: 0; }
.step-num {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(37, 99, 235, .24);
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 94px;
  color: #475569;
  font-family: var(--font-head);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f8fafc);
}
.logo-card span {
  color: var(--blue);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.consulting-visual {
  position: relative;
  min-height: 420px;
  padding: 1.35rem;
  background:
    linear-gradient(145deg, #fff, #f8fafc),
    radial-gradient(circle at 80% 10%, rgba(37,99,235,.12), transparent 20rem);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.consulting-visual::before {
  content: "";
  position: absolute;
  inset: 46% -10% auto 18%;
  height: 160px;
  background: rgba(37, 99, 235, .08);
  transform: rotate(-10deg);
}
.strategy-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.strategy-card + .strategy-card { margin-top: 1rem; }
.strategy-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .8rem;
  align-items: center;
}
.strategy-row i { color: var(--blue); }

.map-embed {
  width: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(.08) contrast(1.04);
}
.form-control,
.form-select,
textarea.form-control {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--black);
  border-radius: 14px;
  padding: .95rem 1rem;
}
.form-control:focus,
.form-select:focus {
  background: #fff;
  color: var(--black);
  border-color: var(--blue);
  box-shadow: 0 0 0 .18rem rgba(37, 99, 235, .14);
}
.form-control::placeholder { color: #94a3b8; }

.footer {
  padding: 4.4rem 0 2rem;
  color: #fff;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer h2,
.footer h3 { color: #fff; }
.footer .muted { color: rgba(255, 255, 255, .72); }
.footer a {
  color: rgba(255, 255, 255, .86);
  transition: color .2s ease;
}
.footer a:hover { color: var(--blue); }
.footer-title {
  font-family: var(--font-head);
  font-weight: 800;
}

.page-hero {
  padding: 8.8rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(248, 250, 252, .98), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 82% 10%, rgba(37, 99, 235, .12), transparent 26rem);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-item,
.breadcrumb-item a { color: #64748b; }
.breadcrumb-item.active { color: var(--black); }
.breadcrumb-item + .breadcrumb-item::before { color: #94a3b8; }
.article-body {
  color: var(--muted);
  font-size: 1.08rem;
}
.article-body h2,
.article-body h3 {
  color: var(--black);
  margin-top: 2.1rem;
}
.article-body p { margin-bottom: 1.1rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }
  .floating-metrics { grid-template-columns: 1fr; }
  .hero-dashboard {
    min-height: 480px;
    margin-top: 2rem;
  }
  .section { padding: 4.8rem 0; }
  .floating-card.one { right: 1rem; }
  .floating-card.two { left: 1rem; }
}
@media (max-width: 575.98px) {
  .display-title { font-size: 2.45rem; }
  .btn { width: 100%; }
  .hero-dashboard {
    min-height: 520px;
    padding: .8rem;
  }
  .insight-panel,
  .strategy-panel {
    width: 100%;
  }
  .floating-card {
    position: relative;
    inset: auto !important;
    margin-top: .65rem;
    animation: none;
  }
  .floating-card.four { margin-bottom: .5rem; }
}
.navbar {
    background: #000;
    padding: 15px 0;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.brand-x {
    color: #2563eb;
    font-size: 1.3rem;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #2563eb;
}

.social-icons a {
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #2563eb;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.service-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card .btn{
    margin-top:auto;
    width:fit-content;
}

/* --- Global Container & Spacing --- */
body { margin: 0; font-family: 'Segoe UI', sans-serif; background: #ffffff; color: #333; }

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 40px 100px 40px; /* 150px top padding ensures no navbar overlap */
}

/* --- Section Design --- */
section {
    padding: 80px 0; /* Significant whitespace between sections */
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.2; }
h2 { font-size: 2.5rem; margin-bottom: 40px; color: #007bff; }
p { font-size: 1.2rem; line-height: 1.8; margin-bottom: 20px; color: #555; }

.hero-image {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
}

/* --- CTA Button --- */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
}
.cta-button:hover { background-color: #0056b3; }

/* --- Floating Buttons --- */
.floaters { position: fixed; bottom: 40px; right: 40px; display: flex; flex-direction: column; gap: 20px; z-index: 1000; }
.btn-round {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    
    /* ADD THIS LINE TO INCREASE ICON SIZE */
    font-size: 32px; 
}
.btn-round:hover { transform: scale(1.1); }
.bg-whatsapp { background-color: #25d366; }
.bg-call { background-color: #007bff; }