@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --pq-blue: #003F8A;
  --pq-blue-light: #0056C2;
  --pq-blue-dark: #002260;
  --pq-red: #D0021B;
  --pq-red-light: #FF1A33;
  --pq-white: #FFFFFF;
  --pq-off-white: #F4F6FB;
  --pq-grey-light: #E8ECF4;
  --pq-grey: #8A95A8;
  --pq-text: #1A2340;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--pq-off-white);
  color: var(--pq-text);
  overflow-x: hidden;
}

/* ─── ANIMATED BACKGROUND ─── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #001540 0%, #002260 40%, #003F8A 75%, #0056C2 100%);
  overflow: hidden;
}
.bg-layer::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,2,27,0.18) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: pq-floatBlob 12s ease-in-out infinite alternate;
}
.bg-layer::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,86,194,0.3) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: pq-floatBlob 9s ease-in-out infinite alternate-reverse;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes pq-floatBlob {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.1); }
}

/* ─── MAIN LAYOUT ─── */
.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── HERO SECTION ─── */
.hero {
  padding: 80px 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: pq-fadeUp 0.8s 0.2s ease both;
}
@keyframes pq-fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208,2,27,0.15);
  border: 1px solid rgba(208,2,27,0.4);
  color: #FF6B7A;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pq-red);
  animation: pq-pulse 2s infinite;
}
@keyframes pq-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--pq-white);
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--pq-red);
  display: block;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── STATS BAR ─── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 48px 48px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  animation: pq-fadeUp 0.8s 0.4s ease both;
}
.stat-item {
  flex: 1;
  max-width: 220px;
  padding: 24px 32px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.08); }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--pq-red);
  transition: width 0.4s;
}
.stat-item:hover::after { width: 80%; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--pq-white);
  letter-spacing: 2px;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── MAIN CONTENT AREA ─── */
.content-section {
  padding: 60px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  animation: pq-fadeUp 0.8s 0.5s ease both;
}

/* ─── PDF VIEWER ─── */
.pdf-container {
  background: rgba(0, 22, 64, 0.9);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}
.pdf-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdf-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pq-red), var(--pq-red-light));
  display: flex; align-items: center; justify-content: center;
}
.pdf-icon svg { width: 18px; height: 18px; fill: white; }
.pdf-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pq-white);
}
.pdf-subtitle {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}
.pdf-actions {
  display: flex;
  gap: 8px;
}
.pdf-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
}
.pdf-btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.pdf-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}
.pdf-btn-primary {
  background: linear-gradient(135deg, var(--pq-red), #FF1A33);
  color: white;
}
.pdf-btn-primary:hover {
  background: linear-gradient(135deg, #FF1A33, var(--pq-red));
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(208,2,27,0.4);
}
.pdf-viewer-frame {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  margin: 0;
}

/* ─── SIDEBAR ─── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.sidebar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.sidebar-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.sidebar-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pq-red);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Engagements list */
.commitment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.commitment-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,63,138,0.8), rgba(0,86,194,0.8));
  border: 1px solid rgba(0,86,194,0.5);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.commitment-icon svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.8); fill: none; stroke-width: 2; }

/* Certification badge */
.cert-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0,63,138,0.4), rgba(0,34,96,0.6));
  border: 1px solid rgba(0,86,194,0.3);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.cert-badge:hover {
  border-color: rgba(0,86,194,0.6);
  box-shadow: 0 0 20px rgba(0,86,194,0.2);
}
.cert-logo {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pq-blue), var(--pq-blue-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  color: white;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.1;
  border: 2px solid rgba(255,255,255,0.1);
}
.cert-logo-image {
  width: 78px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.cert-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.cert-info p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
}

/* KPIs */
.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kpi-item {
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
}
.kpi-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(208,2,27,0.3);
}
.kpi-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--pq-white);
  letter-spacing: 1px;
  line-height: 1;
}
.kpi-value span {
  color: var(--pq-red);
}
.kpi-desc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Contact / Director */
.director-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.director-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pq-red), var(--pq-red-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: white;
  border: 2px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.director-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
}
.director-title {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.director-signature {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-style: italic;
}

/* ─── PARTNERS SECTION ─── */
.partners-section {
  padding: 0 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  animation: pq-fadeUp 0.8s 0.7s ease both;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15));
}
.section-label::after {
  background: linear-gradient(270deg, transparent, rgba(255,255,255,0.15));
}
.partners-track-wrapper {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  padding: 28px 0;
  position: relative;
}
.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.partners-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0,22,64,0.9), transparent);
}
.partners-track-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0,22,64,0.9), transparent);
}
.partners-track {
  display: flex;
  gap: 60px;
  animation: pq-scrollPartners 28s linear infinite;
  width: max-content;
  align-items: center;
}
@keyframes pq-scrollPartners {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: none;
  transition: all 0.3s;
}
.partner-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}
.partner-logo:hover {
  transform: scale(1.05);
}

/* ─── RED ACCENT LINE ─── */
.red-line {
  position: fixed;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--pq-red) 0%, transparent 60%);
  z-index: 900;
  opacity: 0.8;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pq-red), var(--pq-blue-light));
  z-index: 1200;
  width: 0%;
  transition: width 0.1s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .content-section { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 20px 24px; }
  .content-section, .partners-section { padding: 32px 20px 48px; }
  .stats-bar { display: none; }
  .sidebar { grid-template-columns: 1fr; }
}

