/* ===========================
   PACHIN FUND - Design System
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
  --primary:     #4A2590;
  --primary-dark:#33196A;
  --primary-light:#6B3DB5;
  --accent:      #F7941D;
  --accent-dark: #D97C10;
  --white:       #FFFFFF;
  --off-white:   #F8F7FC;
  --gray-light:  #EEE9F8;
  --gray-mid:    #A89CC8;
  --gray-dark:   #3D3356;
  --text:        #1E1430;
  --text-muted:  #6B5F8A;
  --success:     #2ECC71;
  --border:      rgba(74,37,144,0.12);

  --shadow-sm:   0 2px 12px rgba(74,37,144,0.08);
  --shadow-md:   0 8px 32px rgba(74,37,144,0.14);
  --shadow-lg:   0 24px 64px rgba(74,37,144,0.18);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --font-main: 'Cairo', 'Tajawal', sans-serif;

  --nav-h: 80px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}

body.lang-en {
  direction: ltr;
  text-align: left;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 32px;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .top {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-logo-text .bottom {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--gray-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--primary);
  border-radius: 100px;
  color: var(--primary);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: var(--primary);
  color: white;
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(247,148,29,0.35);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(247,148,29,0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== PAGE WRAPPER ===== */
.page-content {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(107,61,181,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(247,148,29,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1E0D4A 0%, #33196A 50%, #4A2590 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(247,148,29,0.08);
  filter: blur(80px);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(247,148,29,0.15);
  border: 1px solid rgba(247,148,29,0.3);
  border-radius: 100px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--accent); }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(247,148,29,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(247,148,29,0.5);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: white;
  border-radius: 100px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}

.stat-card .number {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title .accent { color: var(--primary); }

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 40px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,1) 20px, rgba(255,255,255,1) 21px);
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.page-header .breadcrumb a:hover { color: rgba(255,255,255,0.9); }

.page-header .breadcrumb span { color: var(--accent); font-weight: 600; }

.page-header h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer ul a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(247,148,29,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .reg {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom .reg span {
  padding: 4px 12px;
  background: rgba(247,148,29,0.1);
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 100px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -80px;
  left: -80px;
}

.about-visual-card .big-year {
  font-size: 96px;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  position: absolute;
  bottom: 16px;
  left: 24px;
}

.about-visual-card .metric {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.about-visual-card .metric .num {
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
}

.about-visual-card .metric .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.about-floating-badge {
  position: absolute;
  top: -20px;
  left: -24px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-floating-badge .emoji { font-size: 28px; }

.about-floating-badge .text { font-size: 12px; }

.about-floating-badge .text strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
}

.about-text h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.9;
}

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child { border-bottom: none; }

.info-row .key {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  min-width: 160px;
  flex-shrink: 0;
}

.info-row .val {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== SERVICES PAGE ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s;
}

.benefit-card:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.benefit-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}

.benefit-card:hover .benefit-num { color: var(--accent); }

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== ACCORDION ===== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.accordion-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  user-select: none;
  transition: background 0.2s;
}

.accordion-item.open .accordion-header {
  background: var(--gray-light);
  color: var(--primary);
}

.accordion-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-arrow {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
}

.accordion-item.open .accordion-body { display: block; }

/* ===== REPORTS PAGE ===== */
.report-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.report-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
  transform: translateX(-4px);
}

body.lang-en .report-card:hover { transform: translateX(4px); }

.report-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.report-info { flex: 1; }

.report-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.report-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.report-badge {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: var(--gray-light);
  color: var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 22px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: all 0.2s;
  outline: none;
  direction: inherit;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(74,37,144,0.08);
}

.form-row textarea { resize: vertical; min-height: 130px; }

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.contact-info-card .ico {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== HIGHLIGHT STRIP ===== */
.strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 64px 40px;
  text-align: center;
}

.strip h2 {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-stats { display: none; }

  .section { padding: 64px 20px; }
  .page-header { padding: 60px 20px 40px; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-floating-badge { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .cards-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }