/* =========================================================
   Athalyx Global — Global stylesheet
   Bootstrap 5.3 + custom design system
   ========================================================= */

:root {
  --primary: #000080;
  --primary-dark: #000066;
  --secondary: #6D28D9;
  --navy: #0A1020;
  --navy-soft: #131A2E;
  --background: #F7F8FC;
  --surface: #FFFFFF;
  --surface-soft: #EEF1F7;
  --text-dark: #111827;
  --text-body: #596579;
  --border: #DFE4EE;
  --accent: #B7F34A;

  --font-heading: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 6px 16px -6px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 48px -18px rgba(15, 23, 42, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--surface);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p { color: var(--text-body); }

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }

.container-xxl { max-width: 1280px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); color: #C7CEDB; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-soft { background: var(--surface-soft); }
.section-bg { background: var(--background); }

.section-heading { font-size: 35px; margin-bottom: 20px; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 400;
  border-radius: 0px;
  padding: 12px 22px;
  font-size: 15px;
  min-height: 44px;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-focus-shadow-rgb: 0, 0, 128;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-dark-outline {
  --bs-btn-color: #000000;
  --bs-btn-hover-color: #000000;
  --bs-btn-active-color: #000000;
  --bs-btn-disabled-color: #000000;
  background: transparent;
  color: #000000;
  border-color: #000080;
}
.btn-dark-outline:hover { border-color: var(--text-dark); color: #000000; }
.btn-light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-light-outline:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-accent {
  --bs-btn-color: #000000;
  --bs-btn-hover-color: #000000;
  --bs-btn-active-color: #000000;
  --bs-btn-disabled-color: #000000;
  background: var(--accent); color: #000000; border-color: var(--accent);
}
.btn-accent:hover { background: #a3dc36; color: #000000; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,0.95);
}
.site-header .nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; color: var(--text-dark); font-size: 18px; letter-spacing: -0.02em; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 800;
}
.brand:hover { color: var(--text-dark); }
.nav-main { display: flex; align-items: center; gap: 6px; }
.nav-main .nav-link {
  color: var(--text-dark); font-weight: 300; padding: 10px 12px; font-size: 14.5px;
  border-radius: 6px;
}
.nav-main .nav-link:hover { color: var(--primary); background: var(--surface-soft); }
.nav-main .nav-link.active { color: var(--primary); }

/* Mega menu */
.has-mega { position: relative; }
.mega-menu {
  position: fixed; left: 0; right: 0; top: 76px;
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 40px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .18s ease;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.open .mega-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-col h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-body); margin-bottom: 14px; font-weight: 600; }
.mega-col a {
  display: block; padding: 4px 0; color: var(--text-dark); font-weight: 400; font-size: 14px;
  border-radius: 4px;
}
.mega-col a:hover { color: var(--primary); }
.mega-col small { color: var(--text-body); font-weight: 400; display: block; font-size: 12.5px; }
.mega-side {
  background: var(--surface-soft); border-radius: var(--radius); padding: 24px;
}
.mega-side h6 { font-size: 15px; color: var(--text-dark); font-weight: 700; margin-bottom: 8px; text-transform: none; letter-spacing: 0; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.mobile-toggle {
  background: transparent; border: 1px solid var(--border); border-radius: 6px;
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: 88px 0 50px;
  background: var(--surface);
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 90%;
  background:
    radial-gradient(60% 55% at 20% 30%, rgba(0,0,128,0.22), transparent 60%),
    radial-gradient(50% 60% at 85% 20%, rgba(109,40,217,0.18), transparent 60%),
    radial-gradient(40% 50% at 60% 80%, rgba(183,243,74,0.12), transparent 60%);
  filter: blur(20px);
  pointer-events: none; z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.hero-lede { font-size: 19px; color: var(--text-body); max-width: 520px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-visual { position: relative; }
.hero-visual .visual-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-visual .visual-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.float-card {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px; min-width: 220px;
  font-size: 13px;
}
.float-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(183,243,74,0.25); flex-shrink: 0; }
.float-card .label { color: var(--text-body); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.float-card .value { color: var(--text-dark); font-weight: 700; font-family: var(--font-heading); }
.float-card.fc-1 { top: 20px; left: -20px; }
.float-card.fc-2 { top: 30%; right: -30px; }
.float-card.fc-3 { bottom: 22%; left: -30px; }
.float-card.fc-4 { bottom: 20px; right: -10px; }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip .trust-label { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--text-body); font-weight: 600; margin-bottom: 18px; text-align: center; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 24px 48px; justify-content: center; align-items: center; }
.trust-logo {
  font-family: var(--font-heading); font-weight: 700; color: #9AA3B5;
  letter-spacing: -0.01em; font-size: 18px;
  padding: 10px 14px; border: 1px dashed var(--border); border-radius: 6px;
}

/* ---------- Cards ---------- */
.card-plain {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; height: 100%; transition: all .2s ease;
}
.card-plain:hover { border-color: #C7CFDD; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-plain .icon-badge {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--surface-soft); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
  margin-bottom: 16px;
}
.card-plain h4 { font-size: 17px; margin-bottom: 8px; }
.card-plain p { font-size: 13px; margin: 0; }

/* ---------- Service editorial blocks ---------- */
.service-block { padding: 40px 0; }
.service-block .visual {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--surface-soft);
  aspect-ratio: 4/3;
}
.service-block .visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-block h3 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.service-block ul { list-style: none; padding: 0; margin: 20px 0 24px; }
.service-block ul li { padding: 10px 0; border-top: 1px solid var(--border); color: var(--text-dark); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.service-block ul li:last-child { border-bottom: 1px solid var(--border); }
.service-block ul li i { color: var(--primary); }

/* ---------- Journey (dark) ---------- */
.journey-track {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 40px; flex-wrap: wrap;
}
.journey-step {
  flex: 1; min-width: 140px; text-align: center;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 20px 14px; background: rgba(255,255,255,0.02); position: relative;
}
.journey-step .num {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px; font-family: var(--font-heading);
}
.journey-step h5 { color: #fff; font-size: 16px; margin: 0; font-weight: 400; letter-spacing: 1px;}

/* ---------- Featured work carousel ---------- */
.work-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 16px 0 24px; scrollbar-width: thin;
}
.work-track::-webkit-scrollbar { height: 8px; }
.work-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.work-card {
  flex: 0 0 78%; max-width: 640px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.work-card .browser-bar {
  display: flex; align-items: center; gap: 6px; padding: 12px 14px;
  border-bottom: 1px solid var(--border); background: var(--surface-soft);
}
.work-card .browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #D9DFEA; display: inline-block; }
.work-card .browser-bar span:nth-child(1){ background: #FF5F57;} .work-card .browser-bar span:nth-child(2){ background:#FEBC2E;} .work-card .browser-bar span:nth-child(3){ background:#28C840;}
.work-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-soft); }
.work-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-card .meta { padding: 22px 24px; }
.work-card .tag { display: inline-block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.work-card h4 { margin: 0 0 8px; font-size: 22px; }
.work-controls { display: flex; gap: 8px; justify-content: flex-end; margin-top: 12px; }
.work-controls button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--text-dark);
}
.work-controls button:hover { border-color: var(--text-dark); }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.bento .tile {
  grid-column: span 4;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; min-height: 180px; transition: all .2s ease;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
}
.bento .tile:hover { border-color: #C7CFDD; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bento .tile.wide { grid-column: span 8; }
.bento .tile.dark { background: var(--navy); color: #fff; border-color: transparent; }
.bento .tile.dark h4 { color: #fff; }
.bento .tile.dark p { color: #B5BDCC; }
.bento .tile .ico {
  width: 40px; height: 40px; border-radius: 8px; background: var(--surface-soft);
  color: var(--primary); display: inline-flex; align-items: center; justify-content: center; font-size: 18px;
}
.bento .tile.dark .ico { background: rgba(255,255,255,0.08); color: var(--accent); }
.bento .tile h4 { font-size: 19px; margin: 0 0 6px; }
.bento .tile p { font-size: 14.5px; margin: 0; }

/* ---------- Industry tabs ---------- */
.pill-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pill-tabs button {
  border: 1px solid var(--border); background: #fff; color: var(--text-dark);
  padding: 10px 16px; border-radius: 999px; font-weight: 500; font-size: 14.5px;
  transition: all .2s ease; min-height: 44px;
}
.pill-tabs button:hover { border-color: var(--text-dark); }
.pill-tabs button.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.industry-panel { display: none; }
.industry-panel.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.industry-panel .visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.industry-panel .visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; position: relative; }
.process-step {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px;
  background: #fff; position: relative;
}
.process-step .num {
  font-family: var(--font-heading); font-weight: 800; color: var(--primary);
  font-size: 14px; letter-spacing: .04em;
}
.process-step h5 { font-size: 18px; margin: 8px 0 6px; }
.process-step p { font-size: 14px; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-carousel { position: relative; }
.testimonial-slide {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 44px; display: none;
}
.testimonial-slide.active { display: block; animation: fade .3s ease; }
.testimonial-slide blockquote {
  font-family: var(--font-heading); font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35; color: var(--text-dark); margin: 0 0 24px; font-weight: 500;
  letter-spacing: -0.01em;
}
.testimonial-slide .author { display: flex; align-items: center; gap: 14px; }
.testimonial-slide .author .avatar {
  width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-heading);
}
.sample-note {
  display: inline-block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-body); background: var(--surface-soft); padding: 4px 10px; border-radius: 999px; margin-bottom: 20px;
}

/* ---------- Insights ---------- */
.article-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  height: 100%; display: flex; flex-direction: column; transition: all .2s ease;
}
.article-card:hover { border-color: #C7CFDD; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-soft); }
.article-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-card .body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-card .tag { font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.article-card h4 { font-size: 20px; margin: 0 0 8px; }
.article-card .read-more { margin-top: auto; padding-top: 14px; color: var(--primary); font-weight: 600; font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq .accordion-item {
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: #fff;
}
.faq .accordion-button {
  font-family: var(--font-heading); font-weight: 600; color: var(--text-dark); padding: 20px 22px; font-size: 17px;
}
.faq .accordion-button:not(.collapsed) { background: #fff; color: var(--primary); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(0,0,128,0.15); }
.faq .accordion-body { padding: 15px 22px 22px; color: var(--text-body); font-size: 14px; }

/* ---------- Final CTA form ---------- */
.cta-split { background: var(--navy); border-radius: var(--radius-lg); overflow: hidden; }
.cta-split .cta-left { padding: 56px; color: #C7CEDB; }
.cta-split .cta-left h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); }
.cta-split .cta-right { background: #fff; padding: 40px; }
.form-label { color: var(--text-dark); font-weight: 500; font-size: 14px; margin-bottom: 6px; }
.form-control, .form-select {
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px;
  min-height: 46px; font-size: 15px; color: var(--text-dark); background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,0,128,0.15);
}
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

.form-success {
  display: none; padding: 16px 18px; background: rgba(183,243,74,0.15); border: 1px solid var(--accent);
  border-radius: var(--radius-sm); color: var(--text-dark); font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #A9B1C1; padding: 72px 0 32px; }
.site-footer h6 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.site-footer a { color: #A9B1C1; display: block; padding: 5px 0; font-size: 14.5px; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center; padding: 0;
}
.social-links a:hover { background: rgba(255,255,255,0.08); }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none;
  display: none; align-items: center; justify-content: center; z-index: 1020;
  box-shadow: var(--shadow-md); font-size: 18px;
}
.back-top.show { display: inline-flex; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1040;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 18px 20px;
  display: none; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between;
  max-width: 720px; margin: 0 auto;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 14px; flex: 1; min-width: 240px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal .pop12 { font-size: 15px; font-weight: 400; color: #fff; }

/* ---------- Focus states ---------- */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
button:focus-visible, a:focus-visible { outline-offset: 3px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 96px 0 64px; background: var(--surface); position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 100%;
  background: radial-gradient(50% 60% at 30% 40%, rgba(0,0,128,0.14), transparent 60%),
              radial-gradient(40% 55% at 80% 20%, rgba(109,40,217,0.10), transparent 60%);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 16px; }
.page-hero .lede { font-size: 19px; max-width: 640px; }
.page-hero .breadcrumb-mini { font-size: 13px; color: var(--text-body); margin-bottom: 12px; }
.page-hero .breadcrumb-mini a { color: var(--text-body); } .page-hero .breadcrumb-mini a:hover { color: var(--primary); }

/* ---------- Prose (legal pages) ---------- */
.prose h2 { font-size: 26px; margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-size: 20px; margin-top: 28px; margin-bottom: 8px; }
.prose p, .prose li { font-size: 16px; }
.prose ul { padding-left: 20px; }













/* =====================================================
   ATHALYX GLOBAL SERVICES SECTION
   All classes are scoped with athx360-
===================================================== */

.athx360-services {
  --athx360-primary: #000080;
  --athx360-primary-soft: #eeeeff;
  --athx360-dark: #0d1424;
  --athx360-text: #59657a;
  --athx360-border: #dfe3eb;
  --athx360-light: #f6f7fa;
  --athx360-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--athx360-white);
  color: var(--athx360-dark);
}

.athx360-services *,
.athx360-services *::before,
.athx360-services *::after {
  box-sizing: border-box;
}

.athx360-heading-row {
  margin-bottom: 55px;
}

.athx360-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--athx360-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.athx360-eyebrow::before {
  width: 35px;
  height: 2px;
  background: var(--athx360-primary);
  content: "";
}

.athx360-main-title {
  max-width: 720px;
  margin: 0;
  color: var(--athx360-dark);
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.14;
}

.athx360-main-title span {
  display: block;
  color: var(--athx360-primary);
}

.athx360-heading-text {
  max-width: 500px;
  margin: 0 0 5px auto;
  color: var(--athx360-text);
  font-size: 15px;
  line-height: 1.5;
}

/* Workspace */

.athx360-workspace {
  overflow: hidden;
  border: 1px solid var(--athx360-border);
  background: var(--athx360-white);
  box-shadow: 0 30px 80px rgba(13, 20, 36, 0.08);
}

/* Navigation */

.athx360-service-nav {
  height: 100%;
  padding: 18px;
  background: var(--athx360-light);
  border-right: 1px solid var(--athx360-border);
}

.athx360-service-tab {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 132px;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 12px;
  padding: 25px 22px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--athx360-dark);
  text-align: left;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.athx360-service-tab:last-child {
  margin-bottom: 0;
}

.athx360-service-tab:hover {
  border-color: var(--athx360-border);
  background: var(--athx360-white);
  transform: translateX(4px);
}

.athx360-service-tab.active {
  border-color: var(--athx360-primary);
  background: var(--athx360-primary);
  color: var(--athx360-white);
}

.athx360-tab-number {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.7;
}

.athx360-tab-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.athx360-tab-content strong {
  margin-bottom: 9px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

.athx360-tab-content small {
  max-width: 220px;
  color: var(--athx360-text);
  font-size: 13px;
  line-height: 1.55;
}

.athx360-service-tab.active .athx360-tab-content small {
  color: rgba(255, 255, 255, 0.72);
}

.athx360-tab-arrow {
  display: flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--athx360-border);
  background: var(--athx360-white);
  color: var(--athx360-dark);
  font-size: 16px;
}

.athx360-service-tab.active .athx360-tab-arrow {
  border-color: rgba(255, 255, 255, 0.32);
  background: var(--athx360-white);
  color: var(--athx360-dark);
}

/* Dynamic Stage */

.athx360-service-stage {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: 55px;
  background: var(--athx360-white);
}

.athx360-stage-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
}

.athx360-stage-label {
  display: block;
  margin-bottom: 17px;
  color: var(--athx360-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.athx360-stage-title {
  max-width: 620px;
  margin: 0;
  color: var(--athx360-dark);
  font-size: clamp(30px, 3.3vw, 32px);
  font-weight: 600;
  letter-spacing: -1.8px;
  line-height: 1.12;
}

.athx360-icon-box {
  display: flex;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--athx360-primary);
  background: var(--athx360-primary-soft);
  color: var(--athx360-primary);
}

.athx360-icon-box span {
  font-size: 30px;
  font-weight: 700;
}

.athx360-stage-description {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 28px 0 35px;
  color: var(--athx360-text);
  font-size: 16px;
  line-height: 1.75;
}

.athx360-capability-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--athx360-border);
  border-left: 1px solid var(--athx360-border);
}

.athx360-capability-item {
  display: flex;
  min-height: 92px;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-right: 1px solid var(--athx360-border);
  border-bottom: 1px solid var(--athx360-border);
  background: rgba(255, 255, 255, 0.94);
}

.athx360-capability-item span {
  color: var(--athx360-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.athx360-capability-item p {
  margin: 0;
  color: var(--athx360-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

/* Footer and Statistics */

.athx360-service-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
}

.athx360-stat-row {
  display: flex;
  gap: 45px;
}

.athx360-stat-item {
  display: flex;
  flex-direction: column;
}

.athx360-stat-item strong {
  color: var(--athx360-primary);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
}

.athx360-stat-item span {
  margin-top: 3px;
  color: var(--athx360-text);
  font-size: 12px;
}

.athx360-service-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border-bottom: 2px solid var(--athx360-primary);
  color: var(--athx360-dark);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.athx360-service-link:hover {
  background: var(--athx360-primary);
  color: var(--athx360-white);
}

/* Decorative Lines */

.athx360-visual-lines {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 350px;
  height: 350px;
  pointer-events: none;
  opacity: 0.08;
}

.athx360-visual-lines span {
  position: absolute;
  border: 1px solid var(--athx360-primary);
  border-radius: 50%;
}

.athx360-visual-lines span:nth-child(1) {
  inset: 0;
}

.athx360-visual-lines span:nth-child(2) {
  inset: 55px;
}

.athx360-visual-lines span:nth-child(3) {
  inset: 110px;
}

/* Value Cards */

.athx360-value-row {
  margin-top: 28px;
}

.athx360-value-card {
  position: relative;
  height: 100%;
  min-height: 230px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--athx360-border);
  background: var(--athx360-white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.athx360-value-card:hover {
  border-color: var(--athx360-primary);
  box-shadow: 0 20px 50px rgba(13, 20, 36, 0.08);
  transform: translateY(-6px);
}

.athx360-value-number {
  display: block;
  margin-bottom: 42px;
  color: var(--athx360-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.athx360-value-card h4 {
  margin: 0 0 13px;
  color: var(--athx360-dark);
  font-size: 24px;
  font-weight: 600;
}

.athx360-value-card p {
  margin: 0;
  color: var(--athx360-text);
  font-size: 14px;
  line-height: 1.7;
}

.athx360-value-card-featured {
  border-color: var(--athx360-primary);
  background: var(--athx360-primary);
}

.athx360-value-card-featured .athx360-value-number,
.athx360-value-card-featured h4,
.athx360-value-card-featured p {
  color: var(--athx360-white);
}

.athx360-value-card-featured p {
  opacity: 0.78;
}

/* CTA */

.athx360-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 28px;
  padding: 40px 42px;
  border: 1px solid var(--athx360-border);
  background: var(--athx360-light);
}

.athx360-cta-label {
  display: block;
  margin-bottom: 9px;
  color: var(--athx360-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.athx360-cta-panel h3 {
  max-width: 670px;
  margin: 0;
  color: var(--athx360-dark);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .2px;
}

.athx360-primary-button {
  display: inline-flex;
  min-height: 58px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 15px 24px;
  border: 2px solid var(--athx360-primary);
  background: var(--athx360-primary);
  color: var(--athx360-white);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.athx360-primary-button:hover {
  background: var(--athx360-white);
  color: #000000;
}

/* Content Animation */

.athx360-service-stage.athx360-is-changing
  .athx360-stage-title,
.athx360-service-stage.athx360-is-changing
  .athx360-stage-description,
.athx360-service-stage.athx360-is-changing
  .athx360-capability-grid,
.athx360-service-stage.athx360-is-changing
  .athx360-service-footer {
  opacity: 0;
  transform: translateY(10px);
}

.athx360-stage-title,
.athx360-stage-description,
.athx360-capability-grid,
.athx360-service-footer {
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

/* Responsive */

@media (max-width: 991.98px) {
  .athx360-services {
    padding: 85px 0;
  }

  .athx360-heading-text {
    margin-left: 0;
  }

  .athx360-service-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--athx360-border);
  }

  .athx360-service-tab {
    min-height: 150px;
    margin: 0;
  }

  .athx360-service-tab:hover {
    transform: translateY(-3px);
  }

  .athx360-tab-arrow {
    display: none;
  }

  .athx360-service-stage {
    padding: 45px;
  }

  .athx360-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .athx360-services {
    padding: 68px 0;
  }

  .athx360-main-title {
    letter-spacing: -2px;
  }

  .athx360-service-nav {
    grid-template-columns: 1fr;
  }

  .athx360-service-tab {
    min-height: auto;
    align-items: center;
    padding: 20px;
  }

  .athx360-tab-content small {
    max-width: none;
  }

  .athx360-service-stage {
    min-height: 0;
    padding: 32px 22px;
  }

  .athx360-stage-top {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .athx360-icon-box {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .athx360-capability-grid {
    grid-template-columns: 1fr;
  }

  .athx360-service-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .athx360-stat-row {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .athx360-cta-panel {
    padding: 30px 24px;
  }

  .athx360-primary-button {
    width: 100%;
  }
}





















/* =========================================================
   ATHALYX TECHNOLOGY ORBIT HERO
   Scoped prefix: axorbit7-
========================================================= */

.axorbit7-hero {
  --axorbit7-primary: #000080;
  --axorbit7-dark: #0c1324;
  --axorbit7-text: #59657a;
  --axorbit7-border: #dce1ea;
  --axorbit7-light: #f5f6f9;
  --axorbit7-soft: #eeeeff;
  --axorbit7-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 25px 0 0;
  background: var(--axorbit7-white);
  color: var(--axorbit7-dark);
  font-family: "Poppins", sans-serif;
}

.axorbit7-hero *,
.axorbit7-hero *::before,
.axorbit7-hero *::after {
  box-sizing: border-box;
}

.axorbit7-container {
  position: relative;
  z-index: 2;
}

/* Blueprint Background */

.axorbit7-blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(0, 0, 128, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 128, 0.045) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
}

.axorbit7-blueprint::before {
  position: absolute;
  top: 0;
  left: 46%;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 128, 0.08);
  content: "";
}

.axorbit7-blueprint::after {
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 128, 0.08);
  content: "";
}

/* Left Content */

.axorbit7-content {
  position: relative;
  z-index: 3;
  max-width: 810px;
  padding: 35px 35px 35px 0;
}

.axorbit7-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 32px;
}

.axorbit7-topline-index {
  color: var(--axorbit7-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.axorbit7-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--axorbit7-dark);
  font-size: 11px;
  font-weight: 500;
}

.axorbit7-status i {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--axorbit7-primary);
  border-radius: 50%;
}

.axorbit7-status i::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(0, 0, 128, 0.3);
  border-radius: 50%;
  content: "";
  animation: axorbit7StatusPulse 2s ease-in-out infinite;
}

/* Main Heading */

.axorbit7-title {
  max-width: 860px;
  margin: 0;
  color: var(--axorbit7-dark);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.25;
}

.axorbit7-rotating-line {
  position: relative;
  display: block;
  min-height: 1.08em;
  overflow: hidden;
  color: var(--axorbit7-primary);
}

.axorbit7-changing-word {
  position: relative;

  padding-bottom: 12px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.axorbit7-changing-word::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--axorbit7-primary);
  content: "";
}

.axorbit7-changing-word.axorbit7-word-exit {
  opacity: 0;
  transform: translateY(-22px);
}

.axorbit7-changing-word.axorbit7-word-enter {
  opacity: 0;
  transform: translateY(22px);
}

/* Description */

.axorbit7-message-row {
  display: flex;
  align-items: flex-center;
  gap: 50px;
  margin-top: 19px;
}

.axorbit7-description {
  max-width: 680px;
  margin: 0;
  color: var(--axorbit7-text);
  font-size: 14px;
  line-height: 1.8;
}

.axorbit7-scroll-note {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.axorbit7-scroll-note span {
  color: var(--axorbit7-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.axorbit7-scroll-note i {
  position: relative;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(0, 0, 128, 0.18);
}

.axorbit7-scroll-note i::after {
  position: absolute;
  top: -20px;
  left: 0;
  width: 1px;
  height: 20px;
  background: var(--axorbit7-primary);
  content: "";
  animation: axorbit7ScrollLine 2s linear infinite;
}

/* Buttons */

.axorbit7-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 0px;
}

.axorbit7-primary-btn {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 15px 17px 15px 24px;
  border: 2px solid var(--axorbit7-primary);
  background: var(--axorbit7-primary);
  color: var(--axorbit7-white);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.axorbit7-primary-btn i {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--axorbit7-white);
  color: #000000;
  font-style: normal;
}

.axorbit7-primary-btn:hover {
  background: var(--axorbit7-white);
  color: #000000;
  box-shadow: 8px 8px 0 rgba(0, 0, 128, 0.12);
  transform: translate(-2px, -2px);
}

.axorbit7-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--axorbit7-dark);
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.axorbit7-text-link:hover {
  gap: 21px;
  border-color: var(--axorbit7-primary);
  color: var(--axorbit7-primary);
}

/* Service Proof Row */

.axorbit7-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid var(--axorbit7-border);
  border-left: 1px solid var(--axorbit7-border);
}

.axorbit7-proof-item {
  display: flex;
  min-height: 90px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  padding: 18px;
  border-right: 1px solid var(--axorbit7-border);
  border-bottom: 1px solid var(--axorbit7-border);
  background: rgba(255, 255, 255, 0.85);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.axorbit7-proof-item:hover {
  background: var(--axorbit7-soft);

  transform: translateY(-5px);
}

.axorbit7-proof-item strong {
  color: var(--axorbit7-primary);
  font-size: 11px;
  font-weight: 700;
}

.axorbit7-proof-item span {
  color: var(--axorbit7-dark);
  font-size: 14px;
  font-weight: 500;
}

/* Orbit Visual */

.axorbit7-visual-wrap {
  position: relative;
  z-index: 4;
  min-height: 680px;
  padding: 20px 0 80px;
}

.axorbit7-orbit-scene {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  border: 1px solid var(--axorbit7-border);
  background: rgba(255, 255, 255, 0.88);
}

/* Scene Corners */

.axorbit7-corner {
  position: absolute;
  z-index: 5;
  color: var(--axorbit7-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.3px;
}

.axorbit7-corner-top {
  top: 17px;
  left: 19px;
}

.axorbit7-corner-bottom {
  right: 19px;
  bottom: 17px;
}

/* Orbit Rings */

.axorbit7-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 0, 128, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.axorbit7-ring-outer {
  width: 84%;
  height: 84%;
}

.axorbit7-ring-middle {
  width: 60%;
  height: 60%;
  border-style: dashed;
  animation: axorbit7RotateClockwise 28s linear infinite;
}

.axorbit7-ring-inner {
  width: 35%;
  height: 35%;
  border-color: rgba(0, 0, 128, 0.32);
}

/* Center Core */

.axorbit7-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: flex;
  width: 142px;
  height: 142px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  border: 2px solid var(--axorbit7-primary);
  background: var(--axorbit7-primary);
  color: var(--axorbit7-white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.axorbit7-core-label {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.axorbit7-core strong {
  color: var(--axorbit7-white);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.axorbit7-core small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 8px;
  line-height: 1.4;
}

/* Service Nodes */

.axorbit7-node {
  position: absolute;
  z-index: 7;
  display: flex;
  min-width: 128px;

  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid #000080;
  background: var(--axorbit7-white);
  color: #000000;
  text-align: left;
  box-shadow: 0 12px 30px rgba(13, 20, 36, 0.08);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.axorbit7-node:hover {
  border-color: var(--axorbit7-primary);
  box-shadow: 0 18px 35px rgba(13, 20, 36, 0.12);
  transform: translateY(-5px);
}

.axorbit7-node.active {
  border-color: var(--axorbit7-primary);
  background: var(--axorbit7-primary);
  color: var(--axorbit7-white);
}

.axorbit7-node-number {
  align-self: flex-start;
  color: var(--axorbit7-primary);
  font-size: 8px;
  font-weight: 700;
}

.axorbit7-node.active .axorbit7-node-number {
  color: rgba(255, 255, 255, 0.7);
}

.axorbit7-node strong {
  font-size: 12px;
  font-weight: 600;
}

.axorbit7-node i {
  font-style: normal;
  font-size: 14px;
}

.axorbit7-node-security {
  top: 13%;
  right: -2%;
}

.axorbit7-node-it {
  top: 57%;
  left: -8%;
}

.axorbit7-node-web {
  right: 5%;
  bottom: 8%;
}

/* Moving Signal */

.axorbit7-signal {
  position: absolute;
  top: 8%;
  left: 48%;
  z-index: 3;
  width: 12px;
  height: 12px;
  background: var(--axorbit7-primary);
  border: 3px solid var(--axorbit7-white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--axorbit7-primary);
  transform-origin: 20px 225px;
  animation: axorbit7SignalOrbit 14s linear infinite;
}

/* Dynamic Information Card */

.axorbit7-info-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  width: min(88%, 410px);
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--axorbit7-primary);
  background: var(--axorbit7-white);
  box-shadow: -14px 14px 0 rgba(0, 0, 128, 0.07);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.axorbit7-info-card.axorbit7-card-changing {
  opacity: 0;
  transform: translateY(12px);
}

.axorbit7-info-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.axorbit7-info-heading > span {
  display: flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  background: var(--axorbit7-primary);
  color: var(--axorbit7-white);
  font-size: 10px;
  font-weight: 700;
}

.axorbit7-info-heading small {
  display: block;
  margin-bottom: 6px;
  color: var(--axorbit7-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.axorbit7-info-heading h2 {
  margin: 0;
  color: var(--axorbit7-dark);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 1.35;
}

.axorbit7-info-card > p {
  margin: 20px 0;
  color: var(--axorbit7-text);
  font-size: 12px;
  line-height: 1.7;
}

.axorbit7-info-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--axorbit7-border);
}

.axorbit7-info-footer span {
  color: var(--axorbit7-dark);
  font-size: 10px;
  font-weight: 500;
}

.axorbit7-info-footer strong {
  color: var(--axorbit7-primary);
  font-size: 24px;
  font-weight: 600;
}

/* Bottom Strip */

.axorbit7-bottom-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  margin-top: 55px;
  border: 1px solid var(--axorbit7-border);
  border-bottom: 0;
  background: var(--axorbit7-white);
}

.axorbit7-strip-heading,
.axorbit7-strip-item {
  min-height: 125px;
  padding: 25px;
  border-right: 1px solid var(--axorbit7-border);
}

.axorbit7-strip-item:last-child {
  border-right: 0;
}

.axorbit7-strip-heading {
  background: var(--axorbit7-primary);
}

.axorbit7-strip-heading span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.axorbit7-strip-heading strong {
  display: block;
  color: var(--axorbit7-white);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
}

.axorbit7-strip-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color 0.25s ease;
}

.axorbit7-strip-item:hover {
  background: var(--axorbit7-soft);
}

.axorbit7-strip-item span {
  color: var(--axorbit7-primary);
  font-size: 12px;
  font-weight: 600;
}

.axorbit7-strip-item p {
  margin: 20px 0 0;
  color: var(--axorbit7-dark);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

/* Animations */

@keyframes axorbit7StatusPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes axorbit7ScrollLine {
  0% {
    top: -20px;
  }

  100% {
    top: 55px;
  }
}

@keyframes axorbit7RotateClockwise {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes axorbit7SignalOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Laptop */

@media (max-width: 1199.98px) {
  .axorbit7-title {
    font-size: clamp(52px, 6vw, 76px);
  }

  .axorbit7-content {
    padding-right: 15px;
  }

  .axorbit7-node-it {
    left: -3%;
  }
}

/* Tablet */

@media (max-width: 991.98px) {
  .axorbit7-hero {
    padding-top: 65px;
  }

  .axorbit7-blueprint::before {
    display: none;
  }

  .axorbit7-content {
    max-width: none;
    padding-right: 0;
  }

  .axorbit7-visual-wrap {
    min-height: 700px;
    margin-top: 20px;
  }

  .axorbit7-orbit-scene {
    margin-right: auto;
  }

  .axorbit7-info-card {
    right: 5%;
  }

  .axorbit7-bottom-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .axorbit7-strip-heading {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--axorbit7-border);
  }
}

/* Mobile */

@media (max-width: 767.98px) {
  .axorbit7-hero {
    padding-top: 45px;
  }

  .axorbit7-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .axorbit7-title {
    font-size: clamp(32px, 10vw, 45px);
    letter-spacing: -3px;
  }

  .axorbit7-message-row {
    display: block;
  }

  .axorbit7-description {
    font-size: 15px;
  }

  .axorbit7-scroll-note {
    display: none;
  }

  .axorbit7-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .axorbit7-primary-btn {
    width: 100%;
  }

  .axorbit7-text-link {
    align-self: flex-start;
  }

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

  .axorbit7-proof-item {
    min-height: 70px;
  }

  .axorbit7-visual-wrap {
    min-height: 640px;
    padding-bottom: 190px;
  }

  .axorbit7-orbit-scene {
    width: 100%;
  }

  .axorbit7-core {
    width: 105px;
    height: 105px;
  }

  .axorbit7-core strong {
    font-size: 38px;
  }

  .axorbit7-node {
    min-width: 95px;
    min-height: 60px;
    padding: 10px;
  }

  .axorbit7-node-security {
    top: 8%;
    right: 2%;
  }

  .axorbit7-node-it {
    top: 60%;
    left: 1%;
  }

  .axorbit7-node-web {
    right: 3%;
    bottom: 5%;
  }

  .axorbit7-info-card {
    right: 0;
    bottom: 0;
    width: 94%;
  }

  .axorbit7-bottom-strip {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .axorbit7-strip-heading,
  .axorbit7-strip-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--axorbit7-border);
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  .axorbit7-ring-middle,
  .axorbit7-signal,
  .axorbit7-status i::after,
  .axorbit7-scroll-note i::after {
    animation: none;
  }

  .axorbit7-changing-word,
  .axorbit7-info-card {
    transition: none;
  }
}

/* =====================================================
   ATHALYX CLIENT SIGNAL TESTIMONIAL CAROUSEL
   Unique prefix: athxvoice11-
===================================================== */

.athxvoice11-section {
  --athxvoice11-primary: #000080;
  --athxvoice11-dark: #101522;
  --athxvoice11-text: #687184;
  --athxvoice11-border: #e0e3ea;
  --athxvoice11-light: #f7f8fa;
  --athxvoice11-soft: #eeeeff;
  --athxvoice11-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: var(--athxvoice11-white);
  color: var(--athxvoice11-dark);
  font-family: "Poppins", sans-serif;
}

.athxvoice11-section *,
.athxvoice11-section *::before,
.athxvoice11-section *::after {
  box-sizing: border-box;
}

/* Heading */

.athxvoice11-heading-row {
  margin-bottom: 35px;
}

.athxvoice11-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--athxvoice11-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.athxvoice11-eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--athxvoice11-primary);
  content: "";
}

.athxvoice11-heading {
  max-width: 720px;
  margin: 0;
  color: var(--athxvoice11-dark);
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.16;
}

.athxvoice11-heading-text {
  max-width: 460px;
  margin: 0 0 4px auto;
  color: var(--athxvoice11-text);
  font-size: 14px;
  line-height: 1.75;
}

/* Carousel Container */

.athxvoice11-carousel {
  position: relative;
  padding: 22px;
  border: 1px solid var(--athxvoice11-border);
  background: var(--athxvoice11-light);
  outline: none;
}

.athxvoice11-carousel:focus-visible {
  outline: 2px solid rgba(0, 0, 128, 0.22);
  outline-offset: 4px;
}

/* Quote Card */

.athxvoice11-quote-card {
  position: relative;
  display: flex;
  min-height: 390px;
  justify-content: space-between;
  flex-direction: column;
  overflow: visible;
  padding: 35px;
  border: 1px solid var(--athxvoice11-border);
  background: var(--athxvoice11-white);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.athxvoice11-quote-card::before,
.athxvoice11-quote-card::after {
  position: absolute;
  z-index: -1;
  border: 1px solid var(--athxvoice11-border);
  background: var(--athxvoice11-white);
  content: "";
}

.athxvoice11-quote-card::before {
  top: 8px;
  right: -8px;
  bottom: -8px;
  left: 8px;
}

.athxvoice11-quote-card::after {
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  opacity: 0.55;
}

.athxvoice11-quote-card.athxvoice11-changing {
  opacity: 0;
  transform: translateY(7px);
}

.athxvoice11-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.athxvoice11-service-tag {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--athxvoice11-primary);
  color: var(--athxvoice11-primary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.athxvoice11-slide-number {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.athxvoice11-slide-number strong {
  color: var(--athxvoice11-primary);
  font-size: 16px;
  font-weight: 500;
}

.athxvoice11-slide-number small {
  color: var(--athxvoice11-text);
  font-size: 9px;
}

.athxvoice11-quote-symbol {
  position: absolute;
  top: 55px;
  right: 30px;
  color: rgba(0, 0, 128, 0.07);
  font-family: Georgia, serif;
  font-size: 75px;
  line-height: 1;
  pointer-events: none;
}

.athxvoice11-quote {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 48px 0;
  color: var(--athxvoice11-dark);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.7px;
  line-height: 1.58;
}

/* Client Details */

.athxvoice11-client {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--athxvoice11-border);
}

.athxvoice11-avatar {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  background: var(--athxvoice11-primary);
  color: var(--athxvoice11-white);
  font-size: 13px;
  font-weight: 500;
}

.athxvoice11-client-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.athxvoice11-client-copy strong {
  color: var(--athxvoice11-dark);
  font-size: 16px;
  font-weight: 500;
}

.athxvoice11-client-copy span {
  margin-top: 0px;
  color: var(--athxvoice11-text);
  font-size: 11px;
}

.athxvoice11-client-copy small {
  margin-top: 2px;
  color: var(--athxvoice11-text);
  font-size: 11px;
  display: none;
}

.athxvoice11-rating {
  color: #ff9c08;
  font-size: 16px;
  letter-spacing: 3px;
}

/* Result Card */

.athxvoice11-result-card {
  display: flex;
  height: 100%;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--athxvoice11-primary);
  background: var(--athxvoice11-primary);
  color: var(--athxvoice11-white);
}

.athxvoice11-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.athxvoice11-result-top > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.athxvoice11-live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--athxvoice11-white);
  border-radius: 50%;
}

.athxvoice11-live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  content: "";
  animation: athxvoice11Pulse 2s ease-in-out infinite;
}

.athxvoice11-result-value {
  display: block;
  margin-top: 40px;
  color: var(--athxvoice11-white);
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
}

.athxvoice11-result-card h3 {
  margin: 8px 0 15px;
  color: var(--athxvoice11-white);
  font-size: 18px;
  font-weight: 500;
}

.athxvoice11-result-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.7;
}

/* Signal Bars */

.athxvoice11-signal {
  display: flex;
  height: 63px;
  align-items: flex-end;
  gap: 6px;
  margin-top: auto;
  padding-top: 25px;
}

.athxvoice11-signal span {
  width: 100%;
  min-height: 5px;
  background: rgba(255, 255, 255, 0.72);
  transition: height 0.4s ease;
}

.athxvoice11-result-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.athxvoice11-result-footer span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
}

.athxvoice11-result-footer strong {
  color: var(--athxvoice11-white);
  font-size: 20px;
  font-weight: 500;
}

/* Client Selector Strip */

.athxvoice11-selector-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.athxvoice11-selector {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 11px;
  padding: 11px;
  border: 1px solid var(--athxvoice11-border);
  background: var(--athxvoice11-white);
  color: #000000;
  text-align: left;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

.athxvoice11-selector::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  background: transparent;
  content: "";
}

.athxvoice11-selector:hover {
  border-color: var(--athxvoice11-primary);
  transform: translateY(-3px);
}

.athxvoice11-selector.active {
  border-color: var(--athxvoice11-primary);
  background: var(--athxvoice11-soft);
}

.athxvoice11-selector.active::before {
  background: var(--athxvoice11-primary);
}

.athxvoice11-selector-avatar {
  display: flex;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--athxvoice11-border);
  background: var(--athxvoice11-white);
  color: #000000;
  font-size: 10px;
  font-weight: 500;
}

.athxvoice11-selector.active .athxvoice11-selector-avatar {
  border-color: var(--athxvoice11-primary);
  background: var(--athxvoice11-primary);
  color: var(--athxvoice11-white);
}

.athxvoice11-selector-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.athxvoice11-selector-copy strong {
  overflow: hidden;
  color: var(--athxvoice11-dark);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.athxvoice11-selector-copy small {
  margin-top: 3px;
  color: var(--athxvoice11-text);
  font-size: 10px;
}

/* Bottom Bar */

.athxvoice11-bottom-bar {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.athxvoice11-progress-track {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: var(--athxvoice11-border);
}

.athxvoice11-progress {
  display: block;
  width: 0;
  height: 100%;
  background: var(--athxvoice11-primary);
}

.athxvoice11-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.athxvoice11-control {
  display: inline-flex;
  min-width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 9px 14px;
  border: 1px solid var(--athxvoice11-primary);
  background: var(--athxvoice11-white);
  color: #000000;
  font-size: 11px;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.athxvoice11-control:hover {
  background: var(--athxvoice11-primary);
  color: var(--athxvoice11-white);
}

.athxvoice11-control-next {
  min-width: 92px;
  justify-content: space-between;
  background: var(--athxvoice11-primary);
  color: var(--athxvoice11-white);
}

.athxvoice11-control-next:hover {
  background: var(--athxvoice11-white);
  color: #000000;
}

/* Animation */

@keyframes athxvoice11Pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Tablet */

@media (max-width: 991.98px) {
  .athxvoice11-section {
    padding: 68px 0;
  }

  .athxvoice11-heading-text {
    margin-left: 0;
  }

  .athxvoice11-result-card {
    min-height: 285px;
  }

  .athxvoice11-selector-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */

@media (max-width: 767.98px) {
  .athxvoice11-section {
    padding: 55px 0;
  }

  .athxvoice11-heading {
    font-size: 34px;
    letter-spacing: -1.3px;
  }

  .athxvoice11-carousel {
    padding: 14px;
  }

  .athxvoice11-quote-card {
    min-height: 410px;
    padding: 25px 21px;
  }

  .athxvoice11-quote-card::before,
  .athxvoice11-quote-card::after {
    display: none;
  }

  .athxvoice11-quote {
    margin: 38px 0;
    font-size: 20px;
  }

  .athxvoice11-client {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .athxvoice11-rating {
    width: 100%;
    padding-left: 58px;
  }

  .athxvoice11-result-card {
    min-height: 280px;
  }

  .athxvoice11-selector-strip {
    display: flex;
    overflow-x: auto;
    padding: 2px 0 8px;
    scroll-snap-type: x mandatory;
  }

  .athxvoice11-selector {
    min-width: 210px;
    flex: 0 0 210px;
    scroll-snap-align: start;
  }

  .athxvoice11-bottom-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .athxvoice11-controls {
    width: 100%;
  }

  .athxvoice11-control-next {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .athxvoice11-quote-card,
  .athxvoice11-selector,
  .athxvoice11-control {
    transition: none;
  }

  .athxvoice11-live-dot::after {
    animation: none;
  }
}











/* =====================================================
   ATHALYX INDUSTRY LENS
   Unique prefix: agind88-
===================================================== */

.agind88-section {
  --agind88-primary: #000080;
  --agind88-dark: #111625;
  --agind88-text: #646d7e;
  --agind88-border: #dfe3eb;
  --agind88-light: #f7f8fa;
  --agind88-soft: #eeeeff;
  --agind88-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: var(--agind88-white);
  color: var(--agind88-dark);
  font-family: "Poppins", sans-serif;
}

.agind88-section *,
.agind88-section *::before,
.agind88-section *::after {
  box-sizing: border-box;
}

/* Heading */

.agind88-heading-row {
  margin-bottom: 34px;
}

.agind88-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--agind88-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.agind88-eyebrow::before {
  width: 30px;
  height: 1px;
  background: var(--agind88-primary);
  content: "";
}

.agind88-heading {
  max-width: 760px;
  margin: 0;
  color: var(--agind88-dark);
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 1.16;
}

.agind88-heading-copy {
  max-width: 470px;
  margin: 0 0 3px auto;
  color: var(--agind88-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

/* Main Feature */

.agind88-feature {
  position: relative;
  padding: 26px;
  border: 1px solid var(--agind88-border);
  background: var(--agind88-light);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.agind88-feature.agind88-changing {
  opacity: 0.35;
  transform: translateY(5px);
}

.agind88-feature-index {
  position: absolute;
  top: -1px;
  right: 34px;
  z-index: 4;
  display: flex;
  min-width: 92px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 13px 12px;
  background: var(--agind88-primary);
  color: var(--agind88-white);
}

.agind88-feature-index span {
  font-size: 19px;
  font-weight: 500;
}

.agind88-feature-index small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* Normal-Sized Image */

.agind88-image-wrap {
  position: relative;
  width: 100%;
  max-width: 355px;
  height: 245px;
  overflow: hidden;
  background: var(--agind88-white);
}

.agind88-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.agind88-image-wrap:hover img {
  transform: scale(1.035);
}

.agind88-image-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 12px;
  background: var(--agind88-white);
  color: var(--agind88-dark);
}

.agind88-image-caption span {
  font-size: 13px;
  font-weight: 500;
}

.agind88-image-caption i {
  color: var(--agind88-primary);
  font-size: 12px;
  font-style: normal;
}

/* Content */

.agind88-content {
  padding: 12px 15px;
}

.agind88-category {
  display: block;
  margin-bottom: 12px;
  color: var(--agind88-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.agind88-content h3 {
  max-width: 610px;
  margin: 0;
  color: var(--agind88-dark);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1.1px;
  line-height: 1.22;
}

.agind88-content > p {
  max-width: 650px;
  margin: 17px 0 22px;
  color: var(--agind88-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

.agind88-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--agind88-dark);
  color: #000000;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition:
    gap 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.agind88-link:hover {
  gap: 18px;
  border-color: var(--agind88-primary);
  color: var(--agind88-primary);
}

/* Priorities */

.agind88-priority-panel {
  height: 100%;
  min-height: 245px;
  padding: 21px;
  border: 1px solid var(--agind88-border);
  background: var(--agind88-white);
}

.agind88-priority-label {
  display: block;
  margin-bottom: 15px;
  color: var(--agind88-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.agind88-priority {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--agind88-border);
}

.agind88-priority span {
  flex: 0 0 auto;
  color: var(--agind88-primary);
  font-size: 10px;
  font-weight: 500;
}

.agind88-priority p {
  margin: 0;
  color: var(--agind88-dark);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
}

.agind88-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 16px;
}

.agind88-service-tags span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--agind88-border);
  background: var(--agind88-light);
  color: var(--agind88-dark);
  font-size: 9px;
  font-weight: 400;
}

/* Carousel Header */

.agind88-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-top: 28px;
  margin-bottom: 13px;
}

.agind88-carousel-header > div:first-child > span {
  display: block;
  margin-bottom: 4px;
  color: var(--agind88-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.agind88-carousel-header p {
  margin: 0;
  color: var(--agind88-text);
  font-size: 11px;
  font-weight: 400;
}

.agind88-controls {
  display: flex;
  gap: 7px;
}

.agind88-control {
  display: inline-flex;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--agind88-primary);
  background: var(--agind88-white);
  color: #000000;
  font-size: 13px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.agind88-control:hover {
  background: var(--agind88-primary);
  color: var(--agind88-white);
}

/* Industry Carousel */

.agind88-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 3px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.agind88-card {
  position: relative;
  display: flex;
  min-width: 225px;
  flex: 0 0 225px;
  align-items: center;
  gap: 12px;
  padding: 9px;
  border: 1px solid var(--agind88-border);
  background: var(--agind88-white);
  color: #000000;
  text-align: left;
  scroll-snap-align: start;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.agind88-card::after {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  background: transparent;
  content: "";
}

.agind88-card:hover {
  border-color: var(--agind88-primary);
  transform: translateY(-3px);
}

.agind88-card.active {
  border-color: var(--agind88-primary);
  background: var(--agind88-soft);
}

.agind88-card.active::after {
  background: var(--agind88-primary);
}

.agind88-card img {
  width: 57px;
  height: 57px;
  flex: 0 0 57px;
  object-fit: cover;
}

.agind88-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.agind88-card-copy small {
  margin-bottom: 5px;
  color: var(--agind88-primary);
  font-size: 10px;
  font-weight: 500;
}

.agind88-card-copy strong {
  color: var(--agind88-dark);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

/* Bottom Note */

.agind88-bottom-note {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 10px;
  padding: 19px 22px;
  border: 1px solid var(--agind88-border);
  background: var(--agind88-white);
}

.agind88-bottom-note > span {
  color: var(--agind88-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.agind88-bottom-note p {
  margin: 0;
  color: var(--agind88-text);
  font-size: 12px;
  font-weight: 400;
}

.agind88-bottom-note a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid var(--agind88-primary);
  background: var(--agind88-primary);
  color: var(--agind88-white);
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.agind88-bottom-note a:hover {
  background: var(--agind88-white);
  color: #000000;
}

/* Tablet */

@media (max-width: 991.98px) {
  .agind88-section {
    padding: 66px 0;
  }

  .agind88-heading-copy {
    margin-left: 0;
  }

  .agind88-image-wrap {
    max-width: 100%;
    height: 280px;
  }

  .agind88-content {
    padding: 10px 0;
  }

  .agind88-priority-panel {
    min-height: auto;
  }
}

/* Mobile */

@media (max-width: 767.98px) {
  .agind88-section {
    padding: 52px 0;
  }

  .agind88-heading {
    font-size: 33px;
    letter-spacing: -1.2px;
  }

  .agind88-feature {
    padding: 16px;
  }

  .agind88-feature-index {
    right: 16px;
  }

  .agind88-image-wrap {
    height: 225px;
  }

  .agind88-content h3 {
    font-size: 27px;
  }

  .agind88-carousel-header {
    align-items: flex-start;
  }

  .agind88-carousel-header p {
    max-width: 220px;
  }

  .agind88-card {
    min-width: 205px;
    flex-basis: 205px;
  }

  .agind88-bottom-note {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .agind88-bottom-note a {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agind88-feature,
  .agind88-image-wrap img,
  .agind88-carousel,
  .agind88-card {
    scroll-behavior: auto;
    transition: none;
  }
}



/* =====================================================
   ATHALYX EDITORIAL PROJECT MOSAIC
   Unique prefix: athxfolio88-
===================================================== */

.athxfolio88-section {
  --athxfolio88-primary: #000080;
  --athxfolio88-dark: #111625;
  --athxfolio88-text: #626c7e;
  --athxfolio88-border: #dde2eb;
  --athxfolio88-light: #f7f8fa;
  --athxfolio88-soft: #eeeeff;
  --athxfolio88-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--athxfolio88-white);
  color: var(--athxfolio88-dark);
  font-family: "Poppins", sans-serif;
}

.athxfolio88-section *,
.athxfolio88-section *::before,
.athxfolio88-section *::after {
  box-sizing: border-box;
}

/* Heading */

.athxfolio88-heading-row {
  margin-bottom: 34px;
}

.athxfolio88-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--athxfolio88-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.athxfolio88-eyebrow::before {
  width: 30px;
  height: 1px;
  background: var(--athxfolio88-primary);
  content: "";
}

.athxfolio88-main-heading {
  max-width: 790px;
  margin: 0;
  color: var(--athxfolio88-dark);
  font-size: clamp(34px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.2;
}

.athxfolio88-heading-note {
  max-width: 500px;
  margin-left: auto;
}

.athxfolio88-heading-note > span {
  display: block;
  margin-bottom: 8px;
  color: var(--athxfolio88-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.athxfolio88-heading-note p {
  margin: 0;
  color: var(--athxfolio88-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

/* Filter Strip */

.athxfolio88-category-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 22px;
  padding: 13px;
  border: 1px solid var(--athxfolio88-border);
  background: var(--athxfolio88-light);
}

.athxfolio88-category-intro {
  margin-right: 7px;
  color: var(--athxfolio88-dark);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.athxfolio88-filter {
  min-height: 39px;
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--athxfolio88-border);
  background: var(--athxfolio88-white);
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.athxfolio88-filter:hover {
  border-color: var(--athxfolio88-primary);
  transform: translateY(-2px);
}

.athxfolio88-filter.active {
  border-color: var(--athxfolio88-primary);
  background: var(--athxfolio88-primary);
  color: var(--athxfolio88-white);
}

.athxfolio88-project-count {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 5px;
  margin-left: auto;
  color: var(--athxfolio88-text);
  font-size: 12px;
  white-space: nowrap;
}

.athxfolio88-project-count strong {
  color: var(--athxfolio88-primary);
  font-size: 20px;
  font-weight: 500;
}

/* Mosaic Grid */

.athxfolio88-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.athxfolio88-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--athxfolio88-border);
  background: var(--athxfolio88-white);
  color: #000000;
  text-align: left;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    opacity 0.25s ease;
}

.athxfolio88-card-offset {
  margin-top: 30px;
}

.athxfolio88-card:hover {
  border-color: var(--athxfolio88-primary);
  box-shadow: 0 18px 38px rgba(17, 22, 37, 0.09);
  transform: translateY(-6px);
}

.athxfolio88-card.active {
  border-color: var(--athxfolio88-primary);
  box-shadow: 7px 7px 0 rgba(0, 0, 128, 0.09);
}

.athxfolio88-card.active::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: 3px;
  background: var(--athxfolio88-primary);
  content: "";
}

.athxfolio88-card.athxfolio88-hidden {
  display: none;
}

/* Card Top */

.athxfolio88-card-top {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 14px;
}

.athxfolio88-card-top small {
  color: var(--athxfolio88-primary);
  font-size: 12px;
  font-weight: 500;
}

.athxfolio88-card-top em {
  overflow: hidden;
  color: var(--athxfolio88-text);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Image */

.athxfolio88-image-wrap {
  position: relative;
  display: block;
  height: 185px;
  overflow: hidden;
  background: var(--athxfolio88-light);
}

.athxfolio88-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    opacity 0.3s ease;
}

.athxfolio88-card:hover
.athxfolio88-image-wrap img {
  transform: scale(1.045);
}

.athxfolio88-image-action {
  position: absolute;
  right: 11px;
  bottom: 11px;
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 14px;
  padding: 8px 11px;
  background: var(--athxfolio88-white);
  color: #000000;
  font-size: 11px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.athxfolio88-image-action i {
  color: var(--athxfolio88-primary);
  font-size: 13px;
  font-style: normal;
}

.athxfolio88-card:hover
.athxfolio88-image-action,
.athxfolio88-card.active
.athxfolio88-image-action {
  opacity: 1;
  transform: translateY(0);
}

/* Card Content */

.athxfolio88-card-content {
  display: block;
  min-height: 150px;
  padding: 19px 16px 16px;
}

.athxfolio88-card-content strong {
  display: block;
  margin-bottom: 9px;
  color: var(--athxfolio88-dark);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.32;
}

.athxfolio88-card-content p {
  margin: 0;
  color: var(--athxfolio88-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

/* Result Footer */

.athxfolio88-card-result {
  display: flex;
  min-height: 69px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 13px 16px;
  border-top: 1px solid var(--athxfolio88-border);
  background: var(--athxfolio88-light);
}

.athxfolio88-card-result small {
  color: var(--athxfolio88-text);
  font-size: 11px;
  font-weight: 400;
}

.athxfolio88-card-result strong {
  max-width: 150px;
  color: var(--athxfolio88-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
}

/* Project Detail Panel */

.athxfolio88-detail {
  display: grid;
  grid-template-columns:
    0.55fr
    2.2fr
    1.1fr
    auto;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--athxfolio88-border);
  background: var(--athxfolio88-white);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.athxfolio88-detail.athxfolio88-detail-changing {
  opacity: 0.25;
  transform: translateY(6px);
}

.athxfolio88-detail-index,
.athxfolio88-detail-main,
.athxfolio88-detail-insight,
.athxfolio88-detail-action {
  min-height: 215px;
  padding: 25px;
  border-right: 1px solid var(--athxfolio88-border);
}

.athxfolio88-detail-index {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: var(--athxfolio88-primary);
}

.athxfolio88-detail-index span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.athxfolio88-detail-index strong {
  color: var(--athxfolio88-white);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.athxfolio88-detail-main {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.athxfolio88-detail-service {
  display: block;
  margin-bottom: 11px;
  color: var(--athxfolio88-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.athxfolio88-detail-main h3 {
  max-width: 690px;
  margin: 0;
  color: var(--athxfolio88-dark);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 1.3;
}

.athxfolio88-detail-main p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--athxfolio88-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

/* Insight */

.athxfolio88-detail-insight {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--athxfolio88-light);
}

.athxfolio88-detail-insight > span {
  display: block;
  margin-bottom: 13px;
  color: var(--athxfolio88-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.athxfolio88-detail-insight strong {
  margin-bottom: 9px;
  color: var(--athxfolio88-dark);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.athxfolio88-detail-insight p {
  margin: 0;
  color: var(--athxfolio88-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}

/* Actions */

.athxfolio88-detail-action {
  display: flex;
  min-width: 190px;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border-right: 0;
}

.athxfolio88-detail-action a,
.athxfolio88-detail-action button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 13px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.athxfolio88-detail-action a {
  border: 1px solid var(--athxfolio88-primary);
  background: var(--athxfolio88-primary);
  color: var(--athxfolio88-white);
}

.athxfolio88-detail-action a:hover {
  background: var(--athxfolio88-white);
  color: #000000;
}

.athxfolio88-detail-action button {
  border: 1px solid var(--athxfolio88-border);
  background: var(--athxfolio88-white);
  color: #000000;
}

.athxfolio88-detail-action button:hover {
  border-color: var(--athxfolio88-primary);
  background: var(--athxfolio88-soft);
}

/* Tablet */

@media (max-width: 1199.98px) {
  .athxfolio88-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .athxfolio88-card-offset {
    margin-top: 0;
  }

  .athxfolio88-detail {
    grid-template-columns: 0.6fr 2fr 1.1fr;
  }

  .athxfolio88-detail-action {
    grid-column: 1 / -1;
    min-height: auto;
    flex-direction: row;
    border-top: 1px solid var(--athxfolio88-border);
  }

  .athxfolio88-detail-action a,
  .athxfolio88-detail-action button {
    width: 50%;
  }
}

/* Tablet */

@media (max-width: 991.98px) {
  .athxfolio88-section {
    padding: 66px 0;
  }

  .athxfolio88-heading-note {
    margin-left: 0;
  }

  .athxfolio88-detail {
    grid-template-columns: 0.55fr 2fr;
  }

  .athxfolio88-detail-insight {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid var(--athxfolio88-border);
  }
}

/* Mobile */

@media (max-width: 767.98px) {
  .athxfolio88-section {
    padding: 54px 0;
  }

  .athxfolio88-main-heading {
    font-size: 34px;
  }

  .athxfolio88-category-strip {
    margin-right: -12px;
  }

  .athxfolio88-project-count {
    margin-left: 0;
  }

  .athxfolio88-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 2px 2px 17px;
    scroll-snap-type: x mandatory;
  }

  .athxfolio88-card {
    min-width: 280px;
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .athxfolio88-image-wrap {
    height: 180px;
  }

  .athxfolio88-detail {
    grid-template-columns: 1fr;
  }

  .athxfolio88-detail-index,
  .athxfolio88-detail-main,
  .athxfolio88-detail-insight,
  .athxfolio88-detail-action {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--athxfolio88-border);
  }

  .athxfolio88-detail-index {
    align-items: center;
    flex-direction: row;
  }

  .athxfolio88-detail-index strong {
    font-size: 34px;
  }

  .athxfolio88-detail-main h3 {
    font-size: 27px;
  }

  .athxfolio88-detail-action {
    flex-direction: column;
    border-bottom: 0;
  }

  .athxfolio88-detail-action a,
  .athxfolio88-detail-action button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .athxfolio88-card,
  .athxfolio88-image-wrap img,
  .athxfolio88-image-action,
  .athxfolio88-detail {
    transition: none;
  }
}






/* =====================================================
   ATHALYX SERVICE PRISM
   Unique prefix: athxsvcprism-
===================================================== */

.athxsvcprism-section {
  --athxsvcprism-primary: #000080;
  --athxsvcprism-accent: #000080;
  --athxsvcprism-soft: #eeeeff;
  --athxsvcprism-dark: #111625;
  --athxsvcprism-text: #626d80;
  --athxsvcprism-border: #dde2eb;
  --athxsvcprism-light: #f5f7fa;
  --athxsvcprism-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--athxsvcprism-white);
  color: var(--athxsvcprism-dark);
  font-family: "Poppins", sans-serif;
}

/* Email Trust green color override */

.athxsvcprism-category[
  data-athxsvcprism-category="email"
] {
  --athxsvcprism-tab-color: #1f7a4d !important;
}

/*
  Overrides the dynamic accent values added by JavaScript
  whenever Email Trust is the active category.
*/

.athxsvcprism-section:has(
  .athxsvcprism-category[
    data-athxsvcprism-category="email"
  ].active
) {
  --athxsvcprism-accent: #1f7a4d !important;
  --athxsvcprism-soft: #eaf7f0 !important;
}

.athxsvcprism-section *,
.athxsvcprism-section *::before,
.athxsvcprism-section *::after {
  box-sizing: border-box;
}

/* =====================================================
   HEADING
===================================================== */

.athxsvcprism-heading-row {
  margin-bottom: 29px;
}

.athxsvcprism-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  color: var(--athxsvcprism-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.athxsvcprism-eyebrow::before {
  width: 29px;
  height: 1px;
  background: var(--athxsvcprism-primary);
  content: "";
}

.athxsvcprism-main-heading {
  max-width: 790px;
  margin: 0;
  color: var(--athxsvcprism-dark);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 1.18;
}

.athxsvcprism-heading-copy {
  max-width: 475px;
  margin: 0 0 3px auto;
  color: var(--athxsvcprism-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}

/* =====================================================
   MAIN SHELL
===================================================== */

.athxsvcprism-shell {
  overflow: hidden;
  border: 1px solid var(--athxsvcprism-border);
  background: var(--athxsvcprism-white);
  box-shadow: 0 22px 55px rgba(17, 22, 37, 0.07);
}

/* =====================================================
   CATEGORY BAR
===================================================== */

.athxsvcprism-category-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--athxsvcprism-border);
  background: var(--athxsvcprism-light);
}

.athxsvcprism-category {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 0;
  border-right: 1px solid var(--athxsvcprism-border);
  background: transparent;
  color: #000000;
  text-align: left;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.athxsvcprism-category:last-child {
  border-right: 0;
}

.athxsvcprism-category::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--athxsvcprism-tab-color);
  content: "";
  opacity: 0;
}

.athxsvcprism-category:hover {
  background: var(--athxsvcprism-white);
}

.athxsvcprism-category.active {
  background: var(--athxsvcprism-tab-color);
  color: var(--athxsvcprism-white);
}

.athxsvcprism-category.active::after {
  opacity: 1;
}

.athxsvcprism-category-icon {
  display: flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--athxsvcprism-border);
  background: var(--athxsvcprism-white);
  color: var(--athxsvcprism-tab-color);
}

.athxsvcprism-category-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.athxsvcprism-category-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.athxsvcprism-category-copy small {
  margin-bottom: 3px;
  color: var(--athxsvcprism-tab-color);
  font-size: 11px;
  font-weight: 500;
}

.athxsvcprism-category-copy strong {
  color: var(--athxsvcprism-dark);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.athxsvcprism-category.active
.athxsvcprism-category-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.athxsvcprism-category.active
.athxsvcprism-category-copy strong {
  color: var(--athxsvcprism-white);
}

/* =====================================================
   DYNAMIC STAGE
===================================================== */

.athxsvcprism-stage {
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.athxsvcprism-stage.athxsvcprism-changing {
  opacity: 0.22;
  transform: translateY(5px);
}

/* =====================================================
   IMAGE AREA
===================================================== */

.athxsvcprism-visual {
  position: relative;
  height: 100%;
  min-height: 455px;
  overflow: hidden;
  background: var(--athxsvcprism-light);
}

.athxsvcprism-visual > img {
  width: 100%;
  height: 100%;
  min-height: 455px;
  display: block;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.athxsvcprism-visual:hover > img {
  transform: scale(1.04);
}

.athxsvcprism-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 35, 0.13);
  content: "";
  pointer-events: none;
}

/* Decorative Image Shapes */

.athxsvcprism-visual-shape {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 76px;
  height: 76px;
}

.athxsvcprism-visual-shape span:first-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 1px;
  background: var(--athxsvcprism-white);
}

.athxsvcprism-visual-shape span:last-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 76px;
  background: var(--athxsvcprism-white);
}

/* Image Badge */

.athxsvcprism-image-badge {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  background: var(--athxsvcprism-white);
}

.athxsvcprism-image-badge > span {
  display: flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  background: var(--athxsvcprism-accent);
  color: var(--athxsvcprism-white);
  font-size: 12px;
  font-weight: 500;
}

.athxsvcprism-image-badge > div {
  display: flex;
  flex-direction: column;
}

.athxsvcprism-image-badge small {
  margin-bottom: 2px;
  color: var(--athxsvcprism-text);
  font-size: 11px;
}

.athxsvcprism-image-badge strong {
  color: var(--athxsvcprism-dark);
  font-size: 13px;
  font-weight: 500;
}

/* Floating Icon */

.athxsvcprism-floating-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  background: var(--athxsvcprism-accent);
  color: var(--athxsvcprism-white);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.22);
}

.athxsvcprism-floating-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================================================
   CONTENT AREA
===================================================== */

.athxsvcprism-content {
  display: flex;
  min-height: 455px;
  flex-direction: column;
  padding: 29px;
}

.athxsvcprism-content-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.athxsvcprism-label {
  display: block;
  margin-bottom: 7px;
  color: var(--athxsvcprism-accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.athxsvcprism-content h3 {
  max-width: 650px;
  margin: 0;
  color: var(--athxsvcprism-dark);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.24;
}

.athxsvcprism-count {
  display: flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 5px;
}

.athxsvcprism-count strong {
  color: var(--athxsvcprism-accent);
  font-size: 24px;
  font-weight: 500;
}

.athxsvcprism-count span {
  max-width: 70px;
  color: var(--athxsvcprism-text);
  font-size: 11px;
  line-height: 1.3;
}

.athxsvcprism-description {
  max-width: 790px;
  margin: 14px 0 20px;
  color: var(--athxsvcprism-text);
  font-size: 13px;
  line-height: 1.7;
}

/* =====================================================
   SERVICE GRID
===================================================== */

.athxsvcprism-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--athxsvcprism-border);
  border-left: 1px solid var(--athxsvcprism-border);
}

.athxsvcprism-service {
  display: grid;
  min-height: 75px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border-right: 1px solid var(--athxsvcprism-border);
  border-bottom: 1px solid var(--athxsvcprism-border);
  background: var(--athxsvcprism-white);
  color: #000000;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.athxsvcprism-service:hover {
  background: var(--athxsvcprism-soft);
  color: #000000;
  transform: translateY(-2px);
}

.athxsvcprism-service-icon {
  display: flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  background: var(--athxsvcprism-soft);
  color: var(--athxsvcprism-accent);
  font-size: 11px;
  font-weight: 500;
}

.athxsvcprism-service strong {
  color: var(--athxsvcprism-dark);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.athxsvcprism-service > svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--athxsvcprism-accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================================================
   BOTTOM BENEFIT ROW
===================================================== */

.athxsvcprism-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: auto;
  padding-top: 21px;
}

.athxsvcprism-benefits {
  display: flex;
  gap: 26px;
}

.athxsvcprism-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.athxsvcprism-benefit > span {
  color: var(--athxsvcprism-accent);
  font-size: 11px;
  font-weight: 500;
}

.athxsvcprism-benefit > div {
  display: flex;
  flex-direction: column;
}

.athxsvcprism-benefit strong {
  margin-bottom: 3px;
  color: var(--athxsvcprism-dark);
  font-size: 13px;
  font-weight: 500;
}

.athxsvcprism-benefit small {
  max-width: 190px;
  color: var(--athxsvcprism-text);
  font-size: 11px;
  line-height: 1.5;
}

/* =====================================================
   CTA
===================================================== */

.athxsvcprism-cta {
  display: flex;
  min-height: 49px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 11px 10px 15px;
  border: 1px solid var(--athxsvcprism-accent);
  background: var(--athxsvcprism-accent);
  color: var(--athxsvcprism-white);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.athxsvcprism-cta > span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--athxsvcprism-white);
  color: #000000;
}

.athxsvcprism-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.athxsvcprism-cta:hover {
  background: var(--athxsvcprism-white);
  color: #000000;
}

/* =====================================================
   RESPONSIVE — LAPTOP
===================================================== */

@media (max-width: 1199.98px) {
  .athxsvcprism-category-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .athxsvcprism-category:nth-child(3),
  .athxsvcprism-category:nth-child(6) {
    border-right: 0;
  }

  .athxsvcprism-category:nth-child(-n + 3) {
    border-bottom: 1px solid var(--athxsvcprism-border);
  }

  .athxsvcprism-content-head {
    align-items: flex-start;
  }

  .athxsvcprism-bottom-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .athxsvcprism-cta {
    align-self: flex-end;
  }
}

/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 991.98px) {
  .athxsvcprism-section {
    padding: 61px 0;
  }

  .athxsvcprism-heading-copy {
    margin-left: 0;
  }

  .athxsvcprism-visual,
  .athxsvcprism-visual > img {
    min-height: 335px;
  }

  .athxsvcprism-content {
    min-height: auto;
  }
}

/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 767.98px) {
  .athxsvcprism-section {
    padding: 50px 0;
  }

  .athxsvcprism-main-heading {
    font-size: 33px;
  }

  .athxsvcprism-category-bar {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .athxsvcprism-category {
    min-width: 190px;
    flex: 0 0 190px;
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .athxsvcprism-visual,
  .athxsvcprism-visual > img {
    min-height: 270px;
  }

  .athxsvcprism-content {
    padding: 22px 19px;
  }

  .athxsvcprism-content-head {
    flex-direction: column;
  }

  .athxsvcprism-service-grid {
    grid-template-columns: 1fr;
  }

  .athxsvcprism-service {
    min-height: 68px;
  }

  .athxsvcprism-benefits {
    flex-direction: column;
    gap: 14px;
  }

  .athxsvcprism-cta {
    width: 100%;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  .athxsvcprism-stage,
  .athxsvcprism-visual img,
  .athxsvcprism-category,
  .athxsvcprism-service,
  .athxsvcprism-cta {
    transition: none;
  }
}






.custom-dropdown {
    position: relative;
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    margin: 0;
    padding: 8px;
    list-style: none !important;

    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;

    z-index: 9999;
}

/* Show dropdown on hover */
.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-menu li {
    margin: 0;
}

.custom-dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    color: #222;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.custom-dropdown-menu li a:hover {
    background: #f5f7f6;
    color: #000;
    padding-left: 17px;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 13px;
    transition: transform 0.25s ease;
}

.custom-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-main > li.nav-item.custom-dropdown {
    list-style-type: none !important;
}







