/* ============================================================
   ANALYTICAL EDUPOINT — ABOUT US PAGE — PREMIUM DESIGN
   ============================================================ */

/* ─── HERO BANNER ─────────────────────────────────────────── */
.au-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0f2042 60%, #1a3263 100%);
}

.au-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(2px);
  transform: scale(1.05);
}

.au-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(37, 99, 235, 0.55) 100%);
}

.au-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.au-hero__circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.au-hero__circle--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #f97316 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: au-pulse 8s ease-in-out infinite;
}

.au-hero__circle--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  bottom: -150px;
  left: -80px;
  animation: au-pulse 10s ease-in-out infinite reverse;
}

@keyframes au-pulse {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50%       { transform: scale(1.12); opacity: 0.14; }
}

.au-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.au-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #f97316;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: au-fadeInDown 0.6s ease forwards;
}

.au-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  animation: au-fadeInDown 0.7s ease 0.1s both;
}

.au-hero__title span {
  color: #f97316;
}

.au-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 28px;
  animation: au-fadeInDown 0.7s ease 0.2s both;
}

.au-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: au-fadeInDown 0.7s ease 0.3s both;
}

.au-hero__breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.au-hero__breadcrumb a:hover { color: #f97316; }

.au-hero__breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.au-hero__breadcrumb-current {
  color: #f97316;
  font-size: 0.875rem;
  font-weight: 600;
}

@keyframes au-fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── STATS STRIP ─────────────────────────────────────────── */
.au-stats {
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.09);
  position: relative;
  z-index: 10;
  margin-top: -1px;
}

.au-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 0;
}

.au-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.au-stat-item:last-child { border-right: none; }

.au-stat-item:hover { background: #f8faff; }

.au-stat-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.au-stat-item__num {
  font-size: 1.85rem;
  font-weight: 900;
  color: #0a1628;
  line-height: 1;
  margin-bottom: 4px;
}

.au-stat-item__num span {
  color: #f97316;
}

.au-stat-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ─── MAIN CONTENT LAYOUT ─────────────────────────────────── */
.au-body {
  padding: 70px 0 50px;
  background: #f8faff;
}

.au-body__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ─── CONTENT CARD ────────────────────────────────────────── */
.au-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  overflow: hidden;
}

.au-card__img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.au-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.au-card:hover .au-card__img-wrap img {
  transform: scale(1.04);
}

.au-card__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

.au-card__body {
  padding: 36px 40px 40px;
}

/* Section chip */
.au-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #2563eb, #4338ca);
  color: #fff;
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.au-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 18px;
  line-height: 1.25;
}

.au-section-title span { color: #2563eb; }

.au-lead-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 16px;
}

.au-lead-text strong { color: #0a1628; }

/* ─── BENEFITS SECTION ────────────────────────────────────── */
.au-benefits-header {
  margin: 36px 0 20px;
  padding-top: 32px;
  border-top: 2px solid #f1f5f9;
}

.au-benefits-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a1628;
  margin: 0 0 6px;
}

.au-benefits-header p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.au-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.au-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.25s ease;
}

.au-benefit-item:hover {
  border-color: #2563eb;
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.1);
}

.au-benefit-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
}

.au-benefit-item__text {
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.55;
  font-weight: 500;
}

/* ─── FEE SECTION ─────────────────────────────────────────── */
.au-fee-box {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #0a1628 0%, #0f2042 100%);
  border-radius: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.au-fee-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
}

.au-fee-box__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 10px;
  position: relative;
}

.au-fee-box__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #f97316;
  border-radius: 2px;
  margin-top: 8px;
}

.au-fee-box__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
}

.au-fee-box__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff !important;
  text-decoration: none !important;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(249,115,22,0.4);
  transition: all 0.25s ease;
  position: relative;
}

.au-fee-box__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249,115,22,0.5);
}

/* ─── PARTNERS / LOGOS STRIP ──────────────────────────────── */
.au-partners {
  margin-top: 32px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
}

.au-partners__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-align: center;
}

.au-partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.au-partners__logo-item {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  transition: all 0.2s ease;
}

.au-partners__logo-item:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

/* ─── SIDEBAR ─────────────────────────────────────────────── */
.au-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

/* Sidebar: Courses */
.au-sidebar-courses {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  overflow: hidden;
}

.au-sidebar-courses__head {
  background: linear-gradient(135deg, #0a1628, #0f2042);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.au-sidebar-courses__head-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(249,115,22,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  font-size: 1rem;
}

.au-sidebar-courses__head-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.au-sidebar-courses__list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.au-sidebar-courses__list li {
  border-bottom: 1px solid #f1f5f9;
}

.au-sidebar-courses__list li:last-child { border-bottom: none; }

.au-sidebar-courses__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.845rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.au-sidebar-courses__list a::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.au-sidebar-courses__list a:hover {
  color: #2563eb;
  background: #f0f7ff;
  padding-left: 24px;
}

.au-sidebar-courses__list a:hover::before {
  background: #f97316;
  transform: scale(1.4);
}

/* Sidebar: Quick Contact */
.au-sidebar-contact {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  overflow: hidden;
}

.au-sidebar-contact__head {
  background: linear-gradient(135deg, #f97316, #ea580c);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.au-sidebar-contact__head-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.au-sidebar-contact__head-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.au-sidebar-contact__body {
  padding: 24px;
}

.au-form-group {
  margin-bottom: 14px;
}

.au-form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #1e293b;
  background: #f8faff;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}

.au-form-control:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.au-form-control::placeholder { color: #94a3b8; }

textarea.au-form-control {
  resize: vertical;
  min-height: 90px;
}

.au-submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #0a1628, #0f2042);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.au-submit-btn:hover {
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

/* Alert boxes */
.au-alert {
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 0.82rem;
  margin-bottom: 14px;
  display: none;
}

.au-alert--success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.au-alert--error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

/* ─── WHY US SECTION ──────────────────────────────────────── */
.au-why {
  padding: 64px 0;
  background: linear-gradient(135deg, #0a1628 0%, #0f2042 100%);
  position: relative;
  overflow: hidden;
}

.au-why::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
}

.au-why__head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.au-why__tag {
  display: inline-block;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.4);
  color: #f97316;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.au-why__title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.au-why__title span { color: #f97316; }

.au-why__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.au-why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.au-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.au-why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.au-why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.au-why-card:hover .au-why-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.au-why-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.au-why-card__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .au-body__grid {
    grid-template-columns: 1fr;
  }

  .au-sidebar {
    position: static;
  }

  .au-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-stat-item:nth-child(2) { border-right: none; }
  .au-stat-item:nth-child(3) { border-top: 1px solid #e2e8f0; }
  .au-stat-item:nth-child(4) { border-top: 1px solid #e2e8f0; }

  .au-why__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .au-card__body { padding: 24px 22px 28px; }

  .au-benefits-grid { grid-template-columns: 1fr; }

  .au-why__cards { grid-template-columns: 1fr; }

  .au-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .au-hero__title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .au-stats__inner {
    grid-template-columns: 1fr 1fr;
  }
  .au-card__img-wrap { height: 220px; }
}
