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

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #ffffff;
  color: #1a2332;
  overflow-x: hidden;
  line-height: 1.6;
}
img { 
  max-width: 100%; 
  display: block; 
}

a { 
  text-decoration: none; 
}

/*CSS VARIABLES*/

:root {
  --blue:#203e5f;
  --blue-dark: #13283d;
  --blue-light: #e8f0fd;
  --navy: #0d1f3c;
  --text: #1a2332;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg-alt: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* UTILITY*/

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.bg-alt { 
  background: var(--bg-alt); 
}

/*NAVBAR*/

.nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 900;
  background: #0d1f3c;
  /* backdrop-filter: blur(12px); */
  transition: box-shadow .3s;
}

.nav.scrolled { 
  box-shadow: 0 4px 24px rgba(0,0,0,0.09); 
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: auto;
  padding: 10px 0px 10px 0px;
}

.nav__logo {
  display: flex; 
  align-items: center; 
  gap: 11px; 
  text-decoration: none;
}

.logo-mark {
  width: 42px; 
  height: 42px; 
  border-radius: 10px;
  background: var(--navy);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 1rem; 
  font-weight: 800; 
  color: #fff; 
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-mark span { 
  color: #4da3ff; 
  font-size: .75rem; 
  font-weight: 700; 
}

.logo-text {
  display: flex; 
  flex-direction: column; 
  gap: 1px;
}

.logo-text strong {
  font-size: .92rem; 
  font-weight: 800; 
  color: #fff; 
  line-height: 1.2;
}

.logo-text small {
  font-size: .65rem; 
  color: rgba(255,255,255,.45); 
  letter-spacing: .08em; 
  text-transform: uppercase;
}

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

.nav__links a {
  font-size: .88rem; 
  font-weight: 600; 
  color: #fff; 
  transition: color .2s;
}

.nav__links a:hover {
  color: #9bacbe; 
}

.nav__cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: .48rem 1.2rem;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background .2s, transform .15s !important;
}

.nav__cta:hover { 
  background: var(--blue-dark) !important; 
  transform: translateY(-1px); 
}

.nav__burger {
  display: none;
  flex-direction: column; 
  gap: 5px;
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 6px;
}

.nav__burger span {
  display: block; 
  width: 23px; 
  height: 2px;
  background: #fff;
  border-radius: 2px; 
  transition: all .3s;
}

/*   
   MOBILE DRAWER
   */
.drawer {
  position: fixed; 
  top: 68px; 
  left: 0; 
  right: 0; 
  z-index: 850;
  background: #fff; 
  border-bottom: 1px solid var(--border);
  display: flex; 
  flex-direction: column;
  transform: translateY(-10px); 
  opacity: 0; 
  pointer-events: none;
  transition: all .25s ease;
}

.drawer.open { 
  transform: none; 
  opacity: 1; 
  pointer-events: auto; 
}

.drawer__link {
  padding: 14px 24px; 
  font-size: .95rem; 
  font-weight: 600;
  color: var(--text); 
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.drawer__link:hover { 
  background: var(--bg-alt);
  color: var(--blue); 
}

.drawer__cta {
  margin: 14px 24px; 
  padding: 12px 20px !important; 
  border: none !important;
  background: var(--blue);
   color: #fff !important; 
   border-radius: 8px;
  text-align: center; 
  font-weight: 700;
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 840;
  background: rgba(0,0,0,0.18); 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity .25s;
}

.drawer__overlay.show { 
  opacity: 1; 
  pointer-events: auto; 
}

/*BUTTONS*/

.btn {
  display: inline-flex; 
  align-items: center;
  gap: 6px;
  padding: .75rem 1.75rem; 
  border-radius: 9px;
  font-size: .92rem; 
  font-weight: 700; 
  cursor: pointer; 
  border: none;
  transition: all .2s; 
  text-decoration: none;
}

.btn--primary {
    background: #203E5F;
    color: #fff;
    box-shadow: 0 4px 18px rgb(41 63 107 / 30%);
}

.btn--primary:hover { 
  background:#13283d; 
  transform: translateY(-2px); 
  box-shadow: 0 8px 28px rgba(29,91,212,.4); 
}

.btn--ghost { 
  background: transparent; 
  color: var(--navy); 
  border: 1.5px solid var(--border); 
}

.btn--ghost:hover { 
  border-color:#13283d; 
  color: #13283d; 
  transform: translateY(-2px); 
}

.btn--white { 
  background: #fff; 
  color: #203E5F; 
  font-weight: 700; 
}

.btn--white:hover {
  background:#13283d; 
  transform: translateY(-2px); 
}

.btn--full { 
  width: 100%; 
  justify-content: center; 
}

/*   
   HERO
   */
.hero {
  padding: 120px 0 72px;
  background: linear-gradient(155deg, #f0f5ff 0%, #ffffff 55%);
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; 
  top: -100px; 
  right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(29,91,212,0.06) 0%, transparent 70%);
  border-radius: 50%; 
  pointer-events: none;
}
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero__trust span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.hero__label {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  font-size: .78rem; 
  font-weight: 700; 
  letter-spacing: .07em;
  text-transform: uppercase; 
  color: var(--blue);
  background: var(--blue-light); 
  padding: .38rem 1rem; 
  border-radius: 100px;
  margin-bottom: 1.6rem;
}

.dot {
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background: var(--blue);
  animation: pulse 2s infinite; 
  flex-shrink: 0;
}

@keyframes pulse { 
  0%,100%{opacity:1} 
  50%{opacity:.35} 
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; 
  line-height: 1.1;
  color: var(--navy); 
  margin-bottom: 1.2rem;
}

.hero__title em {
    font-style: normal;
    color: #174c87;
}

.hero__desc {
  font-size: 1rem; 
  color: var(--muted);
  max-width: 480px; 
  margin-bottom: 2rem; 
  line-height: 1.75;
}

.hero__btns {
   display: flex; 
   gap: 12px; 
   flex-wrap: wrap; 
   margin-bottom: 2.5rem; 
  }

.hero__stats {
  display: flex; 
  align-items: center;
  gap: 24px; 
  flex-wrap: wrap;
}

.stat { 
  display: flex; 
  flex-direction: column;
  gap: 2px; 
}

.stat__num { 
  font-size: 1.5rem; 
  font-weight: 800; 
  color: #203E5F; 
}

.stat__label { 
  font-size: .72rem; 
  text-transform: uppercase; 
  letter-spacing: .09em; 
  color: var(--muted); 
}

.stat__divider { 
  width: 1px; 
  height: 32px; 
  background: var(--border); 
}

/*   
   HERO SLIDER
   */
.hero__slider { 
  position: relative; 
}


.slide[data-index="3"] .feat-check { background: #eff6ff; color: #1d5bd4; }
.slide[data-index="4"] .feat-check { background: #f0fdf4; color: #16a34a; }
.slide[data-index="5"] .feat-check { background: #fdf4ff; color: #9333ea; }

.slide[data-index="3"] .slide__cta { background: #eff6ff; color: #1d5bd4; }
.slide[data-index="3"] .slide__cta:hover { background: #1d5bd4; color: #fff; }
.slide[data-index="4"] .slide__cta { background: #f0fdf4; color: #16a34a; }
.slide[data-index="4"] .slide__cta:hover { background: #16a34a; color: #fff; }
.slide[data-index="5"] .slide__cta { background: #fdf4ff; color: #9333ea; }
.slide[data-index="5"] .slide__cta:hover { background: #9333ea; color: #fff; }

.slide__features,
.slide__features li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  padding-inline-start: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.slide__features {
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
  margin-bottom: 24px !important;
  margin-left: 0px ;
}

.slide__features li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: .84rem !important;
  font-weight: 500 !important;
  color: #1a2332 !important;
}

.slider-wrapper {
  border-radius: 20px;
  border: 1px solid #e8edf5;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0,0,0,.04),
    0 8px 24px rgba(29,91,212,.08),
    0 24px 56px rgba(29,91,212,.07);
}

.slide {
  display: none;
  padding: 32px 30px 28px;
  background: #fff;
  animation: s-in .32s ease both;
}

.slide.active { 
  display: block; 
}

@keyframes s-in {
  from { 
    opacity: 0; 
    transform: translateX(14px); 
  }

  to   { 
    opacity: 1;
    transform: none; 
  }

}

.slide__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.slide__icon-wrap {
  width: 50px; 
  height: 50px;
  border-radius: 13px;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.slide__icon-wrap svg { 
  width: 26px; 
  height: 26px;
}

.slide__icon-wrap--design { 
  background: #eff6ff; 
  color: #1d5bd4; 
}

.slide__icon-wrap--seo    { 
  background: #f0fdf4; 
  color: #16a34a; 
}

.slide__icon-wrap--mgmt   { 
  background: #fdf4ff; 
  color: #9333ea; 
}

.slide__tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  padding: .28rem .8rem;
  border-radius: 100px;
}

.slide__title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #0d1f3c;
  line-height: 1.25;
  margin-bottom: 10px;
}

.slide__desc {
  font-size: .86rem;
  color: #64748b;
  line-height: 1.72;
  margin-bottom: 20px;
}

.slide__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.slide__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  font-weight: 500;
  color: #1a2332;
}

.feat-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800;
  flex-shrink: 0;
}

.slide[data-index="0"] 
.feat-check { 
  background: #eff6ff; 
  color: #1d5bd4; 
}

.slide[data-index="1"] 
.feat-check { background: #f0fdf4; 
  color: #16a34a; 
}

.slide[data-index="2"]
.feat-check { background: #fdf4ff; 
  color: #9333ea; 
}

.slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .84rem;
  font-weight: 700;
  padding: .55rem 1.15rem;
  border-radius: 8px;
  transition: background .2s, color .2s, transform .15s;
}

.slide__cta:hover { 
  transform: translateY(-1px); 
}

.slide[data-index="0"] 
.slide__cta { background: #eff6ff; 
color: #1d5bd4; 
}

.slide[data-index="0"]
.slide__cta:hover { 
  background: #1d5bd4; 
  color: #fff; 
}

.slide[data-index="1"] 
.slide__cta { background: #f0fdf4; 
color: #16a34a; 
}

.slide[data-index="1"] 
.slide__cta:hover { 
  background: #16a34a; 
  color: #fff; 
}

.slide[data-index="2"] 
.slide__cta { background: #fdf4ff; 
  color: #9333ea; 
}

.slide[data-index="2"] .slide__cta:hover { 
  background: #9333ea; 
  color: #fff; 
}

.slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 2px;
}

.slider-dots { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  border: none; padding: 0; 
  cursor: pointer;
  transition: all .3s;
}

.slider-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #1d5bd4;
}

.slider-arrows { 
  display: flex; 
  gap: 6px; 
}

.slider-arrow {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  display: flex; 
  align-items: center; 
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.slider-arrow svg {
  width: 17px;
  height: 17px;
  color: #0d1f3c;
  pointer-events: none;
}

.slider-arrow:hover { 
  background: #1d5bd4; 
  border-color: #1d5bd4; 
}

.slider-arrow:hover svg { 
  color: #fff; 
}

/*   
   SECTIONS
   */
.section { 
  padding: 50px 0; 
}

.section__head { 
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem; 
}

.section__label {
  font-size: .75rem; 
  font-weight: 700; 
  letter-spacing: .13em;
  text-transform: uppercase; 
  color: var(--blue); 
  margin-bottom: .5rem;
}

.section__title {
  font-size: 24;
  font-weight: 800; 
  color: var(--navy); 
  margin-bottom: .8rem; 
  line-height: 1.2;
}

.section__sub { 
  color: var(--muted); 
  font-size: .97rem; 
  line-height: 1.75; 
}

/*   
   SERVICE CARDS
   */



/* Card Fix — Override Elementor */
.services__grid .card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 24px !important;
}

.services__grid .card .card__icon {
  font-size: 1.8rem !important;
  margin-bottom: 14px !important;
  display: block !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
}

.services__grid .card h3 {
  font-size: .97rem !important;
  font-weight: 800 !important;
  color: #0d1f3c !important;
  margin-bottom: 8px !important;
  margin-left: 0 !important;
  float: none !important;
  clear: both !important;
}

.services__grid .card p {
  font-size: .86rem !important;
  color: #64748b !important;
  line-height: 1.7 !important;
  margin-bottom: 14px !important;
  margin-left: 0 !important;
  float: none !important;
  clear: both !important;
}

.services__grid .card .card__link {
  display: inline-block !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: #203e5f !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  float: none !important;
  clear: both !important;
  padding: 0 !important;
}


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

.card {
  background: #fff; 
  border: 1px solid var(--border); 
  border-radius: var(--radius);
  padding: 20px 20px;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.card:hover { 
  border-color: var(--blue); 
  box-shadow: var(--shadow-lg); 
  transform: translateY(-4px); 
}

.card--accent { 
  border-color: var(--blue); 
  background: #f5f8ff; 
}

.card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
  float: none;
}

.card h3 {
  font-size: .97rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
  margin-left: 0;
}

.card__link {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  margin-left: 0;
  margin-top: 0;
  transition: letter-spacing .2s;
}

.card__link:hover { 
  letter-spacing: .02em; 
}

.trust-bar {
  padding-block: 28px;
  background-color: #0d1f3c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-bar__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.trust-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse 2s infinite;
}

.trust-bar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-bar__group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-bar__label {
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-bar__tools,
.trust-bar__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background-color: rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: background-color 0.20s ease,
              border-color 0.20s ease,
              color 0.20s ease;
}

.tool-badge:hover {
  background-color: rgba(29, 91, 212, 0.25);
  border-color: rgba(29, 91, 212, 0.50);
  color: #ffffff;
}

.trust-bar__divider {
  width: 1px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.10);
}

.flag-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/*   
   WHY US
   */
.why__grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center;
}

.WHY_US_content {
    text-align: center;
}

.metrics-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px; 
  padding: 32px;
  box-shadow: var(--shadow);
}

.metrics-card h3 { 
  font-size: .9rem; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 24px;
}

.metric { 
  margin-bottom: 20px; 
}

.metric:last-child { 
  margin-bottom: 0; 
}

.metric__head {
  display: flex; 
  justify-content: space-between;
  font-size: .83rem; 
  color: var(--text); 
  margin-bottom: 7px; 
  font-weight: 600;
}

.metric__head strong { 
  color: var(--blue); 
}

.metric__bar {
  height: 7px; 
  background: var(--bg-alt); 
  border-radius: 4px; 
  overflow: hidden;
}

.metric__fill {
  height: 100%; 
  width: 0; 
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), #4da3ff);
  transition: width 1.2s ease;
}

.metric__fill.animated { 
  width: var(--w); 
}

.why__list { 
  list-style: none;
  margin-top: 24px;
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.why__list li { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
}

.why__check {
  width: 24px; 
  height: 24px; 
  border-radius: 50%;
  background: var(--blue-light); 
  color: var(--blue);
  font-size: .72rem; 
  font-weight: 800; 
  flex-shrink: 0;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-top: 2px;
}

.why__list li div { 
  display: flex; 
  flex-direction: column; 
  gap: 2px;
}

.why__list li strong { 
  font-size: .9rem; 
  font-weight: 700; 
  color: var(--navy); 
}

.why__list li span { 
  font-size: .84rem; 
  color: var(--muted); 
}
/*   
   PROCESS
   */
.process__steps {
  display: grid; 
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; 
  gap: 12px;
}

.step {
  background: #fff; 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  padding: 24px 20px;
}

.step__num {
  font-size: 1.6rem; 
  font-weight: 800; 
  color:#203E5F;
  line-height: 1; 
  margin-bottom: 10px;
}

.step h3 { 
  font-size: .88rem; 
  font-weight: 800; 
  color: var(--navy); 
  margin-bottom: 7px; 
}

.step p { 
  font-size: .82rem; 
  color: var(--muted); 
  line-height: 1.65; 
}

.step__arrow {
  font-size: 1.2rem; 
  color: var(--border); 
  font-weight: 700;
  display: flex; 
  align-items: flex-start; 
  padding-top: 24px;
}

/*   
   TESTIMONIALS
   */
.testi__grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
}

.testi {
  background: #fff; 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}

.testi:hover { 
  border-color: var(--blue); 
  box-shadow: var(--shadow); 
}

.testi__stars { color: #f59e0b; 
  font-size: .9rem; 
  letter-spacing: 2px; 
  margin-bottom: 14px; 
}

.testi p {
  font-size: .88rem; 
  color: var(--muted); 
  line-height: 1.75;
  margin-bottom: 18px; 
  font-style: italic;
}

.testi__author {
  display: flex; 
  align-items: center; 
  gap: 10px;
}

.testi__avatar {
  width: 38px; 
  height: 38px; 
  border-radius: 50%;
  background: var(--blue); 
  color: #fff;
  font-size: .78rem; 
  font-weight: 800;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0;
}

.testi__author strong { 
  display: block; 
  font-size: .88rem; 
  font-weight: 700; 
  color: var(--navy); 
}

.testi__author small { 
  font-size: .76rem; 
  color: var(--muted);
}

/*   
   CTA BAND
   */

.cta-band {
   background: var(--navy); 
   padding: 60px 0; 
  }

.cta-band__inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
  flex-wrap: wrap;
}

.cta-band h2 { 
  font-size: 1.7rem; 
  font-weight: 800; 
  color: #fff; 
}

.cta-band p { 
  color: rgba(255,255,255,.6); 
  font-size: .95rem; 
  margin-top: 4px; 
}

/*   
   CONTACT
   */
.contact__grid { 
  display: grid;
   grid-template-columns: 1fr 1.6fr; 
   gap: 60px;
  align-items: start; 
}

.contact__info .section__title { 
  font-size: 1.8rem; 
}

.contact__details { 
  margin-top: 28px; 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.contact__item { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
}

.contact__item > span {
  width: 38px; 
  height: 38px; 
  background: var(--blue-light);
   border-radius: 9px;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: .95rem; 
  flex-shrink: 0;
}

.contact__item strong { 
  display: block; 
  font-size: .86rem; 
  font-weight: 700; 
  color: var(--navy); 
}

.contact__item small { 
  font-size: .83rem;
  color: var(--muted); 
  }

.contact__form { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; gap: 14px; 
}

.form-group { 
  display: flex; 
  flex-direction: column; 
  gap: 5px; 
}

.form-group label { 
  font-size: .78rem; 
  font-weight: 700; 
  color: var(--muted); 
  text-transform: uppercase; 
  letter-spacing: .06em; 
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem; 
  background: var(--bg-alt); 
  border: 1.5px solid var(--border);
  border-radius: 9px; 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: .9rem;
  color: var(--text); 
  outline: none; 
  transition: border-color .2s, background .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { 
  border-color: var(--blue); 
  background: #fff; 
}

.form-group textarea { 
  min-height: 120px; 
  resize: vertical; 
}

/*   
   FOOTER
   */
.footer { 
  background: var(--navy);
   padding: 56px 0 0; 
  }

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* .footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand .logo-mark { background: rgba(255,255,255,.1); }
.footer__brand .logo-text strong { color: #fff; }
.footer__brand .logo-text small { color: rgba(255,255,255,.4); }
.footer__brand p { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 8px; } */


.footer__col h4 { 
  font-size: .8rem; 
  font-weight: 800; 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  color: rgba(255,255,255,.5); 
  margin-bottom: 14px; 
}

.footer__col { 
  display: flex; 
  flex-direction: column; 
}

.footer__col a { 
  font-size: .84rem; 
  color: rgba(255,255,255,.45); 
  padding: 5px 0; 
  transition: color .2s; 
}

.footer__col a:hover {
  color: #fff; 
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 12px;
}

.footer__bottom p { 
  font-size: .8rem; 
  color: rgba(255,255,255,.35); 
}

.footer__bottom strong { 
  color: rgba(255,255,255,.6); 
}

.footer__social { 
  display: flex; 
  gap: 8px; 
}

.footer__social a {
  width: 32px; 
  height: 32px; 
  border-radius: 7px;
  background: rgba(255,255,255,.07); 
  border: 1px solid rgba(255,255,255,.1);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: rgba(255,255,255,.4); 
  font-size: .8rem; 
  font-weight: 700; 
  transition: all .2s;
}

.footer__social a:hover { 
  background: var(--blue); 
  border-color: var(--blue);
  color: #fff; 
}

/*   
   LIVE CHAT WIDGET
   */
.chat-widget {
  position: fixed; 
  bottom: 28px;
  right: 24px; 
  z-index: 1000;
}

.chat-bubble {
  width: 56px; 
  height: 56px;
  border-radius: 50%;
  background: var(--blue); 
  color: #fff; 
  border: none; 
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(29,91,212,.45);
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.chat-bubble:hover {
  transform: scale(1.07); 
  box-shadow: 0 10px 36px rgba(29,91,212,.55); 
}

.chat-bubble svg { 
  width: 22px; 
  height: 22px; 
}

.chat-badge {
  position: absolute; 
  top: -2px; 
  right: -2px;
  width: 18px; 
  height: 18px; 
  border-radius: 50%;
  background: #ef4444; 
  color: #fff; 
  font-size: .65rem; 
  font-weight: 800;
  display: flex; 
  align-items: center; 
  justify-content: center;
  border: 2px solid #fff;
}

.chat-box {
  position: absolute; 
  bottom: 70px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 18px; 
  box-shadow: 0 12px 50px rgba(0,0,0,.18);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: scale(0.9) translateY(10px); 
  opacity: 0; 
  pointer-events: none;
  transform-origin: bottom right;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}

.chat-box.open { 
  transform: none; 
  opacity: 1; 
  pointer-events: auto; 
}

.chat-header {
  background: var(--navy); 
  padding: 16px 18px;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
}

.chat-header__info { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.chat-avatar {
  width: 36px; 
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff; 
  font-size: .85rem; 
  font-weight: 800;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0;
}

.chat-header strong { 
  display: block; 
  color: #fff; 
  font-size: .88rem; 
  font-weight: 700; 
}

.chat-header small { 
      color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    display: flex;
    align-items: center;
    gap: 35px;
    margin: -5px 0px 0px 10px; 
}

.online-dot { 
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background: #22c55e; 
  display: inline-block; 
}

.chat-close-btn { 
  background: none; 
  border: none; 
  cursor: pointer; 
  color: rgba(255,255,255,.5); 
  font-size: .9rem; 
  padding: 4px; 
  transition: color .2s; 
}

.chat-close-btn:hover { 
  color: #fff; 
}

.chat-messages {
  padding: 16px; 
  max-height: 220px; 
  overflow-y: auto;
  display: flex; 
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin; 
  scrollbar-color: var(--border) transparent;
}

.chat-msg { 
  display: flex; 
  flex-direction: column; 
  gap: 3px; 
}

.chat-msg small { 
  font-size: .68rem; 
  color: var(--muted); 
  padding-left: 4px; 
}

.chat-msg--agent { 
  align-items: flex-start;
}

.chat-msg--user { 
  align-items: flex-end; 
}

.msg-bubble {
  padding: 10px 14px; 
  border-radius: 14px;
  font-size: .85rem; 
  line-height: 1.55;
  max-width: 85%;
}

.chat-msg--agent .msg-bubble {
  background: var(--bg-alt); 
  color: var(--text); 
  border-bottom-left-radius: 4px; 
}

.chat-msg--user .msg-bubble { 
  background: var(--blue); 
  color: #fff; 
  border-bottom-right-radius: 4px; 
}

.chat-quick-replies {
  padding: 0 14px 12px; 
  display: flex; gap: 6px; 
  flex-wrap: wrap;
}

.chat-quick-replies button {
  padding: 6px 12px; 
  border-radius: 100px;
  border: 1.5px solid var(--blue); 
  background: transparent;
  color: var(--blue); 
  font-size: .76rem; 
  font-weight: 700;
  cursor: pointer; 
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s; white-space: nowrap;
}

.chat-quick-replies button:hover { 
  background: var(--blue); 
  color: #fff; 
}

.chat-input-row {
  padding: 12px 14px; 
  border-top: 1px solid var(--border);
  display: flex; 
  gap: 8px; 
  align-items: center;
}

#chatInput {
  flex: 1; 
  padding: 9px 12px; 
  border: 1.5px solid var(--border);
  border-radius: 100px; 
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem; 
  outline: none; 
  transition: border-color .2s; 
  background: var(--bg-alt);
}

#chatInput:focus { 
  border-color: var(--blue); 
  background: #fff; 
}

#chatSend {
  width: 36px; 
  height: 36px;
  border-radius: 50%;
  background: var(--blue); 
  border: none; 
  color: #fff; 
  cursor: pointer;
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: background .2s, transform .15s; flex-shrink: 0;
}

#chatSend:hover { 
  background: var(--blue-dark); 
  transform: scale(1.07); 
}

#chatSend svg {
  width: 15px; 
  height: 15px; 
}

.footer-logo {
    margin: -27px 0px 20px 394px !important;
}


/*   
   REVEAL ANIMATION
   */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/*  
   RESPONSIVE — TABLET
   */
@media (max-width: 1024px) {
  .hero__inner { 
    grid-template-columns: 1fr; 
    gap: 36px; 
  }

  .hero__slider { 
    max-width: 500px; 
  }
  .services__grid {
     grid-template-columns: repeat(2, 1fr); 
    }

  .process__steps { 
    grid-template-columns: 1fr 1fr; 
    gap: 16px; 
  }

  .step__arrow { 
    display: none; 
  }

  .footer__grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 32px; 
  }


}

@media (max-width: 900px) {
  .nav__links { 
    display: none; 
  }

  .nav__burger { 
    display: flex; 
  }

  .why__grid { 
    grid-template-columns: 1fr; 
    gap: 36px; 
  }

  .contact__grid { 
    grid-template-columns: 1fr; 
    gap: 36px; 
  }

  .testi__grid { 
    grid-template-columns: 1fr; 
  }

}

/*   
   RESPONSIVE — MOBILE
   */
@media 
  (max-width: 640px) {

    img.mainlogo {
      width: 160px;
      margin-bottom: 0px;
   }
   
    .drawer{
      background: #0D1F3C;
      width: 200px;
      border:none;
    }

    a.drawer__link.drawer__cta {
        display: none;
    }

    .drawer__link{
        padding: 10px 24px;
        color: #ffffff;
        border:none;
    }

   .hero__label{
    font-size: 12px;
    letter-spacing: 0.07em;
    background: #e8f0fda6;
    padding: 6px 4px;
    border-radius: 5px;
    margin-bottom: 18px;
   }

   .hero__title{
      font-size: 24px;
      margin-bottom: 15px;
   }
   
   .hero__desc {
      font-size: 14px;
      margin-bottom: 20px;
   }


    .section { 
      padding: 40px 0; 
    }

    .section__title {
        font-size: 24px !important;
    }
    .WHY_US_content{
        margin-bottom: 20px;
    }

    .section__head {
       margin-bottom: 25px;
    }

    .hero { 
      padding: 100px 0 52px; 
    }

    .hero__inner { 
      grid-template-columns: 1fr; 
      gap: 32px; 
    }

    .hero__btns { 
      flex-direction: column; 
    }
    
    hero__btns .btn { 
      justify-content: center; 
    }

    .hero__stats {
        gap: 8px;
        grid-template-columns: 1fr 1fr 1fr ;
        display: grid;
        text-align: center;
    }

    .stat__divider { 
      display: none; 
    }

    .hero__slider {
       max-width: 100%; 
      }

    .slide { 
      padding: 24px 20px 20px; 
    }

    .slide__title { 
      font-size: 1.1rem; 
    }

    .services__grid { 
      grid-template-columns: 1fr;
    }

    .process__steps { 
      grid-template-columns: 1fr; 
    }

    .footer-logo, img {
    width: 160px;
    margin: 0px 0px 20px 8px;
}

    .form-row { 
      grid-template-columns: 1fr; 
    }

    .footer__grid { 
      grid-template-columns: 1fr 1fr 1fr; 
      gap: 20px; 
    }

    .footer__bottom { 
      flex-direction: column; 
      text-align: center; 
    }

    .cta-band__inner { 
      flex-direction: column;
      text-align: center; 
    }

    .chat-box { 
      width: calc(100vw - 32px);
       right: -4px; 
      }

    .testi__grid { 
      grid-template-columns: 1fr;
     }


.services__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
    text-align: left !important;
  }

  .card__icon {
    font-size: 1.6rem !important;
    margin-bottom: 12px !important;
    display: block !important;
    float: none !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
  }

  .card h3 {
    font-size: .95rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    margin-left: 0 !important;
    clear: both !important;
  }

  .card p {
    font-size: .84rem !important;
    margin-left: 0 !important;
    margin-bottom: 12px !important;
    line-height: 1.65 !important;
  }

  .card .card__link {
    margin-left: 0 !important;
    margin-top: 0 !important;
    display: inline-block !important;
  }

}