html { overflow-x: hidden; }
/* =========================================================================
   EIPP Solutions — Claymorphism Design System
   Bootstrap is used ONLY for grid/utilities (loaded as bootstrap-grid.min.css).
   Every visible component here is fully custom.
   ========================================================================= */

:root {
  --clr-primary: #1877C9;
  --clr-primary-dark: #0F5EA8;
  --clr-light-blue: #9FD9E8;
  --clr-green-dark: #1E6B3A;
  --clr-green-accent: #2FA84F;
  --clr-bg: #F7FAFC;
  --clr-card: #FFFFFF;
  --clr-heading: #1F2937;
  --clr-body: #6B7280;

  --grad-primary: linear-gradient(135deg, #1877C9, #0F5EA8);
  --grad-secondary: linear-gradient(135deg, #1877C9, #9FD9E8);
  --grad-success: linear-gradient(135deg, #2FA84F, #1E6B3A);

  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-clay: 10px 10px 24px rgba(15, 94, 168, 0.10), -8px -8px 20px rgba(255, 255, 255, 0.9);
  --shadow-clay-inset: inset 4px 4px 10px rgba(15, 94, 168, 0.06), inset -4px -4px 10px rgba(255, 255, 255, 0.7);
  --shadow-soft: 0 20px 45px rgba(15, 94, 168, 0.12);
  --shadow-lift: 0 30px 60px rgba(15, 94, 168, 0.18);

  --font-heading: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-max: 1240px;
  --container-gutter: clamp(20px, 3.2vw, 32px);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --section-space: 96px;
  --section-space-tight: 72px;
  --content-max: 70ch;
  --line-height-heading: 1.24;
  --line-height-body: 1.75;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--clr-body);
  background: var(--clr-bg);
  line-height: var(--line-height-body);
  overflow-x: hidden;
  text-align: left;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--clr-heading);
  font-weight: 700;
  line-height: var(--line-height-heading);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
  text-align: left;
}

p {
  margin: 0 0 var(--space-3);
  max-width: var(--content-max);
  line-height: var(--line-height-body);
  text-align: left;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.eipp-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--clr-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 9999;
}
.eipp-skip-link:focus { left: 0; }

/* ---------------------------------------------------------------------
   Floating background blobs
   --------------------------------------------------------------------- */
.eipp-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
.eipp-blob--one {
  width: 520px; height: 520px;
  top: -180px; right: -160px;
  background: var(--grad-secondary);
}
.eipp-blob--two {
  width: 420px; height: 420px;
  bottom: 10%; left: -160px;
  background: var(--grad-success);
  opacity: 0.22;
}

/* ---------------------------------------------------------------------
   Section rhythm
   --------------------------------------------------------------------- */
.eipp-section { padding: var(--section-space) 0; position: relative; }
.eipp-section--tight { padding: var(--section-space-tight) 0; }
.eipp-section--alt { background: #EFF6FB; }

.eipp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: rgba(24, 119, 201, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eipp-eyebrow i { color: var(--clr-green-accent); }

.eipp-section__head { max-width: 760px; margin-bottom: var(--space-8); }
.eipp-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eipp-section__head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: var(--space-3); }
.eipp-section__head p { font-size: 18px; line-height: 1.8; max-width: 65ch; }

/* ---------------------------------------------------------------------
   Header / Navigation
   --------------------------------------------------------------------- */
.eipp-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 22px 0;
  background: rgba(247, 250, 252, 0.75);
  backdrop-filter: blur(14px);
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.eipp-header.is-scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(15, 94, 168, 0.10);
}

.eipp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.eipp-brand { display: flex; align-items: center; gap: 10px; }
.eipp-brand img { border-radius: 10px; }
.eipp-brand__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--clr-heading);
  text-align: left;
}
.eipp-brand__text span { color: var(--clr-primary); }
.eipp-brand--light .eipp-brand__text { color: #fff; }
.eipp-brand--light .eipp-brand__text span { color: var(--clr-light-blue); }

.eipp-nav { display: flex; align-items: center; gap: 28px; }
.eipp-nav > ul {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.eipp-nav > ul > li {
    position: relative;
}
.eipp-nav ul a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--clr-heading);
  position: relative;
  padding: 6px 0;
  text-align: center;
}
.eipp-nav ul a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad-primary);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.eipp-nav ul a:hover::after,
.eipp-nav ul a.active::after { width: 100%; }
.eipp-nav ul a.active { color: var(--clr-primary); }

.eipp-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.eipp-nav-toggle span { width: 26px; height: 2px; background: var(--clr-heading); border-radius: 2px; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.eipp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  text-align: center;
}
.eipp-btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 14px 30px rgba(24, 119, 201, 0.35);
}
.eipp-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(24, 119, 201, 0.45);
}
.eipp-btn--secondary {
  background: #fff;
  color: var(--clr-primary);
  box-shadow: var(--shadow-clay);
}
.eipp-btn--secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.eipp-btn--green {
  background: var(--grad-success);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 168, 79, 0.35);
}
.eipp-btn--green:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(47, 168, 79, 0.45); }
.eipp-btn--nav { padding: 12px 26px; font-size: 14px; }
.eipp-btn--block { width: 100%; }
.eipp-btn--lg { padding: 18px 40px; font-size: 16px; }

/* ---------------------------------------------------------------------
   Clay cards
   --------------------------------------------------------------------- */
.eipp-card {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-clay);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.eipp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }

.eipp-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--grad-secondary);
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-clay-inset);
}
.eipp-card__icon--green { background: var(--grad-success); }

.eipp-card h3 { font-size: 20px; margin-bottom: 12px; text-align: left; }
.eipp-card p { margin-bottom: 0; text-align: left; }
.eipp-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px; font-weight: 600; color: var(--clr-primary); text-align: left; }
.eipp-card__link i { transition: transform 0.2s ease; }
.eipp-card:hover .eipp-card__link i { transform: translateX(4px); }

.eipp-glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
}

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.eipp-hero {
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.eipp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eipp-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  text-align: left;
}
.eipp-hero h1 .eipp-highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eipp-hero p { font-size: 19px; max-width: 56ch; margin-bottom: 32px; text-align: left; }
.eipp-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; justify-content: flex-start; }

.eipp-hero__art { position: relative; }
.eipp-hero__art img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.eipp-hero__badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clr-heading);
  font-size: 14px;
  text-align: center;
}
.eipp-hero__badge i { color: var(--clr-green-accent); font-size: 20px; }
.eipp-hero__badge--top { top: 6%; left: -6%; }
.eipp-hero__badge--bottom { bottom: 8%; right: -4%; }

/* ---------------------------------------------------------------------
   Stats / counters
   --------------------------------------------------------------------- */
.eipp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.eipp-stat {
  text-align: center;
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 34px 20px;
  box-shadow: var(--shadow-clay);
}
.eipp-stat__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 42px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.eipp-stat__label { font-size: 14px; color: var(--clr-body); margin-top: 6px; text-align: center; }

/* ---------------------------------------------------------------------
   Logo carousel (Swiper)
   --------------------------------------------------------------------- */
.eipp-logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-clay);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clr-body);
  font-size: 15px;
  text-align: center;
}

/* ---------------------------------------------------------------------
   Process steps
   --------------------------------------------------------------------- */
.eipp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.eipp-process__step { position: relative; text-align: center; }
.eipp-process__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(24,119,201,0.3);
  text-align: center;
}

/* ---------------------------------------------------------------------
   Testimonials (Swiper)
   --------------------------------------------------------------------- */
/* .eipp-testimonial {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-clay);
  margin: 10px 4px 40px;
} */


.eipp-testimonial {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 30px 35px;       /* Reduced from 40px */
  max-width: 850px;         /* Limits card width */
  margin: 10px auto 40px;   /* Centers card */
  box-shadow: var(--shadow-clay);
}
.eipp-testimonial__quote { font-size: 18px; color: var(--clr-heading); font-style: italic; text-align: left; }
.eipp-testimonial__person { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.eipp-testimonial__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-secondary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--font-heading);
  text-align: center;
}
.eipp-testimonial__name { font-weight: 700; color: var(--clr-heading); font-family: var(--font-heading); text-align: left; }
.eipp-testimonial__role { font-size: 13px; color: var(--clr-body); text-align: left; }

/* ---------------------------------------------------------------------
   CTA band
   --------------------------------------------------------------------- */
.eipp-cta-band {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.eipp-cta-band h2 { color: #fff; margin-bottom: 12px; text-align: left; }
.eipp-cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; max-width: 460px; text-align: left; }
.eipp-cta-band__art { position: absolute; right: -40px; bottom: -40px; width: 260px; opacity: 0.9; }

/* ---------------------------------------------------------------------
   Timeline (About)
   --------------------------------------------------------------------- */
.eipp-timeline { position: relative; padding-left: 40px; border-left: 3px dashed rgba(24,119,201,0.25); }
.eipp-timeline__item { position: relative; padding-bottom: 44px; text-align: left; }
.eipp-timeline__item::before {
  content: '';
  position: absolute;
  left: -49px; top: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 0 6px rgba(24,119,201,0.15);
}
.eipp-timeline__year { font-family: var(--font-heading); font-weight: 700; color: var(--clr-primary); text-align: left; }

/* ---------------------------------------------------------------------
   Forms
   --------------------------------------------------------------------- */
.eipp-form-card {
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-clay);
}
.eipp-field { position: relative; margin-bottom: 26px; }
.eipp-field input,
.eipp-field textarea,
.eipp-field select {
  width: 100%;
  border: none;
  background: #F1F6FA;
  border-radius: var(--radius-md);
  padding: 20px 20px 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--clr-heading);
  box-shadow: var(--shadow-clay-inset);
  transition: box-shadow 0.25s ease;
  text-align: left;
}
.eipp-field textarea { min-height: 130px; resize: vertical; padding-top: 24px; }
.eipp-field input:focus,
.eipp-field textarea:focus,
.eipp-field select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(24,119,201,0.25);
}
.eipp-field label {
  position: absolute;
  left: 20px; top: 18px;
  font-size: 14px;
  color: var(--clr-body);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  text-align: left;
}
.eipp-field input:focus + label,
.eipp-field input:not(:placeholder-shown) + label,
.eipp-field textarea:focus + label,
.eipp-field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-primary);
}
.eipp-field--hp { position: absolute; left: -9999px; top: -9999px; }

.eipp-form-msg { border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 20px; font-size: 14px; text-align: left; }
.eipp-form-msg--success { background: rgba(47,168,79,0.1); color: var(--clr-green-dark); }
.eipp-form-msg--error { background: rgba(220,38,38,0.08); color: #B91C1C; }

/* ---------------------------------------------------------------------
   Misc
   --------------------------------------------------------------------- */
.eipp-tag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.eipp-tag {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clr-heading);
  box-shadow: var(--shadow-clay);
  transition: transform 0.25s ease;
}
.eipp-tag:hover { transform: translateY(-6px); }
.eipp-tag i { display: block; font-size: 26px; color: var(--clr-primary); margin-bottom: 10px; }

/* .eipp-page-hero {
  background: var(--grad-primary);
  padding: 160px 0 90px;
  color: #fff;
  text-align: center;
}
.eipp-page-hero h1 { color: #fff; font-size: clamp(32px, 4.5vw, 48px); text-align: center; }
.eipp-page-hero p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto; text-align: center; } */

.eipp-page-hero {
    background: var(--grad-primary);
    padding: 110px 0 60px;
    color: #fff;
    text-align: center;
}

.eipp-page-hero h1 {
    color: #fff;
    font-size: clamp(32px, 4vw, 46px);
    text-align: center;
    margin-bottom: 16px;
}

.eipp-page-hero p {
    color: rgba(255,255,255,.9);
    max-width: 640px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .eipp-page-hero {
        padding: 95px 0 50px;
    }
}

@media (max-width: 767px) {
    .eipp-page-hero {
        padding: 80px 0 40px;
    }

    .eipp-page-hero h1 {
        font-size: 2.3rem;
    }

    .eipp-page-hero p {
        max-width: 320px;
        font-size: 1rem;
        margin-bottom: 16px;
    }
}

.eipp-breadcrumbs { margin-top: 20px; }
.eipp-breadcrumbs ol { display: flex; justify-content: center; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; text-align: center; }
.eipp-breadcrumbs li { color: rgba(255,255,255,0.75); font-size: 13px; text-align: center; }
.eipp-breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 8px; color: rgba(255,255,255,0.5); }
.eipp-breadcrumbs a { color: #fff; text-align: center; }

.eipp-map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-clay); }
.eipp-map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.eipp-error-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(90px, 18vw, 180px);
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  text-align: center;
}

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.eipp-footer {
  background: #10203A;
  padding: 88px 0 32px;
  color: rgba(255,255,255,0.65);
  margin-top: 64px;
}
.eipp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.eipp-footer__brand p { margin: 16px 0 20px; font-size: 14px; text-align: left; }
.eipp-social { display: flex; gap: 12px; }
.eipp-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
}
.eipp-social a:hover { background: var(--grad-primary); transform: translateY(-3px); }
.eipp-footer h4 { color: #fff; font-size: 15px; margin-bottom: 20px; text-align: left; }
.eipp-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.eipp-footer__col a { color: rgba(255,255,255,0.65); transition: color 0.2s ease; text-align: left; }
.eipp-footer__col a:hover { color: #fff; }
.eipp-footer__contact ul { gap: 16px; }
.eipp-footer__contact i { color: var(--clr-light-blue); margin-right: 8px; }
.eipp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
  text-align: left;
}
.eipp-footer__legal { display: flex; gap: 20px; }
.eipp-footer__legal a { color: rgba(255,255,255,0.65); text-align: left; }
.eipp-footer__legal a:hover { color: #fff; }

/* ---------------------------------------------------------------------
   AOS baseline (in case CDN is slow to init)
   --------------------------------------------------------------------- */
[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 991px) {
  .eipp-hero__grid { grid-template-columns: 1fr; }
  .eipp-hero__art { order: -1; }
  .eipp-stats { grid-template-columns: repeat(2, 1fr); }
  .eipp-process { grid-template-columns: repeat(2, 1fr); }
  .eipp-tag-grid { grid-template-columns: repeat(3, 1fr); }
  .eipp-footer__grid { grid-template-columns: 1fr 1fr; }
  .eipp-cta-band { flex-direction: column; text-align: left; padding: 48px 32px; }
  .eipp-cta-band h2 { text-align: center; }
  .eipp-cta-band p { text-align: center; }
  .eipp-cta-band__art { display: none; }
}

@media (max-width: 767px) {
  .container { padding: 0 20px; }
  .eipp-section { padding: 72px 0; }
  .eipp-section--tight { padding: 56px 0; }
  .eipp-hero { padding: 72px 0 56px; }
  .eipp-hero h1 { margin-bottom: 16px; text-align: left; }
  .eipp-hero p { font-size: 17px; margin-bottom: 24px; text-align: left; }
  .eipp-hero__ctas { flex-direction: column; align-items: flex-start; justify-content: flex-start; }
  .eipp-hero__ctas .eipp-btn { width: 100%; max-width: 280px; }
  .eipp-section__head { margin-bottom: 40px; }
  .eipp-section__head p { font-size: 16px; text-align: left; }
  .eipp-card { padding: 28px; }
  .eipp-footer { padding: 72px 0 24px; margin-top: 56px; }
  .eipp-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .eipp-footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* Certification / compliance badges */
.eipp-cert-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.eipp-cert-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-clay);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eipp-cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.eipp-cert-card--featured { background: var(--grad-primary); color: #fff; }
.eipp-cert-card--featured h3, .eipp-cert-card--featured p { color: #fff; text-align: center; }
.eipp-cert-card__icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--grad-secondary);
  color: #fff; font-size: 22px;
  text-align: center;
}
.eipp-cert-card--featured .eipp-cert-card__icon { background: rgba(255,255,255,0.2); }
.eipp-cert-card h3 { font-size: 15px; margin-bottom: 8px; text-align: center; }
.eipp-cert-card p { font-size: 13px; margin: 0; text-align: center; }

.eipp-recognized-slide {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  height: 110px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-clay);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clr-heading);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}
.eipp-recognized-slide i { font-size: 26px; color: var(--clr-primary); }

/* Avatars (leadership / team) */
.eipp-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--grad-secondary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 26px;
  font-family: var(--font-heading);
  margin: 0 auto 18px;
  box-shadow: var(--shadow-clay-inset);
  text-align: center;
}
.eipp-avatar--sm { width: 56px; height: 56px; font-size: 18px; margin: 0; }
.eipp-person-card { text-align: center; }
.eipp-person-card h3 { font-size: 17px; margin-bottom: 4px; text-align: center; }
.eipp-person-card__role { font-size: 13px; color: var(--clr-primary); font-weight: 600; margin-bottom: 12px; text-align: center; }

/* Office gallery */
.eipp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eipp-gallery__item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-clay); aspect-ratio: 4/3; }
.eipp-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.eipp-gallery__item:hover img { transform: scale(1.08); }

/* News & Media cards */
.eipp-news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-clay);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eipp-news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.eipp-news-card__thumb {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-secondary);
  color: #fff;
  font-size: 40px;
  text-align: center;
}
.eipp-news-card--featured .eipp-news-card__thumb { background: var(--grad-success); }
.eipp-news-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.eipp-news-card__meta { font-size: 12px; color: var(--clr-body); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; text-align: left; }
.eipp-news-card h3 { font-size: 17px; margin-bottom: 10px; text-align: left; }
.eipp-news-card p { font-size: 14px; flex: 1; text-align: left; }
.eipp-news-card__actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.eipp-news-card__actions .eipp-btn { padding: 10px 20px; font-size: 13px; }

/* Service detail blocks (flagship platforms) */
.eipp-service-detail { padding: 90px 0; }
.eipp-service-detail__features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0; }
.eipp-service-detail__features li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--clr-heading); text-align: left; }
.eipp-service-detail__features li i { color: var(--clr-green-accent); }
.eipp-service-detail__benefits {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-clay);
  margin-top: 20px;
}

@media (max-width: 991px) {
  .eipp-cert-grid { grid-template-columns: repeat(2, 1fr); }
  .eipp-gallery { grid-template-columns: repeat(2, 1fr); }
  .eipp-service-detail__features { grid-template-columns: 1fr; }
}

/* Button variants: green, outline */
.eipp-btn--green {
  background: var(--grad-success);
  color: #fff;
  box-shadow: 0 4px 18px rgba(16,185,129,0.28);
}
.eipp-btn--green:hover { filter: brightness(1.08); color: #fff; box-shadow: 0 8px 28px rgba(16,185,129,0.38); }
.eipp-btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  box-shadow: none;
  text-align: center;
}
.eipp-btn--outline:hover { background: var(--clr-primary); color: #fff; }

/* Service column layout (Application Services page) */
.eipp-service-col__heading {
  font-size: 22px;
  color: var(--clr-heading);
  padding-bottom: 16px;
  border-bottom: 3px solid var(--clr-primary);
  margin-bottom: 26px;
  text-align: left;
}
.eipp-service-col__sub {
  font-size: 17px;
  color: var(--clr-primary);
  margin-bottom: 10px;
  text-align: left;
}
.eipp-detail-list { padding-left: 0; list-style: none; margin: 14px 0; }
.eipp-detail-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}
.eipp-detail-list li::before { content: '›'; position: absolute; left: 0; color: var(--clr-primary); font-size: 18px; line-height: 1.3; }
.eipp-detail-list li:last-child { border-bottom: none; }
.eipp-detail-list li strong { color: var(--clr-heading); }

/* AP & AR — feature badge grid */
.eipp-ap-features { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.eipp-ap-feature {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-clay);
  font-size: 13px; font-weight: 600;
  color: var(--clr-heading);
  transition: transform 0.2s ease;
  text-align: center;
}
.eipp-ap-feature:hover { transform: translateY(-3px); }
.eipp-ap-feature__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-secondary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; flex-shrink: 0;
  text-align: center;
}
.eipp-ap-feature__icon--green { background: var(--grad-success); }

/* AP visual diagram placeholder */
.eipp-ap-visual {
  position: relative;
  min-height: 260px;
  background: var(--grad-secondary);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
}
.eipp-ap-visual--green { background: var(--grad-success); }
.eipp-ap-visual__center {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 18px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.eipp-ap-visual__center i { font-size: 36px; }
.eipp-ap-visual__center--green { background: rgba(255,255,255,0.25); }
.eipp-ap-visual__label {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px; font-weight: 700;
  color: var(--clr-heading);
  box-shadow: var(--shadow-clay);
  display: flex; align-items: center; gap: 8px;
  text-align: center;
}
.eipp-ap-visual__label i { color: var(--clr-primary); }
.eipp-ap-visual__label--vendors { top: 20px; right: 20px; }
.eipp-ap-visual__label--admins { bottom: 20px; right: 20px; }

/* Testing — category cards */
.eipp-test-category-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #fff;
  box-shadow: var(--shadow-lift);
  height: 100%;
}
.eipp-test-category-card--blue { background: var(--grad-secondary); }
.eipp-test-category-card--purple { background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%); }
.eipp-test-category-card--green { background: var(--grad-success); }
.eipp-test-category-card__icon { font-size: 32px; margin-bottom: 16px; }
.eipp-test-category-card h3 { font-size: 18px; margin-bottom: 14px; color: #fff; text-align: left; }
.eipp-test-category-card ul { padding-left: 0; list-style: none; margin: 0; }
.eipp-test-category-card ul li {
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 8px;
  text-align: left;
}
.eipp-test-category-card ul li::before { content: '✓'; font-weight: 700; }
.eipp-test-category-card ul li:last-child { border-bottom: none; }

/* Tech pills (Custom Software page) */
.eipp-tech-pill {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  text-align: center;
  box-shadow: var(--shadow-clay);
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eipp-tech-pill:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.eipp-tech-pill i { font-size: 28px; color: var(--clr-primary); }
.eipp-tech-pill strong { font-size: 13px; color: var(--clr-heading); display: block; text-align: center; }
.eipp-tech-pill span { font-size: 11px; color: var(--clr-body); line-height: 1.4; text-align: center; }

/* Benefit pills (EIPP Vault / HIMS pages) */
.eipp-benefit-pill {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-clay);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.eipp-benefit-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.eipp-benefit-pill--card {
  flex-direction: column; text-align: left; align-items: flex-start;
  padding: 24px; height: 100%;
}
.eipp-benefit-pill__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-secondary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
  text-align: center;
}
.eipp-benefit-pill__icon--green { background: var(--grad-success); }
.eipp-benefit-pill span { font-size: 14px; font-weight: 600; color: var(--clr-heading); line-height: 1.4; text-align: left; }

/* Services hub — flagship block */
.eipp-flagship-block {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-clay);
  margin-bottom: 28px;
  border-left: 5px solid var(--clr-primary);
}
.eipp-flagship-block--alt { border-left-color: var(--clr-green-accent); }
.eipp-flagship-block__header {
  display: flex; align-items: flex-start; gap: 22px; margin-bottom: 20px;
}
.eipp-flagship-block__icon {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; flex-shrink: 0;
  text-align: center;
}
.eipp-flagship-block__icon--blue { background: var(--grad-secondary); }
.eipp-flagship-block__icon--green { background: var(--grad-success); }
.eipp-flagship-features {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; padding: 0; margin: 20px 0;
}
.eipp-flagship-features li {
  background: var(--clr-bg-soft);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--clr-heading);
  display: flex; align-items: center; gap: 8px;
  text-align: center;
}
.eipp-flagship-features li i { color: var(--clr-green-accent); }

/* Services hub card */
.eipp-services-hub-card { border-top: 3px solid transparent; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.eipp-services-hub-card:hover { border-top-color: var(--clr-primary); transform: translateY(-8px); box-shadow: var(--shadow-lift); }

/* Responsive — new components */
@media (max-width: 991px) {
  .eipp-flagship-block { padding: 32px 24px; }
  .eipp-flagship-block__header { flex-direction: column; }
  .eipp-ap-visual { min-height: 200px; }
}
@media (max-width: 767px) {
  .eipp-ap-features { gap: 8px; }
  .eipp-flagship-block { padding: 24px 18px; }
  .eipp-test-category-card { margin-bottom: 0; }
  .eipp-gallery { grid-template-columns: repeat(2, 1fr); }
  .eipp-cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .eipp-hero__art {
        display: none;
    }

    .eipp-hero__grid {
        grid-template-columns: 1fr;
    }

    .eipp-hero {
        padding: 70px 0 50px;
    }

    .eipp-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        text-align: left;
    }

    .eipp-hero p {
        font-size: 1rem;
        text-align: left;
    }

    .eipp-hero__ctas {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* Mobile navigation */
@media (max-width:767px){

    .eipp-nav{
        position:fixed;
        top:0;
        right:0;
        width:320px;
        max-width:90%;
        height:100vh;

        background:#fff;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:100px 30px 30px;

        box-shadow:-20px 0 40px rgba(0,0,0,.15);

        transform:translateX(110%);
        transition:transform .35s ease;

        overflow-y:auto;

        z-index:9999;
    }

    .eipp-nav.is-open{
        transform:translateX(0);
    }

    .eipp-nav > ul{
        width:100%;
        margin:0;
        padding:0;
        list-style:none;

        display:flex;
        flex-direction:column;
        gap:0;

        flex:1;
    }

    .eipp-nav > ul > li{
        width:100%;
    }

    .eipp-nav > ul > li > a{
        display:block;
        width:100%;
        padding:14px 0;
        text-align: left;
    }

    .eipp-btn--nav{
        width:100%;
        margin-top:25px;
    }
}

/* Card styling */
.eipp-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.eipp-card p{
    margin-bottom:0;
    text-align: left;
}

.eipp-btn-reset{
    background:none;
    border:0;
    color:#1d73d2;
    font-weight:600;
    padding:0;
    cursor:pointer;
    text-align: left;
}

.eipp-btn-reset:hover{
    text-decoration:underline;
}

/* Large certificate images */
.certification-image{
    width:100%;
    height:auto;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Small badge/logo images */
.certification-logo{
    max-width:220px;
    max-height:160px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
    margin:0 auto 20px;
}

/* Dropdown */
.eipp-dropdown{
    position:relative;
}

.eipp-dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    width:300px;

    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);

    list-style:none;
    padding:0;
    margin:0;

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);

    transition:.25s ease;

    z-index:9999;
}

.eipp-dropdown:hover>.eipp-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.eipp-dropdown-menu li{
    display:block;
}

.eipp-dropdown-menu li a{
    display:block;
    padding:15px 22px;
    color:#263445;
    border-bottom:1px solid #eee;
    transition:.25s;
    text-align: left;
}

.eipp-dropdown-menu li:last-child a{
    border-bottom:none;
}

.eipp-dropdown-menu li a:hover{
    background:#f7faff;
    color:#1877C9;
    padding-left:28px;
}

/* Button groups */
.eipp-btn-group{
    display:flex;
    gap:16px;
    margin-top:30px;
    flex-wrap:wrap;
}

.eipp-btn-group .eipp-btn{
    margin:0;
}

@media (max-width:991px){
    .eipp-btn-group{
        justify-content:flex-start;
    }
}

/* Section images */
.eipp-section img{
    width:100%;
    max-width:720px;
    display:block;
    margin:auto;
}

/* ---------------------------------------------------------------------
   Responsive tweaks for CTA band
   --------------------------------------------------------------------- */


@media (max-width: 767px) {
    .eipp-cta-band__art {
        display: none !important;
    }
}


/* ==========================================
   Section Heading
========================================== */

.eipp-heading{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-bottom:24px;
    line-height:1.15;
}

.eipp-heading-line1{
    display:block;
    color:var(--heading-color);
    font-weight:700;
}

/* .eipp-heading-line2{
    display:block;
    margin-top:6px;
    color:#0d6efd !important;
    font-weight:700;
} */


.eipp-heading-line2{
    display:block;
    margin-top:6px;
    font-weight:700;

    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width:767px){

    .eipp-heading-line2{
        margin-top:4px;
    }

}



.eipp-section.eipp-section--alt {
      padding: 24px 0;
      background: transparent;
    }

    .eipp-cta-band {
      display: flex;
      align-items: center;
      gap: 32px;
      padding: 24px 32px;
      border-radius: 14px;
      background: linear-gradient(135deg, #1568c7 0%, #0d4fa3 55%, #0a3f85 100%);
      box-shadow: 0 10px 24px rgba(13, 79, 163, 0.22), 0 3px 8px rgba(0, 0, 0, 0.05);
    }

    .eipp-cta-band h2 {
      margin: 0;
      flex: 0 0 auto;
      max-width: 260px;
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1.25;
      color: #ffffff;
      letter-spacing: -0.01em;
    }

    .eipp-cta-band p {
      margin: 0;
      flex: 1 1 auto;
      font-size: 0.92rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.85);
    }

    .eipp-cta-band .eipp-btn {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      padding: 11px 24px;
      background: #ffffff;
      color: #0d4fa3;
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 999px;
      text-decoration: none;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .eipp-cta-band .eipp-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    /* Tablet */
    @media (max-width: 900px) {
      .eipp-cta-band {
        flex-wrap: wrap;
        padding: 20px 24px;
      }

      .eipp-cta-band h2 {
        max-width: 100%;
        flex-basis: 100%;
        font-size: 1.3rem;
      }

      .eipp-cta-band p {
        flex-basis: 100%;
      }

      .eipp-cta-band .eipp-btn {
        margin-top: 4px;
      }
    }

    /* Mobile */
    @media (max-width: 480px) {
      .eipp-section.eipp-section--alt {
        padding: 16px 0;
      }

      .eipp-cta-band {
        padding: 18px 18px;
        border-radius: 12px;
        gap: 14px;
      }

      .eipp-cta-band h2 {
        font-size: 1.15rem;
      }

      .eipp-cta-band p {
        font-size: 0.88rem;
      }

      .eipp-cta-band .eipp-btn {
        width: 100%;
        justify-content: center;
      }
    }

/* Select field */
.eipp-field select{
    width:100%;
    height:72px;
    padding:28px 20px 12px;
    border:none;
    border-radius:20px;
    background:#eef5ff;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    font-size:16px;
    color:var(--text-color);
}

/* Always float the label for select */
.eipp-field select + label{
    top:12px;
    left:20px;
    font-size:12px;
    color:var(--primary);
    transform:none;
    pointer-events:none;
}

.eipp-card p {
    text-align: justify;
    hyphens: auto;
    word-spacing: -2px;
}


.eipp-card h3{
    font-size:1.5rem;
    font-weight:700;
    line-height:1.25;
    margin-bottom:18px;
    color:#1f2937;
}

@media (max-width: 576px) {

    .eipp-hero h1{
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px;
    }

    .eipp-hero p{
        text-align: justify !important;
        font-size: 1rem !important;
        line-height: 1.8 !important;
        word-spacing: normal !important;
        hyphens: none !important;
    }

    /*  */
}

@media (max-width: 576px) {

    .eipp-hero h1{
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .eipp-highlight{
        white-space: nowrap;
    }

}