/* Color Palette */
:root {
  --primary-blue: #183897;
  --primary-pink: #ba2f87;
  --bg-darkest: #0a0a0a;
  --bg-dark: #111111;
  --bg-card: #1a1a1a;
  --white: #ffffff;
  --red: #d4183d;
  --btn-grey: #62676f;
  --hr-line: #1e2939;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-darkest);
  color: var(--white);
  line-height: 1.6;
}
/* GLOBAL FIX FOR FIXED HEADER */
body {
  margin: 0;
}

.page_content {
  padding-top: 0px; /* EXACT header height */
}

.section {
  display: none;
  padding:70px 80px;
  text-align: center;
}

.section.active {
  display: block;
}
html,
body {
  margin: 0;
  padding: 0;
}

/* Header iframe */
.iframe-header {
  position: fixed;
  width: 100%;
  height: 70px; /* match header height */
  border: none;
  display: block;
  z-index: 1000;
}

/* Footer iframe */
.iframe-footer {
  width: 100%;
  height: 420px; /* match footer height */
  border: none;
  display: block;
}
/* ===============================
   Namespace Scroll To Top Button
   =============================== */

.ns-scrolltop-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(90deg, #183897, #ba2f87);

  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;

  /* box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4); */
  z-index: 1100;

  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);

  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.3s ease;
}

/* revealed state */
.ns-scrolltop-btn.ns-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover effect */
.ns-scrolltop-btn:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6); */
}
.iframe-header,
.iframe-footer {
  position: relative;
  z-index: 1;
}
/* Force iframe to not cover fixed UI */
.iframe-footer {
  pointer-events: none;
}
