:root {
  --blue-900: #001b4c;
  --blue-800: #052866;
  --blue-700: #0643bd;
  --blue-600: #075dec;
  --blue-500: #0c7dff;
  --cyan: #18c9ff;
  --gold: #ffbf32;
  --green: #34be5b;
  --orange: #ff901c;
  --ink: #07122b;
  --muted: #5d6a82;
  --line: #d7e1f5;
  --soft: #f4f8ff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 37, 102, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 42%, #ffffff 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 227, 245, 0.75);
  box-shadow: 0 10px 26px rgba(5, 33, 90, 0.06);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1280px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand img {
  width: 236px;
  height: auto;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-menu a.active {
  color: var(--blue-600);
}

.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn {
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 26px rgba(7, 93, 236, 0.26);
}

.btn-outline {
  color: var(--blue-700);
  background: var(--white);
  border: 2px solid var(--blue-600);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.88);
}

.btn-light {
  min-width: 230px;
  color: var(--blue-700);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 20, 70, 0.18);
}

.btn-large {
  min-height: 64px;
  padding: 0 36px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-800);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(24, 201, 255, 0.35), transparent 23%),
    radial-gradient(circle at 62% 78%, rgba(12, 125, 255, 0.32), transparent 26%),
    linear-gradient(120deg, #00112f 0%, #02265e 48%, #001940 100%);
}

.hero-network {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background-image:
    radial-gradient(circle, rgba(32, 213, 255, 0.86) 0 2px, transparent 3px),
    linear-gradient(56deg, transparent 0 48%, rgba(37, 193, 255, 0.18) 49% 51%, transparent 52% 100%),
    linear-gradient(123deg, transparent 0 47%, rgba(37, 193, 255, 0.16) 48% 50%, transparent 51% 100%);
  background-size: 92px 92px, 210px 170px, 260px 230px;
  background-position: right top, right 20px, right 80px;
}

.hero-inner {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 36px;
  padding: 52px 0 98px;
}

.hero-copy {
  color: var(--white);
}

.hero-kicker {
  margin: 0;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--cyan);
}

.hero-subtitle {
  max-width: 610px;
  margin: 0;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.45;
  font-weight: 800;
}

.hero-tags {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 34px 0 40px;
  color: var(--cyan);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-tags span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trophy-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.trophy-stage::before {
  content: "";
  position: absolute;
  width: min(520px, 82%);
  height: 130px;
  bottom: 52px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(24, 201, 255, 0.46), transparent 64%);
  filter: blur(2px);
}

.trophy-img {
  position: relative;
  width: min(410px, 88%);
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.32));
  animation: float 4.5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(24, 201, 255, 0.75);
  background: rgba(0, 48, 116, 0.44);
  box-shadow: 0 0 30px rgba(24, 201, 255, 0.34);
}

.orbit-one { top: 50px; left: 18%; }
.orbit-two { top: 215px; left: 9%; }
.orbit-three { top: 178px; right: 7%; }
.orbit-four { bottom: 118px; right: 4%; }

.countdown-card {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 48px));
  min-height: 156px;
  margin: -62px auto 42px;
  padding: 34px 52px;
  display: grid;
  grid-template-columns: 96px 1fr 1.45fr;
  align-items: center;
  gap: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(224, 232, 246, 0.9);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.clock-badge {
  width: 84px;
  height: 84px;
  border: 6px solid var(--blue-600);
  border-radius: 50%;
  position: relative;
}

.clock-badge::before,
.clock-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  border-radius: 4px;
  background: var(--blue-600);
  transform-origin: bottom center;
}

.clock-badge::before {
  height: 28px;
  transform: translate(-50%, -100%);
}

.clock-badge::after {
  height: 22px;
  transform: translate(-50%, -100%) rotate(130deg);
}

.countdown-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 33px);
  line-height: 1.1;
}

.countdown-copy time {
  color: var(--blue-600);
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 900;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.timer div {
  border-left: 1px solid var(--line);
}

.timer strong {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.timer span {
  display: block;
  margin-top: 10px;
  color: #111b33;
  font-size: 14px;
  text-transform: uppercase;
}

.section,
.split-section,
.cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 26px 0 64px;
}

.section-title span {
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500));
  position: relative;
}

.section-title span::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-600);
}

.section-title span:last-child {
  transform: scaleX(-1);
}

.section-title h2,
.info-panel h2,
.leaderboard-panel h2,
.cta h2 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

.timeline-card {
  position: relative;
  min-height: 310px;
  padding: 58px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #cdd9ee;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(7, 35, 86, 0.1);
}

.timeline-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 50%;
  width: 31px;
  height: 2px;
  background: var(--blue-500);
}

.timeline-card:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -36px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
  background: var(--white);
  z-index: 1;
}

.timeline-card b {
  position: absolute;
  top: -24px;
  left: 26px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 25px rgba(7, 93, 236, 0.34);
  font-size: 18px;
}

.timeline-card h3 {
  min-height: 50px;
  margin: 24px 0 18px;
  font-size: 18px;
  line-height: 1.2;
}

.timeline-card time {
  display: block;
  min-height: 20px;
  margin-bottom: 22px;
  color: var(--blue-600);
  font-weight: 900;
}

.timeline-card p {
  margin: 0;
  color: #1d2a40;
  line-height: 1.65;
}

.split-section {
/*  display: grid;*/
  grid-template-columns: 1.42fr 1fr;
  gap: 26px;
  margin-bottom: 36px;
}

.info-panel,
.leaderboard-panel {
  border: 1px solid rgba(207, 218, 236, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(7, 35, 86, 0.1);
}

.info-panel {
  padding: 42px 34px;
  background: rgba(255, 255, 255, 0.92);
}

.how-panel h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 18px;
  background: var(--blue-600);
}

.step-row,
.step-row * {
    box-sizing: border-box;
}

.step-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 28px
        minmax(0, 1fr) 28px
        minmax(0, 1fr) 28px
        minmax(0, 1fr) 28px
        minmax(0, 1fr) 28px
        minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    width: 100%;
    margin-top: 34px;
}

.step {
    min-width: 0;
    text-align: center;
}

.step-icon {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    border: 5px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    box-shadow:
        0 12px 25px rgba(26, 45, 85, 0.18),
        inset 0 -12px 20px rgba(0, 0, 0, 0.08);
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.step-icon-1 {
    background: linear-gradient(135deg, #17c6ff, #0c5ce8);
}

.step-icon-2 {
    background: linear-gradient(135deg, #9b6dff, #4d42ce);
}

.step-icon-3 {
    background: linear-gradient(135deg, #58df83, #149a48);
}

.step-icon-4 {
    background: linear-gradient(135deg, #ffbe3d, #ee7110);
}

.step-icon-5 {
    background: linear-gradient(135deg, #ff688e, #d82563);
}

.step-icon-6 {
    background: linear-gradient(135deg, #27d8cb, #087f9b);
}

.step h3 {
    min-height: 42px;
    margin: 0 0 10px;
    color: #1d2940;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.step p {
    margin: 0 auto;
    max-width: 150px;
    color: #59647a;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}

.flow-arrow {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    margin-top: 32px;
}

.flow-arrow::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -4px;
    width: 24px;
    height: 3px;
    border-radius: 10px;
    background: #9aaccc;
}

.flow-arrow::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    width: 13px;
    height: 13px;
    border-top: 3px solid #9aaccc;
    border-right: 3px solid #9aaccc;
    transform: rotate(45deg);
}

/* Medium desktop */

@media screen and (max-width: 1100px) {
    .step-row {
        grid-template-columns:
            minmax(0, 1fr) 25px
            minmax(0, 1fr) 25px
            minmax(0, 1fr);
        row-gap: 48px;
    }

    .step-row .step:nth-of-type(4) {
        grid-column: 1;
    }

    .step-icon {
        width: 82px;
        height: 82px;
    }
}

/* Tablet and mobile */

@media screen and (max-width: 767px) {
    .step-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 30px;
    }

    .step {
        width: 100%;
        max-width: 320px;
    }

    .step-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 18px;
    }

    .step h3 {
        min-height: auto;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .step p {
        max-width: 260px;
    }

    .flow-arrow {
        width: 24px;
        height: 42px;
        margin: 15px 0;
        transform: rotate(90deg);
    }
}





.leaderboard-panel {
  padding: 42px 42px 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 201, 255, 0.15), transparent 30%),
    linear-gradient(140deg, #003582, #001943);
}

.leaderboard-panel h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  font-size: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

th {
  font-size: 12px;
  text-transform: uppercase;
}

td {
  font-size: 15px;
  font-weight: 600;
}

td:first-child {
  color: var(--gold);
  font-weight: 900;
}

td:last-child,
th:last-child {
  text-align: right;
}

.leaderboard-link,
.faq-link {
  width: 100%;
  margin-top: 28px;
}

.lower-grid {
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.panel-head h2,
.faq-panel h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
}

.panel-head a {
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 800;
}

.announcement-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  padding: 14px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
}

.announcement-item time {
  width: 86px;
  height: 82px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  box-shadow: inset 0 -14px 20px rgba(0, 0, 0, 0.12);
}

.announcement-item time strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.announcement-item time span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.announcement-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.announcement-item p {
  margin: 0;
  color: #35425a;
  line-height: 1.45;
}

.faq-list {
  margin-top: 28px;
}

.faq-question {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
}

.faq-question span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid #35425a;
  border-bottom: 2px solid #35425a;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-question.is-open span {
  transform: rotate(225deg);
}

.faq-answer {
  display: none;
  padding: 12px 18px 4px;
  color: var(--muted);
  line-height: 1.55;
}

.faq-answer.is-open {
  display: block;
}

.cta {
  min-height: 148px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 74px 22px 48px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 0%, rgba(24, 201, 255, 0.18), transparent 30%),
    linear-gradient(125deg, #003c99, #001e60);
  box-shadow: 0 18px 35px rgba(4, 42, 111, 0.22);
}

.cta img {
  width: 132px;
}

.cta p {
  max-width: 670px;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.site-footer {
  margin-top: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 201, 255, 0.12), transparent 26%),
    linear-gradient(130deg, #001a44, #000f29);
}

.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.3fr;
  gap: 80px;
  padding: 42px 0 28px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 16px;
}

.footer-grid p,
address {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  font-style: normal;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.footer-grid h3 {
  margin: 0 0 20px;
  font-size: 16px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
/*  grid-template-columns: 1fr 1fr;*/
  gap: 14px 48px;
}

address {
  display: grid;
  gap: 14px;
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.arrow,
.doc-icon,
.user-icon,
.orb-icon,
.card-icon,
.step-icon,
.mini-trophy,
.megaphone-icon,
.question-icon {
  position: relative;
}

.arrow {
  width: 18px;
  height: 12px;
}

.arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.doc-icon,
.user-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
}

.doc-icon::before {
  content: "";
  position: absolute;
  inset: 1px 3px 1px 3px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.doc-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 6px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.user-icon::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.user-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 13px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 2px 2px;
}

.orb-icon,
.card-icon {
  width: 38px;
  height: 38px;
  display: block;
  color: #c9f7ff;
}

.card-icon {
  color: var(--blue-600);
}

.bank-icon::before,
.calendar-icon::before {
  content: "";
  position: absolute;
  inset: 12px 4px 5px;
  border: 3px solid currentColor;
}

.bank-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 5px;
  height: 12px;
  border: 3px solid currentColor;
  border-bottom: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.chart-icon::before,
.leaderboard-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 30px;
  height: 26px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.chart-icon::after,
.leaderboard-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 20px;
  height: 18px;
  border-right: 4px solid currentColor;
  border-top: 4px solid currentColor;
  transform: skew(-18deg);
}

.idea-icon::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 20px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 42% 42%;
}

.idea-icon::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 5px;
  width: 10px;
  height: 8px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.team-icon::before,
.finalist-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 30px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 4px 4px;
}

.team-icon::after,
.finalist-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 4px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.calendar-icon::after {
  content: "";
  position: absolute;
  inset: 10px 8px 22px;
  border-top: 3px solid currentColor;
}

.result-icon::before,
.play-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 3px solid currentColor;
  border-radius: 3px;
}

.result-icon::after,
.play-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 13px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.medal-icon::before,
.qualify-icon::before,
.mini-trophy::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 20px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 2px 2px 10px 10px;
}

.medal-icon::after,
.qualify-icon::after,
.mini-trophy::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 6px;
  width: 8px;
  height: 12px;
  border-bottom: 4px solid currentColor;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.register-icon::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 20px;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.register-icon::after {
  content: "+";
  position: absolute;
  right: 20px;
  bottom: 21px;
  font-size: 34px;
  font-weight: 400;
}

.mini-trophy,
.megaphone-icon,
.question-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 auto;
  color: var(--gold);
}

.megaphone-icon,
.question-icon {
  color: var(--blue-600);
}

.megaphone-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 8px;
  width: 15px;
  height: 10px;
  border: 2px solid currentColor;
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 72%);
}

.megaphone-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: 1px;
  width: 5px;
  height: 10px;
  border-left: 2px solid currentColor;
  transform: rotate(-16deg);
}

.question-icon::before {
  content: "?";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
















@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

.about-quiz-panel,
.about-quiz-panel * {
    box-sizing: border-box;
}

.about-quiz-panel {
    width: 100%;
    padding: 35px 20px 45px;
    overflow: hidden;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.about-quiz-panel-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* Top heading area */

.about-quiz-panel-top {
    margin-bottom: 42px;
    text-align: center;
}

.about-quiz-panel-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 7px 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f1f2ff;
    color: #3048ff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 3px;
}

.about-quiz-panel-title {
    margin: 0;
    color: #202020;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Main content layout */

.about-quiz-panel-content {
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    align-items: center;
    gap: 60px;
}

/* Left image area */

.about-quiz-panel-left {
    position: relative;
    width: 100%;
    padding-bottom: 25px;
}

.about-quiz-panel-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 800 / 320;
    overflow: hidden;
    border: 1px solid #d7ddef;
    background: #f7f8fc;
}

.about-quiz-panel-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-quiz-panel-counter {
    position: absolute;
    top: 50%;
    left: 4px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 40px;
    padding: 7px 8px;
    background: #101a32;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
}

.about-quiz-panel-bottom-label {
    position: absolute;
    bottom: 0;
    left: -28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 7px 16px;
    border-radius: 10px;
    background: #f1f2ff;
    color: #3048ff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.5px;
}

/* Right content area */

.about-quiz-panel-right {
    width: 100%;
    max-width: 550px;
}

.about-quiz-panel-heading {
    margin: 0 0 22px;
    color: #262626;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.8px;
}

.about-quiz-panel-description {
    margin: 0 0 25px;
    color: #373737;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.72;
}

.about-quiz-panel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 44px;
    padding: 12px 21px;
    border-radius: 6px;
    background: #9dbdff;
    box-shadow: 0 8px 18px rgba(80, 120, 220, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-quiz-panel-button:hover {
    background: #86aaff;
    box-shadow: 0 10px 22px rgba(80, 120, 220, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

/*====================================== Login Tab ======================================*/

/* =========================================
   QUIZ LOGIN
========================================= */

.quiz-login,
.quiz-login * {
    box-sizing: border-box;
}

.quiz-login {
    --quiz-login-navy: #061a3d;
    --quiz-login-dark-blue: #08265c;
    --quiz-login-primary: #0868ef;
    --quiz-login-primary-dark: #0054d6;
    --quiz-login-cyan: #13b8e6;
    --quiz-login-heading: #071636;
    --quiz-login-text: #4d5b75;
    --quiz-login-border: #d9e3f3;
    --quiz-login-background: #f5f8fd;
    --quiz-login-white: #ffffff;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 50px 20px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(8, 104, 239, 0.11),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #f9fbff 0%,
            #eef4fc 48%,
            #f7faff 100%
        );
}

/* Top navy background area */

.quiz-login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 245px;
    background:
        linear-gradient(
            90deg,
            rgba(19, 184, 230, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(19, 184, 230, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            var(--quiz-login-navy) 0%,
            #062454 55%,
            #071d47 100%
        );
    background-size:
        70px 70px,
        70px 70px,
        auto;
    clip-path: polygon(0 0, 100% 0, 100% 76%, 70% 100%, 30% 91%, 0 100%);
}

/* Bottom decorative light */

.quiz-login::after {
    content: "";
    position: absolute;
    bottom: -260px;
    left: 50%;
    width: 780px;
    height: 500px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(8, 104, 239, 0.07);
    filter: blur(3px);
}

/* Decorative shapes */

.quiz-login__background-shape {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
}

.quiz-login__background-shape--one {
    top: 90px;
    left: -80px;
    width: 240px;
    height: 240px;
    border: 35px solid rgba(19, 184, 230, 0.08);
}

.quiz-login__background-shape--two {
    right: -105px;
    top: 310px;
    width: 300px;
    height: 300px;
    border: 45px solid rgba(8, 104, 239, 0.06);
}

.quiz-login__background-shape--three {
    bottom: 60px;
    left: 9%;
    width: 110px;
    height: 110px;
    background: linear-gradient(
        145deg,
        rgba(8, 104, 239, 0.06),
        rgba(19, 184, 230, 0.03)
    );
    transform: rotate(35deg);
    border-radius: 28px;
}

.quiz-login__dot {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 50%;
    background: var(--quiz-login-cyan);
    box-shadow: 0 0 20px rgba(19, 184, 230, 0.5);
}

.quiz-login__dot--one {
    width: 6px;
    height: 6px;
    top: 35px;
    left: 8%;
}

.quiz-login__dot--two {
    width: 5px;
    height: 5px;
    top: 80px;
    right: 11%;
}

.quiz-login__dot--three {
    width: 8px;
    height: 8px;
    bottom: 12%;
    right: 16%;
    opacity: 0.5;
}

/* Container */

.quiz-login__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 530px;
}

/* Main heading */

.quiz-login__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--quiz-login-white);
    text-align: left;
}

.quiz-login__heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 12px 28px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

.quiz-login__heading-icon svg {
    width: 29px;
    height: 29px;
    fill: var(--quiz-login-white);
}

.quiz-login__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quiz-login__title {
    margin: 0;
    color: var(--quiz-login-white);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.quiz-login__subtitle {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

/* Login card */

.quiz-login__card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(214, 224, 240, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 35px 80px rgba(6, 26, 61, 0.19),
        0 12px 30px rgba(6, 26, 61, 0.08);
}

.quiz-login__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--quiz-login-primary),
        var(--quiz-login-cyan)
    );
}

/* Card heading */

.quiz-login__card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 34px 38px 25px;
    border-bottom: 1px solid #edf1f7;
    background:
        linear-gradient(
            135deg,
            rgba(8, 104, 239, 0.035),
            rgba(19, 184, 230, 0.015)
        );
}

.quiz-login__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    color: var(--quiz-login-primary);
    background: #eaf2ff;
}

.quiz-login__card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quiz-login__card-top h2 {
    margin: 0 0 3px;
    color: var(--quiz-login-heading);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

.quiz-login__card-top p {
    margin: 0;
    color: var(--quiz-login-text);
    font-size: 13px;
    line-height: 1.5;
}

/* Form */

.quiz-login__form {
    padding: 30px 38px 34px;
}

.quiz-login__field {
    margin-bottom: 22px;
}

.quiz-login__label {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--quiz-login-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.quiz-login__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.quiz-login__input-icon {
    position: absolute;
    left: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8694ab;
    pointer-events: none;
}

.quiz-login__input-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quiz-login__input {
    width: 100%;
    height: 54px;
    padding: 0 48px 0 49px;
    border: 1px solid var(--quiz-login-border);
    border-radius: 12px;
    outline: none;
    color: var(--quiz-login-heading);
    background: var(--quiz-login-white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.quiz-login__input::placeholder {
    color: #9aa6b8;
    opacity: 1;
}

.quiz-login__input:hover {
    border-color: #b6c8e5;
}

.quiz-login__input:focus {
    border-color: var(--quiz-login-primary);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(8, 104, 239, 0.11),
        0 8px 20px rgba(8, 104, 239, 0.06);
}

.quiz-login__input:focus + .quiz-login__password-toggle,
.quiz-login__input-wrap:focus-within .quiz-login__input-icon {
    color: var(--quiz-login-primary);
}

.quiz-login__help {
    margin: 8px 0 0;
    color: #75829a;
    font-size: 12px;
    line-height: 1.5;
}

/* Password eye button */

.quiz-login__password-toggle {
    position: absolute;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    outline: none;
    color: #8592a8;
    background: transparent;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.quiz-login__password-toggle:hover {
    color: var(--quiz-login-primary);
    background: #eef5ff;
}

.quiz-login__password-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Remember and forgot password */

.quiz-login__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -2px 0 24px;
}

.quiz-login__remember {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--quiz-login-heading);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.quiz-login__remember input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.quiz-login__checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    border: 1.5px solid #b5c2d5;
    border-radius: 5px;
    background: var(--quiz-login-white);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.quiz-login__checkbox::after {
    content: "";
    width: 8px;
    height: 4px;
    margin-top: -2px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    opacity: 0;
    transform: rotate(-45deg) scale(0.7);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.quiz-login__remember input:checked + .quiz-login__checkbox {
    border-color: var(--quiz-login-primary);
    background: var(--quiz-login-primary);
    box-shadow: 0 4px 10px rgba(8, 104, 239, 0.24);
}

.quiz-login__remember input:checked + .quiz-login__checkbox::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}

.quiz-login__forgot {
    color: var(--quiz-login-primary-dark);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.quiz-login__forgot:hover {
    color: var(--quiz-login-navy);
    text-decoration: underline;
}

/* Submit button */

.quiz-login__submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 55px;
    padding: 13px 20px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    color: var(--quiz-login-white);
    background: linear-gradient(
        110deg,
        var(--quiz-login-primary-dark) 0%,
        var(--quiz-login-primary) 52%,
        #159ee9 100%
    );
    box-shadow:
        0 15px 28px rgba(8, 104, 239, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.15px;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.quiz-login__submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

.quiz-login__submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 19px 34px rgba(8, 104, 239, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.quiz-login__submit:hover::before {
    left: 140%;
}

.quiz-login__submit:active {
    transform: translateY(0);
}

.quiz-login__submit span,
.quiz-login__submit svg {
    position: relative;
    z-index: 1;
}

.quiz-login__submit svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.quiz-login__submit:hover svg {
    transform: translateX(4px);
}

/* Security text */

.quiz-login__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    color: #738097;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.quiz-login__secure svg {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #23a776;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer */

.quiz-login__footer {
    margin: 19px 0 0;
    color: #718099;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 767px) {
    .quiz-login {
        align-items: flex-start;
        min-height: 100svh;
        padding: 32px 15px;
    }

    .quiz-login::before {
        height: 220px;
        clip-path: polygon(0 0, 100% 0, 100% 86%, 65% 100%, 0 91%);
    }

    .quiz-login__container {
        max-width: 480px;
    }

    .quiz-login__heading {
        gap: 12px;
        margin-bottom: 19px;
    }

    .quiz-login__heading-icon {
        flex-basis: 49px;
        width: 49px;
        height: 49px;
        border-radius: 15px;
    }

    .quiz-login__heading-icon svg {
        width: 24px;
        height: 24px;
    }

    .quiz-login__eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .quiz-login__title {
        font-size: 28px;
    }

    .quiz-login__subtitle {
        font-size: 12px;
    }

    .quiz-login__card {
        border-radius: 19px;
    }

    .quiz-login__card-top {
        padding: 27px 22px 21px;
    }

    .quiz-login__form {
        padding: 25px 22px 27px;
    }

    .quiz-login__card-top h2 {
        font-size: 19px;
    }

    .quiz-login__input {
        height: 52px;
    }

    .quiz-login__background-shape--one {
        width: 170px;
        height: 170px;
    }

    .quiz-login__background-shape--two {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .quiz-login {
        padding: 25px 12px;
    }

    .quiz-login__heading {
        justify-content: flex-start;
        padding: 0 7px;
    }

    .quiz-login__title {
        font-size: 25px;
    }

    .quiz-login__subtitle {
        max-width: 240px;
    }

    .quiz-login__card-top {
        padding: 25px 18px 20px;
    }

    .quiz-login__card-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .quiz-login__form {
        padding: 23px 18px 26px;
    }

    .quiz-login__options {
        align-items: flex-start;
        gap: 12px;
    }

    .quiz-login__remember,
    .quiz-login__forgot {
        font-size: 12px;
    }

    .quiz-login__secure {
        align-items: flex-start;
        padding: 0 8px;
    }
}

/* =========================================
   FORGOT PASSWORD
========================================= */

.forgot-password,
.forgot-password * {
    box-sizing: border-box;
}

.forgot-password {
    --forgot-password-navy: #061a3d;
    --forgot-password-dark-blue: #08265c;
    --forgot-password-blue: #0868ef;
    --forgot-password-blue-dark: #0054d6;
    --forgot-password-cyan: #13b8e6;
    --forgot-password-heading: #071636;
    --forgot-password-text: #4d5b75;
    --forgot-password-muted: #8491a6;
    --forgot-password-border: #d9e3f3;
    --forgot-password-white: #ffffff;
    --forgot-password-success: #168d65;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 50px 20px;
    overflow: hidden;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(8, 104, 239, 0.11),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #f9fbff 0%,
            #eef4fc 48%,
            #f7faff 100%
        );
}

/* Premium navy header background */

.forgot-password::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 245px;
    background:
        linear-gradient(
            90deg,
            rgba(19, 184, 230, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(19, 184, 230, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            var(--forgot-password-navy) 0%,
            #062454 55%,
            #071d47 100%
        );
    background-size:
        70px 70px,
        70px 70px,
        auto;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 76%,
        70% 100%,
        30% 91%,
        0 100%
    );
}

.forgot-password::after {
    content: "";
    position: absolute;
    bottom: -260px;
    left: 50%;
    width: 780px;
    height: 500px;
    border-radius: 50%;
    background: rgba(8, 104, 239, 0.07);
    filter: blur(3px);
    transform: translateX(-50%);
}

/* Decorative shapes */

.forgot-password__shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.forgot-password__shape--one {
    top: 90px;
    left: -80px;
    width: 240px;
    height: 240px;
    border: 35px solid rgba(19, 184, 230, 0.08);
    border-radius: 50%;
}

.forgot-password__shape--two {
    top: 310px;
    right: -105px;
    width: 300px;
    height: 300px;
    border: 45px solid rgba(8, 104, 239, 0.06);
    border-radius: 50%;
}

.forgot-password__shape--three {
    bottom: 60px;
    left: 9%;
    width: 110px;
    height: 110px;
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(8, 104, 239, 0.06),
        rgba(19, 184, 230, 0.03)
    );
    transform: rotate(35deg);
}

/* Decorative dots */

.forgot-password__dot {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 50%;
    background: var(--forgot-password-cyan);
    box-shadow: 0 0 20px rgba(19, 184, 230, 0.5);
}

.forgot-password__dot--one {
    top: 35px;
    left: 8%;
    width: 6px;
    height: 6px;
}

.forgot-password__dot--two {
    top: 80px;
    right: 11%;
    width: 5px;
    height: 5px;
}

/* Main container */

.forgot-password__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 530px;
}

/* Page heading */

.forgot-password__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--forgot-password-white);
    text-align: left;
}

.forgot-password__heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 12px 28px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

.forgot-password__heading-icon svg {
    width: 29px;
    height: 29px;
    fill: var(--forgot-password-white);
}

.forgot-password__eyebrow {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.forgot-password__title {
    margin: 0;
    color: var(--forgot-password-white);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.forgot-password__subtitle {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

/* Card */

.forgot-password__card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(214, 224, 240, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 35px 80px rgba(6, 26, 61, 0.19),
        0 12px 30px rgba(6, 26, 61, 0.08);
}

.forgot-password__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--forgot-password-blue),
        var(--forgot-password-cyan)
    );
}

/* Card header */

.forgot-password__card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 34px 38px 25px;
    border-bottom: 1px solid #edf1f7;
    background:
        linear-gradient(
            135deg,
            rgba(8, 104, 239, 0.035),
            rgba(19, 184, 230, 0.015)
        );
}

.forgot-password__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    color: var(--forgot-password-blue);
    background: #eaf2ff;
}

.forgot-password__card-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.forgot-password__card-top h2 {
    margin: 0 0 3px;
    color: var(--forgot-password-heading);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

.forgot-password__card-top p {
    margin: 0;
    color: var(--forgot-password-text);
    font-size: 13px;
    line-height: 1.5;
}

/* Form */

.forgot-password__form {
    padding: 29px 38px 34px;
}

/* Information message */

.forgot-password__message {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 23px;
    padding: 14px 15px;
    border: 1px solid #cfe0f7;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(8, 104, 239, 0.07),
        rgba(19, 184, 230, 0.03)
    );
}

.forgot-password__message-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 33px;
    width: 33px;
    height: 33px;
    border-radius: 9px;
    color: var(--forgot-password-blue);
    background: var(--forgot-password-white);
}

.forgot-password__message-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.forgot-password__message p {
    margin: 0;
    color: #566983;
    font-size: 11px;
    line-height: 1.65;
}

/* Field */

.forgot-password__field {
    margin-bottom: 24px;
}

.forgot-password__label {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--forgot-password-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.forgot-password__label span {
    color: #e54157;
}

.forgot-password__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.forgot-password__input-icon {
    position: absolute;
    left: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8694ab;
    pointer-events: none;
}

.forgot-password__input-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.forgot-password__input {
    width: 100%;
    height: 54px;
    padding: 0 17px 0 49px;
    border: 1px solid var(--forgot-password-border);
    border-radius: 12px;
    outline: none;
    color: var(--forgot-password-heading);
    background: var(--forgot-password-white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.forgot-password__input::placeholder {
    color: #9aa6b8;
}

.forgot-password__input:hover {
    border-color: #b6c8e5;
}

.forgot-password__input:focus {
    border-color: var(--forgot-password-blue);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(8, 104, 239, 0.11),
        0 8px 20px rgba(8, 104, 239, 0.06);
}

.forgot-password__input-wrap:focus-within
.forgot-password__input-icon {
    color: var(--forgot-password-blue);
}

.forgot-password__help {
    margin: 8px 0 0;
    color: #75829a;
    font-size: 11px;
    line-height: 1.5;
}

/* Submit button */

.forgot-password__submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 55px;
    padding: 13px 20px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    color: var(--forgot-password-white);
    background: linear-gradient(
        110deg,
        var(--forgot-password-blue-dark) 0%,
        var(--forgot-password-blue) 52%,
        #159ee9 100%
    );
    box-shadow:
        0 15px 28px rgba(8, 104, 239, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.forgot-password__submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}

.forgot-password__submit:hover {
    box-shadow:
        0 19px 34px rgba(8, 104, 239, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.forgot-password__submit:hover::before {
    left: 140%;
}

.forgot-password__submit:active {
    transform: translateY(0);
}

.forgot-password__submit > * {
    position: relative;
    z-index: 1;
}

.forgot-password__submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-password__submit-icon svg,
.forgot-password__submit-arrow {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.forgot-password__submit-arrow {
    transition: transform 0.25s ease;
}

.forgot-password__submit:hover
.forgot-password__submit-arrow {
    transform: translateX(4px);
}

/* Divider */

.forgot-password__divider {
    position: relative;
    margin: 24px 0 19px;
    text-align: center;
}

.forgot-password__divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e4eaf3;
}

.forgot-password__divider span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0 12px;
    color: #909caf;
    background: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Back to login */

.forgot-password__back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 47px;
    padding: 11px 18px;
    border: 1px solid #ceddf1;
    border-radius: 11px;
    color: var(--forgot-password-blue-dark);
    background: #f5f9ff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.forgot-password__back:hover {
    border-color: #aecaee;
    background: #eaf3ff;
    transform: translateY(-2px);
}

.forgot-password__back svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.forgot-password__back:hover svg {
    transform: translateX(-4px);
}

/* Security message */

.forgot-password__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    color: #738097;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.forgot-password__secure svg {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--forgot-password-success);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer */

.forgot-password__footer {
    margin: 19px 0 0;
    color: #718099;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

/* =========================================
   TABLET AND MOBILE
========================================= */

@media screen and (max-width: 767px) {
    .forgot-password {
        align-items: flex-start;
        min-height: 100svh;
        padding: 32px 15px;
    }

    .forgot-password::before {
        height: 220px;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 86%,
            65% 100%,
            0 91%
        );
    }

    .forgot-password__container {
        max-width: 480px;
    }

    .forgot-password__heading {
        gap: 12px;
        margin-bottom: 19px;
    }

    .forgot-password__heading-icon {
        flex-basis: 49px;
        width: 49px;
        height: 49px;
        border-radius: 15px;
    }

    .forgot-password__heading-icon svg {
        width: 24px;
        height: 24px;
    }

    .forgot-password__title {
        font-size: 28px;
    }

    .forgot-password__subtitle {
        font-size: 12px;
    }

    .forgot-password__card {
        border-radius: 19px;
    }

    .forgot-password__card-top {
        padding: 27px 22px 21px;
    }

    .forgot-password__form {
        padding: 25px 22px 27px;
    }

    .forgot-password__shape--one {
        width: 170px;
        height: 170px;
    }

    .forgot-password__shape--two {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .forgot-password {
        padding: 25px 12px;
    }

    .forgot-password__heading {
        justify-content: flex-start;
        padding: 0 7px;
    }

    .forgot-password__title {
        font-size: 25px;
    }

    .forgot-password__subtitle {
        max-width: 260px;
    }

    .forgot-password__card-top {
        padding: 25px 18px 20px;
    }

    .forgot-password__card-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .forgot-password__form {
        padding: 23px 18px 26px;
    }

    .forgot-password__message {
        padding: 13px;
    }

    .forgot-password__secure {
        align-items: flex-start;
        padding: 0 8px;
    }
}

@media screen and (max-width: 360px) {
    .forgot-password__heading-icon {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    .quiz-login__heading-icon {
        display: none;
    }

    .quiz-login__options {
        flex-direction: column;
    }

    .quiz-login__forgot {
        margin-left: 28px;
    }
}

/*====================================== End Login Tab ======================================*/








/*======================================  Signup Tab ======================================*/
/* =========================================
   SIGNUP TAB
========================================= */

.signup-tab,
.signup-tab * {
    box-sizing: border-box;
}

.signup-tab {
    --signup-tab-navy: #061a3d;
    --signup-tab-dark-blue: #06265d;
    --signup-tab-primary: #0868ef;
    --signup-tab-primary-dark: #0052d4;
    --signup-tab-cyan: #14b8e8;
    --signup-tab-heading: #071636;
    --signup-tab-text: #56637b;
    --signup-tab-muted: #8793a8;
    --signup-tab-border: #dbe4f2;
    --signup-tab-light-blue: #edf5ff;
    --signup-tab-background: #f4f8fd;
    --signup-tab-white: #ffffff;
    --signup-tab-success: #159a69;
    --signup-tab-warning: #f5a400;

    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 55px 24px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 5%,
            rgba(8, 104, 239, 0.14),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #f8fbff 0%,
            #edf4fc 52%,
            #f7faff 100%
        );
}

.signup-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 285px;
    background:
        linear-gradient(
            90deg,
            rgba(20, 184, 232, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(20, 184, 232, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            135deg,
            var(--signup-tab-navy) 0%,
            var(--signup-tab-dark-blue) 62%,
            #071d47 100%
        );
    background-size:
        75px 75px,
        75px 75px,
        auto;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 78%,
        78% 100%,
        52% 88%,
        28% 100%,
        0 82%
    );
}

.signup-tab::after {
    content: "";
    position: absolute;
    bottom: -280px;
    left: 50%;
    width: 850px;
    height: 500px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(8, 104, 239, 0.07);
}

/* Decorative shapes */

.signup-tab__shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.signup-tab__shape--one {
    top: 75px;
    left: -90px;
    width: 260px;
    height: 260px;
    border: 38px solid rgba(20, 184, 232, 0.07);
    border-radius: 50%;
}

.signup-tab__shape--two {
    top: 340px;
    right: -120px;
    width: 330px;
    height: 330px;
    border: 48px solid rgba(8, 104, 239, 0.055);
    border-radius: 50%;
}

.signup-tab__shape--three {
    bottom: 130px;
    left: 7%;
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: linear-gradient(
        145deg,
        rgba(8, 104, 239, 0.07),
        rgba(20, 184, 232, 0.025)
    );
    transform: rotate(35deg);
}

/* Container */

.signup-tab__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* Header */

.signup-tab__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-bottom: 28px;
    color: var(--signup-tab-white);
}

.signup-tab__header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 15px 32px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

.signup-tab__header-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.signup-tab__eyebrow {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.signup-tab__title {
    margin: 0;
    color: var(--signup-tab-white);
    font-size: clamp(27px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.9px;
}

.signup-tab__subtitle {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}

/* Card */

.signup-tab__card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 225, 240, 0.95);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow:
        0 38px 85px rgba(6, 26, 61, 0.18),
        0 12px 32px rgba(6, 26, 61, 0.07);
}

.signup-tab__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 42px;
    right: 42px;
    height: 4px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(
        90deg,
        var(--signup-tab-primary-dark),
        var(--signup-tab-primary),
        var(--signup-tab-cyan)
    );
}

/* Notice */

.signup-tab__notice {
    display: flex;
    gap: 17px;
    margin: 34px 38px 0;
    padding: 20px 22px;
    border: 1px solid #cfe0f8;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            rgba(8, 104, 239, 0.075),
            rgba(20, 184, 232, 0.035)
        );
}

.signup-tab__notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: var(--signup-tab-primary);
    background: var(--signup-tab-white);
    box-shadow: 0 8px 18px rgba(8, 104, 239, 0.12);
}

.signup-tab__notice-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.signup-tab__notice-content p {
    margin: 0 0 6px;
    color: #40506b;
    font-size: 12px;
    line-height: 1.65;
}

.signup-tab__notice-content p:last-child {
    margin-bottom: 0;
}

.signup-tab__notice-content .signup-tab__mandatory {
    color: var(--signup-tab-heading);
    font-weight: 700;
}

.signup-tab__mandatory span {
    color: #e63f55;
}

/* Form */

.signup-tab__form {
    padding: 15px 38px 38px;
}

/* Sections */

.signup-tab__section {
    padding: 31px 0 33px;
    border-bottom: 1px solid #e8edf5;
}

.signup-tab__section--security {
    border-bottom: 0;
    padding-bottom: 22px;
}

.signup-tab__section-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
}

.signup-tab__section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: var(--signup-tab-white);
    background: linear-gradient(
        145deg,
        var(--signup-tab-primary-dark),
        var(--signup-tab-primary)
    );
    box-shadow: 0 10px 22px rgba(8, 104, 239, 0.23);
    font-size: 13px;
    font-weight: 800;
}

.signup-tab__section-heading h2 {
    margin: 0 0 3px;
    color: var(--signup-tab-heading);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.signup-tab__section-heading p {
    margin: 0;
    color: var(--signup-tab-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* Grid */

.signup-tab__grid {
    display: grid;
    gap: 22px 18px;
}

.signup-tab__grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signup-tab__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
}

/* Fields */

.signup-tab__field {
    min-width: 0;
}

.signup-tab__field label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--signup-tab-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.signup-tab__field label span {
    color: #e44155;
}

.signup-tab__input-wrap,
.signup-tab__phone-wrap,
.signup-tab__email-wrap,
.signup-tab__select-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.signup-tab__input-icon {
    position: absolute;
    left: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8795aa;
    pointer-events: none;
}

.signup-tab__input-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.signup-tab input,
.signup-tab select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--signup-tab-border);
    border-radius: 11px;
    outline: none;
    color: var(--signup-tab-heading);
    background: var(--signup-tab-white);
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.signup-tab__input-wrap input {
    padding: 0 44px;
}

.signup-tab input::placeholder {
    color: #99a5b7;
}

.signup-tab input:hover,
.signup-tab select:hover {
    border-color: #b9c9e1;
}

.signup-tab input:focus,
.signup-tab select:focus {
    border-color: var(--signup-tab-primary);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(8, 104, 239, 0.1),
        0 8px 18px rgba(8, 104, 239, 0.05);
}

.signup-tab__input-wrap:focus-within .signup-tab__input-icon {
    color: var(--signup-tab-primary);
}

/* Phone */

.signup-tab__phone-wrap {
    overflow: hidden;
    border: 1px solid var(--signup-tab-border);
    border-radius: 11px;
    background: var(--signup-tab-white);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.signup-tab__phone-wrap:focus-within {
    border-color: var(--signup-tab-primary);
    box-shadow: 0 0 0 4px rgba(8, 104, 239, 0.1);
}

.signup-tab__country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    padding: 0 12px;
    border-right: 1px solid var(--signup-tab-border);
    color: var(--signup-tab-heading);
    background: #f6f9fd;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.signup-tab__flag {
    font-size: 16px;
}

.signup-tab__phone-wrap input {
    height: 48px;
    padding: 0 13px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.signup-tab__phone-wrap input:focus {
    box-shadow: none;
}

/* Email domain */

.signup-tab__email-wrap {
    align-items: stretch;
}

.signup-tab__email-wrap .signup-tab__input-wrap {
    flex: 1;
}

.signup-tab__email-wrap input {
    border-radius: 11px 0 0 11px;
}

.signup-tab__email-domain {
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--signup-tab-border);
    border-left: 0;
    border-radius: 0 11px 11px 0;
    color: #7d899b;
    background: #edf1f6;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

/* Select */

.signup-tab__select-wrap::after {
    content: "";
    position: absolute;
    right: 15px;
    width: 7px;
    height: 7px;
    border-right: 2px solid #8592a7;
    border-bottom: 2px solid #8592a7;
    pointer-events: none;
    transform: translateY(-3px) rotate(45deg);
}

.signup-tab select {
    padding: 0 42px 0 14px;
    appearance: none;
    cursor: pointer;
}

/* Notes */

.signup-tab__field-note {
    display: block;
    margin-top: 7px;
    color: var(--signup-tab-warning);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.55;
}

/* Password button */

.signup-tab__password-toggle {
    position: absolute;
    right: 11px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: #8491a5;
    background: transparent;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.signup-tab__password-toggle:hover {
    color: var(--signup-tab-primary);
    background: var(--signup-tab-light-blue);
}

.signup-tab__password-toggle svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Agreement */

.signup-tab__agreement {
    display: flex;
    justify-content: center;
    padding: 14px 0 22px;
}

.signup-tab__checkbox-label {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 570px;
    color: #69768b;
    font-size: 11px;
    line-height: 1.65;
    cursor: pointer;
    text-align: center;
}

.signup-tab__checkbox-label input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.signup-tab__checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    border: 1.5px solid #b5c1d3;
    border-radius: 5px;
    background: var(--signup-tab-white);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.signup-tab__checkbox::after {
    content: "";
    width: 8px;
    height: 4px;
    margin-top: -2px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    opacity: 0;
    transform: rotate(-45deg) scale(0.7);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.signup-tab__checkbox-label input:checked + .signup-tab__checkbox {
    border-color: var(--signup-tab-primary);
    background: var(--signup-tab-primary);
    box-shadow: 0 5px 12px rgba(8, 104, 239, 0.22);
}

.signup-tab__checkbox-label input:checked
    + .signup-tab__checkbox::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1);
}

.signup-tab__checkbox-label a {
    color: var(--signup-tab-primary-dark);
    font-weight: 700;
    text-decoration: none;
}

.signup-tab__checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit */

.signup-tab__submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 56px;
    padding: 14px 25px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    color: var(--signup-tab-white);
    background: linear-gradient(
        110deg,
        var(--signup-tab-primary-dark) 0%,
        var(--signup-tab-primary) 52%,
        #159ee9 100%
    );
    box-shadow:
        0 16px 30px rgba(8, 104, 239, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1px;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.signup-tab__submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 75%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.signup-tab__submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 36px rgba(8, 104, 239, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.signup-tab__submit:hover::before {
    left: 140%;
}

.signup-tab__submit:active {
    transform: translateY(0);
}

.signup-tab__submit > * {
    position: relative;
    z-index: 1;
}

.signup-tab__submit-icon,
.signup-tab__submit-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-tab__submit-icon svg,
.signup-tab__submit-arrow {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.signup-tab__submit-arrow {
    transition: transform 0.25s ease;
}

.signup-tab__submit:hover .signup-tab__submit-arrow {
    transform: translateX(4px);
}

/* Security */

.signup-tab__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 19px;
    color: #768399;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.signup-tab__secure svg {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--signup-tab-success);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   RESPONSIVE
========================================= */

@media screen and (max-width: 1100px) {
    .signup-tab__grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 767px) {
    .signup-tab {
        padding: 32px 15px;
    }

    .signup-tab::before {
        height: 245px;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 88%,
            68% 100%,
            0 91%
        );
    }

    .signup-tab__header {
        justify-content: flex-start;
        gap: 13px;
        padding: 0 7px;
        margin-bottom: 22px;
    }

    .signup-tab__header-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .signup-tab__header-icon svg {
        width: 26px;
        height: 26px;
    }

    .signup-tab__title {
        font-size: 27px;
    }

    .signup-tab__subtitle {
        font-size: 12px;
    }

    .signup-tab__card {
        border-radius: 20px;
    }

    .signup-tab__notice {
        margin: 28px 22px 0;
        padding: 17px;
    }

    .signup-tab__form {
        padding: 12px 22px 28px;
    }

    .signup-tab__grid--two {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .signup-tab__section {
        padding: 27px 0;
    }

    .signup-tab__shape--two {
        display: none;
    }
}

@media screen and (max-width: 560px) {
    .signup-tab {
        padding: 25px 11px;
    }

    .signup-tab__header-icon {
        display: none;
    }

    .signup-tab__header {
        padding: 0 5px;
    }

    .signup-tab__title {
        font-size: 24px;
    }

    .signup-tab__grid--four {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .signup-tab__notice {
        flex-direction: column;
        margin: 24px 17px 0;
        padding: 16px;
    }

    .signup-tab__form {
        padding: 10px 17px 24px;
    }

    .signup-tab__section-heading {
        align-items: flex-start;
    }

    .signup-tab__section-number {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .signup-tab__email-wrap {
        flex-direction: column;
    }

    .signup-tab__email-wrap input {
        border-radius: 11px;
    }

    .signup-tab__email-domain {
        justify-content: flex-start;
        min-height: 38px;
        margin-top: 6px;
        border: 1px solid var(--signup-tab-border);
        border-radius: 9px;
    }

    .signup-tab__checkbox-label {
        text-align: left;
    }

    .signup-tab__submit {
        min-height: 54px;
    }
}
/*======================================  End Signup Tab ======================================*/





/*======================================  About Tab ======================================*/
/* =========================================
   ABOUT TAB BASE
========================================= */

.about-tab,
.about-tab * {
    box-sizing: border-box;
}

.about-tab {
    --about-tab-navy: #071b41;
    --about-tab-blue-dark: #07458f;
    --about-tab-blue: #0868ef;
    --about-tab-cyan: #0ca9dc;
    --about-tab-heading: #081735;
    --about-tab-text: #536178;
    --about-tab-muted: #8290a7;
    --about-tab-border: #dce6f3;
    --about-tab-light: #f4f8fd;
    --about-tab-white: #ffffff;

    width: 100%;
    overflow: hidden;
    color: var(--about-tab-heading);
    background: var(--about-tab-light);
}

.about-tab__container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================
   TOP BANNER
========================================= */

.about-tab__top {
    position: relative;
    min-height: 245px;
    margin-bottom: 50px;
    overflow: hidden;
    color: var(--about-tab-white);
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(14, 174, 224, 0.28),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            var(--about-tab-navy) 0%,
            #083b82 50%,
            var(--about-tab-cyan) 100%
        );
}

.about-tab__top-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.15) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
}

.about-tab__top::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -160px;
    width: 400px;
    height: 400px;
    border: 55px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.about-tab__top .about-tab__container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 245px;
    padding: 35px 15px;
    text-align: center;
}

.about-tab__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.about-tab__page-title {
    margin: 0;
    color: var(--about-tab-white);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.about-tab__page-subtitle {
    max-width: 620px;
    margin: 12px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================
   MAIN SECTION
========================================= */

.about-tab__main {
    position: relative;
    padding: 0 0 65px;
    background:
        radial-gradient(
            circle at 8% 40%,
            rgba(8, 104, 239, 0.07),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(12, 169, 220, 0.08),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #f4f8fd 0%,
            #f9fbfe 100%
        );
}

.about-tab__card {
    /*position: relative;*/
    /*display: grid;*/
    /*grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);*/
    /*overflow: hidden;*/
    border: 1px solid rgba(216, 227, 241, 0.95);
    border-radius: 26px;
    background: var(--about-tab-white);
    box-shadow:
        0 35px 75px rgba(7, 27, 65, 0.15),
        0 10px 30px rgba(7, 27, 65, 0.06);
}

.about-tab__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 45px;
    right: 45px;
    z-index: 3;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--about-tab-blue),
        var(--about-tab-cyan)
    );
}

/* =========================================
   CONTENT
========================================= */

.about-tab__content {
    padding: 48px;
}

.about-tab__heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}

.about-tab__heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    color: var(--about-tab-blue);
    background: linear-gradient(
        145deg,
        #e9f3ff,
        #f5faff
    );
    box-shadow: 0 10px 22px rgba(8, 104, 239, 0.12);
}

.about-tab__heading-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-tab__small-title {
    display: block;
    margin-bottom: 4px;
    color: var(--about-tab-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-tab__heading h2 {
    margin: 0;
    color: var(--about-tab-heading);
    font-size: clamp(22px, 3vw, 29px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* =========================================
   TEXT
========================================= */

.about-tab__text {
    padding-left: 69px;
}

.about-tab__text p {
    position: relative;
    margin: 0 0 16px;
    color: var(--about-tab-text);
    font-size: 13px;
    line-height: 1.8;
}

.about-tab__text p::before {
    content: "";
    position: absolute;
    top: 9px;
    left: -20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--about-tab-blue);
    box-shadow: 0 0 0 5px rgba(8, 104, 239, 0.08);
}

.about-tab__text p:first-child {
    color: var(--about-tab-heading);
    font-size: 14px;
    font-weight: 650;
}

.about-tab__text .about-tab__highlight-text {
    margin-bottom: 0;
    color: var(--about-tab-blue-dark);
    font-weight: 750;
}

/* =========================================
   FEATURES
========================================= */

.about-tab__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
    padding-top: 29px;
    border-top: 1px solid #e8eef6;
}

.about-tab__feature {
    position: relative;
    min-width: 0;
    padding: 18px 15px;
    overflow: hidden;
    border: 1px solid var(--about-tab-border);
    border-radius: 15px;
    background: linear-gradient(
        145deg,
        #ffffff,
        #f7faff
    );
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.about-tab__feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    width: 42px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(
        90deg,
        var(--about-tab-blue),
        var(--about-tab-cyan)
    );
}

.about-tab__feature:hover {
    border-color: #bfd5f2;
    box-shadow: 0 14px 28px rgba(7, 42, 93, 0.09);
    transform: translateY(-4px);
}

.about-tab__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 11px;
    color: var(--about-tab-blue);
    background: #eaf3ff;
}

.about-tab__feature-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-tab__feature h3 {
    margin: 0 0 6px;
    color: var(--about-tab-heading);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.about-tab__feature p {
    margin: 0;
    color: #748198;
    font-size: 10px;
    line-height: 1.65;
}

/* =========================================
   VISUAL
========================================= */

.about-tab__visual {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 45px 38px;
    overflow: hidden;
    border-left: 1px solid #e5ecf5;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(12, 169, 220, 0.17),
            transparent 32%
        ),
        linear-gradient(
            155deg,
            #eef6ff 0%,
            #e7f2ff 55%,
            #f8fbff 100%
        );
}

.about-tab__visual::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -80px;
    width: 230px;
    height: 230px;
    border: 35px solid rgba(8, 104, 239, 0.06);
    border-radius: 50%;
}

.about-tab__visual::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -80px;
    width: 210px;
    height: 210px;
    border: 32px solid rgba(12, 169, 220, 0.07);
    border-radius: 50%;
}

.about-tab__poster-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
}

.about-tab__poster-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    z-index: 4;
    padding: 8px 12px;
    border: 3px solid #ffffff;
    border-radius: 9px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--about-tab-blue),
        var(--about-tab-cyan)
    );
    box-shadow: 0 8px 18px rgba(8, 104, 239, 0.25);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-tab__poster-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    border: 6px solid #ffffff;
    border-radius: 20px;
    object-fit: cover;
    box-shadow:
        0 26px 50px rgba(7, 38, 84, 0.2),
        0 8px 20px rgba(7, 38, 84, 0.1);
}

.about-tab__poster-shadow {
    position: absolute;
    right: 8%;
    bottom: -16px;
    left: 8%;
    height: 25px;
    border-radius: 50%;
    background: rgba(7, 35, 77, 0.2);
    filter: blur(14px);
}

.about-tab__poster-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    max-width: 320px;
    margin-top: 25px;
    padding: 13px 14px;
    border: 1px solid rgba(8, 104, 239, 0.13);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(7, 38, 84, 0.08);
    backdrop-filter: blur(8px);
}

.about-tab__poster-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
    border-radius: 10px;
    color: #148963;
    background: #e8f8f1;
}

.about-tab__poster-info-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-tab__poster-info strong,
.about-tab__poster-info span {
    display: block;
}

.about-tab__poster-info strong {
    margin-bottom: 3px;
    color: var(--about-tab-heading);
    font-size: 11px;
    font-weight: 800;
}

.about-tab__poster-info span {
    color: #758299;
    font-size: 8px;
    line-height: 1.5;
}

/* =========================================
   CTA
========================================= */

.about-tab__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 25px;
    padding: 25px 29px;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(12, 169, 220, 0.24),
            transparent 32%
        ),
        linear-gradient(
            110deg,
            var(--about-tab-navy),
            #073a81 60%,
            #075ec4
        );
    box-shadow: 0 20px 42px rgba(7, 27, 65, 0.16);
}

.about-tab__cta-text span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-tab__cta-text h2 {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
}

.about-tab__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 160px;
    min-height: 49px;
    padding: 12px 20px;
    border-radius: 11px;
    color: var(--about-tab-blue-dark);
    background: #ffffff;
    box-shadow: 0 11px 22px rgba(0, 0, 0, 0.15);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-tab__cta-button:hover {
    box-shadow: 0 15px 26px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.about-tab__cta-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.about-tab__cta-button:hover svg {
    transform: translateX(4px);
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media screen and (max-width: 991px) {
    .about-tab__card {
        grid-template-columns: 1fr;
    }

    .about-tab__visual {
        border-top: 1px solid #e5ecf5;
        border-left: 0;
    }

    .about-tab__poster-wrap,
    .about-tab__poster-info {
        max-width: 350px;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media screen and (max-width: 767px) {
    .about-tab__container {
        width: min(100% - 28px, 1180px);
    }

    .about-tab__top,
    .about-tab__top .about-tab__container {
        min-height: 215px;
    }

    .about-tab__page-title {
        font-size: 35px;
    }

    .about-tab__page-subtitle {
        font-size: 12px;
    }

    .about-tab__card {
        margin-top: -35px;
        border-radius: 20px;
    }

    .about-tab__content {
        padding: 34px 25px;
    }

    .about-tab__text {
        padding-left: 20px;
    }

    .about-tab__features {
        grid-template-columns: 1fr;
    }

    .about-tab__feature {
        display: flex;
        align-items: flex-start;
        gap: 13px;
    }

    .about-tab__feature-icon {
        flex: 0 0 40px;
        margin-bottom: 0;
    }

    .about-tab__visual {
        padding: 38px 25px;
    }

    .about-tab__cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-tab__cta-button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .about-tab__top,
    .about-tab__top .about-tab__container {
        min-height: 200px;
    }

    .about-tab__badge {
        padding: 6px 12px;
        font-size: 9px;
    }

    .about-tab__page-title {
        font-size: 31px;
    }

    .about-tab__content {
        padding: 29px 18px;
    }

    .about-tab__heading {
        align-items: flex-start;
        gap: 12px;
    }

    .about-tab__heading-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
        border-radius: 13px;
    }

    .about-tab__heading-icon svg {
        width: 23px;
        height: 23px;
    }

    .about-tab__heading h2 {
        font-size: 20px;
    }

    .about-tab__text {
        padding-left: 18px;
    }

    .about-tab__text p {
        font-size: 12px;
        line-height: 1.75;
    }

    .about-tab__visual {
        padding: 32px 17px;
    }

    .about-tab__poster-badge {
        top: -10px;
        right: -5px;
        font-size: 8px;
    }

    .about-tab__cta {
        padding: 21px 18px;
    }

    .about-tab__cta-text h2 {
        font-size: 18px;
    }
}
/*======================================  End About Tab ======================================*/


/*======================================  quiz format  Tab ======================================*/
/* =========================================
   QUIZ FORMAT TAB
========================================= */

.quiz-format-tab,
.quiz-format-tab * {
    box-sizing: border-box;
}

.quiz-format-tab {
    --quiz-format-tab-navy: #061a3d;
    --quiz-format-tab-dark-blue: #06285f;
    --quiz-format-tab-blue: #0868ef;
    --quiz-format-tab-blue-dark: #0052cf;
    --quiz-format-tab-cyan: #12b4e4;
    --quiz-format-tab-heading: #071636;
    --quiz-format-tab-text: #536178;
    --quiz-format-tab-muted: #7e8ba1;
    --quiz-format-tab-border: #dbe5f2;
    --quiz-format-tab-light: #f4f8fd;
    --quiz-format-tab-white: #ffffff;
    --quiz-format-tab-yellow: #fff3a3;
    --quiz-format-tab-yellow-border: #f2d956;
    --quiz-format-tab-warning: #fff7d8;
    --quiz-format-tab-warning-dark: #ad7200;

    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 22px 65px;
    overflow: hidden;
    color: var(--quiz-format-tab-heading);
    background:
        radial-gradient(
            circle at 10% 40%,
            rgba(8, 104, 239, 0.07),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 72%,
            rgba(18, 180, 228, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f4f8fd 0%,
            #fafcff 100%
        );
    font-family: "Inter", "Poppins", Arial, sans-serif;
}

.quiz-format-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 285px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            115deg,
            var(--quiz-format-tab-navy) 0%,
            #07387c 55%,
            var(--quiz-format-tab-cyan) 100%
        );
    background-size:
        72px 72px,
        72px 72px,
        auto;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 80%,
        78% 94%,
        54% 85%,
        30% 100%,
        0 87%
    );
}

.quiz-format-tab__shape {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.quiz-format-tab__shape--one {
    top: 70px;
    left: -95px;
    width: 260px;
    height: 260px;
    border: 38px solid rgba(18, 180, 228, 0.07);
}

.quiz-format-tab__shape--two {
    top: 400px;
    right: -130px;
    width: 340px;
    height: 340px;
    border: 48px solid rgba(8, 104, 239, 0.055);
}

.quiz-format-tab__container {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
}

/* Header */

.quiz-format-tab__header {
    max-width: 780px;
    margin: 0 auto;
    padding: 46px 20px 48px;
    color: var(--quiz-format-tab-white);
    text-align: center;
}

.quiz-format-tab__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    backdrop-filter: blur(9px);
}

.quiz-format-tab__title {
    margin: 0;
    color: var(--quiz-format-tab-white);
    font-size: clamp(28px, 4.5vw, 43px);
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -1px;
}

.quiz-format-tab__subtitle {
    max-width: 620px;
    margin: 11px auto 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.7;
}

/* Card */

.quiz-format-tab__card {
    position: relative;
    margin-top: -27px;
    overflow: hidden;
    border: 1px solid rgba(214, 225, 240, 0.96);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow:
        0 38px 82px rgba(6, 26, 61, 0.17),
        0 12px 30px rgba(6, 26, 61, 0.06);
}

.quiz-format-tab__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 44px;
    right: 44px;
    height: 4px;
    border-radius: 0 0 11px 11px;
    background: linear-gradient(
        90deg,
        var(--quiz-format-tab-blue-dark),
        var(--quiz-format-tab-blue),
        var(--quiz-format-tab-cyan)
    );
}

/* Card head */

.quiz-format-tab__card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 34px 40px 27px;
    border-bottom: 1px solid #e8eef6;
    background:
        linear-gradient(
            135deg,
            rgba(8, 104, 239, 0.045),
            rgba(18, 180, 228, 0.018)
        );
}

.quiz-format-tab__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 53px;
    width: 53px;
    height: 53px;
    border-radius: 16px;
    color: var(--quiz-format-tab-blue);
    background: #eaf3ff;
    box-shadow: 0 10px 23px rgba(8, 104, 239, 0.12);
}

.quiz-format-tab__card-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quiz-format-tab__card-label {
    display: block;
    margin-bottom: 3px;
    color: var(--quiz-format-tab-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.quiz-format-tab__card-head h2 {
    margin: 0;
    color: var(--quiz-format-tab-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
}

/* Content */

.quiz-format-tab__content {
    padding: 15px 40px 35px;
}

.quiz-format-tab__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 17px;
    padding: 24px 0;
    border-bottom: 1px solid #e8eef6;
}

.quiz-format-tab__item:last-child {
    border-bottom: 0;
}

.quiz-format-tab__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: var(--quiz-format-tab-white);
    background: linear-gradient(
        145deg,
        var(--quiz-format-tab-blue-dark),
        var(--quiz-format-tab-blue)
    );
    box-shadow: 0 9px 20px rgba(8, 104, 239, 0.22);
    font-size: 12px;
    font-weight: 850;
}

.quiz-format-tab__item-content h3 {
    margin: 1px 0 8px;
    color: var(--quiz-format-tab-blue-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.quiz-format-tab__item-content p {
    margin: 0;
    color: var(--quiz-format-tab-text);
    font-size: 13px;
    line-height: 1.85;
}

.quiz-format-tab__item-content strong {
    color: var(--quiz-format-tab-heading);
    font-weight: 750;
}

.quiz-format-tab__item-content a {
    color: var(--quiz-format-tab-blue-dark);
    font-weight: 750;
    text-decoration: none;
}

.quiz-format-tab__item-content a:hover {
    text-decoration: underline;
}

.quiz-format-tab__item-content mark {
    display: inline;
    padding: 2px 5px;
    border-radius: 4px;
    color: #4b3a00;
    background: var(--quiz-format-tab-yellow);
    box-shadow: inset 0 -1px 0 var(--quiz-format-tab-yellow-border);
    font-weight: 750;
}

/* Warning */

.quiz-format-tab__warning,
.quiz-format-tab__note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 12px;
}

.quiz-format-tab__warning {
    border: 1px solid #f2d56d;
    background: var(--quiz-format-tab-warning);
}

.quiz-format-tab__warning-icon,
.quiz-format-tab__note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

.quiz-format-tab__warning-icon {
    color: var(--quiz-format-tab-warning-dark);
    background: rgba(255, 255, 255, 0.75);
}

.quiz-format-tab__warning-icon svg,
.quiz-format-tab__note-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quiz-format-tab__warning p {
    color: #6e5200;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.75;
}

/* Information note */

.quiz-format-tab__note {
    border: 1px solid #cfe0f7;
    background: #eef6ff;
}

.quiz-format-tab__note-icon {
    color: var(--quiz-format-tab-blue);
    background: #ffffff;
}

.quiz-format-tab__note p {
    color: #49627f;
    font-size: 12px;
    line-height: 1.75;
}

/* Footer */

.quiz-format-tab__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 32px;
    border-top: 1px solid #e8eef6;
    background: #f7faff;
    text-align: center;
}

.quiz-format-tab__footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    color: #168a63;
    background: #e7f8f1;
}

.quiz-format-tab__footer-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quiz-format-tab__footer p {
    margin: 0;
    color: #69768b;
    font-size: 11px;
    line-height: 1.6;
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 767px) {
    .quiz-format-tab {
        padding-right: 14px;
        padding-left: 14px;
    }

    .quiz-format-tab::before {
        height: 255px;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 88%,
            67% 100%,
            0 91%
        );
    }

    .quiz-format-tab__header {
        padding: 35px 12px 42px;
    }

    .quiz-format-tab__title {
        font-size: 30px;
    }

    .quiz-format-tab__subtitle {
        font-size: 12px;
    }

    .quiz-format-tab__card {
        margin-top: -22px;
        border-radius: 20px;
    }

    .quiz-format-tab__card-head {
        padding: 28px 23px 22px;
    }

    .quiz-format-tab__content {
        padding: 10px 23px 28px;
    }

    .quiz-format-tab__item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        padding: 21px 0;
    }

    .quiz-format-tab__number {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .quiz-format-tab__shape--two {
        display: none;
    }
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 480px) {
    .quiz-format-tab {
        padding-right: 10px;
        padding-left: 10px;
    }

    .quiz-format-tab__header {
        padding-top: 29px;
    }

    .quiz-format-tab__badge {
        padding: 6px 12px;
        font-size: 8px;
    }

    .quiz-format-tab__title {
        font-size: 25px;
    }

    .quiz-format-tab__card-head {
        align-items: flex-start;
        padding: 25px 17px 20px;
    }

    .quiz-format-tab__card-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
        border-radius: 13px;
    }

    .quiz-format-tab__card-head h2 {
        font-size: 19px;
    }

    .quiz-format-tab__content {
        padding: 7px 17px 23px;
    }

    .quiz-format-tab__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .quiz-format-tab__number {
        width: 38px;
        height: 38px;
    }

    .quiz-format-tab__item-content h3 {
        font-size: 13px;
    }

    .quiz-format-tab__item-content p {
        font-size: 12px;
        line-height: 1.75;
    }

    .quiz-format-tab__warning,
    .quiz-format-tab__note {
        padding: 13px;
    }

    .quiz-format-tab__footer {
        align-items: flex-start;
        padding: 18px 17px;
        text-align: left;
    }
}
/*======================================   end quiz format  Tab ======================================*/


/*======================================   contact us  Tab ======================================*/
/* =========================================
   CONTACT TAB
========================================= */

.contact-tab,
.contact-tab * {
    box-sizing: border-box;
}

.contact-tab {
    --contact-tab-navy: #061a3d;
    --contact-tab-dark-blue: #06275e;
    --contact-tab-blue: #0868ef;
    --contact-tab-blue-dark: #0052d4;
    --contact-tab-cyan: #12b4e4;
    --contact-tab-heading: #071636;
    --contact-tab-text: #536178;
    --contact-tab-muted: #8190a7;
    --contact-tab-border: #d9e4f2;
    --contact-tab-light-blue: #edf5ff;
    --contact-tab-white: #ffffff;
    --contact-tab-success: #168d65;

    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0 24px 70px;
    overflow: hidden;
    color: var(--contact-tab-heading);
    background:
        radial-gradient(
            circle at 8% 45%,
            rgba(8, 104, 239, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(18, 180, 228, 0.08),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f4f8fd 0%,
            #fbfdff 100%
        );
    font-family: "Inter", "Poppins", Arial, sans-serif;
}

.contact-tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 330px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.065) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            115deg,
            var(--contact-tab-navy) 0%,
            #073a80 54%,
            var(--contact-tab-cyan) 100%
        );
    background-size:
        74px 74px,
        74px 74px,
        auto;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 79%,
        80% 94%,
        58% 85%,
        33% 100%,
        0 87%
    );
}

.contact-tab::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: 50%;
    width: 900px;
    height: 520px;
    border-radius: 50%;
    background: rgba(8, 104, 239, 0.055);
    transform: translateX(-50%);
}

/* Decorative shapes */

.contact-tab__shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.contact-tab__shape--one {
    top: 75px;
    left: -100px;
    width: 280px;
    height: 280px;
    border: 40px solid rgba(18, 180, 228, 0.07);
    border-radius: 50%;
}

.contact-tab__shape--two {
    top: 420px;
    right: -130px;
    width: 350px;
    height: 350px;
    border: 50px solid rgba(8, 104, 239, 0.055);
    border-radius: 50%;
}

.contact-tab__shape--three {
    bottom: 105px;
    left: 7%;
    width: 125px;
    height: 125px;
    border-radius: 30px;
    background: linear-gradient(
        145deg,
        rgba(8, 104, 239, 0.07),
        rgba(18, 180, 228, 0.025)
    );
    transform: rotate(35deg);
}

/* Container */

.contact-tab__container {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.contact-tab__header {
    max-width: 730px;
    margin: 0 auto;
    padding: 47px 20px 51px;
    color: var(--contact-tab-white);
    text-align: center;
}

.contact-tab__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(9px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.contact-tab__title {
    margin: 0;
    color: var(--contact-tab-white);
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.contact-tab__subtitle {
    max-width: 600px;
    margin: 11px auto 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.contact-tab__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
    gap: 30px;
    align-items: center;
    margin-top: -25px;
}

/* =========================================
   LEFT INFORMATION
========================================= */

.contact-tab__info {
    position: relative;
    padding: 43px 42px;
    overflow: hidden;
    border: 1px solid rgba(214, 225, 240, 0.96);
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(18, 180, 228, 0.1),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(245, 250, 255, 0.98)
        );
    box-shadow:
        0 30px 70px rgba(6, 26, 61, 0.12),
        0 10px 28px rgba(6, 26, 61, 0.05);
}

.contact-tab__info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 120px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--contact-tab-blue),
        var(--contact-tab-cyan)
    );
}

.contact-tab__info::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border: 35px solid rgba(8, 104, 239, 0.045);
    border-radius: 50%;
}

.contact-tab__eyebrow {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 7px;
    color: var(--contact-tab-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.contact-tab__info h2 {
    position: relative;
    z-index: 1;
    max-width: 550px;
    margin: 0;
    color: var(--contact-tab-heading);
    font-size: clamp(25px, 3.5vw, 35px);
    font-weight: 850;
    line-height: 1.28;
    letter-spacing: -0.75px;
}

.contact-tab__info-text {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 17px 0 25px;
    color: var(--contact-tab-text);
    font-size: 13px;
    line-height: 1.85;
}

/* Email card */

.contact-tab__email {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid #cfe0f7;
    border-radius: 15px;
    color: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(8, 104, 239, 0.08),
            rgba(18, 180, 228, 0.035)
        );
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.contact-tab__email:hover {
    border-color: #aac9ef;
    box-shadow: 0 14px 28px rgba(8, 104, 239, 0.1);
    transform: translateY(-3px);
}

.contact-tab__email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 13px;
    color: var(--contact-tab-white);
    background: linear-gradient(
        145deg,
        var(--contact-tab-blue-dark),
        var(--contact-tab-blue)
    );
    box-shadow: 0 9px 20px rgba(8, 104, 239, 0.22);
}

.contact-tab__email-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-tab__email-content {
    flex: 1;
    min-width: 0;
}

.contact-tab__email-content small,
.contact-tab__email-content strong {
    display: block;
}

.contact-tab__email-content small {
    margin-bottom: 3px;
    color: #74839a;
    font-size: 9px;
    line-height: 1.4;
}

.contact-tab__email-content strong {
    overflow-wrap: anywhere;
    color: var(--contact-tab-blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.contact-tab__email-arrow {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--contact-tab-blue);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.contact-tab__email:hover .contact-tab__email-arrow {
    transform: translateX(4px);
}

/* Support list */

.contact-tab__support-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 22px;
}

.contact-tab__support-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    min-width: 0;
    padding: 15px;
    border: 1px solid var(--contact-tab-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
}

.contact-tab__support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: var(--contact-tab-blue);
    background: var(--contact-tab-light-blue);
}

.contact-tab__support-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-tab__support-item strong {
    display: block;
    margin: 1px 0 4px;
    color: var(--contact-tab-heading);
    font-size: 11px;
    font-weight: 800;
}

.contact-tab__support-item p {
    margin: 0;
    color: #78859a;
    font-size: 9px;
    line-height: 1.55;
}

/* Notice */

.contact-tab__notice {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    padding: 14px 15px;
    border: 1px solid #d6e3f3;
    border-radius: 13px;
    background: #f7faff;
}

.contact-tab__notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    color: var(--contact-tab-blue);
    background: #ffffff;
}

.contact-tab__notice-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-tab__notice p {
    margin: 0;
    color: #65748a;
    font-size: 10px;
    line-height: 1.65;
}

/* =========================================
   FORM CARD
========================================= */

.contact-tab__form-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 225, 240, 0.98);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow:
        0 38px 82px rgba(6, 26, 61, 0.17),
        0 12px 30px rgba(6, 26, 61, 0.06);
}

.contact-tab__form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    right: 35px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--contact-tab-blue-dark),
        var(--contact-tab-blue),
        var(--contact-tab-cyan)
    );
}

/* Form heading */

.contact-tab__form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 31px 34px 24px;
    border-bottom: 1px solid #e8eef6;
    background:
        linear-gradient(
            135deg,
            rgba(8, 104, 239, 0.045),
            rgba(18, 180, 228, 0.018)
        );
}

.contact-tab__form-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    color: var(--contact-tab-blue);
    background: #eaf3ff;
    box-shadow: 0 10px 22px rgba(8, 104, 239, 0.12);
}

.contact-tab__form-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-tab__form-label {
    display: block;
    margin-bottom: 2px;
    color: var(--contact-tab-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-tab__form-heading h2 {
    margin: 0 0 3px;
    color: var(--contact-tab-heading);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
}

.contact-tab__form-heading p {
    margin: 0;
    color: var(--contact-tab-muted);
    font-size: 10px;
    line-height: 1.5;
}

/* Form */

.contact-tab__form {
    padding: 27px 34px 31px;
}

.contact-tab__field {
    margin-bottom: 21px;
}

.contact-tab__field label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--contact-tab-heading);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.5;
}

.contact-tab__field label span {
    color: #e44358;
}

.contact-tab__field-description {
    display: block;
    margin: -3px 0 9px;
    color: #8793a7;
    font-size: 9px;
    line-height: 1.5;
}

.contact-tab__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-tab__input-icon {
    position: absolute;
    left: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8795aa;
    pointer-events: none;
}

.contact-tab__input-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-tab__input-icon--textarea {
    top: 16px;
    align-self: flex-start;
}

.contact-tab input,
.contact-tab textarea {
    width: 100%;
    border: 1px solid var(--contact-tab-border);
    border-radius: 11px;
    outline: none;
    color: var(--contact-tab-heading);
    background: var(--contact-tab-white);
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.contact-tab input {
    height: 51px;
    padding: 0 15px 0 45px;
}

.contact-tab textarea {
    min-height: 135px;
    padding: 15px 45px 35px;
    line-height: 1.65;
    resize: vertical;
}

.contact-tab input::placeholder,
.contact-tab textarea::placeholder {
    color: #99a5b7;
}

.contact-tab input:hover,
.contact-tab textarea:hover {
    border-color: #b9c9e1;
}

.contact-tab input:focus,
.contact-tab textarea:focus {
    border-color: var(--contact-tab-blue);
    background: #ffffff;
    box-shadow:
        0 0 0 4px rgba(8, 104, 239, 0.1),
        0 8px 18px rgba(8, 104, 239, 0.05);
}

.contact-tab__input-wrap:focus-within
.contact-tab__input-icon {
    color: var(--contact-tab-blue);
}

.contact-tab__character-count {
    position: absolute;
    right: 13px;
    bottom: 11px;
    color: #9aa5b6;
    font-size: 9px;
    font-weight: 600;
}

/* Submit button */

.contact-tab__submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 55px;
    padding: 13px 22px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    color: var(--contact-tab-white);
    background: linear-gradient(
        110deg,
        var(--contact-tab-blue-dark) 0%,
        var(--contact-tab-blue) 52%,
        #159ee9 100%
    );
    box-shadow:
        0 16px 30px rgba(8, 104, 239, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-tab__submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 75%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.contact-tab__submit:hover {
    box-shadow:
        0 20px 36px rgba(8, 104, 239, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.contact-tab__submit:hover::before {
    left: 140%;
}

.contact-tab__submit:active {
    transform: translateY(0);
}

.contact-tab__submit > * {
    position: relative;
    z-index: 1;
}

.contact-tab__submit-icon,
.contact-tab__submit-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-tab__submit-icon svg,
.contact-tab__submit-arrow {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-tab__submit-arrow {
    transition: transform 0.25s ease;
}

.contact-tab__submit:hover .contact-tab__submit-arrow {
    transform: translateX(4px);
}

/* Secure line */

.contact-tab__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
    color: #77849a;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.contact-tab__secure svg {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--contact-tab-success);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media screen and (max-width: 991px) {
    .contact-tab__layout {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-tab__info {
        order: 2;
    }

    .contact-tab__form-card {
        order: 1;
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media screen and (max-width: 767px) {
    .contact-tab {
        padding-right: 14px;
        padding-left: 14px;
    }

    .contact-tab::before {
        height: 280px;
        clip-path: polygon(
            0 0,
            100% 0,
            100% 88%,
            66% 100%,
            0 91%
        );
    }

    .contact-tab__header {
        padding: 35px 12px 45px;
    }

    .contact-tab__title {
        font-size: 34px;
    }

    .contact-tab__subtitle {
        font-size: 12px;
    }

    .contact-tab__layout {
        margin-top: -20px;
    }

    .contact-tab__info {
        padding: 34px 27px;
        border-radius: 20px;
    }

    .contact-tab__form-card {
        border-radius: 20px;
    }

    .contact-tab__support-list {
        grid-template-columns: 1fr;
    }

    .contact-tab__form-heading {
        padding: 27px 24px 22px;
    }

    .contact-tab__form {
        padding: 25px 24px 28px;
    }

    .contact-tab__shape--two {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .contact-tab {
        padding-right: 10px;
        padding-left: 10px;
    }

    .contact-tab__header {
        padding-top: 29px;
    }

    .contact-tab__badge {
        padding: 6px 12px;
        font-size: 8px;
    }

    .contact-tab__title {
        font-size: 30px;
    }

    .contact-tab__info {
        padding: 29px 18px;
    }

    .contact-tab__info h2 {
        font-size: 24px;
    }

    .contact-tab__email {
        align-items: flex-start;
        padding: 14px;
    }

    .contact-tab__email-arrow {
        margin-top: 12px;
    }

    .contact-tab__form-heading {
        align-items: flex-start;
        padding: 25px 18px 20px;
    }

    .contact-tab__form-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .contact-tab__form-heading h2 {
        font-size: 19px;
    }

    .contact-tab__form {
        padding: 23px 18px 25px;
    }

    .contact-tab input {
        height: 50px;
    }

    .contact-tab textarea {
        min-height: 125px;
    }
}
/*======================================   end contact us  Tab ======================================*/





/*======================================   leaderboard-tab ======================================*/
.leaderboard-tab {
    width: 100%;
    padding: 58px 20px;
    text-align: center;
    background: linear-gradient(
        90deg,
        #12a9d8 0%,
        #1685c8 50%,
        #1f5cae 100%
    );
}

.leaderboard-tab__title {
    margin: 0;
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .leaderboard-tab {
        padding: 42px 15px;
    }

    .leaderboard-tab__title {
        font-size: 25px;
    }
}

/*======================================   leaderboard-tab ======================================*/


/* =========================================
   LEADERBOARD TAB
========================================= */

.leaderboard-tab,
.leaderboard-tab * {
    box-sizing: border-box;
}

.leaderboard-tab {
    --leaderboard-tab-navy: #061a3d;
    --leaderboard-tab-dark-blue: #073a80;
    --leaderboard-tab-blue: #0868ef;
    --leaderboard-tab-blue-dark: #0052d4;
    --leaderboard-tab-cyan: #12b4e4;
    --leaderboard-tab-heading: #071636;
    --leaderboard-tab-text: #43516a;
    --leaderboard-tab-muted: #7d899e;
    --leaderboard-tab-border: #dce5f1;
    --leaderboard-tab-light: #f4f8fd;
    --leaderboard-tab-white: #ffffff;

    width: 100%;
    padding: 48px 20px 65px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(8, 104, 239, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 100%
        );
    font-family: "Poppins", Arial, sans-serif;
}

.leaderboard-tab__container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

/* =========================================
   INTRO
========================================= */

.leaderboard-tab__intro {
    margin-bottom: 34px;
}

.leaderboard-tab__heading {
    margin: 0 0 22px;
    color: var(--leaderboard-tab-blue-dark);
    font-size: clamp(18px, 2.3vw, 25px);
    font-weight: 800;
    line-height: 1.55;
}

.leaderboard-tab__notice {
    padding: 17px 20px;
    border: 1px solid #cbdcf4;
    border-left: 5px solid var(--leaderboard-tab-blue);
    border-radius: 11px;
    color: var(--leaderboard-tab-heading);
    background: linear-gradient(
        90deg,
        rgba(8, 104, 239, 0.07),
        rgba(18, 180, 228, 0.025)
    );
    font-size: 15px;
    line-height: 1.7;
}

.leaderboard-tab__notice strong {
    color: var(--leaderboard-tab-blue-dark);
}

/* =========================================
   CARD
========================================= */

.leaderboard-tab__circle-card {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid var(--leaderboard-tab-border);
    border-radius: 20px;
    background: var(--leaderboard-tab-white);
    box-shadow:
        0 25px 55px rgba(6, 26, 61, 0.11),
        0 8px 20px rgba(6, 26, 61, 0.05);
}

.leaderboard-tab__circle-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    right: 35px;
    height: 4px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--leaderboard-tab-blue-dark),
        var(--leaderboard-tab-blue),
        var(--leaderboard-tab-cyan)
    );
}

/* Card header */

.leaderboard-tab__circle-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 31px 30px 24px;
    border-bottom: 1px solid #e8eef6;
    background:
        linear-gradient(
            135deg,
            rgba(8, 104, 239, 0.045),
            rgba(18, 180, 228, 0.015)
        );
}

.leaderboard-tab__label {
    display: block;
    margin-bottom: 4px;
    color: var(--leaderboard-tab-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.leaderboard-tab__circle-title {
    margin: 0;
    color: var(--leaderboard-tab-heading);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.leaderboard-tab__team-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 50px;
    color: var(--leaderboard-tab-white);
    background: linear-gradient(
        110deg,
        var(--leaderboard-tab-blue-dark),
        var(--leaderboard-tab-blue),
        var(--leaderboard-tab-cyan)
    );
    box-shadow: 0 8px 18px rgba(8, 104, 239, 0.2);
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

/* =========================================
   RESPONSIVE TABLE
========================================= */

.leaderboard-tab__table-scroll {
    width: 100%;
    padding: 20px 24px 25px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--leaderboard-tab-blue) #e8eef6;
}

.leaderboard-tab__table-scroll::-webkit-scrollbar {
    height: 8px;
}

.leaderboard-tab__table-scroll::-webkit-scrollbar-track {
    border-radius: 50px;
    background: #e8eef6;
}

.leaderboard-tab__table-scroll::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        var(--leaderboard-tab-blue),
        var(--leaderboard-tab-cyan)
    );
}

.leaderboard-tab__table {
    width: 100%;
    min-width: 1050px;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--leaderboard-tab-text);
    table-layout: auto;
}

.leaderboard-tab__table th,
.leaderboard-tab__table td {
    padding: 16px 14px;
    border-right: 1px solid var(--leaderboard-tab-border);
    border-bottom: 1px solid var(--leaderboard-tab-border);
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.leaderboard-tab__table th:first-child,
.leaderboard-tab__table td:first-child {
    border-left: 1px solid var(--leaderboard-tab-border);
}

.leaderboard-tab__table thead th {
    border-top: 1px solid var(--leaderboard-tab-border);
    color: var(--leaderboard-tab-heading);
    background: linear-gradient(
        180deg,
        #f3f7fc,
        #eaf2fb
    );
    font-size: 11px;
    font-weight: 800;
    text-transform: capitalize;
}

.leaderboard-tab__table thead th:first-child {
    border-radius: 11px 0 0 0;
}

.leaderboard-tab__table thead th:last-child {
    border-radius: 0 11px 0 0;
}

.leaderboard-tab__table tbody td {
    color: #263651;
    background: #ffffff;
    font-size: 10px;
    font-weight: 500;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.leaderboard-tab__table tbody tr:nth-child(even) td {
    background: #f9fbfe;
}

.leaderboard-tab__table tbody tr:hover td {
    color: var(--leaderboard-tab-heading);
    background: #edf5ff;
}

.leaderboard-tab__table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 11px;
}

.leaderboard-tab__table tbody tr:last-child td:last-child {
    border-radius: 0 0 11px 0;
}

.leaderboard-tab__rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: var(--leaderboard-tab-blue-dark);
    background: #e8f2ff;
    font-size: 11px;
    font-weight: 800;
}

.leaderboard-tab__score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 32px;
    padding: 5px 10px;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(
        110deg,
        var(--leaderboard-tab-blue-dark),
        var(--leaderboard-tab-blue)
    );
    box-shadow: 0 6px 13px rgba(8, 104, 239, 0.18);
    font-size: 11px;
    font-weight: 800;
}

/* Scroll note */

.leaderboard-tab__scroll-note {
    display: none;
    padding: 13px 20px;
    border-top: 1px solid #e8eef6;
    color: var(--leaderboard-tab-muted);
    background: #f7faff;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 991px) {
    .leaderboard-tab {
        padding: 38px 15px 55px;
    }

    .leaderboard-tab__heading {
        font-size: 20px;
    }

    .leaderboard-tab__circle-title {
        font-size: 26px;
    }

    .leaderboard-tab__table-scroll {
        padding-right: 18px;
        padding-left: 18px;
    }

    .leaderboard-tab__scroll-note {
        display: block;
    }
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 600px) {
    .leaderboard-tab {
        padding: 30px 10px 45px;
    }

    .leaderboard-tab__heading {
        font-size: 17px;
        line-height: 1.55;
    }

    .leaderboard-tab__notice {
        padding: 14px 15px;
        font-size: 13px;
    }

    .leaderboard-tab__circle-card {
        border-radius: 16px;
    }

    .leaderboard-tab__circle-head {
        align-items: flex-start;
        flex-direction: column;
        padding: 27px 18px 20px;
    }

    .leaderboard-tab__circle-title {
        font-size: 24px;
    }

    .leaderboard-tab__team-count {
        padding: 8px 12px;
        font-size: 10px;
    }

    .leaderboard-tab__table-scroll {
        padding: 15px 12px 20px;
    }

    .leaderboard-tab__table {
        min-width: 1020px;
    }

    .leaderboard-tab__table th,
    .leaderboard-tab__table td {
        padding: 13px 11px;
    }
}


/*====================================== Tablet ======================================*/

@media screen and (max-width: 991px) {
    .about-quiz-panel {
        padding: 42px 24px;
    }

    .about-quiz-panel-content {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 38px;
    }

    .about-quiz-panel-heading {
        font-size: 25px;
    }

    .about-quiz-panel-bottom-label {
        left: 0;
    }
}

/* Mobile */

@media screen and (max-width: 767px) {
    .about-quiz-panel {
        padding: 38px 16px;
    }

    .about-quiz-panel-top {
        margin-bottom: 32px;
    }

    .about-quiz-panel-title {
        font-size: 24px;
    }

    .about-quiz-panel-content {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-quiz-panel-left {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-quiz-panel-right {
        max-width: 100%;
    }

    .about-quiz-panel-heading {
        font-size: 25px;
        line-height: 1.25;
    }

    .about-quiz-panel-description {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* Small mobile */

@media screen and (max-width: 480px) {
    .about-quiz-panel {
        padding: 34px 14px;
    }

    .about-quiz-panel-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-quiz-panel-title {
        font-size: 22px;
    }

    .about-quiz-panel-heading {
        font-size: 22px;
    }

    .about-quiz-panel-bottom-label {
        left: 0;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-quiz-panel-counter {
        left: 0;
        min-width: 38px;
        min-height: 36px;
    }
}





.quiz-2025-panel{
    width:100%;
    padding:70px 20px;
    background:#fff;
    overflow:hidden;
    font-family:Poppins,sans-serif;
}

.quiz-2025-panel-container{
    max-width:1180px;
    margin:auto;
}

.quiz-2025-panel-heading{
    margin-bottom:55px;
}

.quiz-2025-panel-heading h2{

    margin: 0;
    color: #202020;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-align: center;
}

.quiz-2025-panel-content{

    display:grid;
    grid-template-columns:430px 1fr;

    gap:90px;

    align-items:center;

}

.quiz-2025-panel-left img{

    width:100%;
    display:block;

}

.quiz-2025-panel-right img{

    width:100%;
    display:block;

}

/************ Tablet ************/

@media(max-width:991px){

.quiz-2025-panel{

padding:60px 20px;

}

.quiz-2025-panel-heading h2{

font-size:38px;

}

.quiz-2025-panel-content{

grid-template-columns:1fr;

gap:50px;

}

.quiz-2025-panel-left{

max-width:420px;

margin:auto;

}

.quiz-2025-panel-right{

max-width:650px;

margin:auto;

}

}

/************ Mobile ************/

@media(max-width:767px){

.quiz-2025-panel{

padding:45px 15px;

}

.quiz-2025-panel-heading{

text-align:center;

margin-bottom:35px;

}

.quiz-2025-panel-heading h2{

font-size:28px;

line-height:1.35;

}

.quiz-2025-panel-content{

gap:35px;

}

.quiz-2025-panel-left{

max-width:320px;

}

.quiz-2025-panel-right{

max-width:100%;

}

}

.quiz-hit-counter{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99999;

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 16px;

    background:#101a32;
    border-radius:12px;

    color:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    font-family:Poppins,sans-serif;

    animation:counterFloat .5s ease;
}

.quiz-hit-counter-label{

    font-size:13px;
    font-weight:500;

}

.quiz-hit-counter-number{

    min-width:65px;

    text-align:center;

    background:#3048ff;

    color:#fff;

    padding:8px 12px;

    border-radius:8px;

    font-size:18px;

    font-weight:700;

    letter-spacing:1px;

}

@keyframes counterFloat{

from{

opacity:0;
transform:translateY(20px);

}

to{

opacity:1;
transform:translateY(0);

}

}

@media(max-width:767px){

.quiz-hit-counter{

right:12px;
bottom:12px;

padding:10px 14px;

}

.quiz-hit-counter-label{

font-size:12px;

}

.quiz-hit-counter-number{

font-size:16px;
min-width:55px;

}

}


/*==========================
RESULT PAGE
==========================*/

.result-wrapper{
    position:relative;
}

.result-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    margin-top:40px;
}

/*==========================
SUCCESS
==========================*/

.result-success{

    background:linear-gradient(135deg,#0b63ce,#2f80ed);

    border-radius:22px;

    color:#fff;

    padding:35px;

    display:flex;

    align-items:center;

    gap:30px;

    margin-bottom:35px;

    position:relative;

    overflow:hidden;

}

.result-success:before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    right:-120px;

    top:-120px;

    background:rgba(255,255,255,.08);

}

.result-success:after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    right:40px;

    bottom:-90px;

    background:rgba(255,255,255,.05);

}

.success-icon{

    width:90px;

    height:90px;

    background:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:40px;

    color:#0b63ce;

    flex-shrink:0;

}

.success-badge{

    display:inline-block;

    padding:7px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.18);

    font-size:12px;

    letter-spacing:1px;

    margin-bottom:12px;

}

.success-content h2{

    font-size:34px;

    font-weight:700;

    margin-bottom:12px;

    color:#fff;

}

.success-content p{

    margin:0;

    color:#eef5ff;

    line-height:1.8;

}


/*==========================
LEFT COLUMN
==========================*/

.team-card{

    background:#fff;

    border-radius:20px;

    padding:28px;

    box-shadow:0 12px 35px rgba(30,41,59,.08);

    margin-bottom:25px;

    border:1px solid #edf2f7;

    transition:.35s;

}

.team-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.team-title{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:700;

    color:#0b63ce;

    font-size:18px;

    margin-bottom:22px;

}

.team-title i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#edf5ff;

    display:flex;

    align-items:center;

    justify-content:center;

}

.team-body{

    display:flex;

    align-items:flex-start;

    gap:25px;

}

.team-avatar img{

    width:90px;

    height:90px;

    border-radius:50%;

    border:4px solid #edf5ff;

}

.team-info{

    flex:1;

}

.team-info h3{

    font-size:26px;

    margin-bottom:18px;

    color:#1d3557;

}

.info-row{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:14px;

    color:#5d6b82;

    font-size:15px;

}

.info-row i{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#f5f8fc;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#0b63ce;

}

/*==========================
RIGHT COLUMN
==========================*/

.score-card{

    background:linear-gradient(135deg,#0b63ce,#3b82f6);

    color:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.score-card:before{

    content:"🏆";

    position:absolute;

    font-size:170px;

    opacity:.07;

    right:-15px;

    bottom:-35px;

}

.score-header{

    margin-bottom:25px;

}

.score-header span{

    display:block;

    letter-spacing:2px;

    font-size:13px;

}

.score-icon{

    font-size:40px;

    margin-bottom:15px;

}

.score-circle{

    width:170px;

    height:170px;

    border-radius:50%;

    margin:20px auto;

    background:#fff;

    color:#0b63ce;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:62px;

    font-weight:700;

    box-shadow:0 12px 35px rgba(0,0,0,.18);

}

.score-text{

    font-size:18px;

    margin-bottom:20px;

}

.result-status{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    background:rgba(255,255,255,.15);

    border-radius:50px;

    margin-bottom:25px;

}

.certificate-btn{

    display:block;

    width:100%;

    padding:16px;

    border-radius:12px;

    background:#fff;

    color:#0b63ce;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.certificate-btn:hover{

    background:#f4f8ff;

    transform:translateY(-2px);

}

/*==========================
NEXT CARD
==========================*/

.next-card{

    background:#fff;

    margin-top:25px;

    border-radius:20px;

    padding:25px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.next-card h4{

    color:#0b63ce;

    margin-bottom:15px;

}

.next-card p{

    color:#5d6b82;

    line-height:1.8;

    margin:0;

}

/*==========================
BOTTOM NOTE
==========================*/

.result-note{

    margin-top:35px;

    background:#eef6ff;

    border-left:5px solid #0b63ce;

    border-radius:16px;

    padding:20px 25px;

    color:#516072;

    display:flex;

    gap:15px;

    align-items:center;

}

.result-note i{

    color:#0b63ce;

    font-size:22px;

}

/*=====================================================
RESPONSIVE
======================================================*/

@media (max-width:1200px){

.result-grid{

grid-template-columns:1fr;

}

.result-column{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

align-items:start;

}

.score-card,
.next-card{

margin:0;

}

}

@media (max-width:991px){

.result-success{

padding:30px;

flex-direction:column;

text-align:center;

}

.success-content h2{

font-size:28px;

}

.team-body{

flex-direction:column;

align-items:center;

text-align:center;

}

.team-info{

width:100%;

}

.info-row{

justify-content:center;

}

.result-column{

grid-template-columns:1fr;

}

.score-circle{

width:150px;

height:150px;

font-size:54px;

}

}

@media (max-width:768px){

.result-success{

padding:25px 20px;

}

.success-icon{

width:70px;

height:70px;

font-size:28px;

}

.success-content h2{

font-size:24px;

}

.team-card{

padding:22px;

}

.team-info h3{

font-size:22px;

}

.score-card{

padding:25px;

}

.score-circle{

width:135px;

height:135px;

font-size:48px;

}

.result-note{

flex-direction:column;

text-align:center;

}

}

@media (max-width:576px){

.team-avatar img{

width:75px;

height:75px;

}

.info-row{

font-size:14px;

}

.certificate-btn{

padding:14px;

font-size:15px;

}

}



.question-timer{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#dc3545;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    font-weight:bold;
    margin:auto;
    box-shadow:0 0 15px rgba(0,0,0,.25);
}

.question-list{
    animation:fadeQuestion .35s ease;
}

@keyframes fadeQuestion{
    from{
        opacity:0;
        transform:translateX(20px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

.funkyradio-info.active{
    background:#ffeeba;
    border-radius:6px;
}


.quiz-page{

background:#f5f7fc;

padding:70px 0;

}

.quiz-wrapper{

max-width:1400px;

margin:auto;

}

.quiz-header{

background:linear-gradient(135deg,#0d6efd,#1d4ed8);

border-radius:25px;

padding:45px;

display:flex;

justify-content:space-between;

align-items:center;

color:#fff;

margin-bottom:35px;

box-shadow:0 20px 60px rgba(13,110,253,.20);

}

.quiz-header-left{

max-width:700px;

}

.quiz-badge{

display:inline-block;

padding:8px 20px;

background:rgba(255,255,255,.18);

border-radius:50px;

font-size:13px;

letter-spacing:1px;

margin-bottom:20px;

}

.quiz-header h1{

font-size:42px;

font-weight:700;

margin-bottom:15px;

color:#fff;

}

.quiz-header p{

font-size:17px;

line-height:1.8;

margin:0;

opacity:.95;

}

.quiz-icon{

width:130px;

height:130px;

border-radius:50%;

background:rgba(255,255,255,.15);

display:flex;

align-items:center;

justify-content:center;

font-size:58px;

}

.quiz-progress-card{

background:#fff;

padding:28px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

margin-bottom:35px;

}

.progress-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:18px;

}

.progress-header h4{

margin:0;

font-weight:700;

}

.progress-percent{

font-size:30px;

font-weight:700;

color:#0d6efd;

}

.quiz-progress-track{

height:12px;

background:#edf2f7;

border-radius:50px;

overflow:hidden;

}

.quiz-progress-fill{

height:100%;

background:linear-gradient(90deg,#0d6efd,#38bdf8);

width:0;

transition:.4s;

border-radius:50px;

}

.quiz-grid{

    display:block;

}

/*==========================
QUESTION CARD
==========================*/

.question-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.question-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.question-label{

    background:#eef5ff;

    color:#0d6efd;

    padding:8px 18px;

    border-radius:50px;

    font-weight:600;

}

.question-point{

    background:#f8fafc;

    color:#64748b;

    padding:8px 16px;

    border-radius:50px;

    font-size:14px;

}

.question-title{

    font-size:30px;

    line-height:1.6;

    font-weight:700;

    color:#1e293b;

    margin-bottom:35px;

}

/*==========================
OPTIONS
==========================*/

.question-options{

display:grid;

grid-template-columns:repeat(2,minmax(0,1fr));

gap:20px;

margin-top:30px;

}

.answer-card{

min-height:90px;

}

.answer-card{

    display:flex;

    align-items:center;

    border:2px solid #e5e7eb;

    border-radius:18px;

    padding:22px;

    cursor:pointer;

    transition:.3s;

    background:#fff;

}

.answer-card:hover{

    border-color:#0d6efd;

    box-shadow:0 12px 25px rgba(13,110,253,.08);

    transform:translateY(-2px);

}

.answer-card input{

    display:none;

}

.answer-letter{

    width:56px;

    height:56px;

    border-radius:50%;

    background:#eef5ff;

    color:#0d6efd;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    font-weight:700;

    margin-right:22px;

    transition:.3s;

}

.answer-body{

    flex:1;

}

.answer-text{

    font-size:18px;

    line-height:1.6;

    color:#334155;

    font-weight:500;

}

.answer-check{

    font-size:26px;

    color:#d1d5db;

    transition:.3s;

}

.answer-card.active{

    border-color:#0d6efd;

    background:#f4f8ff;

}

.answer-card.active .answer-letter{

    background:#0d6efd;

    color:#fff;

}

.answer-card.active .answer-check{

    color:#16a34a;

}

/*==========================
SIDEBAR
==========================*/

.quiz-sidebar{

display:flex;

flex-direction:column;

gap:24px;

}

.sidebar-card{

background:#fff;

border-radius:22px;

padding:28px;

box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.sidebar-title{

font-size:20px;

font-weight:700;

margin-bottom:24px;

color:#1e293b;

}

/*==========================
TIMER
==========================*/

.timer-wrapper{

    position:relative;

    width:220px;

    height:220px;

    margin:auto;

}

.timer-svg{

    width:220px;

    height:220px;

    transform:rotate(-90deg);

}

.timer-bg{

    fill:none;

    stroke:#edf2f7;

    stroke-width:10;

}

.timer-progress{

    fill:none;

    stroke:#0d6efd;

    stroke-width:10;

    stroke-linecap:round;

    stroke-dasharray:327;

    stroke-dashoffset:0;

    transition:stroke-dashoffset 1s linear;

}

.timer-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

}

.timer-content span{

    display:block;

    font-size:58px;

    font-weight:700;

    color:#0d6efd;

}

.timer-content small{

    display:block;

    margin-top:6px;

    font-size:14px;

    color:#64748b;

}

/*==========================
STATUS
==========================*/

.status-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.status-row{

    display:flex;

    justify-content:space-between;

    padding-bottom:14px;

    border-bottom:1px solid #edf2f7;

}

.status-row:last-child{

    border-bottom:none;

    padding-bottom:0;

}

.status-row span{

    color:#64748b;

}

.status-row strong{

    color:#1e293b;

}

/*==========================
INSTRUCTIONS
==========================*/

.quiz-instructions{

    margin:0;

    padding-left:20px;

}

.quiz-instructions li{

    margin-bottom:14px;

    line-height:1.8;

    color:#475569;

}

/*=====================================
FOOTER
======================================*/

.quiz-footer{

margin-top:35px;

display:flex;

justify-content:center;

margin-top:35px;

}

.quiz-next-btn{

background:linear-gradient(135deg,#0d6efd,#2563eb);

border:none;

color:#fff;

padding:18px 42px;

border-radius:15px;

font-size:17px;

font-weight:600;

display:flex;

align-items:center;

gap:14px;

cursor:pointer;

transition:.35s;

box-shadow:0 15px 35px rgba(13,110,253,.20);

}

.quiz-next-btn:hover{

transform:translateY(-4px);

box-shadow:0 25px 50px rgba(13,110,253,.30);

}

.quiz-next-btn i{

transition:.35s;

}

.quiz-next-btn:hover i{

transform:translateX(8px);

}

.quiz-next-btn.loading{

opacity:.7;

pointer-events:none;

}

.quiz-submitted{

display:flex;

justify-content:center;

align-items:center;

min-height:600px;

}

.submit-box{

background:#fff;

padding:70px;

border-radius:28px;

text-align:center;

box-shadow:0 20px 60px rgba(15,23,42,.10);

max-width:520px;

width:100%;

}

.submit-box h2{

margin-top:25px;

font-size:34px;

font-weight:700;

color:#1e293b;

}

.submit-box p{

margin-top:15px;

line-height:1.8;

color:#64748b;

}

.loader-ring{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

border:8px solid #e5e7eb;

border-top-color:#0d6efd;

animation:loaderSpin 1s linear infinite;

}

.question-right{
    display:flex;
    align-items:center;
}

.timer-pill{

    display:flex;
    align-items:center;
    gap:14px;

    background:linear-gradient(135deg,#ef4444,#dc2626);

    color:#fff;

    padding:10px 18px;

    border-radius:60px;

    min-width:165px;

    box-shadow:0 10px 25px rgba(220,38,38,.25);

    transition:.3s;

}

.timer-icon{

    width:46px;
    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    flex-shrink:0;

}

.timer-text{

    display:flex;
    flex-direction:column;

}

.timer-text span{

    font-size:30px;
    line-height:1;
    font-weight:700;

}

.timer-text small{

    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    opacity:.9;

}

.timer-warning{

    animation:pulseTimer .8s infinite;

}

@keyframes pulseTimer{

0%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

100%{

transform:scale(1);

}

}

@keyframes loaderSpin{

100%{

transform:rotate(360deg);

}

}

.quiz-header,
.quiz-progress-card,
.question-card,
.sidebar-card{

animation:fadeUp .5s ease;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(25px);

}

100%{

opacity:1;

transform:translateY(0);

}

}


@media(max-width:1200px){

.quiz-grid{

grid-template-columns:1fr;

}

.quiz-sidebar{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.timer-wrapper{

width:180px;

height:180px;

}

.timer-svg{

width:180px;

height:180px;

}

}

@media(max-width:991px){

.quiz-header{

flex-direction:column;

text-align:center;

gap:30px;

}

.quiz-header h1{

font-size:32px;

}

.quiz-sidebar{

grid-template-columns:1fr;

}

.quiz-footer{

justify-content:center;

}

.quiz-next-btn{

width:100%;

justify-content:center;

}

}

@media(max-width:768px){

.quiz-page{

padding:40px 0;

}

.quiz-header{

padding:30px;

}

.quiz-progress-card{

padding:22px;

}
.question-top
{
    flex-direction: column;
    gap: 20px;
}
.question-options{

grid-template-columns:1fr;

}
.question-card{

padding:25px;

}

.question-title{

font-size:24px;

}

.answer-card{

padding:18px;

}

.answer-letter{

width:46px;

height:46px;

font-size:18px;

margin-right:16px;

}

.answer-text{

font-size:16px;

}

.timer-wrapper{

transform:scale(.82);

margin:auto;

}

.submit-box{

padding:40px 25px;

}

}

@media(max-width:480px){

.quiz-header h1{

font-size:26px;

}

.progress-percent{

font-size:24px;

}

.question-title{

font-size:21px;

}

.quiz-next-btn{

padding:16px;

font-size:16px;

}

}

.answer-card{
    cursor:pointer;
    transition:all .25s ease;
}

.answer-card.active{
    border:2px solid #482C82;
    background:#eef6ff;
    box-shadow:0 8px 20px rgba(13,110,253,.15);
}

.answer-card.active .answer-letter{
    background:#482C82;
    color:#fff;
}

.marquee-container {
    overflow: hidden; /* Hides text outside the box */
    white-space: nowrap; /* Prevents text from wrapping */
    box-sizing: border-box;
    position: relative;
    z-index: 5;
    width: min(1180px, calc(100% - 48px));
    min-height: 50px;
    margin: -62px auto 42px;
    padding: 34px;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(224, 232, 246, 0.9);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    display:block;
}

marquee {
    color: #07122b;
    font-size: clamp(21px, 2.5vw, 28px);
    font-weight: 600;
}