/* ==========================================================
   AS BUILDERS & DEVELOPERS — GLOBAL CSS
   Paste into: Divi > Theme Options > Custom CSS
   OR Appearance > Customize > Additional CSS
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background: #ffffff;
  color: #1a2744;
  overflow-x: hidden;
}

/* ── Typography Scale ── */
.asb-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #1a2744;
}
.asb-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: #1a2744;
  margin-bottom: 16px;
}
.asb-h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: 0.03em;
  color: #1a2744;
}
.asb-body {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a6a7e;
}
.asb-small {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #6b7c93;
}

/* ── Section Tag / Eyebrow ── */
.asb-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4b72a8;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.asb-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #4b72a8;
  flex-shrink: 0;
}

/* ── Rule / Divider ── */
.asb-rule {
  width: 50px;
  height: 3px;
  background: #4b72a8;
  margin-bottom: 32px;
}

/* ── Section Wrapper ── */
.asb-section {
  padding: 96px 60px;
  width: 100%;
}
.asb-section-white  { background: #ffffff; }
.asb-section-light  { background: #f4f7fb; }
.asb-section-subtle { background: #f8fafc; }
.asb-section-navy   { background: #1a2744; }
.asb-section-dark   { background: #111c33; }

/* ── Buttons ── */
.asb-btn-navy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #1a2744;
  color: #ffffff;
  padding: 15px 36px;
  border: 2px solid #1a2744;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s, transform 0.2s, border-color 0.25s;
  border-radius: 0;
}
.asb-btn-navy:hover {
  background: #4b72a8;
  border-color: #4b72a8;
  color: #ffffff;
  transform: translateY(-2px);
}
.asb-btn-blue {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #4b72a8;
  color: #ffffff;
  padding: 15px 36px;
  border: 2px solid #4b72a8;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
  border-radius: 0;
}
.asb-btn-blue:hover {
  background: #3a5e94;
  color: #ffffff;
  transform: translateY(-2px);
}
.asb-btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: #1a2744;
  padding: 15px 36px;
  border: 2px solid rgba(26,39,68,0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  border-radius: 0;
}
.asb-btn-outline:hover {
  border-color: #4b72a8;
  color: #4b72a8;
  transform: translateY(-2px);
}
.asb-btn-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #ffffff;
  color: #1a2744;
  padding: 15px 36px;
  border: 2px solid #ffffff;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border-radius: 0;
}
.asb-btn-white:hover {
  background: #4b72a8;
  border-color: #4b72a8;
  color: #ffffff;
}
.asb-btn-ghost-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  color: #f0f4f8;
  padding: 15px 36px;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s;
  border-radius: 0;
}
.asb-btn-ghost-white:hover {
  border-color: #7da3cc;
  color: #b8d0e8;
}

/* ── Cards ── */
.asb-card {
  background: #ffffff;
  border: 1px solid rgba(26,39,68,0.07);
  padding: 36px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.asb-card:hover {
  box-shadow: 0 12px 36px rgba(26,39,68,0.1);
  transform: translateY(-3px);
}

/* ── Info row (icon + label + value) ── */
.asb-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,39,68,0.07);
}
.asb-info-icon { font-size: 1.1rem; padding-top: 2px; flex-shrink: 0; }
.asb-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4b72a8;
  margin-bottom: 3px;
}
.asb-info-val {
  font-size: 0.92rem;
  color: #1a2744;
  font-weight: 400;
}

/* ── Stat block ── */
.asb-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: #1a2744;
}
.asb-stat-num .accent { color: #4b72a8; }
.asb-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fa8c4;
  margin-top: 4px;
}

/* ── Process step circle ── */
.asb-step-circle {
  width: 56px;
  height: 56px;
  border: 2px solid #4b72a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #4b72a8;
  background: #f4f7fb;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.asb-step-circle:hover,
.asb-proc-step:hover .asb-step-circle {
  background: #1a2744;
  border-color: #1a2744;
  color: #ffffff;
}

/* ── Marquee ── */
.asb-marquee-wrap {
  background: #1a2744;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.asb-marquee-track {
  display: inline-flex;
  animation: asbTicker 24s linear infinite;
}
.asb-marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.72);
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
}
.asb-marquee-item::after {
  content: '◆';
  color: #4b72a8;
  font-size: 0.5rem;
}
@keyframes asbTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Diagonal texture overlay (used on dark sections) ── */
.asb-tex::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 40px,
    rgba(75,114,168,0.05) 40px, rgba(75,114,168,0.05) 41px
  );
  pointer-events: none;
}

/* ── Blueprint grid overlay (used on navy panels) ── */
.asb-grid-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(75,114,168,0.12) 40px, rgba(75,114,168,0.12) 41px),
    repeating-linear-gradient(0deg,  transparent, transparent 40px, rgba(75,114,168,0.12) 40px, rgba(75,114,168,0.12) 41px);
  pointer-events: none;
}

/* ── Page Hero banner (inner pages) ── */
.asb-page-hero {
  background: #1a2744;
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
}
.asb-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(75,114,168,0.06) 40px, rgba(75,114,168,0.06) 41px
  );
}
.asb-page-hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7da3cc;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.asb-page-hero-tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: #4b72a8;
}
.asb-page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #f0f4f8;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.asb-page-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px #7da3cc;
}
.asb-page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: #8fa8c4;
  line-height: 1.75;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.asb-page-hero-watermark {
  position: absolute;
  right: 40px; bottom: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14rem;
  color: rgba(75,114,168,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* ── Breadcrumb ── */
.asb-breadcrumb {
  background: #f4f7fb;
  padding: 12px 60px;
  border-bottom: 1px solid rgba(26,39,68,0.06);
}
.asb-breadcrumb-inner {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fa8c4;
  display: flex;
  align-items: center;
  gap: 8px;
}
.asb-breadcrumb-inner a {
  color: #4b72a8;
  text-decoration: none;
}
.asb-breadcrumb-inner a:hover { text-decoration: underline; }
.asb-breadcrumb-inner span { color: #1a2744; }

/* ── CTA Band ── */
.asb-cta-band {
  background: #1a2744;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.asb-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(75,114,168,0.06) 40px, rgba(75,114,168,0.06) 41px
  );
  pointer-events: none;
}
.asb-cta-watermark {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13rem;
  color: rgba(75,114,168,0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.asb-cta-left { position: relative; z-index: 1; }
.asb-cta-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #7da3cc; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.asb-cta-tag::before { content:''; display:block; width:24px; height:2px; background:#4b72a8; }
.asb-cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.93;
  color: #f0f4f8;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.asb-cta-band h2 span { color: #7da3cc; }
.asb-cta-band p {
  font-size: 1rem; font-weight: 300;
  color: #8fa8c4; line-height: 1.75;
  max-width: 500px;
}
.asb-cta-right {
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 1;
  min-width: 220px;
}
.asb-cta-chips { display: flex; flex-direction: column; gap: 9px; margin-bottom: 4px; }
.asb-cta-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #b8d0e8;
  display: flex; align-items: center; gap: 9px;
}
.asb-cta-chip::before { content: '✓'; color: #4b72a8; font-size: 0.9rem; font-weight: 700; }

/* ── Form styles ── */
.asb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.asb-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.asb-form-group.full { grid-column: 1 / -1; }
.asb-form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b7c93;
}
.asb-form-input,
.asb-form-select,
.asb-form-textarea {
  background: #f8fafc;
  border: 1px solid rgba(26,39,68,0.1);
  color: #1a2744;
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.asb-form-input:focus,
.asb-form-select:focus,
.asb-form-textarea:focus {
  border-color: #4b72a8;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(75,114,168,0.08);
}
.asb-form-input::placeholder,
.asb-form-textarea::placeholder { color: #b0bec5; }
.asb-form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b72a8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.asb-form-textarea { resize: vertical; min-height: 130px; }
.asb-form-submit {
  grid-column: 1 / -1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #1a2744;
  color: #ffffff;
  border: none;
  padding: 16px 48px;
  cursor: pointer;
  width: 100%;
  transition: background 0.25s;
  border-radius: 0;
}
.asb-form-submit:hover { background: #4b72a8; }
.asb-form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  border: 2px solid #4b72a8;
  background: rgba(75,114,168,0.04);
}
.asb-form-success-icon { font-size: 3rem; margin-bottom: 14px; }
.asb-form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #1a2744;
  margin-bottom: 8px;
}
.asb-form-success p { font-size: 0.9rem; color: #6b7c93; }

/* ── Mobile Hamburger (for Divi use Divi's built-in) ── */

/* ══════════════════════════════════════
   RESPONSIVE — BREAKPOINTS
   ══════════════════════════════════════ */

/* Tablet — 960px */
@media (max-width: 960px) {
  .asb-section { padding: 72px 36px; }
  .asb-page-hero { padding: 80px 36px 60px; }
  .asb-breadcrumb { padding: 12px 36px; }
  .asb-cta-band { padding: 64px 36px; grid-template-columns: 1fr; gap: 36px; }
  .asb-cta-right { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .asb-cta-chips { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .asb-cta-watermark { display: none; }
  .asb-page-hero-watermark { display: none; }
}

/* Mobile — 640px */
@media (max-width: 640px) {
  .asb-section { padding: 56px 20px; }
  .asb-page-hero { padding: 70px 20px 48px; }
  .asb-breadcrumb { padding: 10px 20px; }
  .asb-cta-band { padding: 56px 20px; }
  .asb-h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .asb-cta-right { flex-direction: column; width: 100%; }
  .asb-btn-navy, .asb-btn-blue, .asb-btn-outline,
  .asb-btn-white, .asb-btn-ghost-white {
    display: block;
    width: 100%;
    text-align: center;
  }
  .asb-form-grid { grid-template-columns: 1fr; }
}





@media (max-width: 980px) {
  #logo,
  .logo_container img {
    width: 60% !important;          /* 60% of container */
    max-width: 200px !important;    /* But not larger than 200px */
    height: auto !important;
    max-height: 65%;
  }
}



/* =========================================
   HERO SECTION - BASE STYLES (Desktop)
   ========================================= */
.asb-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ── Left Content Panel ── */
.asb-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* ── Right Visual Panel ── */
.asb-hero-right {
  position: relative;
  background: #f4f7fb;
  overflow: hidden;
  min-height: 600px;
}

/* Navy Grid Panel */
.asb-hero-navy-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 68%;
  background: #1a2744;
}

.asb-hero-navy-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(75,114,168,0.14) 40px, rgba(75,114,168,0.14) 41px),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(75,114,168,0.14) 40px, rgba(75,114,168,0.14) 41px);
}

/* Blue Block */
.asb-hero-blue-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 48%;
  background: #4b72a8;
}

.asb-hero-blue-block::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Year Text */
.asb-hero-year {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(26,39,68,0.07);
  pointer-events: none;
}

/* ── CSS Buildings ── */
.asb-hero-blds {
  position: absolute;
  bottom: 32%;
  left: 48%;
  right: 0;
  height: 62%;
  z-index: 3;
  overflow: hidden;
}

.asb-hb {
  position: absolute;
  bottom: 0;
}

.asb-hb1 { left: 2%;  width: 16%; height: 70%; background: #263a5e; }
.asb-hb2 { left: 17%; width: 22%; height: 88%; background: #1f3060; }
.asb-hb3 { left: 38%; width: 18%; height: 100%; background: #263a5e; }
.asb-hb4 { left: 55%; width: 15%; height: 78%; background: #1f3060; }
.asb-hb5 { left: 70%; width: 30%; height: 60%; background: #263a5e; }

.asb-hbw {
  position: absolute;
  background: rgba(125,163,204,0.22);
  border: 1px solid rgba(125,163,204,0.1);
}

/* Window details for buildings */
.asb-hb1 .asb-hbw { width: 60%; height: 8%; top: 15%; left: 20%; }
.asb-hb2 .asb-hbw { width: 70%; height: 6%; top: 20%; left: 15%; }
.asb-hb3 .asb-hbw { width: 50%; height: 10%; top: 25%; left: 25%; }
.asb-hb4 .asb-hbw { width: 65%; height: 7%; top: 18%; left: 18%; }
.asb-hb5 .asb-hbw { width: 75%; height: 9%; top: 22%; left: 12%; }

/* ── Info Badge ── */
.asb-hero-badge {
  position: absolute;
  top: 28px;
  left: 24px;
  background: #ffffff;
  border: 1px solid rgba(26,39,68,0.1);
  box-shadow: 0 8px 28px rgba(26,39,68,0.12);
  padding: 16px 20px;
  z-index: 10;
  animation: asbFadeUp 0.7s ease 1s both;
}

.asb-hero-badge-icon {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.asb-hero-badge-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4b72a8;
}

.asb-hero-badge-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #1a2744;
  line-height: 1.1;
}

/* ── Actions & Stats ── */
.asb-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.asb-hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(26,39,68,0.08);
}

/* ── Animations ── */
@keyframes asbFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   TABLET RESPONSIVE (Max 980px)
   ========================================= */
@media (max-width: 980px) {
  .asb-hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
    height: 100vh;
  }

  /* Visual Panel - Full Viewport Height */
  .asb-hero-right {
    order: 1;
    min-height: 100vh !important;
    height: 100vh !important;
    width: 100%;
  }

  /* Content Panel */
  .asb-hero-left {
    order: 2;
    padding: 60px 40px;
    min-height: auto;
    background: #ffffff;
  }

  /* Scale geometric shapes for tablet */
  .asb-hero-navy-panel {
    width: 85%;
    height: 60%;
  }

  .asb-hero-blue-block {
    width: 60%;
    height: 45%;
  }

  .asb-hero-year {
    font-size: 5rem;
    right: 20px;
    bottom: 15px;
  }

  /* Adjust buildings positioning */
  .asb-hero-blds {
    bottom: 25%;
    left: 40%;
    height: 70%;
  }

  /* Badge repositioning */
  .asb-hero-badge {
    top: 20px;
    left: 20px;
    padding: 12px 16px;
  }

  .asb-hero-badge-icon {
    font-size: 1.2rem;
  }

  .asb-hero-badge-val {
    font-size: 1.2rem;
  }
}

/* =========================================
   MOBILE RESPONSIVE (Max 640px)
   ========================================= */
@media (max-width: 640px) {
  .asb-hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* Visual Panel - Full Viewport Height */
  .asb-hero-right {
    order: 1;
    height: 100vh !important;
    min-height: 100vh !important;
    width: 100%;
    flex-shrink: 0;
  }

  /* Content Panel */
  .asb-hero-left {
    order: 2;
    padding: 40px 20px 80px 20px;
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
  }

  /* Scale geometric shapes for mobile */
  .asb-hero-navy-panel {
    width: 100%;
    height: 55%;
    right: 0;
  }

  .asb-hero-blue-block {
    width: 70%;
    height: 40%;
    left: 0;
  }

  .asb-hero-year {
    font-size: 4rem;
    right: 15px;
    bottom: 10px;
  }

  /* Adjust buildings for mobile */
  .asb-hero-blds {
    bottom: 20%;
    left: 35%;
    height: 75%;
    transform: scale(0.85);
    transform-origin: bottom left;
  }

  /* Badge - reposition or hide if overlapping */
  .asb-hero-badge {
    top: 16px;
    left: 16px;
    padding: 10px 14px;
  }

  .asb-hero-badge-icon {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }

  .asb-hero-badge-lbl {
    font-size: 0.55rem;
  }

  .asb-hero-badge-val {
    font-size: 1.1rem;
  }

  /* Actions - Stack vertically */
  .asb-hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .asb-hero-actions a {
    width: 100%;
    text-align: center;
  }

  /* Stats - Adjust spacing */
  .asb-hero-stats {
    gap: 20px;
    padding-top: 20px;
  }

  /* Typography adjustments */
  .asb-hero-left h1 {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }

  .asb-hero-left p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =========================================
   DIVI OVERRIDES
   ========================================= */
.et_pb_fullwidth_code,
.et_pb_section.et_pb_fullwidth_section,
.et_pb_code_inner {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}


/* =========================================
   1. BASE STYLES (Desktop Default)
   ========================================= */
.asb-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  user-select: none;
  -webkit-user-select: none;
}

/* Slide Container */
.asb-slide {
  display: none; /* Hidden by default */
  min-height: 100vh;
  grid-template-columns: 1fr 1fr; /* 2 Columns: Text | Image */
  position: relative;
}

.asb-slide.asb-active {
  display: grid; /* Show when active */
  animation: fadeIn 0.5s ease;
}

/* --- Left Content Panel --- */
.asb-slide-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

/* Typography & Animations */
.asb-slide-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4b72a8;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: asbUp 0.6s ease 0.05s forwards;
}

.asb-slide-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #4b72a8;
  flex-shrink: 0;
}

.asb-slide-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 5.8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: #1a2744;
  margin-bottom: 22px;
  opacity: 0;
  animation: asbUp 0.6s ease 0.18s forwards;
}

.asb-slide-h1 .s-outline {
  color: transparent;
  -webkit-text-stroke: 2px #1a2744;
  display: block;
}

.asb-slide-h1 .s-blue {
  color: #4b72a8;
  display: block;
}

.asb-slide-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #5a6a7e;
  line-height: 1.8;
  max-width: 430px;
  margin-bottom: 34px;
  opacity: 0;
  animation: asbUp 0.6s ease 0.32s forwards;
}

.asb-slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: asbUp 0.6s ease 0.45s forwards;
}

.asb-slide-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(26,39,68,0.08);
  opacity: 0;
  animation: asbUp 0.6s ease 0.58s forwards;
}

.asb-sstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: #1a2744;
}

.asb-sstat-num .a {
  color: #4b72a8;
}

.asb-sstat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8fa8c4;
  margin-top: 3px;
}

/* --- Right Image Panel --- */
.asb-slide-right {
  position: relative;
  overflow: hidden;
  min-height: 600px; /* Desktop minimum height */
  background: #f4f7fb;
}

.asb-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 7s ease;
}

.asb-slide.asb-active .asb-slide-img {
  transform: scale(1);
}

.asb-slide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.18) 0%, transparent 55%);
  z-index: 1;
}

/* Floating Badge */
.asb-slide-badge {
  position: absolute;
  bottom: 28px;
  left: 24px;
  background: #ffffff;
  border: 1px solid rgba(26,39,68,0.1);
  box-shadow: 0 8px 28px rgba(26,39,68,0.14);
  padding: 14px 20px;
  z-index: 10;
  opacity: 0;
  animation: asbUp 0.6s ease 0.72s forwards;
}

.asb-slide-badge-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.asb-slide-badge-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4b72a8;
}

.asb-slide-badge-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #1a2744;
  line-height: 1.1;
}

/* Controls Bar (Desktop Default) */
.asb-slider-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 12px;
  background: #ffffff;
  /* border-top: 1px solid rgba(26,39,68,0.07); */
  z-index: 20;
}

.asb-slider-nav {
  display: flex;
  gap: 8px;
}

.asb-slider-dots {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.asb-slider-count {
  margin-left: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #1a2744;
}

/* Keyframes */
@keyframes asbUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* =========================================
   MOBILE FIX (Max 980px)
   ========================================= */
@media (max-width: 980px) {
  /* 1. Make the Slide a Flex Column */
  .asb-slide {
    display: flex !important; /* Force flex */
    flex-direction: column !important;
    min-height: 100vh;
    height: auto; /* Let it grow */
    grid-template-columns: none !important; /* Remove grid */
  }

  /* 2. Image Panel (Top) - Full Viewport Height */
  .asb-slide-right {
    order: 1; /* Image First */
    position: relative !important; /* Remove absolute positioning */
    width: 100% !important;
    height: 100vh !important; /* Full Screen Height */
    min-height: 100vh !important;
    flex-shrink: 0; /* Prevent squishing */
    background: #f4f7fb;
    overflow: hidden;
  }

  /* Ensure the background image fills this container */
  .asb-slide-img {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* 3. Text Panel (Bottom) - White Box */
  .asb-slide-left {
    order: 2; /* Text Second */
    position: relative !important;
    width: 100% !important;
    min-height: auto;
    padding: 40px 20px 80px 20px !important; /* Bottom padding for controls */
    background: #ffffff !important;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05); /* Subtle shadow at top */
  }

  /* 4. Fix Typography for Mobile */
  .asb-slide-h1 {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }

  .asb-slide-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #5a6a7e !important; /* Ensure text is visible */
  }

  /* 5. Adjust Badge Position */
  .asb-slide-badge {
    top: 20px !important;
    left: 20px !important;
    z-index: 20;
  }
}

/* =========================================
   SMALL MOBILE (Max 640px)
   ========================================= */
@media (max-width: 640px) {
  .asb-slide-right {
    height: 100vh !important;
  }
  
  .asb-slide-left {
    padding: 30px 20px 100px 20px !important;
  }

  .asb-slide-h1 {
    font-size: 32px !important;
  }
}


/* =========================================
   SLIDER VISIBILITY FIX - ALL DEVICES
   ========================================= */

/* Hide all slides by default */
.asb-slide {
  display: none !important;
}

/* Only show active slide */
.asb-slide.asb-active {
  display: flex !important; /* Changed from grid to flex for mobile */
  flex-direction: column !important;
}

/* =========================================
   MOBILE/TABLET LAYOUT (Max 980px)
   ========================================= */
@media (max-width: 980px) {
  .asb-slide.asb-active {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh;
  }

  /* Image Panel - Full Viewport Height */
  .asb-slide-right {
    order: 1;
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    flex-shrink: 0;
    overflow: hidden;
  }

  .asb-slide-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Text Panel - White Background */
  .asb-slide-left {
    order: 2;
    position: relative !important;
    width: 100% !important;
    background: #ffffff !important;
    padding: 40px 20px 100px 20px !important;
    z-index: 10;
  }

  /* Typography */
  .asb-slide-h1 {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }

  .asb-slide-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #5a6a7e !important;
  }

  /* Badge */
  .asb-slide-badge {
    top: 20px !important;
    left: 20px !important;
    z-index: 20;
  }

  /* Actions - Stack vertically */
  .asb-slide-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .asb-slide-actions a {
    width: 100% !important;
    text-align: center !important;
  }

  /* Stats */
  .asb-slide-stats {
    gap: 20px !important;
    flex-wrap: wrap !important;
  }
}

/* =========================================
   SMALL MOBILE (Max 640px)
   ========================================= */
@media (max-width: 640px) {
  .asb-slide.asb-active {
    display: flex !important;
  }

  .asb-slide-right {
    height: 100vh !important;
  }

  .asb-slide-left {
    padding: 30px 16px 100px 16px !important;
  }

  .asb-slide-h1 {
    font-size: 32px !important;
  }

  .asb-slide-desc {
    font-size: 15px !important;
  }
}

/* =========================================
   DESKTOP (Above 980px)
   ========================================= */
@media (min-width: 981px) {
  .asb-slide.asb-active {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    flex-direction: row !important;
  }

  .asb-slide-right {
    position: relative !important;
    height: auto !important;
    min-height: 600px !important;
  }

  .asb-slide-left {
    padding: 80px 64px !important;
  }
}





/* ── CSS visual: buildings (Slide 1) ── */
.asb-cv { position: absolute; inset: 0; z-index: 2; }
.asb-cv-navy { position:absolute; top:0; right:0; width:80%; height:70%; background:#1a2744; }
.asb-cv-navy::before {
  content:''; position:absolute; inset:0;
  background:
    repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(75,114,168,0.14) 40px,rgba(75,114,168,0.14) 41px),
    repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(75,114,168,0.14) 40px,rgba(75,114,168,0.14) 41px);
}
.asb-cv-blue { position:absolute; bottom:0; left:0; width:56%; height:50%; background:#4b72a8; }
.asb-cv-blue::after { content:''; position:absolute; inset:18px; border:1px solid rgba(255,255,255,0.2); }
.asb-bgrp { position:absolute; bottom:30%; left:48%; right:0; height:64%; overflow:hidden; z-index:3; }
.asb-b { position:absolute; bottom:0; }
.b1{left:2%;width:15%;height:68%;background:#263a5e;}
.b2{left:17%;width:22%;height:90%;background:#1f3060;}
.b3{left:38%;width:18%;height:100%;background:#263a5e;}
.b4{left:56%;width:14%;height:76%;background:#1f3060;}
.b5{left:70%;width:30%;height:58%;background:#263a5e;}
.bw{position:absolute;background:rgba(125,163,204,0.22);border:1px solid rgba(125,163,204,0.1);}

/* ── CSS visual: industrial (Slide 2) ── */
.asb-cv2 { position:absolute; inset:0; background:#eef3f8; overflow:hidden; }
.asb-cv2-sky { position:absolute; top:0; left:0; right:0; height:50%; background:linear-gradient(180deg,#4b72a8 0%,#7da3cc 100%); }
.asb-cv2-ground { position:absolute; bottom:0; left:0; right:0; height:8%; background:#c8d8ec; }
.asb-cv2-shed { position:absolute; bottom:8%; left:5%; right:5%; height:48%; display:flex; align-items:flex-end; gap:0; }
.asb-cv2-unit { flex:1; display:flex; flex-direction:column; align-items:stretch; }
.asb-cv2-roof { height:30%; clip-path:polygon(0 100%,50% 0,100% 100%); }
.asb-cv2-wall { flex:1; }
.asb-cv2-door { width:18%; height:35%; background:rgba(0,0,0,0.25); margin:0 auto; margin-top:auto; }

/* ── CSS visual: residential (Slide 3) ── */
.asb-cv3 { position:absolute; inset:0; background:linear-gradient(160deg,#f4f7fb 0%,#dce8f5 100%); overflow:hidden; }

/* ── Navigation arrows ── */
.asb-slider-nav {
  position: absolute;
  bottom: 14px; left: 60px;
  display: flex; gap: 8px; z-index: 20;
}
.asb-nav-btn {
  width: 46px; height: 46px; background: #1a2744;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 1.1rem;
  transition: background 0.25s;
}
.asb-nav-btn:hover { background: #4b72a8; }

/* ── Dots ── */
.asb-slider-dots {
  position: absolute; bottom: 48px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
}
.asb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(26,39,68,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.asb-dot.on { background: #4b72a8; transform: scale(1.35); }

/* ── Slide counter ── */
.asb-slider-count {
  position: absolute; bottom: 50px; right: 60px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem; letter-spacing: 0.18em;
  color: rgba(26,39,68,0.28); z-index: 20;
}
.asb-slider-count em { color: #4b72a8; font-style: normal; }

/* ── Progress bar ── */
.asb-prog {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  background: #4b72a8; z-index: 20;
}

/* ── Animations ── */
@keyframes asbUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .asb-slide { grid-template-columns: 1fr; min-height: auto; }
  .asb-slide-left  { padding: 72px 36px 56px; order: 2; }
  .asb-slide-right { min-height: 300px; order: 1; }
  .asb-slider-nav  { left: 36px; bottom: 20px; }
  .asb-slider-count{ right: 36px; bottom: 26px; }
  .asb-slider-dots { bottom: 28px; }
}
@media (max-width: 640px) {
  .asb-slide-left { padding: 56px 20px 48px; }
  .asb-slide-right { min-height: 220px; }
  .asb-slide-actions { flex-direction: column; }
  .asb-slide-actions a { text-align: center; }
  .asb-slide-stats { gap: 16px; }
  .asb-slider-nav  { left: 20px; bottom: 16px; }
  .asb-slider-count{ right: 20px; bottom: 22px; }
}




.asb-svc-section { padding: 96px 60px; background: #f8fafc; }
.asb-svc-intro { font-size: 1.05rem; color: #5a6a7e; line-height: 1.8; max-width: 520px; margin-bottom: 56px; font-weight: 300; }
.asb-svc-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(26,39,68,0.08);
}
.asb-svc-card {
  background: #ffffff;
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.asb-svc-card:hover { background: #f4f7fb; }
.asb-svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: #4b72a8;
  transform: scaleX(0); transition: transform 0.35s;
  transform-origin: left;
}
.asb-svc-card:hover::after { transform: scaleX(1); }
.asb-svc-num { font-family:'Bebas Neue',sans-serif; font-size:3.5rem; color:rgba(26,39,68,0.05); line-height:1; margin-bottom:-8px; }
.asb-svc-icon { font-size:2rem; margin-bottom:14px; display:block; }
.asb-svc-name { font-family:'Bebas Neue',sans-serif; font-size:1.7rem; letter-spacing:0.03em; color:#1a2744; margin-bottom:12px; }
.asb-svc-desc { font-size:0.88rem; color:#6b7c93; line-height:1.7; margin-bottom:20px; font-weight:300; }
.asb-svc-list { list-style:none; padding:0; margin:0; }
.asb-svc-list li {
  font-size:0.84rem; color:#4b72a8;
  padding:6px 0;
  border-bottom:1px solid rgba(26,39,68,0.05);
  display:flex; align-items:center; gap:8px;
  font-family:'Barlow',sans-serif;
}
.asb-svc-list li::before { content:'→'; font-size:0.75rem; color:#7da3cc; }

@media (max-width: 960px) {
  .asb-svc-section { padding: 72px 36px; }
  .asb-svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .asb-svc-section { padding: 56px 20px; }
}



.asb-why-section { padding: 96px 60px; background: #ffffff; }
.asb-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.asb-why-intro { font-size: 1.05rem; color: #5a6a7e; line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.asb-why-list { display: flex; flex-direction: column; gap: 0; }
.asb-why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,39,68,0.06);
  transition: padding-left 0.25s;
  cursor: default;
}
.asb-why-item:first-child { padding-top: 0; }
.asb-why-item:hover { padding-left: 8px; }
.asb-why-dot {
  width: 40px; height: 40px; flex-shrink: 0;
  background: #f4f7fb;
  border: 1px solid rgba(75,114,168,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s;
}
.asb-why-item:hover .asb-why-dot { background: #4b72a8; }
.asb-why-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #1a2744; margin-bottom: 5px;
}
.asb-why-item-desc { font-size: 0.87rem; color: #6b7c93; line-height: 1.6; font-weight: 300; margin: 0; }

/* Right visual — IMAGE BACKGROUND */
.asb-why-visual-wrap { position: relative; }

.asb-why-visual {
  /* ▶ Replace with your image URL */
  background-image: url('/wp-content/uploads/trust-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 44px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Dark gradient overlay — keeps text readable over any photo */
.asb-why-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,18,40,0.70) 0%,
    rgba(10,18,40,0.84) 60%,
    rgba(10,18,40,0.92) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Blueprint grid lines on top of overlay */
/* .asb-why-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent, transparent 40px,
    rgba(75,114,168,0.08) 40px, rgba(75,114,168,0.08) 41px
  );
  pointer-events: none;
  z-index: 1;
} */

/* All content sits above both layers */
.asb-why-visual-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 10px;
  position: relative; z-index: 2;
}

.asb-why-visual-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; line-height: 1.08;
  color: #f0f4f8; margin-bottom: 32px;
  position: relative; z-index: 2;
}

.asb-why-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative; z-index: 2;
}

.asb-why-pillar {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(75,114,168,0.3);
  padding: 16px 18px;
  backdrop-filter: blur(4px);
}

.asb-why-pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; color: #ffffff; line-height: 1;
}

.asb-why-pillar-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #ffffff;
}

.asb-why-accent {
  position: absolute; bottom: -18px; right: -18px;
  width: 72px; height: 72px;
  background: #4b72a8; z-index: -1;
}

@media (max-width: 960px) {
  .asb-why-section { padding: 72px 36px; }
  .asb-why-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .asb-why-section { padding: 56px 20px; }
  .asb-why-pillars { grid-template-columns: 1fr 1fr; }
}



.asb-proc-section { padding: 96px 60px; background: #f4f7fb; }
.asb-proc-intro { font-size: 1rem; color: #5a6a7e; line-height: 1.8; max-width: 500px; margin-bottom: 60px; font-weight: 300; }
.asb-proc-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  position: relative; gap: 0;
}
.asb-proc-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,transparent,#4b72a8 20%,#4b72a8 80%,transparent);
  pointer-events: none;
}
.asb-proc-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.asb-proc-circle {
  width: 56px; height: 56px;
  border: 2px solid #4b72a8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; color: #4b72a8;
  background: #f4f7fb;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.asb-proc-step:hover .asb-proc-circle { background: #1a2744; border-color: #1a2744; color: #ffffff; }
.asb-proc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a2744; margin-bottom: 8px;
}
.asb-proc-desc { font-size: 0.8rem; color: #6b7c93; line-height: 1.5; font-weight: 300; margin: 0; }

@media (max-width: 960px) {
  .asb-proc-section { padding: 72px 36px; }
  .asb-proc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .asb-proc-grid::before { display: none; }
}
@media (max-width: 640px) {
  .asb-proc-section { padding: 56px 20px; }
  .asb-proc-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}


.asb-about-section { padding: 96px 60px; background: #ffffff; }
.asb-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
  margin-top: 48px;
}
/* Visual block */
.asb-about-visual { position: relative; height: 460px; }
.asb-av-back { position: absolute; inset: 0 56px 56px 0; background: #1f3060; }
/* .asb-av-pattern {
  position: absolute; inset: 0 56px 56px 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 12px,rgba(75,114,168,0.08) 12px,rgba(75,114,168,0.08) 13px);
  z-index: 1;
} */
 .asb-av-pattern {
  position: absolute;
  inset: 0 56px 56px 0;
  /* ▶ Replace with your image URL */
  background-image: url('/wp-content/uploads/about-image.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Dark overlay so the blue front panel stays visible over the photo */
/* .asb-av-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 40, 0.15);
} */
.asb-av-front { position: absolute; bottom: 0; right: 0; width: 65%; height: 65%; background: #4b72a8; z-index: 2; }
.asb-av-front::after { content:''; position:absolute; inset:18px; border:1px solid rgba(255,255,255,0.2); }
.asb-av-year {
  position: absolute; bottom: 0; right: 0;
  width: 65%; height: 65%;
  display: flex; align-items: center; justify-content: center; z-index: 3;
}
.asb-av-year-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; color: rgba(255,255,255,0.92); line-height: 1; text-align: center;
}
.asb-av-year-text small {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
/* Text side */
.asb-about-text p { font-size: 1.05rem; color: #5a6a7e; line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.asb-vision-block {
  font-size: 0.95rem; color: #5a6a7e;
  line-height: 1.75; font-style: italic;
  border-left: 3px solid #4b72a8; padding-left: 20px;
  margin-bottom: 28px; font-weight: 300;
}
.asb-mission-list { list-style: none; padding: 0; margin: 16px 0 0 0; }
.asb-mission-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(26,39,68,0.07);
  font-size: 0.9rem; color: #5a6a7e; line-height: 1.6; font-weight: 300;
}
.asb-mission-num { font-family:'Bebas Neue',sans-serif; font-size:1.4rem; color:#4b72a8; line-height:1; flex-shrink:0; padding-top:2px; }

@media (max-width: 960px) {
  .asb-about-section { padding: 72px 36px; }
  .asb-about-layout { grid-template-columns: 1fr; gap: 48px; }
  .asb-about-visual { height: 320px; }
}
@media (max-width: 640px) {
  .asb-about-section { padding: 56px 20px; }
  .asb-about-visual { height: 260px; }
}


.asb-values-section { padding: 96px 60px; background: #f4f7fb; }
.asb-values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(26,39,68,0.08);
  margin-top: 48px;
}
.asb-value-card {
  background: #ffffff;
  padding: 36px 32px;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.asb-value-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: #4b72a8;
  transform: scaleX(0); transition: transform 0.35s; transform-origin: left;
}
.asb-value-card:hover { background: #f8fafc; }
.asb-value-card:hover::before { transform: scaleX(1); }
.asb-value-num { font-family:'Bebas Neue',sans-serif; font-size:2.8rem; color:rgba(26,39,68,0.06); line-height:1; margin-bottom:-4px; }
.asb-value-icon { font-size:1.8rem; margin-bottom:12px; }
.asb-value-title { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; letter-spacing:0.03em; color:#1a2744; margin-bottom:10px; }
.asb-value-desc { font-size:0.87rem; color:#6b7c93; line-height:1.7; font-weight:300; margin:0; }

@media (max-width: 960px) {
  .asb-values-section { padding: 72px 36px; }
  .asb-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .asb-values-section { padding: 56px 20px; }
  .asb-values-grid { grid-template-columns: 1fr; }
}




.asb-svc-detail-section { padding: 96px 60px; background: #ffffff; }

.asb-svc-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(26,39,68,0.07);
}
.asb-svc-detail-block:last-child { border-bottom: none; padding-bottom: 0; }
.asb-svc-detail-block.asb-reverse { }




 /* =========================================
   SERVICE VISUAL - WITH BACKGROUND IMAGE
   ========================================= */
.asb-svc-visual {
  position: relative;
  background: #1a2744;
  padding: 48px 44px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  
  /* Background Image Settings */
  background-image: url('/wp-content/uploads/trust-image.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Dark Overlay - Keeps text readable over image */
.asb-svc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      to bottom,
      rgba(26,39,68,0.3) 0%,      /* Was 0.6 - now lighter */
      rgba(26,39,68,0.5) 100%     /* Was 0.85 - now lighter */
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(75,114,168,0.04) 30px,  /* Was 0.07 - now lighter */
      rgba(75,114,168,0.04) 31px
    );
  z-index: 1;
}

/* Ensure all content stays above overlay */
.asb-svc-visual-num,
.asb-svc-visual-icon,
.asb-svc-visual-name,
.asb-svc-visual-tag,
.asb-svc-accent {
  position: relative;
  z-index: 2;
}

/* Large Number */
.asb-svc-visual-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  line-height: 1;
  color: rgba(75,114,168,0.15); /* Slightly more visible */
  position: absolute;
  top: -10px;
  right: 20px;
  pointer-events: none;
}

/* Icon */
.asb-svc-visual-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

/* Service Name */
.asb-svc-visual-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: #f0f4f8;
  line-height: 1;
  position: relative;
  z-index: 2;
}

/* Tag */
.asb-svc-visual-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

/* Accent Block */
.asb-svc-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #4b72a8;
  z-index: 2;
}

/* =========================================
   DIFFERENT IMAGES PER SERVICE
   ========================================= */

/* Industrial (1st service block) */
.svc-industrial .asb-svc-visual {
  background-image: url('/wp-content/uploads/proj5.jpg') !important;
}

.svc-commercial .asb-svc-visual {
  background-image: url('/wp-content/uploads/proj1.jpg') !important;
}

.svc-residential .asb-svc-visual {
  background-image: url('/wp-content/uploads/proj2.jpg') !important;
}

/* =========================================
   CONTENT SECTION (No changes needed)
   ========================================= */
.asb-svc-content {}

.asb-svc-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  color: #1a2744;
  margin-bottom: 16px;
}

.asb-svc-content p {
  font-size: 0.95rem;
  color: #5a6a7e;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.asb-svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.asb-svc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(26,39,68,0.06);
  font-size: 0.9rem;
  color: #1a2744;
  font-weight: 400;
  font-family: 'Barlow', sans-serif;
}

.asb-svc-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(75,114,168,0.1);
  color: #4b72a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .asb-svc-detail-section {
    padding: 72px 36px;
  }
  
  .asb-svc-detail-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .asb-svc-detail-block.asb-reverse .asb-svc-visual {
    order: -1;
  }
  
  .asb-svc-visual {
    min-height: 280px;
    background-size: cover !important;
    background-position: center !important;
  }
}

@media (max-width: 640px) {
  .asb-svc-detail-section {
    padding: 56px 20px;
  }
  
  .asb-svc-visual {
    min-height: 240px;
    padding: 32px 28px;
  }
  
  .asb-svc-visual-num {
    font-size: 6rem; /* Smaller number on mobile */
    right: 10px;
  }
  
  .asb-svc-visual-name {
    font-size: 2rem;
  }
  
  .asb-svc-accent {
    width: 60px;
    height: 60px;
  }
  
  /* Darker overlay on mobile for better readability */
  .asb-svc-visual::before {
    background: 
      linear-gradient(
        to bottom,
        rgba(26,39,68,0.7) 0%,
        rgba(26,39,68,0.95) 100%
      ),
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(75,114,168,0.07) 30px,
        rgba(75,114,168,0.07) 31px
      );
  }
}

/* =========================================
   OPTIONAL: HOVER EFFECT
   ========================================= */
.asb-svc-detail-block:hover .asb-svc-visual {
  box-shadow: 0 8px 24px rgba(26,39,68,0.15);
}

.asb-svc-detail-block:hover .asb-svc-visual-num {
  color: rgba(75,114,168,0.25);
  transition: color 0.3s ease;
}


.asb-proj-proc-section { padding: 96px 60px; background: #f4f7fb; }
.asb-proj-proc-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  position: relative; gap: 0;
  margin-top: 56px;
}
.asb-proj-proc-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg,transparent,#4b72a8 20%,#4b72a8 80%,transparent);
}
.asb-pstep { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.asb-pstep-circle {
  width: 56px; height: 56px;
  border: 2px solid #4b72a8; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: #4b72a8;
  background: #f4f7fb;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.asb-pstep:hover .asb-pstep-circle { background: #1a2744; border-color: #1a2744; color: #ffffff; }
.asb-pstep-title { font-family:'Barlow Condensed',sans-serif; font-size:0.76rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:#1a2744; margin-bottom:8px; }
.asb-pstep-desc { font-size:0.8rem; color:#6b7c93; line-height:1.5; font-weight:300; margin:0; }

@media (max-width: 960px) {
  .asb-proj-proc-section { padding: 72px 36px; }
  .asb-proj-proc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .asb-proj-proc-grid::before { display: none; }
}
@media (max-width: 640px) {
  .asb-proj-proc-section { padding: 56px 20px; }
  .asb-proj-proc-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}


.asb-ptypes-section { padding: 96px 60px; background: #ffffff; }
.asb-ptypes-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(26,39,68,0.08);
  margin-top: 48px;
}
.asb-ptype-card {
  background: #ffffff;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.asb-ptype-card:hover { background: #f4f7fb; }
.asb-ptype-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: #4b72a8;
  transform: scaleX(0); transition: transform 0.35s; transform-origin: left;
}
.asb-ptype-card:hover::after { transform: scaleX(1); }
.asb-ptype-icon { font-size: 2.2rem; }
.asb-ptype-name { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; letter-spacing:0.03em; color:#1a2744; }
.asb-ptype-note { font-size:0.87rem; color:#6b7c93; line-height:1.65; flex:1; margin:0; font-weight:300; }
.asb-ptype-badge {
  font-family:'Barlow Condensed',sans-serif;
  font-size:0.68rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase;
  color:#4b72a8; border:1px solid rgba(75,114,168,0.3);
  display:inline-block; padding:4px 12px; width:fit-content;
}

/* Portfolio placeholder */
.asb-portfolio-placeholder {
  margin-top: 56px;
  background: #f4f7fb;
  border: 1px dashed rgba(75,114,168,0.3);
  padding: 56px 40px;
  text-align: center;
}
.asb-portfolio-placeholder p { font-size:0.88rem; color:#8fa8c4; margin-bottom:20px; font-weight:300; }

@media (max-width: 960px) {
  .asb-ptypes-section { padding: 72px 36px; }
  .asb-ptypes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .asb-ptypes-section { padding: 56px 20px; }
  .asb-ptypes-grid { grid-template-columns: 1fr; }
}


.asb-contact-section { padding: 96px 60px; background: #ffffff; }
.asb-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 72px;
  margin-top: 48px;
}

/* Info side */
.asb-contact-intro { font-size: 1rem; color: #5a6a7e; line-height: 1.8; margin-bottom: 32px; font-weight: 300; }
.asb-contact-info-list { margin-bottom: 36px; }
.asb-promise-box {
  background: #f4f7fb;
  border-left: 3px solid #4b72a8;
  padding: 24px;
  margin-top: 36px;
}
.asb-promise-box-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #c8a84b; margin-bottom: 8px;
}
.asb-promise-box p { font-size: 0.9rem; color: #5a6a7e; line-height: 1.65; font-weight: 300; margin: 0; }

 

/*  */

/*  */

/*  */


/* ─────────────────────────────────────────────────────────────
   CONTACT SECTION — scoped with .asb-cs prefix to avoid ANY
   conflicts with global.css or leftover Divi theme styles
   ───────────────────────────────────────────────────────────── */

.asb-cs { padding: 96px 60px; background: #ffffff; }

/* TRUE 50/50 two-column layout on desktop */
.asb-cs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

/* ── INFO COLUMN ─────────────────────── */
.asb-cs-intro {
  font-size: 0.95rem; color: #5a6a7e;
  line-height: 1.8; margin-bottom: 24px; font-weight: 300;
}
.asb-cs-info-list { margin-bottom: 24px; }
.asb-cs-info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,39,68,0.07);
}
.asb-cs-info-icon { font-size: 1rem; padding-top: 3px; flex-shrink: 0; }
.asb-cs-info-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #4b72a8; margin-bottom: 3px;
}
.asb-cs-info-val { font-size: 0.9rem; color: #1a2744; font-weight: 400; }

.asb-cs-promise {
  background: #f4f7fb;
  border-left: 3px solid #4b72a8;
  padding: 20px 22px; margin-top: 24px;
}
.asb-cs-promise-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #c8a84b; margin-bottom: 7px;
}
.asb-cs-promise p { font-size: 0.86rem; color: #5a6a7e; line-height: 1.65; font-weight: 300; margin: 0; }

.asb-cs-sectors { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.asb-cs-sector {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #1a2744; background: #f4f7fb;
  border: 1px solid rgba(26,39,68,0.1);
  padding: 7px 14px;
  display: inline-flex; align-items: center; gap: 5px;
}

/* ── FORM WRAPPER ────────────────────── */
.asb-cs-box {
  background: #f8fafc;
  border: 1px solid rgba(26,39,68,0.08);
  padding: 40px 36px;
}
.asb-cs-box-ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.85rem; letter-spacing: 0.03em;
  color: #1a2744; margin-bottom: 4px;
}
.asb-cs-box-sub { font-size: 0.86rem; color: #6b7c93; font-weight: 300; margin-bottom: 28px; }

/* ── FORM GRID — 2 equal columns ──────── */
.asb-cf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}
.asb-cf-g { display: flex; flex-direction: column; gap: 5px; }
.asb-cf-g.w2 { grid-column: 1 / -1; }  /* full-width fields */

/* ── LABELS ──────────────────────────── */
.asb-cf-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #6b7c93;
  display: block;
}
.asb-cf-lbl .req { color: #e05c5c; margin-left: 2px; }

/* ── ALL FIELD ELEMENTS — same height, same padding ── */
.asb-cf input[type="text"],
.asb-cf input[type="tel"],
.asb-cf input[type="email"],
.asb-cf select,
.asb-cf textarea {
  display: block;
  width: 100%;
  /* Fixed height for all single-line fields */
  height: 46px;
  padding: 0 14px;
  background: #ffffff;
  border: 1.5px solid rgba(26,39,68,0.12);
  color: #1a2744;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
/* Textarea overrides height */
.asb-cf textarea {
  height: auto;
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.6;
}
/* Placeholder color */
.asb-cf input::placeholder,
.asb-cf textarea::placeholder { color: #b8c5d4; }
/* Select: custom arrow */
.asb-cf select {
  cursor: pointer;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b72a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  color: #1a2744;
}
/* Select placeholder (first option) */
.asb-cf select option:first-child { color: #b8c5d4; }

/* Focus state */
.asb-cf input:focus,
.asb-cf select:focus,
.asb-cf textarea:focus {
  border-color: #4b72a8;
  box-shadow: 0 0 0 3px rgba(75,114,168,0.1);
  background: #ffffff;
}
/* Error state */
.asb-cf input.cf-err,
.asb-cf select.cf-err,
.asb-cf textarea.cf-err {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,0.08);
}

/* ── INLINE ERROR MESSAGES ───────────── */
.asb-cf-err {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #e05c5c;
  display: none; align-items: center; gap: 5px;
}
.asb-cf-err.on { display: flex; }
.asb-cf-err::before {
  content: '!';
  width: 14px; height: 14px; border-radius: 50%;
  background: #e05c5c; color: #fff;
  font-size: 0.58rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── AJAX STATUS BAR ─────────────────── */
.asb-cf-status {
  grid-column: 1 / -1;
  padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: none; align-items: center; gap: 8px;
}
.asb-cf-status.on    { display: flex; }
.asb-cf-status.s-err { background: rgba(224,92,92,0.07); border: 1px solid rgba(224,92,92,0.25); color: #c0392b; }
.asb-cf-status.s-ok  { background: rgba(39,174,96,0.06); border: 1px solid rgba(39,174,96,0.28); color: #1e7e40; }

/* ── SUBMIT BUTTON ───────────────────── */
.asb-cf-submit {
  grid-column: 1 / -1;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: #1a2744; color: #ffffff;
  border: none; height: 52px; width: 100%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.25s;
  border-radius: 0; padding: 0 32px;
}
.asb-cf-submit:hover:not([disabled]) { background: #4b72a8; }
.asb-cf-submit[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Spinner */
.asb-cf-spin {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: cfSpin 0.7s linear infinite; flex-shrink: 0;
}
.asb-cf-submit.loading .asb-cf-spin { display: block; }
.asb-cf-submit.loading .cf-btn-lbl  { opacity: 0.65; }
@keyframes cfSpin { to { transform: rotate(360deg); } }

/* ── SUCCESS PANEL ───────────────────── */
.asb-cf-success {
  display: none;
  text-align: center;
  padding: 56px 24px;
  border: 2px solid #4b72a8;
  background: rgba(75,114,168,0.04);
}
.asb-cf-success.on { display: block; }
.asb-cf-sicon  { font-size: 3.4rem; margin-bottom: 16px; }
.asb-cf-sttl   { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; letter-spacing: 0.04em; color: #1a2744; margin-bottom: 10px; }
.asb-cf-smsg   { font-size: 0.92rem; color: #6b7c93; font-weight: 300; line-height: 1.75; margin-bottom: 22px; }
.asb-cf-reset  { font-family: 'Barlow Condensed', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #4b72a8; cursor: pointer; text-decoration: underline; background: none; border: none; }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 960px) {
  .asb-cs          { padding: 72px 36px; }
  .asb-cs-layout   { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .asb-cs          { padding: 56px 20px; }
  .asb-cs-box      { padding: 28px 20px; }
  .asb-cf          { grid-template-columns: 1fr; }
  .asb-cf-g.w2     { grid-column: 1; }
  .asb-cf-submit   { grid-column: 1; }
  .asb-cf-status   { grid-column: 1; }
}

.asb-trust-section { padding: 72px 60px; background: #f4f7fb; }
.asb-trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(26,39,68,0.08);
  margin-top: 48px;
}
.asb-trust-card {
  background: #ffffff;
  padding: 32px 28px;
  text-align: center;
}
.asb-trust-icon { font-size: 2rem; margin-bottom: 12px; }
.asb-trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; color: #1a2744; line-height: 1; margin-bottom: 4px;
}
.asb-trust-num span { color: #4b72a8; }
.asb-trust-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #8fa8c4; margin-bottom: 8px;
}
.asb-trust-note { font-size: 0.83rem; color: #6b7c93; font-weight: 300; line-height: 1.5; margin: 0; }

@media (max-width: 960px) {
  .asb-trust-section { padding: 72px 36px; }
  .asb-trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .asb-trust-section { padding: 56px 20px; }
  .asb-trust-grid { grid-template-columns: 1fr 1fr; }
}


/* FILTER BUTTON WRAPPER */

.project-filters{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
margin-bottom:40px;
}


/* FILTER BUTTON */

.filter-btn{
background:#ffffff;
color:#333;
border:2px solid #e5e5e5;
padding:10px 22px;
font-size:14px;
font-weight:600;
letter-spacing:0.5px;
cursor:pointer;
border-radius:4px;
transition:all 0.3s ease;
}


/* HOVER */

.filter-btn:hover{
background:#2c7be5;
color:#fff;
border-color:#2c7be5;
}


/* ACTIVE BUTTON */

.filter-btn.active{
background:#2c7be5;
color:#fff;
border-color:#2c7be5;
}


/* MOBILE */

@media (max-width:768px){

.project-filters{
gap:8px;
}

.filter-btn{
padding:8px 16px;
font-size:13px;
}

}



.projects-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1920px;
margin:auto;
padding:0px 60px 60px 60px;
}

.project-item{
overflow:hidden;
border-radius:6px;
}

.project-item img{
width:100%;
height:260px;
object-fit:cover;
display:block;
transition:0.4s;
}

.project-item:hover img{
transform:scale(1.08);
}




/* TABLET */

@media (max-width:980px){

.projects-gallery{
grid-template-columns:repeat(2,1fr);
}

}


/* MOBILE */

@media (max-width:767px){

.projects-gallery{
grid-template-columns:1fr;
}

.project-item img{
height:220px;
}

}

.asb-gallery-row .et_pb_gallery_item:last-child {
  margin-right: 0 !important;
}
/* ── Divi Gallery Spacing Fix ── */
.asb-gallery-row.et_pb_row {
  padding: 40px 20px !important; /* Top/Bottom: 40px, Left/Right: 20px */
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.asb-gallery-row .et_pb_gallery_items {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important; /* Space between images */
  margin: 0 auto !important;
  padding: 0 !important;
  justify-content: center !important;
  max-width: 1400px !important; /* Optional: constrain max width */
}

.asb-gallery-row .et_pb_gallery_item {
  width: calc(25% - 15px) !important;
  flex: 0 0 calc(25% - 15px) !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.asb-gallery-row .et_pb_gallery_image {
  width: 100% !important;
  height: 300px !important;
  overflow: hidden !important;
  border-radius: 8px !important; /* Optional: rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; /* Optional: shadow */
}

.asb-gallery-row .et_pb_gallery_image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.3s ease !important; /* Optional: hover effect */
}

.asb-gallery-row .et_pb_gallery_image img:hover {
  transform: scale(1.05) !important; /* Optional: zoom on hover */
}

/* Tablet — 2 columns */
@media (max-width: 980px) {
  .asb-gallery-row.et_pb_row { 
    padding: 32px 16px !important; 
  }
  .asb-gallery-row .et_pb_gallery_items { 
    gap: 16px !important; 
  }
  .asb-gallery-row .et_pb_gallery_item {
    width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
  }
  .asb-gallery-row .et_pb_gallery_image { 
    height: 250px !important; 
  }
}

/* Mobile — 1 column */
@media (max-width: 640px) {
  .asb-gallery-row.et_pb_row { 
    padding: 24px 12px !important; 
  }
  .asb-gallery-row .et_pb_gallery_items { 
    gap: 12px !important; 
  }
  .asb-gallery-row .et_pb_gallery_item {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
  .asb-gallery-row .et_pb_gallery_image { 
    height: 220px !important; 
  }
}
.asb-footer { background:#0b1425; font-family:'Barlow',sans-serif; font-weight:300; color:#8fa8c4; border-top:3px solid #4b72a8; position:relative; overflow:hidden; }
.asb-footer::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(135deg,transparent,transparent 60px,rgba(75,114,168,0.03) 60px,rgba(75,114,168,0.03) 61px); pointer-events:none; }
.asb-footer-main { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:60px; padding:64px 60px 48px; position:relative; z-index:1; }
.asb-footer-logo-wrap { display:flex; align-items:center; gap:12px; margin-bottom:18px; text-decoration:none; }
.asb-footer-logo-mark { width:40px; height:40px; background:#4b72a8; clip-path:polygon(50% 0%,100% 30%,100% 100%,0% 100%,0% 30%); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.asb-footer-logo-mark span { font-family:'Bebas Neue',sans-serif; font-size:0.85rem; color:#fff; letter-spacing:0.05em; }
.asb-footer-logo-name { font-family:'Bebas Neue',sans-serif; font-size:1.35rem; letter-spacing:0.08em; color:#f0f4f8; line-height:1; }
.asb-footer-logo-name span { color:#7da3cc; }
.asb-footer-tagline { font-family:'Barlow Condensed',sans-serif; font-size:0.68rem; font-weight:700; letter-spacing:0.26em; text-transform:uppercase; color:#4b72a8; margin-bottom:18px; }
.asb-footer-intro { font-size:0.87rem; line-height:1.75; color:#8fa8c4; margin-bottom:28px; max-width:300px; }
.asb-footer-socials { display:flex; gap:9px; }
.asb-footer-social { width:34px; height:34px; border:1px solid rgba(75,114,168,0.25); display:flex; align-items:center; justify-content:center; color:#8fa8c4; font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:0.68rem; letter-spacing:0.05em; text-decoration:none; transition:border-color 0.25s,background 0.25s,color 0.25s; }
.asb-footer-social:hover { border-color:#4b72a8; background:rgba(75,114,168,0.12); color:#b8d0e8; }
.asb-footer-col-title { font-family:'Barlow Condensed',sans-serif; font-size:0.7rem; font-weight:700; letter-spacing:0.26em; text-transform:uppercase; color:#f0f4f8; margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.asb-footer-col-title::before { content:''; display:block; width:18px; height:2px; background:#4b72a8; }
.asb-footer-links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0; }
.asb-footer-links li a { font-size:0.87rem; color:#8fa8c4; text-decoration:none; padding:8px 0; display:flex; align-items:center; gap:9px; border-bottom:1px solid rgba(75,114,168,0.07); transition:color 0.2s,padding-left 0.2s; }
.asb-footer-links li a::before { content:'→'; font-size:0.72rem; color:#4b72a8; opacity:0; transition:opacity 0.2s; flex-shrink:0; }
.asb-footer-links li a:hover { color:#b8d0e8; padding-left:6px; }
.asb-footer-links li a:hover::before { opacity:1; }
.asb-footer-contact-list { list-style:none; padding:0; margin:0; }
.asb-footer-contact-list li { display:flex; align-items:flex-start; gap:11px; padding:10px 0; border-bottom:1px solid rgba(75,114,168,0.07); font-size:0.86rem; color:#8fa8c4; line-height:1.5; }
.asb-footer-contact-list li .f-icon { font-size:1rem; flex-shrink:0; padding-top:1px; }
.asb-footer-contact-list li strong { display:block; font-family:'Barlow Condensed',sans-serif; font-size:0.62rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#4b72a8; margin-bottom:2px; font-style:normal; }
.asb-footer-cta-box { margin-top:24px; padding:18px 20px; border:1px solid rgba(75,114,168,0.18); background:rgba(75,114,168,0.05); }
.asb-footer-cta-lbl { font-family:'Barlow Condensed',sans-serif; font-size:0.65rem; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:#c8a84b; margin-bottom:7px; }
.asb-footer-cta-box p { font-size:0.82rem; color:#8fa8c4; line-height:1.6; margin:0 0 13px 0; }
.asb-footer-cta-btn { font-family:'Barlow Condensed',sans-serif; font-size:0.76rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; background:#4b72a8; color:#fff; padding:9px 20px; text-decoration:none; display:inline-block; transition:background 0.25s; border:none; }
.asb-footer-cta-btn:hover { background:#3a5e94; color:#fff; }
.asb-footer-divider { height:1px; background:rgba(75,114,168,0.1); margin:0 60px; position:relative; z-index:1; }
.asb-footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:20px 60px 28px; position:relative; z-index:1; flex-wrap:wrap; gap:12px; }
.asb-footer-copy { font-size:0.79rem; color:#4a6480; }
.asb-footer-copy a { color:#4b72a8; text-decoration:none; }
.asb-footer-copy a:hover { color:#7da3cc; }
.asb-footer-badge { font-family:'Barlow Condensed',sans-serif; font-size:0.66rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:#4a6480; border:1px solid rgba(75,114,168,0.12); padding:5px 13px; }

@media (max-width:960px){.asb-footer-main{grid-template-columns:1fr 1fr;gap:40px;padding:48px 36px 36px;}.asb-footer-brand{grid-column:1/-1;}.asb-footer-intro{max-width:100%;}}
@media (max-width:640px){.asb-footer-main{grid-template-columns:1fr;padding:40px 20px 28px;}.asb-footer-divider{margin:0 20px;}.asb-footer-bottom{padding:16px 20px 24px;flex-direction:column;align-items:flex-start;}}


.asb-slide-desc,
.asb-why-intro,
.asb-why-item-desc,
.asb-contact-intro,
.asb-svc-desc,
.asb-about-text p,
.asb-promise-box p,
.asb-cs-promise p,
.asb-footer-intro,
.asb-trust-note,
.asb-proc-desc,
.asb-pstep-desc,
.asb-svc-features li,
.asb-mission-list li,
.asb-footer-links li a,
.asb-footer-contact-list li {
  font-size: 1rem;
  font-weight:400;
}


/* Prevent sections from hiding */
.et_pb_section,
.et_pb_row {
  overflow: visible !important;
}

/* Disable any visibility hiding */
.et_pb_gallery {
  visibility: visible !important;
  display: block !important;
}


.et_pb_gallery_grid .et_pb_gallery_image{margin:1em;}