/**
 * IRP - About page hero banner
 * Gradient hero, optional background image with overlay, diagonal pattern, all devices responsive
 */

.about-hero {
  position: relative;
  background: linear-gradient(to bottom right, #316BDE, #4D9BD4);
  color: #fff;
  padding: 140px 24px 96px;
  overflow: hidden;
  min-height: 380px;
}

/* Background image layer (optional) */
.about-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark/gradient overlay over background image so text stays readable */
.about-hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.about-hero-has-bg .about-hero-overlay {
  background: linear-gradient(to bottom right, rgb(12 13 14), rgb(86 133 169 / 26%));
}

/* Diagonal stripe pattern overlay */
.about-hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0.12;
  pointer-events: none;
  
}

.about-hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.about-hero-content {
  max-width: 896px;
}

.about-hero-headline {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.about-hero-accent {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  border-radius: 2px;
}

.about-hero-tagline {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.about-hero-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-hero-line {
  width: 96px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.about-hero-desc {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
}

.about-hero-desc br {
  display: block;
}

/* ========== Responsive: all devices ========== */
@media (min-width: 992px) {
  .about-hero {
    padding: 160px 32px 100px;
  }
  .about-hero-container {
    padding: 0 32px;
  }
}

@media (min-width: 768px) {
  .about-hero-headline {
    font-size: 48px;
    margin-bottom: 24px;
  }
  .about-hero-accent {
    width: 96px;
    margin-bottom: 28px;
  }
  .about-hero-tagline {
    font-size: 24px;
  }
  .about-hero-title {
    font-size: 60px;
  }
  .about-hero-desc {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .about-hero {
    padding: 130px 20px 80px;
    min-height: 340px;
  }
  .about-hero-container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 120px 20px 64px;
    min-height: 320px;
  }
  .about-hero-container {
    padding: 0 20px;
  }
  .about-hero-headline {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .about-hero-accent {
    width: 64px;
    margin-bottom: 20px;
  }
  .about-hero-tagline {
    font-size: 18px;
  }
  .about-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .about-hero-line {
    margin-bottom: 24px;
  }
  .about-hero-desc {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 100px 16px 48px;
    min-height: 280px;
  }
  .about-hero-container {
    padding: 0 16px;
  }
  .about-hero-headline {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .about-hero-accent {
    width: 56px;
    height: 3px;
    margin-bottom: 18px;
  }
  .about-hero-tagline {
    font-size: 16px;
  }
  .about-hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .about-hero-line {
    width: 64px;
    margin-bottom: 20px;
  }
  .about-hero-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }
  .about-hero-desc {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .about-hero {
    padding: 88px 12px 40px;
  }
  .about-hero-headline {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .about-hero-tagline {
    font-size: 15px;
  }
  .about-hero-title {
    font-size: 24px;
  }
  .about-hero-desc {
    font-size: 15px;
  }
}

/* ========== About intro (after hero) ========== */
.about-intro {
  padding: 80px 16px;
  background: #fff;
}

.about-intro-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-intro-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.about-intro-bar {
  width: 4px;
  height: 48px;
  background: #2563eb;
  flex-shrink: 0;
}

.about-intro-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.about-intro-subtitle {
  color: #4b5563;
  margin: 0;
  font-size: 1rem;
}

.about-intro-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.about-intro-left,
.about-intro-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro-prose {
  font-size: 1rem;
  line-height: 1.75;
}

.about-intro-text {
  color: #374151;
  margin: 0 0 1em 0;
}

.about-intro-text:last-child {
  margin-bottom: 0;
}

.about-intro-text {
  font-size: 1.125rem;
}

.about-intro-strong {
  color: #111827;
}

.about-intro-facility {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  min-height: 320px;
}

.about-intro-facility-img {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-intro-facility-overlay {
  display: none;
}

.about-intro-facility-caption {
  display: none;
}

.about-intro-facility-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-intro-facility-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.about-intro-facility-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.about-intro-facility-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .about-intro {
    padding: 40px 24px;
  }
  .about-intro-container {
    padding: 0 24px;
  }
  .about-intro-title {
    font-size: 3rem;
  }
  @supports (font-size: clamp(2rem, 4vw, 3rem)) {
    .about-intro-title {
      font-size: clamp(2rem, 4vw, 3rem);
    }
  }
  .about-intro-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  .about-intro-right {
    display: flex;
    flex-direction: column;
  }
  .about-intro-facility {
    flex: 1;
    min-height: 380px;
  }
}
@media (max-width: 768px) {
  .about-intro {
    padding: 40px 24px;
}
}
@media (max-width: 767px) {
  .about-intro {
    padding: 40px 16px;
  }
  .about-intro-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .about-intro-head {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
  }
  .about-intro-bar {
    height: 4px;
    width: 48px;
  }
}

/* ========== Core Competencies (after about-intro) ========== */
.about-competencies {
  padding: 80px 16px;
  background: #f8fafc;
}

.about-competencies-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-competencies-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 64px;
}

.about-competencies-bar {
  width: 4px;
  height: 48px;
  background: #2563eb;
  flex-shrink: 0;
}

.about-competencies-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.about-competencies-subtitle {
  color: #4b5563;
  margin: 0;
  font-size: 1rem;
}

.about-competencies-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.about-competencies-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.about-competencies-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: #93c5fd;
}

.about-competencies-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-competencies-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.about-competencies-card:hover .about-competencies-card-icon-wrap {
  transform: scale(1.1);
}

.about-competencies-icon {
  width: 50px;
  height: 50px;
}

.about-competencies-icon-img {
  width: 50px;
  height: 50px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 5px;
}

/* Legacy color classes – not used with SVG img icons */
.about-competencies-icon-blue { background: #eff6ff; color: #2563eb; }
.about-competencies-icon-green { background: #f0fdf4; color: #16a34a; }
.about-competencies-icon-orange { background: #fff7ed; color: #ea580c; }
.about-competencies-icon-purple { background: #f5f3ff; color: #9333ea; }
.about-competencies-icon-pink { background: #fdf2f8; color: #db2777; }
.about-competencies-icon-indigo { background: #eef2ff; color: #4f46e5; }

.about-competencies-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.about-competencies-card-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex: 1;
}

.about-competencies-card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.about-competencies-card:hover .about-competencies-card-link {
  gap: 8px;
}

.about-competencies-link-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .about-competencies {
    padding: 80px 24px;
  }
  .about-competencies-container {
    padding: 0 24px;
  }
  .about-competencies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-competencies-title {
    font-size: 3rem;
  }
  .about-competencies-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Desktop: slightly larger competency icons */
  .about-competencies-card-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 10px;
  }

  .about-competencies-icon-img {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .about-competencies {
    padding: 48px 16px;
  }
  .about-competencies-head {
    margin-bottom: 40px;
  }
  .about-competencies-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .about-competencies-card-content {
    padding: 18px;
  }

  .about-competencies-card-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }

  .about-competencies-icon-img {
    width: 56px;
    height: 56px;
  }
}

/* ========== Industries Served (after about-competencies) ========== */
.about-industries {
  padding: 80px 16px;
  background: #fff;
}

.about-industries-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-industries-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 64px;
}

.about-industries-bar {
  width: 4px;
  height: 48px;
  background: #2563eb;
  flex-shrink: 0;
}

.about-industries-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.about-industries-subtitle {
  color: #4b5563;
  margin: 0;
  font-size: 1rem;
}

.about-industries-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.about-industries-card.about-industries-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.about-industries-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.about-industries-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-industries-card:hover .about-industries-card-image {
  transform: scale(1.05);
}

.about-industries-card-image-wrap {
  position: relative;
  height: 192px;
  overflow: hidden;
  background: #f1f5f9;
}

.about-industries-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-industries-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

.about-industries-card-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.about-industries-card-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-industries-card-icon {
  width: 24px;
  height: 24px;
}

.about-industries-card-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.about-industries-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.about-industries-card-content {
  padding: 24px;
}

.about-industries-card-desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.about-industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-industries-tag {
  padding: 4px 12px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .about-industries {
    padding: 80px 24px;
  }
  .about-industries-container {
    padding: 0 24px;
  }
  .about-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-industries-title {
    font-size: 3rem;
  }
  .about-industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .about-industries {
    padding: 48px 16px;
  }
  .about-industries-head {
    margin-bottom: 40px;
  }
  .about-industries-title {
    font-size: 1.75rem;
  }
  .about-industries-card-title {
    font-size: 1.25rem;
  }
}

/* ========== Quality Certifications (after about-industries) ========== */
.about-certifications {
  padding: 80px 16px;
  background: #0f172a;
  color: #fff;
}

.about-certifications-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-certifications-head {
  text-align: center;
  margin-bottom: 64px;
}

.about-certifications-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.about-certifications-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  margin: 0;
}

.about-certifications-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.about-certifications-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-certifications-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2), 0 8px 10px -6px rgba(59, 130, 246, 0.1);
}

.about-certifications-card-content {
  padding: 24px;
  text-align: center;
}

.about-certifications-card-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}

.about-certifications-icon {
  width: 32px;
  height: 32px;
}

.about-certifications-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.about-certifications-card-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .about-certifications {
    padding: 80px 24px;
  }
  .about-certifications-container {
    padding: 0 24px;
  }
  .about-certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-certifications-title {
    font-size: 3rem;
  }
  .about-certifications-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .about-certifications {
    padding: 48px 16px;
  }
  .about-certifications-head {
    margin-bottom: 40px;
  }
  .about-certifications-title {
    font-size: 1.75rem;
  }
}

/* ========== Why Choose IRP (after about-certifications) ========== */
.about-why {
  padding: 80px 16px;
  background: #fff;
}

.about-why-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-why-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 64px;
}

.about-why-bar {
  width: 4px;
  height: 48px;
  background: #2563eb;
  flex-shrink: 0;
}

.about-why-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.about-why-subtitle {
  color: #4b5563;
  margin: 0;
  font-size: 1rem;
}

.about-why-highlights {
  background: linear-gradient(to right, #f8fafc, #eff6ff);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  border: 1px solid #e5e7eb;
}

.about-why-highlights-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.about-why-highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-why-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.about-why-highlight-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.about-why-icon-green { color: #16a34a; }
.about-why-icon-purple { color: #9333ea; }

.about-why-highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.about-why-highlight-desc {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

.about-why-cards-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.about-why-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.about-why-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #93c5fd;
}


.about-why-card-content {
  padding: 24px;
}

.about-why-card-icon-wrap {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

.about-why-card-icon-img {
  /* width: 40px;
  height: 40px; */
  object-fit: contain;
  border-radius: 8px;
  position: absolute;
  transition: opacity 0.3s ease;
}

.about-why-card-icon-wrap .about-why-icon-default {
  opacity: 1;
}

.about-why-card-icon-wrap .about-why-icon-hover {
  opacity: 0;
}

.about-why-card:hover .about-why-card-icon-wrap .about-why-icon-default {
  opacity: 0;
}

.about-why-card:hover .about-why-card-icon-wrap .about-why-icon-hover {
  opacity: 1;
}

.about-why-card-icon {
  width: 24px;
  height: 24px;
}

.about-why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.about-why-card-desc {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.4;
}

.about-why-footer {
  margin-top: 48px;
  text-align: center;
}

.about-why-footer-text {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .about-why {
    padding: 80px 24px;
  }
  .about-why-container {
    padding: 0 24px;
  }
  .about-why-highlights {
    padding: 48px;
  }
  .about-why-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .about-why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-why-title {
    font-size: 3rem;
  }
  .about-why-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .about-why {
    padding: 48px 16px;
  }
  .about-why-head {
    margin-bottom: 40px;
  }
  .about-why-title {
    font-size: 1.75rem;
  }
  .about-why-number {
    font-size: 2.5rem;
  }
  .about-why-highlights {
    padding: 24px;
    margin-bottom: 32px;
  }
  .about-why-footer {
    margin-top: 32px;
  }
  .about-why-footer-text {
    font-size: 1rem;
  }
}

/* ========== Certification download popup (about page) ========== */
.cert-popup.quote-popup {
  z-index: 10050;
}
.cert-popup.quote-popup.is-open {
  display: flex !important;
}
.cert-popup .cert-submit.is-loading {
  padding-left: 2.75rem;
}
.cert-popup .cert-submit.is-loading::after {
  left: 1rem;
  margin-left: 0;
  margin-top: -9px;
}
  .cert-popup .quote-popup-box .cert-form-grid {
  grid-template-columns: repeat(2, 1fr);
}
.cert-download-wrap {
  margin: 12px 0 20px 0;
}
.cert-download-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.cert-download-btn:hover {
  background: #1d4ed8;
}
.about-certifications-card.js-cert-open {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cert-popup .quote-popup-box .cert-form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .about-intro-container {
    padding: 0 16px;
  }
}
