/* about us */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.about-section-title h2 {
  font-family: 'Inter', sans-serif; /* or your main site font */
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827; /* dark modern black */
  letter-spacing: 0;
  margin-bottom: 10px;
}
.about-section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0052cc, #62d5ff);
  border-radius: 4px;
  margin: 10px auto 0;
}
.about-section-title p {
  font-size: 1.05rem;
  font-weight: 400;
  color: #6b7280; /* soft gray like the Florida text */
  margin-top: 14px;
  line-height: 1.6;
}

/* ── Grid ── */
.about-certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Card base ── */
.cert-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  align-items: flex-start;
  gap: 22px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease;

  /* scroll reveal */
  opacity: 0;
  transform: translateY(40px);
}
.cert-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.cert-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 24px 52px rgba(0,0,0,0.13);
}

/* top accent bar */
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: 24px 24px 0 0;
  background: var(--card-accent);
}

/* background glow blob */
.cert-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--card-accent);
  opacity: 0.05;
  transition: opacity 0.3s;
}
.cert-card:hover::after { opacity: 0.1; }

.cert-google { --card-accent: #4285F4; transition-delay: 0s; }
.cert-ibm    { --card-accent: #1F70C1; transition-delay: 0.15s; }

/* ── Logo ── */
.cert-logo-wrap {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: #f4f7ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.cert-svg { width: 36px; height: 36px; }
.cert-svg-ibm { width: 48px; height: 24px; }

/* ── Body ── */
.cert-body { flex: 1; }

.cert-issuer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--card-accent);
  margin-bottom: 4px;
}

.cert-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.35;
  margin-bottom: 12px;
}

.cert-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cert-badge {
  background: #e8f0fe;
  color: #1a56db;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.cert-badge-ibm {
  background: #e8f0fe;
  color: #1F70C1;
}

.cert-since {
  font-size: 0.82rem;
  color: #888;
  font-weight: 500;
}

/* ── Progress bar ── */
.cert-bar-wrap {
  background: #f0f4ff;
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
}
.cert-bar {
  height: 100%;
  width: 0%;
  border-radius: 50px;
  background: var(--bar-color);
  transition: width 1.6s cubic-bezier(.22,.68,0,1.2) 0.4s;
}
.cert-card.visible .cert-bar { width: 100%; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .about-certs-grid { grid-template-columns: 1fr; }
}
/* about us */



