.iso-certificate img {
  width: 140px;
}

.section-about-us .box-quotes .image {
  display: block;
  width: auto;
  height: auto;
}

.section-about-us .box-quotes {
  gap: 0;
}

.section-about-us .box-quotes div {
  padding: 7px 7px;
}

.section-about-us .box-quotes div img {
  padding: 7px 7px;
}


@media screen and (min-width:800px) {
  .image-padding {
    padding: 01% 14%;
  }
}

.au-hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: 130px 0 90px;
  text-align: center;
}

.au-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(83, 168, 189, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 110%, rgba(83, 168, 189, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.au-hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  animation: auOrbFloat 9s ease-in-out infinite;
}

.au-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--brand);
  top: -160px;
  left: -120px;
  animation-delay: 0s;
}

.au-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--brand);
  bottom: -100px;
  right: -80px;
  animation-delay: 4s;
}

.au-hero-orb-3 {
  width: 180px;
  height: 180px;
  background: var(--brand);
  top: 40px;
  right: 15%;
  animation-delay: 2s;
}

@keyframes auOrbFloat {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-22px) scale(1.05);
  }
}

.au-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(83, 168, 189, 0.15);
  border: 1px solid rgba(83, 168, 189, 0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.au-hero h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.au-hero h1 .accent {
  color: var(--brand);
}

.au-hero .au-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.au-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.au-btn-primary {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  font-family: "Urbanist", sans-serif;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.au-btn-primary:hover {
  background: #3f8fa3;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(83, 168, 189, 0.4);
  color: #fff;
}

.au-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: "Urbanist", sans-serif;
  text-decoration: none;
}

.au-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* Breadcrumb */
.au-breadcrumb {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.au-breadcrumb .inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ======================================================
   FEEDBACK / COMPLAINT / APPEAL / DISPUTE PAGES
   Unique classes with fb- prefix
====================================================== */

/* Hero Section */
.fb-hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  padding: 130px 0 90px;
  text-align: center;
}

.fb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(83, 168, 189, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 110%, rgba(83, 168, 189, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.fb-hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  animation: fbOrbFloat 9s ease-in-out infinite;
}

.fb-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--brand);
  top: -160px;
  left: -120px;
  animation-delay: 0s;
}

.fb-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--brand);
  bottom: -100px;
  right: -80px;
  animation-delay: 4s;
}

@keyframes fbOrbFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-22px) scale(1.05);
  }
}

.fb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(83, 168, 189, 0.15);
  border: 1px solid rgba(83, 168, 189, 0.35);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.fb-hero-badge svg {
  width: 16px;
  height: 16px;
}

.fb-hero-title {
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.fb-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Form Section */
.fb-section {
  padding: 80px 0;
  background: #f8fafb;
}

.fb-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.fb-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.fb-form-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.fb-form-subtitle {
  font-size: 16px;
  color: #666;
}

.fb-form-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #eee;
}

.fb-form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fb-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.fb-section-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.fb-field {
  margin-bottom: 0;
}

.fb-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.fb-input,
.fb-textarea,
.fb-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  background: #f8fafb;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.25s;
  font-family: inherit;
}

.fb-input:focus,
.fb-textarea:focus,
.fb-select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(83, 168, 189, 0.1);
}

.fb-input::placeholder,
.fb-textarea::placeholder {
  color: #999;
}

.fb-textarea {
  min-height: 120px;
  resize: vertical;
}

.fb-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Rating Stars */
.fb-rating-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fb-rating-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafb;
  border-radius: 8px;
}

.fb-rating-label {
  font-size: 14px;
  color: #444;
  flex: 1;
  margin-right: 20px;
}

.fb-rating-stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}

.fb-rating-stars input {
  display: none;
}

.fb-rating-stars label {
  width: 28px;
  height: 28px;
  background: #e2e8f0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fb-rating-stars label::before {
  content: "★";
  font-size: 14px;
  color: #fff;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.fb-rating-stars input:checked + label::before,
.fb-rating-stars label:hover::before,
.fb-rating-stars label:hover ~ label::before {
  opacity: 1;
  color: var(--brand);
}

.fb-rating-stars input:checked + label,
.fb-rating-stars input:checked + label ~ label {
  background: var(--brand);
}

.fb-rating-stars label:hover,
.fb-rating-stars label:hover ~ label {
  background: rgba(83, 168, 189, 0.3);
}

/* File Upload */
.fb-file-upload {
  margin-top: 16px;
}

.fb-file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  background: #f8fafb;
  transition: all 0.25s;
  cursor: pointer;
}

.fb-file-drop-area:hover {
  border-color: var(--brand);
  background: rgba(83, 168, 189, 0.05);
}

.fb-file-msg {
  font-size: 15px;
  color: #666;
}

.fb-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.fb-file-hint {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

/* Submit Button */
.fb-form-submit {
  text-align: center;
  margin-top: 32px;
}

.fb-btn-submit {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: inherit;
}

.fb-btn-submit:hover {
  background: #3f8fa3;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(83, 168, 189, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .fb-form-wrapper {
    padding: 24px;
  }
  
  .fb-rating-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .fb-rating-label {
    margin-right: 0;
  }
  
  .fb-hero-title {
    font-size: 28px;
  }
}

.au-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.au-breadcrumb a:hover {
  color: var(--brand);
}

.au-breadcrumb .sep {
  opacity: 0.3;
}

.au-breadcrumb .current {
  color: var(--brand);
  font-weight: 600;
}

/* ---------- Shared Section Label ---------- */
.au-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(83, 168, 189, 0.1);
  border: 1px solid rgba(83, 168, 189, 0.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.au-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.au-section-sub {
  font-size: 16px;
  color: var(--secondary);
  line-height: 1.75;
  max-width: 560px;
}

/* ---------- Mission / Vision ---------- */
.au-mission {
  background: var(--body);
  padding: 96px 0;
}

.au-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.au-mission-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.au-mission-image img {
  width: 100%;

  object-fit: cover;
  display: block;
}

.au-mission-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(83, 168, 189, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.au-mission-image .au-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(83, 168, 189, 0.3);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.au-img-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(83, 168, 189, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.au-img-badge-text .val {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}

.au-img-badge-text .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.au-mission-content .au-section-sub {
  max-width: 100%;
  margin-bottom: 32px;
}

.au-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.au-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.au-pillar:hover {
  border-color: rgba(83, 168, 189, 0.4);
  box-shadow: 0 6px 24px rgba(83, 168, 189, 0.1);
  transform: translateX(4px);
}

.au-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(83, 168, 189, 0.1);
  border: 1px solid rgba(83, 168, 189, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.au-pillar-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.au-pillar-text p {
  font-size: 13px;
  color: var(--secondary);
  line-height: 1.6;
}

/* ---------- Stats Strip ---------- */
.au-stats {
  background: var(--primary);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.au-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(83, 168, 189, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.au-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.au-stat {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.au-stat+.au-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.au-stat .num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.au-stat .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- Core Values ---------- */
.au-values {
  background: #fff;
  padding: 96px 0;
}

.au-values-header {
  text-align: center;
  margin-bottom: 64px;
}

.au-values-header .au-section-sub {
  margin: 0 auto;
}

.au-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.au-value-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
}

.au-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), rgba(83, 168, 189, 0.2));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}

.au-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(83, 168, 189, 0.14);
  border-color: rgba(83, 168, 189, 0.3);
  background: #fff;
}

.au-value-card:hover::before {
  opacity: 1;
}

.au-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(83, 168, 189, 0.1);
  border: 1px solid rgba(83, 168, 189, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 24px;
}

.au-value-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.au-value-card p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.75;
}

/* ---------- Team ---------- */
.au-team {
  background: var(--body);
  padding: 96px 0;
}

.au-team-header {
  text-align: center;
  margin-bottom: 64px;
}

.au-team-header .au-section-sub {
  margin: 0 auto;
}

.au-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.au-team-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.au-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(83, 168, 189, 0.3);
}

.au-team-img {
  position: relative;
  overflow: hidden;
}

.au-team-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.au-team-card:hover .au-team-img img {
  transform: scale(1.06);
}

.au-team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 11, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.au-team-card:hover .au-team-img-overlay {
  opacity: 1;
}

.au-team-social {
  display: flex;
  gap: 8px;
}

.au-team-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}

.au-team-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.au-team-info {
  padding: 20px;
}

.au-team-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.au-team-info .role {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Why Choose Us ---------- */
.au-why {
  background: var(--primary);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.au-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(83, 168, 189, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(83, 168, 189, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.au-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.au-why-left .au-section-title {
  color: #fff;
}

.au-why-left .au-section-sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.au-why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.au-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.au-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(83, 168, 189, 0.15);
  border: 1px solid rgba(83, 168, 189, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.au-feature-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.au-feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.au-why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.au-cert-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.au-cert-badge:hover {
  background: rgba(83, 168, 189, 0.1);
  border-color: rgba(83, 168, 189, 0.35);
  transform: translateY(-4px);
}

.au-cert-badge .cert-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(83, 168, 189, 0.15);
  border: 1px solid rgba(83, 168, 189, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin: 0 auto 16px;
}

.au-cert-badge h6 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.au-cert-badge p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ---------- Accreditation Strip ---------- */
.au-accreditation {
  background: #fff;
  padding: 64px 0;
  border-bottom: 1px solid var(--neutral-100);
}

.au-accreditation-header {
  text-align: center;
  margin-bottom: 40px;
}

.au-accreditation-header p {
  font-size: 14px;
  color: var(--secondary);
}

.au-accreditation-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.au-accr-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}

.au-accr-item:hover {
  border-color: rgba(83, 168, 189, 0.4);
  transform: translateY(-3px);
}

.au-accr-item svg {
  color: var(--brand);
  flex-shrink: 0;
}

.au-accr-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ---------- CTA Section ---------- */
.au-cta {
  background: var(--body);
  padding: 96px 0;
}

.au-cta-card {
  background: var(--primary);
  border-radius: 28px;
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.au-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(83, 168, 189, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(83, 168, 189, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.au-cta-card .au-section-label {
  margin-bottom: 20px;
}

.au-cta-card h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.1;
  position: relative;
}

.au-cta-card h2 .accent {
  color: var(--brand);
}

.au-cta-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.au-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .au-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {

  .au-mission-grid,
  .au-why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .au-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-stat+.au-stat::before {
    display: none;
  }

  .au-why-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-cta-card {
    padding: 56px 40px;
  }
}

@media (max-width: 767px) {
  .au-values-grid {
    grid-template-columns: 1fr;
  }

  .au-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-why-right {
    grid-template-columns: 1fr;
  }

  .au-cta-card {
    padding: 48px 24px;
  }

  .au-mission-image img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .au-team-grid {
    grid-template-columns: 1fr;
  }

  .au-stats-grid {
    grid-template-columns: 1fr;
  }
}


  /* ===================================================
         SUSPENDED CLIENTS PAGE — CUSTOM STYLES
         Uses existing CSS variables: --brand, --primary,
         --secondary, --neutral-*, --white, --black, --body
      =================================================== */

    /* ---------- Page Hero ---------- */
    .sc-hero {
      position: relative;
      background: var(--primary);
      overflow: hidden;
      padding: 170px 0 80px;
      text-align: center;
    }

    .sc-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% -10%,
          rgba(83, 168, 189, 0.22) 0%,
          transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 110%,
          rgba(83, 168, 189, 0.12) 0%,
          transparent 60%);
      pointer-events: none;
    }

    /* Animated floating circles in hero */
    .sc-hero-orb {
      position: absolute;
      border-radius: 50%;
      opacity: 0.07;
      animation: scOrbFloat 8s ease-in-out infinite;
    }

    .sc-hero-orb-1 {
      width: 400px;
      height: 400px;
      background: var(--brand);
      top: -120px;
      left: -100px;
      animation-delay: 0s;
    }

    .sc-hero-orb-2 {
      width: 250px;
      height: 250px;
      background: var(--brand);
      bottom: -80px;
      right: -60px;
      animation-delay: 3s;
    }

    @keyframes scOrbFloat {
      0%, 100% { transform: translateY(0px) scale(1); }
      50% { transform: translateY(-20px) scale(1.04); }
    }

    .sc-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(83, 168, 189, 0.15);
      border: 1px solid rgba(83, 168, 189, 0.35);
      border-radius: 100px;
      padding: 6px 18px;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .sc-hero h1 {
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.1;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .sc-hero h1 .accent {
      color: var(--brand);
    }

    .sc-hero .sc-hero-sub {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.65);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Breadcrumb strip */
    .sc-breadcrumb {
      background: rgb(58, 58, 58);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 12px 0;
    }

    .sc-breadcrumb .inner {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
    }

    .sc-breadcrumb a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color 0.2s;
    }

    .sc-breadcrumb a:hover {
      color: var(--brand);
    }

    .sc-breadcrumb .sep {
      opacity: 0.3;
    }

    .sc-breadcrumb .current {
      color: var(--brand);
      font-weight: 600;
    }

    /* ---------- Main Content Area ---------- */
    .sc-main {
      background: var(--body);
      padding: 72px 0 96px;
    }

    /* ---------- Info Banner ---------- */
    .sc-info-banner {
      background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
      border: 1px solid rgba(234, 179, 8, 0.3);
      border-radius: 16px;
      padding: 24px 32px;
      margin-bottom: 40px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .sc-info-banner svg {
      flex-shrink: 0;
      color: #d97706;
      margin-top: 2px;
    }

    .sc-info-banner-content h3 {
      font-size: 16px;
      font-weight: 700;
      color: #92400e;
      margin-bottom: 6px;
    }

    .sc-info-banner-content p {
      font-size: 14px;
      color: #b45309;
      line-height: 1.6;
      margin: 0;
    }

    /* ---------- Table Card ---------- */
    .sc-table-card {
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
      border: 1px solid var(--neutral-200);
      overflow: hidden;
      position: relative;
    }

    .sc-table-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #eab308, rgba(234, 179, 8, 0.3));
      border-radius: 20px 20px 0 0;
    }

    .sc-table-header {
      padding: 28px 32px;
      border-bottom: 1px solid var(--neutral-100);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .sc-table-header h2 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      margin: 0;
    }

    .sc-table-count {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(234, 179, 8, 0.1);
      border: 1px solid rgba(234, 179, 8, 0.25);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: #d97706;
    }

    /* ---------- Table Styles ---------- */
    .sc-table-wrapper {
      overflow-x: auto;
    }

    .sc-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 700px;
    }

    .sc-table thead {
      background: var(--neutral-50);
    }

    .sc-table th {
      padding: 16px 24px;
      text-align: left;
      font-size: 12px;
      font-weight: 700;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-bottom: 1px solid var(--neutral-200);
      white-space: nowrap;
    }

    .sc-table td {
      padding: 20px 24px;
      font-size: 14px;
      color: var(--primary);
      border-bottom: 1px solid var(--neutral-100);
      vertical-align: middle;
    }

    .sc-table tbody tr {
      transition: background 0.2s;
    }

    .sc-table tbody tr:hover {
      background: rgba(83, 168, 189, 0.04);
    }

    .sc-table tbody tr:last-child td {
      border-bottom: none;
    }

    /* Company Name */
    .sc-company-name {
      font-weight: 600;
      color: var(--primary);
    }

    /* Certificate Number */
    .sc-cert-number {
      font-family: 'Courier New', monospace;
      font-size: 13px;
      color: var(--secondary);
      background: var(--neutral-50);
      padding: 4px 10px;
      border-radius: 6px;
      display: inline-block;
    }

    /* Standard */
    .sc-standard {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--neutral-100);
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--primary);
    }

    /* Status Badge */
    .sc-status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .sc-status-badge.suspended {
      background: rgba(234, 179, 8, 0.15);
      color: #d97706;
    }

    .sc-status-badge.suspended::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #eab308;
    }

    /* Date */
    .sc-date {
      color: var(--secondary);
      font-size: 13px;
    }

    /* Reason */
    .sc-reason {
      max-width: 250px;
      line-height: 1.5;
      color: var(--secondary);
    }

    /* ---------- Empty State ---------- */
    .sc-empty {
      padding: 60px 32px;
      text-align: center;
    }

    .sc-empty-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: var(--neutral-100);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .sc-empty-icon svg {
      color: var(--neutral-400);
    }

    .sc-empty h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .sc-empty p {
      font-size: 14px;
      color: var(--secondary);
    }

    /* ---------- Footer CTA ---------- */
    .sc-cta {
      background: linear-gradient(135deg, var(--primary) 0%, #1a2a40 100%);
      border-radius: 20px;
      padding: 48px;
      margin-top: 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .sc-cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 120%, rgba(83, 168, 189, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .sc-cta h3 {
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }

    .sc-cta p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.65);
      max-width: 500px;
      margin: 0 auto 24px;
      line-height: 1.7;
    }

    .sc-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--brand);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 14px 28px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      font-family: "Urbanist", sans-serif;
    }

    .sc-cta-btn:hover {
      background: #3f8fa3;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(83, 168, 189, 0.4);
      color: #fff;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 768px) {
      .sc-hero { padding: 100px 0 60px; }
      .sc-main { padding: 48px 0 64px; }
      .sc-table-card { border-radius: 16px; }
      .sc-table-header { padding: 20px 24px; }
      .sc-table-header h2 { font-size: 18px; }
      .sc-table th, .sc-table td { padding: 14px 16px; }
      .sc-cta { padding: 32px 24px; border-radius: 16px; }
      .sc-cta h3 { font-size: 20px; }
    }