.elementor-1665 .elementor-element.elementor-element-251ce06{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-dba46b7 *//* ===== GLOBAL ===== */
.alan-case-doc {
  max-width: 860px;
  margin: auto;
  font-family: "Inter", system-ui, sans-serif;
  color: #111;
  line-height: 1.9;
}

/* ===== MAIN TITLE ===== */
.alan-case-header h1 {
  font-size: 38px;
  font-weight: 800;
  color: #43f700;
  margin-bottom: 8px;
}

/* ===== CASE META ===== */
.alan-case-meta {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #43f700;
  border-radius: 20px;
}

/* ===== SECTION HEADINGS ===== */
.alan-case-doc h2 {
  font-size: 22px;
  font-weight: 700;
  color: #43f700;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

/* ===== PARAGRAPHS ===== */
.alan-case-doc p {
  font-size: 15.5px;
  color: #222;
  margin-bottom: 12px;
}

/* ===== LIST STYLE (DOTS) ===== */
.alan-case-doc ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.alan-case-doc li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
}

/* Custom green dot */
.alan-case-doc li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #43f700;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* ===== DIVIDERS ===== */
.alan-case-doc hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 28px 0;
}

/* ===== HIGHLIGHT BLOCK ===== */
.alan-highlight {
  background: linear-gradient(
    90deg,
    rgba(67, 247, 0, 0.12),
    rgba(67, 247, 0, 0.02)
  );
  border-left: 4px solid #43f700;
  padding: 16px 18px;
  margin-top: 18px;
  font-weight: 600;
}

/* ===== TAGLINE ===== */
.alan-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #43f700;
  margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .alan-case-header h1 {
    font-size: 30px;
  }
}
/* ===== BASE ANIMATION SETUP ===== */
.alan-case-doc section {
  opacity: 0;
  transform: translateY(30px);
  animation: alanFadeUp 0.8s ease forwards;
}

/* Stagger animation for sections */
.alan-case-doc section:nth-of-type(1) { animation-delay: 0.1s; }
.alan-case-doc section:nth-of-type(2) { animation-delay: 0.25s; }
.alan-case-doc section:nth-of-type(3) { animation-delay: 0.4s; }
.alan-case-doc section:nth-of-type(4) { animation-delay: 0.55s; }
.alan-case-doc section:nth-of-type(5) { animation-delay: 0.7s; }
.alan-case-doc section:nth-of-type(6) { animation-delay: 0.85s; }

/* Fade up animation */
@keyframes alanFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO TITLE ANIMATION ===== */
.alan-case-header h1 {
  animation: alanTitleReveal 0.9s ease forwards;
}

@keyframes alanTitleReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== META BADGE ANIMATION ===== */
.alan-case-meta {
  animation: alanBadgePop 0.6s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes alanBadgePop {
  to {
    opacity: 1;
    transform: scale(1);
  }
  from {
    transform: scale(0.95);
  }
}

/* ===== LIST ITEM STAGGER ===== */
.alan-case-doc li {
  opacity: 0;
  transform: translateX(-10px);
  animation: alanListIn 0.5s ease forwards;
}

.alan-case-doc li:nth-child(1) { animation-delay: 0.1s; }
.alan-case-doc li:nth-child(2) { animation-delay: 0.2s; }
.alan-case-doc li:nth-child(3) { animation-delay: 0.3s; }
.alan-case-doc li:nth-child(4) { animation-delay: 0.4s; }
.alan-case-doc li:nth-child(5) { animation-delay: 0.5s; }
.alan-case-doc li:nth-child(6) { animation-delay: 0.6s; }

@keyframes alanListIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== HIGHLIGHT PULSE ===== */
.alan-highlight {
  position: relative;
  overflow: hidden;
}

.alan-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(67, 247, 0, 0.25),
    transparent
  );
  transform: translateX(-100%);
  animation: alanGlowSweep 3s ease-in-out infinite;
}

@keyframes alanGlowSweep {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ===== TAGLINE EMPHASIS ===== */
.alan-tagline {
  animation: alanTaglineFade 1s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

@keyframes alanTaglineFade {
  to {
    opacity: 1;
    letter-spacing: 0.3px;
  }
}/* End custom CSS */