/*
 * IBA Global Website Stylesheet
 * Load once across the WordPress website.
 * Scope every custom page inside: <main class="iba-site">...</main>
 * Brand components: page heroes, sections, buttons, grids, service cards,
 * event cards, modals, FAQs, testimonials, CTAs and contact blocks.
 * This stylesheet is namespaced and will not intentionally restyle the
 * WordPress theme, Elementor header/footer, or unrelated widgets.
 */

/* ============================================================
   IBA BRAND TOKENS
   ============================================================ */


.iba-site {
  --blue:    #1d5c9b;
  --blue-dk: #164a80;
  --blue-lt: #e8f1f9;
  --orange:  #ed8223;
  --orange-dk:#c96a18;
  --green:   #1d8a44;
  --green-dk:#156633;
  --green-lt:#e6f4ec;
  --white:   #ffffff;
  --dark:    #0f1f33;
  --grey:    #f4f7fb;
  --text:    #2d3748;
  --muted:   #6b7a8d;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(29,92,155,0.10);
}



/* ============================================================
   RESET & BASE
   ============================================================ */


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


.iba-site { font-family: "Open Sans", sans-serif; color: var(--text); background: #fff; }


.iba-site img { max-width: 100%; height: auto; display: block; }


.iba-site a { text-decoration: none; color: inherit; }



/* ============================================================
   SHARED UTILITIES
   ============================================================ */


.iba-site .iba-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }


.iba-site .iba-eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}


.iba-site .iba-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}


.iba-site .iba-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}


.iba-site .iba-heading span { color: var(--blue); }


.iba-site .iba-heading-white { color: #fff; }


.iba-site .iba-heading-white span { color: var(--orange); }


.iba-site .iba-body { font-size: 16px; line-height: 1.8; color: var(--muted); }


.iba-site .iba-body-white { color: rgba(255,255,255,0.82); }


.iba-site .iba-section { padding: 90px 0; }


.iba-site .iba-section-grey { background: var(--grey); }


.iba-site .iba-section-blue { background: var(--blue); }


.iba-site .iba-section-dark { background: var(--dark); }


.iba-site .iba-section-green { background: var(--green); }


.iba-site .iba-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }


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


.iba-site .iba-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }


.iba-site .iba-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }


.iba-site .iba-text-center { text-align: center; }


.iba-site .iba-mb-8 { margin-bottom: 8px; }


.iba-site .iba-mb-16 { margin-bottom: 16px; }


.iba-site .iba-mb-24 { margin-bottom: 24px; }


.iba-site .iba-mb-48 { margin-bottom: 48px; }



/* BUTTONS */


.iba-site .iba-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}


.iba-site .iba-btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}


.iba-site .iba-btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237,130,35,0.35);
}


.iba-site .iba-btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}


.iba-site .iba-btn-secondary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}


.iba-site .iba-btn-white {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}


.iba-site .iba-btn-white:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}


.iba-site .iba-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}


.iba-site .iba-btn-outline-white:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}



/* BTN ARROW */


.iba-site .iba-btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
}


.iba-site .iba-btn-arrow:hover { gap: 12px; color: var(--orange); }


.iba-site .iba-btn-arrow svg { width: 16px; height: 16px; }




/* ============================================================
   S1 — EVENT ANNOUNCEMENT BAND
   ============================================================ */


.iba-site .iba-event-band {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dk) 100%);
  padding: 22px 0;
  border-bottom: 3px solid var(--orange);
}


.iba-site .iba-event-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}


.iba-site .iba-event-band-left { display: flex; align-items: center; gap: 18px; }


.iba-site .iba-event-band-badge {
  background: var(--orange);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
}


.iba-site .iba-event-band-text {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
}


.iba-site .iba-event-band-text span {
  color: var(--orange);
  font-weight: 700;
}


.iba-site .iba-event-band-right { display: flex; gap: 12px; flex-wrap: wrap; }




/* ============================================================
   S2 — HERO (header-safe, responsive layout)
   Adjust --iba-header-clearance in .iba-site if your header height changes.
   ============================================================ */


.iba-site .iba-hero {
  position: relative;
  min-height: clamp(780px, 92svh, 960px);
  padding: var(--iba-header-clearance) 0 72px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}


.iba-site .iba-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(125deg, #1d5c9b 0%, #0f1f33 58%, #123d34 100%);
}


.iba-site .iba-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}


.iba-site .iba-hero-bg img[src^="YOUR_"] { opacity: 0; }


.iba-site .iba-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 42%, rgba(29,138,68,0.24), transparent 34%),
    linear-gradient(125deg, rgba(29,92,155,0.90) 0%, rgba(15,31,51,0.78) 56%, rgba(29,138,68,0.24) 100%);
}


.iba-site .iba-hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}


.iba-site .iba-hero-content { max-width: 710px; }


.iba-site .iba-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(237,130,35,0.14);
  border: 1px solid rgba(237,130,35,0.42);
  color: var(--orange);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}


.iba-site .iba-hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: iba-pulse-dot 1.8s infinite;
}


@keyframes iba-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.45); }
}


.iba-site .iba-hero-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.10;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}


.iba-site .iba-hero-heading span { color: var(--orange); }


.iba-site .iba-hero-sub {
  max-width: 620px;
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 34px;
}


.iba-site .iba-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }


.iba-site .iba-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.14);
}


.iba-site .iba-hero-stat {
  min-width: 0;
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.13);
}


.iba-site .iba-hero-stat:first-child { padding-left: 0; }


.iba-site .iba-hero-stat:last-child { border-right: 0; padding-right: 0; }


.iba-site .iba-hero-stat-num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}


.iba-site .iba-hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.45;
}


.iba-site .iba-hero-media {
  position: relative;
  min-height: 445px;
  aspect-ratio: 4 / 3;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(237,130,35,0.26), transparent 24%),
    radial-gradient(circle at 74% 70%, rgba(29,138,68,0.35), transparent 34%),
    linear-gradient(145deg, rgba(29,92,155,0.55), rgba(8,31,42,0.90));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}


.iba-site .iba-hero-media::before, .iba-site .iba-hero-media::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}


.iba-site .iba-hero-media::before { width: 310px; height: 310px; top: -105px; right: -85px; }


.iba-site .iba-hero-media::after { width: 220px; height: 220px; bottom: -85px; left: -65px; }


.iba-site .iba-hero-media img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.iba-site .iba-hero-media img[src^="YOUR_"] { opacity: 0; pointer-events: none; }


.iba-site .iba-hero-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.62);
}


.iba-site .iba-hero-media-fallback svg { width: 44%; max-width: 190px; height: auto; }


.iba-site .iba-hero-media img:not([src^="YOUR_"]) + .iba-hero-media-fallback { opacity: 0; }


.iba-site .iba-hero-orbit {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(15,31,51,0.76);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.22);
}


.iba-site .iba-hero-orbit svg { width: 38px; height: 38px; color: var(--orange); }



@media (max-width: 1024px) {.iba-site .iba-hero { min-height: auto; padding-top: var(--iba-header-clearance-tablet); }
.iba-site .iba-hero-layout { grid-template-columns: 1fr; }
.iba-site .iba-hero-content { max-width: 760px; }
.iba-site .iba-hero-media { min-height: 390px; max-width: 760px; width: 100%; }}


@media (max-width: 700px) {.iba-site .iba-hero { padding: var(--iba-header-clearance-mobile) 0 52px; }
.iba-site .iba-hero-layout { gap: 38px; }
.iba-site .iba-hero-heading { font-size: clamp(34px, 11vw, 48px); }
.iba-site .iba-hero-sub { font-size: 15.5px; }
.iba-site .iba-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.iba-site .iba-hero-stat { padding: 16px 12px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.iba-site .iba-hero-stat:nth-child(2) { border-right: 0; }
.iba-site .iba-hero-stat:nth-child(3), .iba-site .iba-hero-stat:nth-child(4) { border-bottom: 0; }
.iba-site .iba-hero-media { min-height: 300px; border-radius: 20px; }
.iba-site .iba-hero-orbit { width: 68px; height: 68px; right: 16px; bottom: 16px; }
.iba-site .iba-hero-orbit svg { width: 30px; height: 30px; }}




/* ============================================================
   S3 — WELCOME / ABOUT STRIP
   ============================================================ */


.iba-site .iba-about-img-wrap { position: relative; }


.iba-site .iba-about-img-wrap img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}


.iba-site .iba-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(237,130,35,0.4);
}


.iba-site .iba-about-badge-num {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  display: block;
}


.iba-site .iba-about-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}


.iba-site .iba-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #edf2f7;
}


.iba-site .iba-about-feature:last-of-type { border-bottom: none; }


.iba-site .iba-about-feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--blue-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.iba-site .iba-about-feature-icon svg { width: 22px; height: 22px; color: var(--blue); }


.iba-site .iba-about-feature h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}


.iba-site .iba-about-feature p { font-size: 14px; line-height: 1.6; color: var(--muted); }




/* ============================================================
   S4 — FOUR PILLARS
   ============================================================ */


.iba-site .iba-pillar-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}


.iba-site .iba-pillar-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--orange);
  box-shadow: 0 16px 40px rgba(29,92,155,0.15);
}


.iba-site .iba-pillar-card:nth-child(1) .iba-pillar-icon { background: var(--blue-lt); }


.iba-site .iba-pillar-card:nth-child(2) .iba-pillar-icon { background: #fff4e8; }


.iba-site .iba-pillar-card:nth-child(3) .iba-pillar-icon { background: var(--green-lt); }


.iba-site .iba-pillar-card:nth-child(4) .iba-pillar-icon { background: #f0eeff; }


.iba-site .iba-pillar-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}


.iba-site .iba-pillar-icon svg { width: 32px; height: 32px; }


.iba-site .iba-pillar-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}


.iba-site .iba-pillar-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }




/* ============================================================
   S5 — SERVICES BENTO GRID + MODAL + ANIMATION
   ============================================================ */


.iba-site .iba-services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}


.iba-site .iba-service-card {
  --iba-card-accent: var(--blue);
  position: relative;
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(29,92,155,0.12);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(29,92,155,0.09);
  transform: translateZ(0);
  transition: transform 0.38s cubic-bezier(.2,.7,.2,1), box-shadow 0.38s ease, border-color 0.38s ease;
}


.iba-site .iba-service-card:nth-child(-n/**/+2) { grid-column: span 6; }


.iba-site .iba-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.46) 47%, transparent 62%);
  transform: translateX(-135%);
  transition: transform 0.75s ease;
}


.iba-site .iba-service-card:hover {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--iba-card-accent) 34%, transparent);
  box-shadow: 0 22px 54px rgba(29,92,155,0.17);
}


.iba-site .iba-service-card:hover::after { transform: translateX(135%); }


.iba-site .iba-service-card-media {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--iba-card-accent) 28%, transparent), transparent 28%),
    linear-gradient(145deg, color-mix(in srgb, var(--iba-card-accent) 12%, #f7fbff), #ffffff 76%);
  border-bottom: 1px solid rgba(29,92,155,0.08);
}


.iba-site .iba-service-card:nth-child(-n/**/+2) .iba-service-card-media { min-height: 225px; }


.iba-site .iba-service-card-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.2,.7,.2,1);
}


.iba-site .iba-service-card-photo[src^="YOUR_"] { display: none; }


.iba-site .iba-service-card:hover .iba-service-card-photo { transform: scale(1.065); }


.iba-site .iba-service-card-photo:not([src^="YOUR_"]) ~ .iba-service-icon-wrap { opacity: 0; transform: scale(.84); }


.iba-site .iba-service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to top, rgba(15,31,51,0.22), transparent 48%);
  opacity: 0;
  transition: opacity .35s ease;
}


.iba-site .iba-service-card:has(.iba-service-card-photo:not([src^="YOUR_"])) .iba-service-card-media::after { opacity: 1; }


.iba-site .iba-service-icon-wrap {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--iba-card-accent);
  background: rgba(255,255,255,0.84);
  border: 1px solid color-mix(in srgb, var(--iba-card-accent) 20%, transparent);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--iba-card-accent) 18%, transparent);
  transition: transform .38s ease, opacity .3s ease;
}


.iba-site .iba-service-card:hover .iba-service-icon-wrap { transform: translateY(-4px) rotate(-4deg) scale(1.04); }


.iba-site .iba-service-icon-wrap svg { width: 42px; height: 42px; }


.iba-site .iba-service-index {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,31,51,0.78);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}


.iba-site .iba-service-card-body {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}


.iba-site .iba-service-card-kicker {
  color: var(--iba-card-accent);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 8px;
}


.iba-site .iba-service-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 10px;
}


.iba-site .iba-service-card p {
  flex: 1;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 22px;
}


.iba-site .iba-service-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(29,92,155,0.09);
}


.iba-site .iba-service-quick, .iba-site .iba-service-page-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color .22s ease, gap .22s ease, transform .22s ease;
}


.iba-site .iba-service-quick { padding: 0; }


.iba-site .iba-service-quick:hover, .iba-site .iba-service-quick:focus-visible { color: var(--orange); gap: 11px; }


.iba-site .iba-service-page-link {
  width: 36px;
  height: 36px;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-lt);
}


.iba-site .iba-service-page-link:hover, .iba-site .iba-service-page-link:focus-visible { color: #fff; background: var(--blue); transform: translateX(2px); }


.iba-site .iba-service-quick svg, .iba-site .iba-service-page-link svg { width: 16px; height: 16px; flex: 0 0 auto; }



/* Reveal animation: only activated after JavaScript initializes. */


.iba-site .iba-js .iba-service-card {
  opacity: 0;
  transform: translateY(28px) scale(.985);
}


.iba-site .iba-js .iba-service-card.is-visible {
  animation: iba-service-reveal .72s cubic-bezier(.2,.75,.2,1) forwards;
  animation-delay: var(--iba-delay, 0ms);
}


@keyframes iba-service-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}



/* Reusable service modal */


.iba-site .iba-service-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}


.iba-site .iba-service-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.iba-site .iba-service-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7,21,34,0.74);
  backdrop-filter: blur(8px);
  cursor: pointer;
}


.iba-site .iba-service-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 35px 100px rgba(0,0,0,0.35);
  transform: translateY(22px) scale(.97);
  transition: transform .32s cubic-bezier(.2,.75,.2,1);
}


.iba-site .iba-service-modal.is-open .iba-service-modal-dialog { transform: translateY(0) scale(1); }


.iba-site .iba-service-modal-head {
  position: relative;
  padding: 34px 76px 30px 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(237,130,35,.34), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--dark));
}


.iba-site .iba-service-modal-number {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--orange);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


.iba-site .iba-service-modal-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}


.iba-site .iba-service-modal-close {
  appearance: none;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.23);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}


.iba-site .iba-service-modal-close:hover, .iba-site .iba-service-modal-close:focus-visible { background: var(--orange); transform: rotate(5deg); }


.iba-site .iba-service-modal-close svg { width: 20px; height: 20px; }


.iba-site .iba-service-modal-content { padding: 32px 34px 36px; }


.iba-site .iba-service-modal-label {
  color: var(--orange);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}


.iba-site .iba-service-modal-description {
  color: var(--text);
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 22px;
}


.iba-site .iba-service-modal-note {
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--blue-lt);
  border-left: 4px solid var(--blue);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}


.iba-site .iba-service-modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }



@media (max-width: 1100px) {.iba-site .iba-service-card, .iba-site .iba-service-card:nth-child(-n/**/+2) { grid-column: span 6; }
.iba-site .iba-service-card:nth-child(-n/**/+2) .iba-service-card-media { min-height: 200px; }}


@media (max-width: 680px) {.iba-site .iba-services-grid { gap: 18px; }
.iba-site .iba-service-card, .iba-site .iba-service-card:nth-child(-n/**/+2) { grid-column: span 12; }
.iba-site .iba-service-card-media, .iba-site .iba-service-card:nth-child(-n/**/+2) .iba-service-card-media { min-height: 180px; }
.iba-site .iba-service-card-body { padding: 22px; }
.iba-site .iba-service-modal { align-items: end; padding: 0; }
.iba-site .iba-service-modal-dialog { width: 100%; max-height: 88svh; border-radius: 22px 22px 0 0; }
.iba-site .iba-service-modal-head { padding: 28px 68px 24px 24px; }
.iba-site .iba-service-modal-content { padding: 26px 24px 30px; }}


@media (prefers-reduced-motion: reduce) {.iba-site .iba-service-card, .iba-site .iba-service-card::after, .iba-site .iba-service-card-photo, .iba-site .iba-service-icon-wrap, .iba-site .iba-service-modal, .iba-site .iba-service-modal-dialog { animation: none !important; transition: none !important; }
.iba-site .iba-js .iba-service-card { opacity: 1; transform: none; }}




/* ============================================================
   S6 — WHY CHOOSE US
   ============================================================ */


.iba-site .iba-why-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}


.iba-site .iba-why-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  min-height: 520px;
}


.iba-site .iba-why-img-card {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 20px 28px;
}


.iba-site .iba-why-img-card .num {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}


.iba-site .iba-why-img-card .label { font-size: 13px; opacity: 0.85; }


.iba-site .iba-why-list { display: flex; flex-direction: column; gap: 20px; }


.iba-site .iba-why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 16px rgba(29,92,155,0.06);
  border-left: 4px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}


.iba-site .iba-why-item:hover {
  border-left-color: var(--blue);
  box-shadow: 0 6px 28px rgba(29,92,155,0.12);
}


.iba-site .iba-why-item-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--blue-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.iba-site .iba-why-item-icon svg { width: 22px; height: 22px; color: var(--blue); }


.iba-site .iba-why-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}


.iba-site .iba-why-item p { font-size: 13.5px; line-height: 1.65; color: var(--muted); }




/* ============================================================
   S7 — QUOTE BAND
   ============================================================ */


.iba-site .iba-quote-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--dark) 100%);
}


.iba-site .iba-quote-band::before {
  content: "\"";
  position: absolute;
  top: -40px; left: 40px;
  font-size: 400px;
  color: rgba(255,255,255,0.03);
  font-family: Georgia, serif;
  line-height: 1;
  user-select: none;
}


.iba-site .iba-quote-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }


.iba-site .iba-quote-mark {
  font-size: 80px;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 0.5;
  display: block;
  margin-bottom: 32px;
}


.iba-site .iba-quote-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 32px;
}


.iba-site .iba-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}


.iba-site .iba-quote-author-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
  background: var(--blue-lt);
}


.iba-site .iba-quote-author-info { text-align: left; }


.iba-site .iba-quote-author-name {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}


.iba-site .iba-quote-author-title { font-size: 13px; color: var(--orange); }




/* ============================================================
   S8 — EVENTS
   ============================================================ */


.iba-site .iba-event-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}


.iba-site .iba-event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(29,92,155,0.14); }


.iba-site .iba-event-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  min-height: 200px;
  background: var(--blue-lt);
  position: relative;
}


.iba-site .iba-event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}


.iba-site .iba-event-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}


.iba-site .iba-event-card-img-placeholder svg { width: 52px; height: 52px; color: rgba(255,255,255,0.4); }


.iba-site .iba-event-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  line-height: 1.2;
}


.iba-site .iba-event-date-badge .day {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
}


.iba-site .iba-event-date-badge .month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.iba-site .iba-event-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }


.iba-site .iba-event-tag {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}


.iba-site .iba-event-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}


.iba-site .iba-event-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}


.iba-site .iba-event-meta svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--blue); }




/* ============================================================
   S9 — MEMBER TESTIMONIALS
   ============================================================ */


.iba-site .iba-testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  position: relative;
}


.iba-site .iba-testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }


.iba-site .iba-testi-stars svg { width: 16px; height: 16px; color: var(--orange); }


.iba-site .iba-testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}


.iba-site .iba-testi-author { display: flex; align-items: center; gap: 14px; }


.iba-site .iba-testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blue-lt);
  border: 2px solid var(--blue-lt);
}


.iba-site .iba-testi-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}


.iba-site .iba-testi-role { font-size: 12px; color: var(--muted); }


.iba-site .iba-testi-quote {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 60px;
  color: var(--blue-lt);
  font-family: Georgia, serif;
  line-height: 1;
}




/* ============================================================
   S10 — FAQ
   ============================================================ */


.iba-site .iba-faq-wrap { max-width: 760px; margin: 0 auto; }


.iba-site .iba-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}


.iba-site .iba-faq-item:hover { box-shadow: 0 4px 20px rgba(29,92,155,0.08); }


.iba-site .iba-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  gap: 16px;
  user-select: none;
}


.iba-site .iba-faq-q:hover { color: var(--blue); }


.iba-site .iba-faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}


.iba-site .iba-faq-icon svg { width: 14px; height: 14px; color: var(--blue); transition: transform 0.3s; }


.iba-site .iba-faq-item.open .iba-faq-icon { background: var(--blue); }


.iba-site .iba-faq-item.open .iba-faq-icon svg { color: #fff; transform: rotate(45deg); }


.iba-site .iba-faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  background: #fff;
}


.iba-site .iba-faq-item.open .iba-faq-a { display: block; }




/* ============================================================
   S11 — PARTNERS LOGO BAND
   ============================================================ */


.iba-site .iba-partners-band { padding: 60px 0; background: var(--grey); }


.iba-site .iba-partners-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}


.iba-site .iba-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}


.iba-site .iba-logo-item {
  height: 48px;
  display: flex;
  align-items: center;
  filter: grayscale(1);
  opacity: 0.55;
  transition: all 0.25s;
}


.iba-site .iba-logo-item:hover { filter: grayscale(0); opacity: 1; }


.iba-site .iba-logo-item img { height: 100%; width: auto; object-fit: contain; max-width: 140px; }


.iba-site .iba-logo-placeholder {
  height: 48px;
  width: 130px;
  background: #dde4ef;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #a0aec0;
}




/* ============================================================
   S12 — CTA / MEMBERSHIP BAND
   ============================================================ */


.iba-site .iba-cta-band {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  position: relative;
  overflow: hidden;
}


.iba-site .iba-cta-band::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}


.iba-site .iba-cta-band::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}


.iba-site .iba-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}


.iba-site .iba-cta-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}


.iba-site .iba-cta-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  line-height: 1.75;
}


.iba-site .iba-cta-btns { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }




/* ============================================================
   S13 — VIDEO + CONTACT
   ============================================================ */


.iba-site .iba-vc-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}


.iba-site .iba-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}


.iba-site .iba-video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}


.iba-site .iba-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}


.iba-site .iba-play-btn {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(237,130,35,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}


.iba-site .iba-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(237,130,35,0.25);
}


.iba-site .iba-play-btn svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }


.iba-site .iba-contact-list { display: flex; flex-direction: column; gap: 24px; }


.iba-site .iba-contact-item { display: flex; align-items: flex-start; gap: 18px; }


.iba-site .iba-contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.iba-site .iba-contact-icon.blue { background: var(--blue-lt); }


.iba-site .iba-contact-icon.orange { background: #fff4e8; }


.iba-site .iba-contact-icon.green { background: var(--green-lt); }


.iba-site .iba-contact-icon svg { width: 22px; height: 22px; }


.iba-site .iba-contact-icon.blue svg { color: var(--blue); }


.iba-site .iba-contact-icon.orange svg { color: var(--orange); }


.iba-site .iba-contact-icon.green svg { color: var(--green); }


.iba-site .iba-contact-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}


.iba-site .iba-contact-value {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}




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


@media (max-width: 1024px) {.iba-site .iba-grid-4 { grid-template-columns: repeat(2, 1fr); }
.iba-site .iba-grid-6 { grid-template-columns: repeat(2, 1fr); }
.iba-site .iba-hero-badge { display: none; }
.iba-site .iba-vc-grid { grid-template-columns: 1fr; }}


@media (max-width: 768px) {.iba-site .iba-section { padding: 60px 0; }
.iba-site .iba-grid-2 { grid-template-columns: 1fr; gap: 36px; }
.iba-site .iba-grid-3 { grid-template-columns: 1fr; }
.iba-site .iba-grid-4 { grid-template-columns: 1fr; }
.iba-site .iba-grid-6 { grid-template-columns: 1fr; }
.iba-site .iba-hero-stats { flex-direction: column; gap: 16px; }
.iba-site .iba-hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 12px 0; }
.iba-site .iba-event-band-inner { flex-direction: column; text-align: center; }
.iba-site .iba-cta-inner { flex-direction: column; text-align: center; }
.iba-site .iba-about-badge { right: 0; bottom: 0; }}




.iba-site {
  --iba-header-clearance: 172px;
  --iba-header-clearance-tablet: 148px;
  --iba-header-clearance-mobile: 118px;
  width: 100%;
  overflow: clip;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  isolation: isolate;
}
.iba-site [hidden] { display: none !important; }
.iba-site button,
.iba-site input,
.iba-site textarea,
.iba-site select { font: inherit; }
.iba-site :focus-visible { outline: 3px solid rgba(237,130,35,.48); outline-offset: 3px; }


/* ============================================================
   IBA SERVICE DETAIL PAGE
   Classroom Biogas Training
   ============================================================ */

.iba-site.iba-page-service-detail {
  --iba-blue: #1d5c9b;
  --iba-blue-dark: #164a80;
  --iba-blue-light: #e8f1f9;
  --iba-orange: #ed8223;
  --iba-orange-dark: #c96a18;
  --iba-green: #1d8a44;
  --iba-green-dark: #156633;
  --iba-dark: #0f1f33;
  --iba-text: #2d3748;
  --iba-muted: #68778a;
  --iba-grey: #f4f7fb;
  --iba-white: #ffffff;
  --iba-radius: 16px;
  --iba-shadow: 0 14px 40px rgba(29, 92, 155, 0.12);

  width: 100%;
  color: var(--iba-text);
  background: var(--iba-white);
  overflow: hidden;
}

.iba-page-service-detail *,
.iba-page-service-detail *::before,
.iba-page-service-detail *::after {
  box-sizing: border-box;
}

.iba-page-service-detail img {
  display: block;
  max-width: 100%;
}

.iba-page-service-detail a {
  text-decoration: none;
}

.iba-service-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.iba-service-section {
  padding: 90px 0;
}

.iba-service-section-grey {
  background: var(--iba-grey);
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.iba-service-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding-top: var(--iba-header-clearance, 150px);
  padding-bottom: 100px;
  color: var(--iba-white);
  background:
    linear-gradient(
      115deg,
      rgba(22, 74, 128, 0.97) 0%,
      rgba(15, 31, 51, 0.94) 54%,
      rgba(21, 102, 51, 0.84) 100%
    ),
    url("YOUR_CLASSROOM_TRAINING_HERO_IMAGE.jpg") center/cover no-repeat;
  isolation: isolate;
}

.iba-service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 84% 25%,
      rgba(237, 130, 35, 0.23),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(29, 138, 68, 0.18),
      transparent 30%
    );
}

.iba-service-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border: 70px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  pointer-events: none;
}

.iba-service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.iba-service-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.iba-service-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.iba-service-breadcrumb a:hover {
  color: var(--iba-orange);
}

.iba-service-breadcrumb-separator {
  color: var(--iba-orange);
}

.iba-service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 17px;
  border: 1px solid rgba(237, 130, 35, 0.48);
  border-radius: 100px;
  background: rgba(237, 130, 35, 0.13);
  color: var(--iba-orange);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.iba-service-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--iba-orange);
  box-shadow: 0 0 0 7px rgba(237, 130, 35, 0.13);
}

.iba-service-hero h1 {
  margin: 0 0 24px;
  max-width: 850px;
  color: var(--iba-white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 5.7vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.iba-service-hero h1 span {
  color: var(--iba-orange);
}

.iba-service-hero-description {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

.iba-service-hero-update {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 15px;
  font-weight: 600;
}

.iba-service-hero-update svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--iba-orange);
}

.iba-service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.iba-service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 28px;
  border: 2px solid transparent;
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.iba-service-button:hover {
  transform: translateY(-3px);
}

.iba-service-button svg {
  width: 17px;
  height: 17px;
}

.iba-service-button-primary {
  border-color: var(--iba-orange);
  background: var(--iba-orange);
  color: var(--iba-white);
}

.iba-service-button-primary:hover {
  border-color: var(--iba-orange-dark);
  background: var(--iba-orange-dark);
  color: var(--iba-white);
  box-shadow: 0 12px 26px rgba(237, 130, 35, 0.3);
}

.iba-service-button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--iba-white);
}

.iba-service-button-outline:hover {
  border-color: var(--iba-white);
  background: var(--iba-white);
  color: var(--iba-blue);
}

/* ------------------------------------------------------------
   INTRODUCTION
   ------------------------------------------------------------ */

.iba-service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 70px;
}

.iba-service-image-panel {
  position: relative;
  min-height: 510px;
}

.iba-service-main-image {
  width: calc(100% - 46px);
  height: 500px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(29, 92, 155, 0.16),
      rgba(29, 138, 68, 0.16)
    ),
    url("YOUR_CLASSROOM_TRAINING_IMAGE.jpg") center/cover no-repeat;
  box-shadow: var(--iba-shadow);
}

.iba-service-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iba-service-image-accent {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 205px;
  padding: 25px;
  border: 7px solid var(--iba-white);
  border-radius: 18px;
  background: var(--iba-orange);
  color: var(--iba-white);
  box-shadow: 0 15px 35px rgba(237, 130, 35, 0.27);
}

.iba-service-image-accent strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.iba-service-image-accent span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.9;
}

.iba-service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--iba-orange);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.iba-service-eyebrow::before {
  content: "";
  width: 23px;
  height: 3px;
  border-radius: 4px;
  background: var(--iba-orange);
}

.iba-service-title {
  margin: 0 0 22px;
  color: var(--iba-dark);
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -0.8px;
}

.iba-service-title span {
  color: var(--iba-blue);
}

.iba-service-description {
  margin: 0 0 22px;
  color: var(--iba-muted);
  font-size: 16px;
  line-height: 1.85;
}

.iba-service-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 28px 0 30px;
  padding: 19px 21px;
  border-left: 4px solid var(--iba-green);
  border-radius: 0 12px 12px 0;
  background: #edf8f1;
}

.iba-service-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--iba-green);
  color: var(--iba-white);
}

.iba-service-notice-icon svg {
  width: 21px;
  height: 21px;
}

.iba-service-notice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--iba-dark);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.iba-service-notice p {
  margin: 0;
  color: var(--iba-muted);
  font-size: 13px;
  line-height: 1.6;
}

.iba-related-service {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--iba-blue);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s ease, color 0.2s ease;
}

.iba-related-service:hover {
  gap: 17px;
  color: var(--iba-orange);
}

.iba-related-service svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------------
   BENEFITS
   ------------------------------------------------------------ */

.iba-benefits-heading {
  max-width: 750px;
  margin: 0 auto 52px;
  text-align: center;
}

.iba-benefits-heading .iba-service-eyebrow {
  justify-content: center;
}

.iba-benefits-heading .iba-service-title {
  margin-bottom: 16px;
}

.iba-benefits-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--iba-muted);
  font-size: 16px;
  line-height: 1.75;
}

.iba-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.iba-benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 24px;
  min-height: 240px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e6edf4;
  border-radius: var(--iba-radius);
  background: var(--iba-white);
  box-shadow: 0 7px 28px rgba(29, 92, 155, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.iba-benefit-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(29, 92, 155, 0.035);
  transition: transform 0.35s ease, background 0.35s ease;
}

.iba-benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(29, 92, 155, 0.25);
  box-shadow: 0 20px 45px rgba(29, 92, 155, 0.13);
}

.iba-benefit-card:hover::after {
  transform: scale(1.6);
  background: rgba(237, 130, 35, 0.06);
}

.iba-benefit-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 20px;
  background: var(--iba-blue-light);
  color: var(--iba-blue);
  font-family: "Poppins", sans-serif;
  font-size: 29px;
  font-weight: 800;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.iba-benefit-card:nth-child(2) .iba-benefit-number {
  background: #fff2e7;
  color: var(--iba-orange);
}

.iba-benefit-card:nth-child(3) .iba-benefit-number {
  background: #e9f6ee;
  color: var(--iba-green);
}

.iba-benefit-card:nth-child(4) .iba-benefit-number {
  background: #f0edff;
  color: #7651c9;
}

.iba-benefit-card:hover .iba-benefit-number {
  transform: rotate(-5deg) scale(1.06);
  background: var(--iba-blue);
  color: var(--iba-white);
}

.iba-benefit-content {
  position: relative;
  z-index: 1;
}

.iba-benefit-content h3 {
  margin: 2px 0 12px;
  color: var(--iba-dark);
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.iba-benefit-content p {
  margin: 0;
  color: var(--iba-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ------------------------------------------------------------
   TRAINING HIGHLIGHTS
   ------------------------------------------------------------ */

.iba-training-highlights {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  color: var(--iba-white);
  background:
    linear-gradient(125deg, var(--iba-blue-dark), var(--iba-dark));
}

.iba-training-highlights::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}

.iba-training-highlights-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  align-items: center;
  gap: 60px;
}

.iba-training-highlights h2 {
  margin: 0 0 17px;
  color: var(--iba-white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
}

.iba-training-highlights h2 span {
  color: var(--iba-orange);
}

.iba-training-highlights-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 15px;
  line-height: 1.75;
}

.iba-training-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.iba-training-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(6px);
}

.iba-training-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--iba-orange);
  color: var(--iba-white);
}

.iba-training-feature-icon svg {
  width: 18px;
  height: 18px;
}

.iba-training-feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--iba-white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.iba-training-feature span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */

.iba-service-cta {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(
    130deg,
    var(--iba-green),
    var(--iba-green-dark)
  );
}

.iba-service-cta::before,
.iba-service-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.iba-service-cta::before {
  top: -160px;
  left: -80px;
  width: 380px;
  height: 380px;
}

.iba-service-cta::after {
  right: -100px;
  bottom: -180px;
  width: 430px;
  height: 430px;
}

.iba-service-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  align-items: center;
  gap: 50px;
}

.iba-service-cta-label {
  display: inline-block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.73);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.iba-service-cta h2 {
  margin: 0 0 14px;
  color: var(--iba-white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
}

.iba-service-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.iba-service-cta-action {
  flex: 0 0 auto;
}

.iba-service-email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 175px;
  min-height: 56px;
  padding: 15px 29px;
  border-radius: 100px;
  background: var(--iba-white);
  color: var(--iba-green-dark);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.iba-service-email-button:hover {
  transform: translateY(-4px);
  background: var(--iba-orange);
  color: var(--iba-white);
}

.iba-service-email-button svg {
  width: 20px;
  height: 20px;
}

/* ------------------------------------------------------------
   REVEAL ANIMATION
   ------------------------------------------------------------ */

.iba-page-service-detail [data-iba-reveal] {
  opacity: 0;
  transform: translateY(26px);
  animation: ibaServiceReveal 0.75s ease forwards;
}

.iba-page-service-detail [data-iba-reveal="2"] {
  animation-delay: 0.12s;
}

.iba-page-service-detail [data-iba-reveal="3"] {
  animation-delay: 0.24s;
}

.iba-page-service-detail [data-iba-reveal="4"] {
  animation-delay: 0.36s;
}

@keyframes ibaServiceReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */

@media (max-width: 1024px) {
  .iba-service-hero {
    min-height: auto;
    padding-top: var(--iba-header-clearance-tablet, 135px);
    padding-bottom: 85px;
  }

  .iba-service-intro-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .iba-service-image-panel {
    max-width: 740px;
  }

  .iba-training-highlights-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 767px) {
  .iba-service-container {
    width: min(100% - 32px, 1200px);
  }

  .iba-service-section {
    padding: 65px 0;
  }

  .iba-service-hero {
    min-height: auto;
    padding-top: var(--iba-header-clearance-mobile, 110px);
    padding-bottom: 70px;
  }

  .iba-service-hero h1 {
    font-size: clamp(37px, 12vw, 52px);
    letter-spacing: -0.7px;
  }

  .iba-service-hero-description {
    font-size: 15px;
  }

  .iba-service-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .iba-service-button {
    width: 100%;
  }

  .iba-service-main-image {
    width: 100%;
    height: 380px;
  }

  .iba-service-image-panel {
    min-height: 445px;
  }

  .iba-service-image-accent {
    right: 14px;
    bottom: 0;
    width: calc(100% - 28px);
  }

  .iba-benefits-grid {
    grid-template-columns: 1fr;
  }

  .iba-benefit-card {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 25px 21px;
  }

  .iba-benefit-number {
    width: 62px;
    height: 62px;
    border-radius: 15px;
    font-size: 23px;
  }

  .iba-benefit-content h3 {
    font-size: 18px;
  }

  .iba-training-feature-list {
    grid-template-columns: 1fr;
  }

  .iba-service-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .iba-service-cta-action {
    width: 100%;
  }

  .iba-service-email-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iba-page-service-detail *,
  .iba-page-service-detail *::before,
  .iba-page-service-detail *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}