/* ==========================================================================
   Aastha IAS — modern overlay (loaded LAST, after the BootstrapMade template).
   Themes (premium | bright | bold) are switched from admin → Appearance via a
   data-theme attribute on .ah-root. Tokens cascade; the hero adds its own
   per-theme treatment via [data-hero-theme]. Bootstrap grid/structure untouched.
   ========================================================================== */

/* ---- Theme tokens --------------------------------------------------------- */
.ah-root,
.ah-root[data-theme="premium"],
.ah-root[data-theme="bright"],
.ah-root[data-theme="bold"] {
  --ah-primary: #7c3aed;
  --ah-primary-2: #6d28d9;
  --ah-accent: #a855f7;
  --ah-accent-soft: #e9d5ff;
  --ah-ink: #0f172a;
  --ah-text-secondary: #475569;
  --ah-muted: #94a3b8;
  --ah-on-primary: #ffffff;
  --ah-surface: #f8fafc;
  --ah-surface-2: #ffffff;
  --ah-border: #e2e8f0;
  --ah-hero-from: #ffffff;
  --ah-hero-via: #f8fafc;
  --ah-hero-to: #f1f5f9;
  --ah-hero-ink: #0f172a;
  --ah-hero-sub: #475569;
  --ah-blob-1: rgba(124, 58, 237, 0.08);
  --ah-blob-2: rgba(168, 85, 247, 0.06);
  --ah-blob-3: rgba(233, 213, 255, 0.05);
}

/* ---- Global polish (all themes) ------------------------------------------ */
.ah-root {
  scroll-behavior: smooth;
}

.ah-root section {
  position: relative;
}

/* Section heading refresh */
.ah-root .section-title h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ah-ink);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.ah-root .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ah-primary), var(--ah-accent));
}

.ah-root .section-title p {
  color: #5b6b7b;
  max-width: 680px;
  margin-inline: auto;
}

/* Section background tokens */
.ah-root .light-background {
  background: var(--ah-surface) !important;
}

.ah-root .accent-background {
  background: linear-gradient(120deg, var(--ah-primary-2), var(--ah-primary)) !important;
  color: var(--ah-on-primary);
}

/* Buttons (template CTAs) */
.ah-root .btn-get-started,
.ah-root .cta-btn {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2)) !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px -10px var(--ah-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ah-root .btn-get-started:hover,
.ah-root .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px var(--ah-primary);
}

/* Card hover lift for common template cards with smooth border-radius and scale animations */
.ah-root .course-item,
.ah-root .team .member,
.ah-root .card,
.ah-root .info-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ah-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ah-root .course-item:hover,
.ah-root .team .member:hover,
.ah-root .card:hover {
  transform: translateY(-6px) scale(1.02);
  border-radius: 24px;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15);
}

.ah-root .course-item img,
.ah-root .team .member img {
  transition: transform 0.5s ease;
}

.ah-root .course-item:hover img {
  transform: scale(1.05);
}

/* Sticky-header subtle shadow once scrolled (template toggles .scrolled on body/header) */
.ah-root .scrolled .header,
.scrolled .header {
  box-shadow: 0 8px 30px -16px rgba(2, 20, 40, 0.5);
}

/* Nicer scrollbar */
.ah-root ::-webkit-scrollbar {
  width: 11px;
}

.ah-root ::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--ah-primary) 60%, #94a3b8);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ah-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: center;
  padding-block: clamp(96px, 12vh, 150px) clamp(56px, 8vh, 104px);
  background: linear-gradient(135deg, var(--ah-hero-from), var(--ah-hero-via) 55%, var(--ah-hero-to));
  color: var(--ah-hero-ink);
}

.ah-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.ah-blob {
  position: absolute;
  width: 46vw;
  height: 46vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
  will-change: transform;
}

.ah-blob--1 {
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, var(--ah-blob-1), transparent 70%);
  animation: ah-float1 16s ease-in-out infinite;
}

.ah-blob--2 {
  bottom: -18%;
  right: -6%;
  background: radial-gradient(circle, var(--ah-blob-2), transparent 70%);
  animation: ah-float2 20s ease-in-out infinite;
}

.ah-blob--3 {
  top: 28%;
  right: 22%;
  background: radial-gradient(circle, var(--ah-blob-3), transparent 70%);
  animation: ah-float3 24s ease-in-out infinite;
}

.ah-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 78%);
}

.ah-hero__wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.ah-eyebrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ah-hero-ink) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 22%, transparent);
  color: var(--ah-hero-ink);
}

.ah-hero__title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  margin: 18px 0 14px;
  color: var(--ah-hero-ink);
  animation: ah-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.ah-hero__desc {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  max-width: 36em;
  color: var(--ah-hero-sub);
  animation: ah-rise 0.7s 0.06s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.ah-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ah-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ah-btn--primary {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  color: var(--ah-on-primary);
  box-shadow: 0 14px 30px -12px var(--ah-primary);
}

.ah-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -12px var(--ah-primary);
  color: #fff;
}

.ah-btn--primary i {
  transition: transform 0.25s ease;
}

.ah-btn--primary:hover i {
  transform: translateX(4px);
}

.ah-btn--ghost {
  background: color-mix(in srgb, var(--ah-hero-ink) 10%, transparent);
  color: var(--ah-hero-ink);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 30%, transparent);
}

.ah-btn--ghost:hover {
  transform: translateY(-3px);
  background: color-mix(in srgb, var(--ah-hero-ink) 18%, transparent);
  color: var(--ah-hero-ink);
}

.ah-btn--app {
  background: color-mix(in srgb, var(--ah-hero-ink) 6%, transparent);
  color: var(--ah-hero-ink);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 22%, transparent);
}

.ah-btn--app:hover {
  transform: translateY(-3px);
  color: var(--ah-hero-ink);
}

.ah-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 44px);
  margin-top: 38px;
}

.ah-stat b {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ah-hero-ink);
  line-height: 1;
}

.ah-stat span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ah-hero-sub);
}

.ah-stat+.ah-stat {
  padding-left: clamp(20px, 4vw, 44px);
  border-left: 1px solid color-mix(in srgb, var(--ah-hero-ink) 18%, transparent);
}

/* Showcase visual / glass card — CSS entrance (no JS/AOS dependency) */
.ah-hero__visual {
  display: flex;
  justify-content: center;
  animation: ah-rise 0.8s 0.15s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.ah-showcase {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 4 / 3.4;
  border-radius: 24px;
  padding: 12px;
  background: color-mix(in srgb, var(--ah-hero-ink) 9%, transparent);
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 18%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
  animation: ah-float-card 7s ease-in-out infinite;
}

.ah-showcase__media {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ah-hero-ink) 12%, transparent);
}

.ah-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ah-showcase__brand {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ah-hero-ink);
}

.ah-showcase__brand i {
  font-size: 3.4rem;
  opacity: 0.92;
}

.ah-showcase__brand span {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.ah-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  background: #fff;
  color: var(--ah-ink);
  box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.45);
}

.ah-chip i {
  color: var(--ah-accent);
}

.ah-chip--1 {
  top: 16px;
  left: -18px;
  animation: ah-float-card 6s ease-in-out infinite;
}

.ah-chip--2 {
  bottom: 22px;
  right: -16px;
  animation: ah-float-card 7.5s 0.5s ease-in-out infinite;
}

/* Hero carousel nav */
.ah-hero__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(20px, 4vh, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 3;
}

.ah-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ah-hero-ink) 28%, transparent);
  background: color-mix(in srgb, var(--ah-hero-ink) 10%, transparent);
  color: var(--ah-hero-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ah-nav-arrow:hover {
  background: color-mix(in srgb, var(--ah-hero-ink) 20%, transparent);
  transform: scale(1.08);
}

.ah-dots {
  display: flex;
  gap: 9px;
}

.ah-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ah-hero-ink) 35%, transparent);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.ah-dots button.on {
  width: 26px;
  background: var(--ah-accent);
}

/* ---- BOLD theme: kinetic, no visual, gradient headline --------------------- */
.ah-hero[data-hero-theme="bold"] .ah-hero__wrap {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__visual {
  display: none;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__cta,
.ah-hero[data-hero-theme="bold"] .ah-hero__stats {
  justify-content: center;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__desc {
  margin-inline: auto;
}

.ah-hero[data-hero-theme="bold"] .ah-hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  background: linear-gradient(100deg, #fff 30%, var(--ah-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---- BRIGHT theme: light bg → dark text, softer chrome -------------------- */
.ah-hero[data-hero-theme="bright"] .ah-hero__grid {
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 70%);
  background-image: linear-gradient(rgba(13, 43, 30, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 43, 30, 0.05) 1px, transparent 1px);
}

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes ah-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes ah-float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes ah-float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 30px) scale(1.12);
  }
}

@keyframes ah-float2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-46px, -28px) scale(1.15);
  }
}

@keyframes ah-float3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 36px) scale(0.9);
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
  .ah-hero__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ah-hero__cta,
  .ah-hero__stats {
    justify-content: center;
  }

  .ah-hero__desc {
    margin-inline: auto;
  }

  .ah-hero__visual {
    margin-top: 8px;
  }

  .ah-eyebrow {
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .ah-showcase {
    width: min(360px, 100%);
  }

  .ah-chip--1 {
    left: 6px;
  }

  .ah-chip--2 {
    right: 6px;
  }

  .ah-hero__stats {
    gap: 18px;
  }

  .ah-stat+.ah-stat {
    padding-left: 18px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  .ah-blob,
  .ah-showcase,
  .ah-chip,
  .ah-hero__title,
  .ah-hero__desc,
  .ah-hero__visual {
    animation: none !important;
  }

  .ah-root {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   WAVE C — inner pages, cards, tables, page headers
   ========================================================================== */

/* ---- Page header banner (PageTitle) — themed, white text on dark gradient -- */
.ah-root .page-title {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--ah-ink), var(--ah-primary-2)) !important;
  color: #fff;
}

.ah-root .page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 80% at 85% 10%, color-mix(in srgb, var(--ah-accent) 35%, transparent), transparent 70%),
    radial-gradient(50% 90% at 10% 110%, color-mix(in srgb, var(--ah-primary) 55%, transparent), transparent 70%);
  opacity: 0.9;
}

.ah-root .page-title .heading {
  position: relative;
  padding: clamp(74px, 11vh, 128px) 0 26px;
}

.ah-root .page-title h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.ah-root .page-title .heading p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin-inline: auto;
}

.ah-root .page-title .breadcrumbs {
  position: relative;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ah-root .page-title .breadcrumbs ol {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.ah-root .page-title .breadcrumbs ol li {
  color: rgba(255, 255, 255, 0.7);
}

.ah-root .page-title .breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.ah-root .page-title .breadcrumbs ol li a:hover {
  color: #fff;
}

.ah-root .page-title .breadcrumbs ol li+li::before {
  content: "/";
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Course cards --------------------------------------------------------- */
.ah-root .customcourse-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 12px 30px -20px rgba(2, 20, 40, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ah-root .col-lg-4.d-flex {
  margin-bottom: 26px;
}

.ah-root .customcourse-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -24px rgba(2, 20, 40, 0.4);
}

.ah-root .customcourse-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ah-root .customcourse-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 22px;
  flex: 1;
}

.ah-root .customcourse-content h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ah-ink);
  margin: 0;
}

.ah-root .customcourse-content>span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ah-primary);
}

.ah-root .customcourse-content p {
  color: #5b6b7b;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 2px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ah-root .customcourse-price {
  margin-top: auto;
}

.ah-root .customcourse-price span {
  display: inline-block;
  font-weight: 700;
  color: var(--ah-ink);
  background: var(--ah-surface-2);
  padding: 6px 12px;
  border-radius: 999px;
}

.ah-root .customcourse-enroll-btn {
  margin-top: 12px;
  text-align: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  color: #fff;
  box-shadow: 0 10px 22px -12px var(--ah-primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ah-root .customcourse-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -12px var(--ah-primary);
  color: #fff;
}

/* ---- Faculty cards -------------------------------------------------------- */
.ah-root .team .member {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 12px 30px -20px rgba(2, 20, 40, 0.4);
}

.ah-root .team .member img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.ah-root .team .member-content {
  padding: 18px 18px 20px;
  text-align: center;
}

.ah-root .team .member-content h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--ah-ink);
  margin-bottom: 2px;
}

.ah-root .team .member-content span {
  display: block;
  font-size: 0.82rem;
  color: var(--ah-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.ah-root .team .member-content p {
  color: #5b6b7b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ah-root .team .member .social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.ah-root .team .member .social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ah-surface-2);
  color: var(--ah-primary);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ah-root .team .member .social a:hover {
  background: var(--ah-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Toppers / testimonials ---------------------------------------------- */
.ah-root .custom-snip1192 {
  height: 100%;
  margin: 0;
  padding: 26px 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 14px 34px -22px rgba(2, 20, 40, 0.45);
  text-align: center;
}

.ah-root .custom-snip1192 .custom-author img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 10px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--ah-primary);
}

.ah-root .custom-snip1192 .custom-author h5 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: var(--ah-ink);
}

.ah-root .custom-snip1192 .rank-exam-batch {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ah-primary);
}

.ah-root .custom-snip1192 blockquote {
  border: 0;
  margin: 12px 0 0;
  padding: 0;
}

.ah-root .custom-snip1192 .custom-description {
  color: #5b6b7b;
  font-size: 0.92rem;
  line-height: 1.6;
  font-style: italic;
}

.ah-root .custom-swiper-container {
  padding-bottom: 55px !important;
  overflow: visible !important;
}

.ah-root .custom-swiper-container .swiper-slide {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 0.6 !important;
  transform: scale(0.9);
}

.ah-root .custom-swiper-container .swiper-slide-active {
  opacity: 1 !important;
  transform: scale(1.05) !important;
  z-index: 10;
}

.ah-root .custom-swiper-container .swiper-pagination {
  bottom: 12px !important;
}

.ah-root .custom-swiper-container .swiper-pagination-bullet {
  background: var(--ah-primary) !important;
  opacity: 0.3 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.3s ease !important;
}

.ah-root .custom-swiper-container .swiper-pagination-bullet-active {
  background: var(--ah-primary) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ---- Call To Action Section (Premium Violet Gradient) --------------------- */
.ah-root .premium-cta-section {
  background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 100%) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ah-root .premium-cta-section h3 {
  color: #ffffff !important;
}

.ah-root .premium-cta-section p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ---- FAQ Accordion summary reset ----------------------------------------- */
.ah-root details summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  list-style: none !important;
  cursor: pointer;
}

.ah-root details summary::-webkit-details-marker {
  display: none !important;
}

/* ---- Resource pages (filters + table) ------------------------------------ */
.ah-root .customresource-filters {
  background: #fff;
  border: 1px solid rgba(2, 20, 40, 0.06);
  border-radius: 16px;
  padding: 18px 18px 22px;
  margin: 26px 0;
  box-shadow: 0 12px 30px -22px rgba(2, 20, 40, 0.4);
}

.ah-root .customresource-filters label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ah-ink);
}

.ah-root .customresource-filters .form-control {
  border-radius: 10px;
  border: 1px solid rgba(2, 20, 40, 0.14);
  padding: 9px 12px;
}

.ah-root .customresource-filters .form-control:focus {
  border-color: var(--ah-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ah-primary) 22%, transparent);
}

.ah-root .customresource-filters .btn-primary {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  border: 0;
  border-radius: 999px;
  padding: 9px 24px;
  font-weight: 600;
}

.ah-root .customresource-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(2, 20, 40, 0.08);
  box-shadow: 0 12px 30px -24px rgba(2, 20, 40, 0.4);
  background: #fff;
}

.ah-root .customresource-table thead th {
  background: linear-gradient(120deg, var(--ah-ink), var(--ah-primary-2));
  color: #fff;
  border: 0;
  font-weight: 600;
  padding: 14px 16px;
}

.ah-root .customresource-table tbody td {
  padding: 13px 16px;
  vertical-align: middle;
  border-color: rgba(2, 20, 40, 0.06);
}

.ah-root .customresource-table tbody tr:nth-child(even) {
  background: var(--ah-surface);
}

.ah-root .customresource-table tbody tr:hover {
  background: color-mix(in srgb, var(--ah-primary) 8%, #fff);
}

.ah-root .customresource-table .btn-success {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2));
  border: 0;
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ah-root .customresource-table .btn-success:hover {
  transform: translateY(-1px);
}

/* ---- Contact info cards --------------------------------------------------- */
.ah-root .contact .info-item {
  background: #fff;
  border: 1px solid rgba(2, 20, 40, 0.06);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px -22px rgba(2, 20, 40, 0.4);
  align-items: flex-start;
  gap: 14px;
}

.ah-root .contact .info-item i {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 1.2rem;
  background: color-mix(in srgb, var(--ah-primary) 14%, #fff);
  color: var(--ah-primary);
}

.ah-root .contact .info-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ah-ink);
  margin: 0 0 2px;
}

.ah-root .contact .info-item p {
  margin: 0;
  color: #5b6b7b;
}

.ah-root .contact .info-wrap iframe {
  border-radius: 14px;
  margin-top: 6px;
}

.ah-root .contact .php-email-form .form-control {
  border-radius: 10px;
}

.ah-root .contact .php-email-form .form-control:focus {
  border-color: var(--ah-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ah-primary) 20%, transparent);
}

/* ---- Generic content cards on inner pages (about "why choose" etc.) ------- */
.ah-root .why-box,
.ah-root .icon-box,
.ah-root .feature-box,
.ah-root .content-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(2, 20, 40, 0.06);
  box-shadow: 0 12px 30px -22px rgba(2, 20, 40, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ah-root .why-box:hover,
.ah-root .icon-box:hover,
.ah-root .feature-box:hover,
.ah-root .content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px -26px rgba(2, 20, 40, 0.4);
}

/* Links in body content adopt the theme accent */
.ah-root .main a:not(.btn):not(.ah-btn):not(.cta-btn):not(.btn-get-started):not(.customcourse-enroll-btn) {
  color: var(--ah-primary);
}

/* ---- Navbar & Header Overrides (Dark theme to match the logo) ------------ */
.ah-root .header {
  background: #01193D !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.ah-root .header .topbar {
  background: #00122e !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.ah-root .header .topbar a,
.ah-root .header .topbar span {
  color: rgba(255, 255, 255, 0.72) !important;
}

.ah-root .header .topbar a:hover {
  color: var(--ah-primary) !important;
}

.ah-root .header .topbar .social-links a {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 0.8;
}

.ah-root .header .topbar .social-links a:hover {
  color: var(--ah-primary) !important;
  opacity: 1;
}

.ah-root .branding {
  background: #01193D !important;
}

.ah-root .navmenu a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
}

.ah-root .navmenu a:hover,
.ah-root .navmenu .active,
.ah-root .navmenu .active:focus {
  color: var(--ah-primary) !important;
}

.ah-root .navmenu .dropdown ul {
  background: #01193D !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
}

.ah-root .navmenu .dropdown ul a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.ah-root .navmenu .dropdown ul a:hover,
.ah-root .navmenu .dropdown ul .active,
.ah-root .navmenu .dropdown ul li:hover>a {
  color: var(--ah-primary) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
}

.ah-root .mobile-nav-toggle {
  color: #ffffff !important;
}

/* ---- Footer Overrides ---------------------------------------------------- */
.ah-root .footer {
  background: var(--ah-surface) !important;
  color: var(--ah-text-secondary) !important;
  border-top: 1px solid var(--ah-border) !important;
  padding-top: 60px;
}

.ah-root .footer .footer-top {
  background: var(--ah-surface) !important;
  border-bottom: 0 !important;
}

.ah-root .footer h4 {
  color: var(--ah-ink) !important;
  font-weight: 700 !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 20px !important;
  font-size: 1rem !important;
}

.ah-root .footer .footer-links ul a,
.ah-root .footer .footer-contact p,
.ah-root .footer .footer-contact span,
.ah-root .footer .footer-about p {
  color: var(--ah-text-secondary) !important;
}

.ah-root .footer .footer-links ul a:hover {
  color: var(--ah-primary) !important;
}

.ah-root .footer .social-links a {
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  color: var(--ah-primary) !important;
  transition: all 0.2s ease !important;
}

.ah-root .footer .social-links a:hover {
  background: var(--ah-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.ah-root .footer .copyright {
  border-top: 1px solid var(--ah-border) !important;
  color: var(--ah-text-secondary) !important;
  padding: 30px 0 !important;
  margin-top: 40px !important;
}

.ah-root .footer .credits {
  color: var(--ah-muted) !important;
}

.ah-root .footer .credits a {
  color: var(--ah-text-secondary) !important;
}

.ah-root .footer .credits a:hover {
  color: var(--ah-primary) !important;
}

/* ---- Section Padding Correction ------------------------------------------ */
.ah-root section:not(.ah-hero) {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.ah-root .page-title {
  margin-bottom: 60px !important;
}

/* ---- About Us Page Modern Styling ---- */
.ah-root .about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--ah-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ah-root .about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ah-root .about-image-wrapper:hover img {
  transform: scale(1.05);
}
.ah-root .about-image-wrapper:hover {
  border-radius: 24px;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15);
}

.ah-root .why-us-card {
  background: var(--ah-surface-2);
  border: 1px solid var(--ah-border);
  border-radius: 14px;
  padding: 32px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.ah-root .why-us-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-radius: 24px;
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15);
}
.ah-root .why-us-card-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ah-primary);
  display: block;
  margin-bottom: 12px;
  font-family: "Raleway", sans-serif;
}
.ah-root .why-us-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ah-ink);
  margin-bottom: 12px;
  font-family: "Raleway", sans-serif;
}
.ah-root .why-us-card-body {
  font-size: 0.9rem;
  color: var(--ah-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ---- About Us Page Layout & Visual Upgrades (TSX-safe overrides) ---- */
.ah-root .about .col-lg-6 img {
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.ah-root .about .col-lg-6 img:hover {
  transform: translateY(-4px) scale(1.02) !important;
  border-radius: 24px !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.2) !important;
}

.ah-root .why-us .row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  justify-content: center !important;
}
.ah-root .why-us .row .card {
  flex: 1 1 300px !important;
  max-width: 360px !important;
  margin: 0 !important;
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  background: var(--ah-surface-2) !important;
  padding: 36px 30px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.ah-root .why-us .row .card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-radius: 24px !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 20px 30px -10px rgba(124, 58, 237, 0.15) !important;
}
.ah-root .why-us .row .card span {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--ah-primary) !important;
  margin-bottom: 12px !important;
  display: block !important;
  font-family: "Raleway", sans-serif !important;
}
.ah-root .why-us .row .card h4 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 12px !important;
  font-family: "Raleway", sans-serif !important;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.ah-root .why-us .row .card p {
  font-size: 0.9rem !important;
  color: var(--ah-text-secondary) !important;
  line-height: 1.6 !important;
}

/* ---- Latest Updates Page Layout & Visual Upgrades ---- */
.ah-root .latest-updates img {
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.ah-root .latest-updates img:hover {
  transform: translateY(-4px) scale(1.02) !important;
  border-radius: 24px !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.2) !important;
}
.ah-root .latest-updates .content h2 {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 24px !important;
  font-family: "Raleway", sans-serif !important;
}
.ah-root .latest-updates .content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
.ah-root .latest-updates .content ul li {
  display: block !important;
}
.ah-root .latest-updates .content ul li a.update-link {
  display: flex !important;
  align-items: center !important;
  padding: 16px 20px !important;
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 12px !important;
  color: var(--ah-ink) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}
.ah-root .latest-updates .content ul li a.update-link::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  height: 100% !important;
  width: 4px !important;
  background: var(--ah-primary) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}
.ah-root .latest-updates .content ul li a.update-link:hover {
  transform: translateX(6px) !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.08) !important;
  color: var(--ah-primary) !important;
}
.ah-root .latest-updates .content ul li a.update-link:hover::before {
  opacity: 1 !important;
}

/* ---- Contact Us Page Layout & Visual Upgrades ---- */
.ah-root .contact .info-wrap {
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
}
.ah-root .contact .info-item {
  background: var(--ah-surface) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 20px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.ah-root .contact .info-item:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.06) !important;
}
.ah-root .contact .info-item i {
  background: color-mix(in srgb, var(--ah-primary) 10%, transparent) !important;
  color: var(--ah-primary) !important;
  border-radius: 50% !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
}
.ah-root .contact .info-item h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 6px !important;
}
.ah-root .contact .info-item p {
  font-size: 0.9rem !important;
  color: var(--ah-text-secondary) !important;
  margin: 0 !important;
}
.ah-root .contact iframe {
  border-radius: 12px !important;
  border: 1px solid var(--ah-border) !important;
}

.ah-root .php-email-form {
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02) !important;
}
.ah-root .php-email-form label {
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  color: var(--ah-ink) !important;
}
.ah-root .php-email-form .form-control {
  border-radius: 10px !important;
  border: 1px solid var(--ah-border) !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  background-color: var(--ah-surface) !important;
  color: var(--ah-ink) !important;
  transition: all 0.2s ease !important;
}
.ah-root .php-email-form .form-control:focus {
  background-color: var(--ah-surface-2) !important;
  border-color: var(--ah-primary) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ah-primary) 15%, transparent) !important;
  outline: 0 !important;
}
.ah-root .php-email-form button[type="submit"] {
  background: linear-gradient(120deg, var(--ah-primary), var(--ah-primary-2)) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 12px 36px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 24px -8px var(--ah-primary) !important;
}
.ah-root .php-email-form button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px -8px var(--ah-primary) !important;
}

/* ---- Blogs Page Layout & Visual Upgrades ---- */
.ah-root .service-details .service-box {
  background: var(--ah-surface-2) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
  margin-bottom: 24px !important;
}
.ah-root .service-details .service-box h4 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--ah-border) !important;
  font-family: "Raleway", sans-serif !important;
}
.ah-root .service-details .services-list,
.ah-root .service-details .download-catalog {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.ah-root .service-details .services-list a,
.ah-root .service-details .download-catalog a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  background: var(--ah-surface) !important;
  border: 1px solid var(--ah-border) !important;
  border-radius: 8px !important;
  color: var(--ah-text-secondary) !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  transition: all 0.25s ease !important;
}
.ah-root .service-details .services-list a i,
.ah-root .service-details .download-catalog a i {
  font-size: 14px !important;
  color: var(--ah-primary) !important;
  transition: transform 0.25s ease !important;
}
.ah-root .service-details .services-list a:hover,
.ah-root .service-details .download-catalog a:hover,
.ah-root .service-details .services-list a.active {
  background: var(--ah-surface-2) !important;
  border-color: rgba(124, 58, 237, 0.3) !important;
  color: var(--ah-primary) !important;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.05) !important;
}
.ah-root .service-details .services-list a:hover i,
.ah-root .service-details .download-catalog a:hover i {
  transform: translateX(3px) !important;
}
.ah-root .service-details .help-box {
  background: linear-gradient(135deg, var(--ah-primary), var(--ah-primary-2)) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 30px 24px !important;
  text-align: center !important;
  box-shadow: 0 10px 25px -8px var(--ah-primary) !important;
}
.ah-root .service-details .help-box h4 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  border: 0 !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
}
.ah-root .service-details .help-box p,
.ah-root .service-details .help-box a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.9rem !important;
}
.ah-root .service-details .help-box a:hover {
  text-decoration: underline !important;
}
.ah-root .service-details .help-icon {
  font-size: 36px !important;
  color: #fff !important;
  margin-bottom: 12px !important;
}

.ah-root .service-details img.services-img {
  border-radius: 16px !important;
  border: 1px solid var(--ah-border) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05) !important;
  margin-bottom: 30px !important;
}
.ah-root .service-details h3 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: var(--ah-ink) !important;
  line-height: 1.4 !important;
  margin-bottom: 16px !important;
  font-family: "Raleway", sans-serif !important;
}
.ah-root .service-details h4 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: var(--ah-ink) !important;
  margin-top: 30px !important;
  margin-bottom: 14px !important;
  font-family: "Raleway", sans-serif !important;
  border: 0 !important;
  padding: 0 !important;
}
.ah-root .service-details p {
  font-size: 0.95rem !important;
  color: var(--ah-text-secondary) !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
}
.ah-root .service-details ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 24px !important;
}
.ah-root .service-details ul li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.95rem !important;
  color: var(--ah-text-secondary) !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}
.ah-root .service-details ul li i {
  color: var(--ah-primary) !important;
  font-size: 16px !important;
  margin-top: 2px !important;
}