/* ================================================================
   MAHMOUD ASAL — Portfolio Styles
================================================================ */

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0a0f; }
::-webkit-scrollbar-thumb { background: #4f46e5; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #6366f1; }
::selection { background: rgba(99,102,241,.35); color: #fff; }

/* ── Nav scrolled ──────────────────────────────────────────── */
.nav-scrolled {
  background: rgba(10,10,15,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1),
              transform .65s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Text gradient ─────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 40%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section helpers ───────────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #818cf8;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-top: .5rem;
  color: #fff;
}
.section-subtitle { color: #6b7280; margin-top: .75rem; font-size: 1rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.4rem;
  background: #6366f1;
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  border-radius: .5rem;
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: #4f46e5;
  box-shadow: 0 8px 24px rgba(99,102,241,.35);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.4rem;
  border: 1px solid rgba(255,255,255,.12);
  color: #d1d5db;
  font-weight: 500;
  font-size: .875rem;
  border-radius: .5rem;
  background: transparent;
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: #6366f1; color: #a5b4fc; background: rgba(99,102,241,.08); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border: 1px solid rgba(255,255,255,.08);
  color: #9ca3af;
  font-size: .8rem;
  border-radius: .5rem;
  background: rgba(255,255,255,.03);
  transition: all .2s;
  text-decoration: none;
}
.btn-ghost:hover { color: #fff; border-color: rgba(99,102,241,.5); background: rgba(99,102,241,.1); }

/* ── Hero blobs / grid ─────────────────────────────────────── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(99,102,241,.28) 0%, transparent 70%);
  top: -180px; left: -120px;
}
.blob-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(52,211,153,.18) 0%, transparent 70%);
  bottom: -100px; right: -80px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── Hero visual ───────────────────────────────────────────── */
.avatar-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(99,102,241,.3);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-anim { animation: floatY 5s ease-in-out infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.avatar-wrap { position: relative; z-index: 1; }
.avatar-inner {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a27 0%, #22223a 100%);
  border: 2px solid rgba(99,102,241,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(99,102,241,.2);
}

.badge-flutter, .badge-dart, .badge-firebase {
  position: absolute;
  font-size: .7rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  animation: floatY 5s ease-in-out infinite;
}
.badge-flutter { top: 8px; right: -20px; background: rgba(2,132,199,.9); color: #fff; animation-delay: 0s; }
.badge-dart    { bottom: 32px; left: -24px; background: rgba(99,102,241,.9); color: #fff; animation-delay: 1.5s; }
.badge-firebase{ bottom: -12px; right: 0; background: rgba(234,88,12,.9); color: #fff; animation-delay: 3s; }

.code-card {
  position: absolute;
  bottom: -48px;
  right: -56px;
  background: #12121a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  min-width: 200px;
}

/* ── Stat cards ────────────────────────────────────────────── */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .875rem .5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .75rem;
  text-align: center;
}
.stat-num { font-size: 1.5rem; font-weight: 800; color: #818cf8; line-height: 1; }
.stat-label { font-size: .7rem; color: #6b7280; font-weight: 500; }

/* ── Scroll indicator ──────────────────────────────────────── */
.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  transition: border-color .2s;
}
.scroll-indicator:hover { border-color: #6366f1; }

/* ── About cards ───────────────────────────────────────────── */
.about-card {
  padding: 1.1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .875rem;
  transition: border-color .2s, background .2s;
}
.about-card:hover { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.05); }
.about-icon-wrap { font-size: 1.5rem; line-height: 1; }

/* ── Achievement cards ─────────────────────────────────────── */
.achievement-card {
  padding: 1.25rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .875rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.achievement-card:hover { border-color: rgba(99,102,241,.4); transform: translateY(-3px); }
.achievement-num { display: block; font-size: 2rem; font-weight: 800; color: #818cf8; }
.achievement-label { display: block; font-size: .8rem; color: #9ca3af; margin-top: .25rem; }

/* ── Timeline ──────────────────────────────────────────────── */
.timeline-line {
  position: absolute;
  left: 1.25rem;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #6366f1, rgba(99,102,241,.1));
}
@media (min-width: 768px) { .timeline-line { left: 50%; transform: translateX(-50%); } }

.timeline-item {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .timeline-item { padding-left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .timeline-item:nth-child(even) .timeline-card { order: -1; text-align: right; }
  .timeline-item:nth-child(even) .timeline-card .flex { flex-direction: row-reverse; }
  .timeline-item:nth-child(even) .timeline-card ul,
  .timeline-item:nth-child(even) .timeline-card .flex.flex-wrap { justify-content: flex-end; }
}

.timeline-dot {
  position: absolute;
  left: .5rem;
  top: .4rem;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  border: 3px solid #0a0a0f;
  background: #6366f1;
  box-shadow: 0 0 12px rgba(99,102,241,.6);
  z-index: 1;
}
.timeline-dot.accent { background: #10b981; box-shadow: 0 0 12px rgba(16,185,129,.6); }
@media (min-width: 768px) {
  .timeline-dot { left: 50%; transform: translateX(-50%); top: 1.25rem; }
}

.timeline-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .2s;
}
.timeline-card:hover { border-color: rgba(99,102,241,.3); }

.timeline-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 2rem;
  background: rgba(99,102,241,.15);
  color: #a5b4fc;
  white-space: nowrap;
}
.timeline-badge.accent { background: rgba(16,185,129,.15); color: #6ee7b7; }

.timeline-bullet {
  position: relative;
  padding-left: 1.1rem;
  font-size: .875rem;
  color: #9ca3af;
}
.timeline-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: .35rem; height: .35rem;
  border-radius: 50%;
  background: #6366f1;
}

/* ── Cert cards ────────────────────────────────────────────── */
.cert-card {
  padding: 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem;
  transition: border-color .2s, transform .2s;
  text-align: center;
}
.cert-card:hover { border-color: rgba(99,102,241,.35); transform: translateY(-4px); }
.cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.cert-badge-img {
  width: 180px;
  height: 100px;
  object-fit: contain;
  border-radius: .5rem;
}
.cert-badge-wide {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: .375rem;
}

/* ── Skill groups ──────────────────────────────────────────── */
.skill-group {
  padding: 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem;
  transition: border-color .2s;
}
.skill-group:hover { border-color: rgba(99,102,241,.3); }
.skill-group-icon { font-size: 1.75rem; }
.skill-group-title { font-weight: 700; color: #f9fafb; margin-top: .5rem; font-size: .95rem; }

.skill-item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .8rem;
  color: #d1d5db;
}
.skill-bar {
  height: 5px;
  background: rgba(255,255,255,.07);
  border-radius: 9999px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #6366f1, #818cf8);
  border-radius: 9999px;
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
}
.skill-fill.animated { width: var(--target-width, 0%); }

/* ── Tech pills ────────────────────────────────────────────── */
.tech-pill {
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  border-radius: 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #d1d5db;
  transition: all .2s;
  cursor: default;
}
.tech-pill:hover, .tech-pill.hl {
  background: rgba(99,102,241,.12);
  border-color: rgba(99,102,241,.4);
  color: #a5b4fc;
}
.soft-pill {
  padding: .35rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  border-radius: 2rem;
  background: rgba(52,211,153,.07);
  border: 1px solid rgba(52,211,153,.2);
  color: #6ee7b7;
}

/* ── Tech tags (inside cards) ──────────────────────────────── */
.tech-tag {
  padding: .2rem .6rem;
  font-size: .7rem;
  font-weight: 500;
  border-radius: .375rem;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  color: #a5b4fc;
}

/* ── Store availability badges ─────────────────────────────── */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .68rem;
  font-weight: 600;
  padding: .28rem .65rem;
  border-radius: .375rem;
  letter-spacing: .01em;
}
.store-badge svg { flex-shrink: 0; }
.store-badge.available {
  background: rgba(16,185,129,.12);
  color: #34d399;
  border: 1px solid rgba(16,185,129,.25);
}
.store-badge.unavailable {
  background: rgba(255,255,255,.03);
  color: #4b5563;
  border: 1px solid rgba(255,255,255,.07);
}

/* ── Project cards ─────────────────────────────────────────── */
.project-card {
  padding: 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1.25rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.project-card:hover {
  border-color: rgba(99,102,241,.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.project-card.featured-proj {
  border-color: rgba(99,102,241,.3);
  background: rgba(99,102,241,.05);
}

.project-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.project-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99,102,241,.1);
  border-radius: .75rem;
}
.project-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  padding: .2rem .6rem;
  border-radius: 2rem;
  background: rgba(52,211,153,.12);
  border: 1px solid rgba(52,211,153,.25);
  color: #6ee7b7;
  margin-bottom: .35rem;
}
.project-title { font-size: 1.1rem; font-weight: 700; color: #fff; }
.project-subtitle { font-size: .8rem; color: #6b7280; margin-top: .15rem; }
.project-desc { font-size: .875rem; color: #9ca3af; line-height: 1.6; margin-bottom: .75rem; }
.project-bullets {
  list-style: none;
  padding: 0;
  margin: .5rem 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.project-bullets li {
  font-size: .82rem;
  color: #9ca3af;
  padding-left: 1.1rem;
  position: relative;
}
.project-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: .35rem; height: .35rem;
  border-radius: 50%;
  background: #6366f1;
}

.inner-stat {
  padding: 1rem;
  background: rgba(255,255,255,.04);
  border-radius: .75rem;
  text-align: center;
}
.inner-num { display: block; font-size: 1.5rem; font-weight: 800; color: #818cf8; }
.inner-label { display: block; font-size: .75rem; color: #9ca3af; margin-top: .25rem; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
  padding: 1.75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s, transform .2s;
}
.testimonial-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-3px); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1rem; }
.testimonial-quote { font-size: .875rem; color: #d1d5db; line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: .875rem; font-weight: 600; color: #fff; }
.author-role { font-size: .75rem; color: #6b7280; }

/* ── Service cards ─────────────────────────────────────────── */
.service-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1.25rem;
  transition: border-color .25s, transform .25s;
}
.service-card:hover { border-color: rgba(99,102,241,.35); transform: translateY(-4px); }
.service-card.featured-service {
  border-color: rgba(99,102,241,.4);
  background: rgba(99,102,241,.07);
  box-shadow: 0 0 40px rgba(99,102,241,.12);
}
.service-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
  background: #6366f1;
  color: #fff;
  border-radius: 0 0 .5rem .5rem;
}
.service-icon { font-size: 2.25rem; }
.service-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-top: .75rem; }
.service-desc { font-size: .85rem; color: #9ca3af; margin-top: .5rem; line-height: 1.6; }
.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-features li {
  font-size: .8rem;
  color: #d1d5db;
  padding-left: 1.25rem;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

/* ── Contact section ───────────────────────────────────────── */
.contact-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(99,102,241,.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .875rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.contact-method:hover { border-color: rgba(99,102,241,.4); background: rgba(99,102,241,.06); }
.contact-method-icon {
  font-size: 1.5rem;
  width: 2.75rem; height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99,102,241,.1);
  border-radius: .625rem;
  flex-shrink: 0;
}
.contact-method-label { font-size: .7rem; color: #6b7280; font-weight: 500; }
.contact-method-value { font-size: .9rem; color: #e5e7eb; font-weight: 500; margin-top: .1rem; }

/* ── Contact form ──────────────────────────────────────────── */
.contact-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1.25rem;
  padding: 2rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .8rem; font-weight: 500; color: #d1d5db; }
.form-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  padding: .65rem .9rem;
  font-size: .875rem;
  color: #f9fafb;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: #4b5563; }
.form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
select.form-input option { background: #12121a; }

/* ── Mobile / Phone Responsiveness ─────────────────────────── */

/* Tablets and below */
@media (max-width: 767px) {
  /* Hero blobs — scale down to prevent horizontal overflow */
  .blob-1 {
    width: 300px; height: 300px;
    top: -80px; left: -60px;
  }
  .blob-2 {
    width: 220px; height: 220px;
    bottom: -50px; right: -40px;
  }

  /* Avatar — scale down */
  .avatar-inner {
    width: 150px; height: 150px;
  }
  .avatar-ring {
    inset: -14px;
  }

  /* Floating badges — tighten positions */
  .badge-flutter { top: 2px; right: -8px; font-size: .6rem; padding: .2rem .55rem; }
  .badge-dart    { bottom: 20px; left: -10px; font-size: .6rem; padding: .2rem .55rem; }
  .badge-firebase{ bottom: -6px; right: 0; font-size: .6rem; padding: .2rem .55rem; }

  /* Code card — switch from absolute to flow layout on mobile */
  .code-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    min-width: 0;
    width: 100%;
  }

  /* Section spacing — tighter on mobile */
  .section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* Cards — reduce padding on mobile */
  .contact-form { padding: 1.25rem; }
  .project-card { padding: 1.25rem; }
  .testimonial-card { padding: 1.25rem; }
  .service-card { padding: 1.5rem 1rem; }
  .timeline-card { padding: 1.1rem; }

  /* Stat cards */
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: .62rem; }
  .stat-card { padding: .65rem .35rem; }

  /* Contact glow — reduce size */
  .contact-glow { width: 300px; height: 200px; }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .avatar-inner {
    width: 120px; height: 120px;
  }
  .avatar-ring { inset: -10px; }

  .badge-flutter, .badge-dart, .badge-firebase {
    font-size: .55rem;
    padding: .15rem .45rem;
  }

  .stat-num { font-size: 1rem; }
  .stat-card { padding: .5rem .25rem; }

  .btn-primary, .btn-secondary {
    font-size: .8rem;
    padding: .5rem 1rem;
  }
  .btn-ghost {
    font-size: .72rem;
    padding: .4rem .7rem;
  }

  .project-header {
    flex-direction: column;
    gap: .75rem;
  }

  .achievement-num { font-size: 1.5rem; }
  .achievement-card { padding: 1rem .75rem; }

  .inner-stat { padding: .75rem .5rem; }
  .inner-num { font-size: 1.2rem; }

  .cert-card { padding: 1rem; }
  .cert-badge-img { width: 140px; height: 80px; }
  .cert-badge-wide { width: 110px; height: 80px; }
}
