:root {
  --bg-1: #fbf8ff;
  --bg-2: #ffffff;
  --lav-100: #f2ecfb;
  --lav-200: #e7dcf7;
  --ink: #15131c;
  --ink-dim: #5c5668;
  --ink-faint: #8b8598;
  --violet: #7c3aed;
  --violet-2: #a855f7;
  --pink: #ec4899;
  --card-dark: #15131c;
  --card-dark-2: #231f2e;
  --gold: #c98a12;
  --gold-light: #e0a934;
  --silver: #8b8698;
  --bronze: #b06a34;
  --line: #e7e1f2;
  --cream: #fbf7ef;
  --navy: #17233d;
  --ink-soft: #5b6478;
  --coral: #ff6f5e;
  --teal: #0fa88b;
  --amber: #f2a626;
  --violet: #8b5cf6;
  --track: #e9e2d2;
  --navy:#0B1F3A;
    --navy-deep:#081527;
    --gold:#C9973A;
    --gold-soft:#E8C77E;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-2);
  color: var(--ink);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.nav-links a{
  text-decoration: none;
}
section {
  padding: 100px 0;
}
.section-tag {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.3rem);
  color: var(--navy-deep);
  margin-bottom: 18px;
}
.section-lead {
  font-family: var(--script);
  font-size: 1.3rem;
  color: #5b6373;
  max-width: 620px;
  font-style: italic;
}
/* ================= Sliding Navbar ================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.2rem 0;
  /*background: rgba(255, 255, 255, 0.75);*/
  background:transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}
.site-nav.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(21, 19, 28, 0.06);
  padding: 0.7rem 0;
}
.site-nav.is-hidden {
  transform: translateY(-110%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-left img{
    width:180px;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark .dot-mark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  display: inline-block;
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-item {
  position: relative;
}

.nav-link-custom {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-dim);
  padding: 0.6rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 8px;
  transition:
    color 0.25s ease,
    background 0.25s ease;
  background: none;
  border: none;
}
.nav-link-custom:hover,
.nav-link-custom:focus {
  color: var(--ink);
  background: var(--lav-100);
}
.nav-link-custom .chev {
  width: 9px;
  height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -3px;
}
.nav-item.open .nav-link-custom .chev {
  transform: rotate(225deg);
  margin-top: 3px;
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(21, 19, 28, 0.12);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 50;
}
.nav-item.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 9px;
  font-size: 0.88rem;
  color: var(--ink-dim);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.submenu a:hover {
  background: var(--lav-100);
  color: var(--violet);
}

.btn-register {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  border: none;
  padding: 0.62rem 1.5rem;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.38);
  color: #fff;
}

.btn-outline-ink {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--line);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.btn-outline-ink:hover {
  border-color: var(--violet);
  background: var(--lav-100);
  color: var(--violet);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.6px;
  background: var(--ink);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 20.5px;
}
.hamburger span:nth-child(3) {
  top: 26px;
}
.hamburger.active span:nth-child(1) {
  top: 20.5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 20.5px;
  transform: rotate(-45deg);
}

/* Off-canvas mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 19, 28, 0.35);
  backdrop-filter: blur(2px);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}
.drawer-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 340px);
  background: #fff;
  z-index: 1100;
  padding: 1.6rem 1.4rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.drawer.show {
  transform: translateX(0);
}
.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.drawer-close:hover {
  background: var(--lav-100);
  border-color: var(--violet-2);
  transform: rotate(90deg);
}
.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.6px;
  background: var(--ink);
}
.drawer-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer .drawer-item {
  border-bottom: 1px solid var(--line);
}
.drawer-item a{
    text-decoration:none;
}
.drawer .drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.2rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
}
.drawer .drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.drawer .drawer-sub.open {
  max-height: 200px;
}
.drawer .drawer-sub a {
  display: block;
  padding: 0.55rem 0.4rem 0.55rem 0.9rem;
  color: var(--ink-dim);
  font-size: 0.9rem;
}
.drawer .chev-sm {
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--ink-faint);
  border-bottom: 1.6px solid var(--ink-faint);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.drawer-item.open .chev-sm {
  transform: rotate(225deg);
}

/* ================= Hero (light theme) ================= */
.hero-wrap {
  height: calc(100vh - 60px);
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 780px 520px at 88% -8%,
      rgba(124, 58, 237, 0.16),
      transparent 60%
    ),
    radial-gradient(
      ellipse 620px 480px at -8% 30%,
      rgba(236, 72, 153, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 60%);
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/parliament_building_1785941544954.jpg")
    center right/contain no-repeat;
  opacity: 0.12; /* Adjust image opacity */
  z-index: 0;
}

.hero-wrap > * {
  position: relative;
  z-index: 1;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
  animation: drift 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-22px) translateX(12px);
  }
}

/* Parliament building line-art watermark */
.parliament-bg {
  position: absolute;
  top: 6%;
  right: -6%;
  width: min(64vw, 900px);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .parliament-bg {
    width: 110vw;
    right: -20%;
    top: 2%;
  }
}

/* ===== Hero visual: illustration + floating cards ===== */
.hero-visual {
  position: relative;
  padding: 1.2rem 1.2rem 2.6rem;
}
.visual-photo-frame {
  position: relative;
  border-radius: 58% 42% 35% 65% / 48% 33% 67% 52%;
  /* background:linear-gradient(160deg, var(--card-dark-2), var(--card-dark)); */
  padding: 1.8rem;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(21, 19, 28, 0.02);
  overflow: hidden;
}
.visual-photo-frame::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.35),
    transparent 70%
  );
  pointer-events: none;
}
.visual-photo-frame::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.22),
    transparent 70%
  );
  pointer-events: none;
}
.visual-photo-frame svg {
  position: relative;
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(21, 19, 28, 0.16);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: bob 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-card .fc-text {
  line-height: 1.2;
}
.float-card .fc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.float-card .fc-sub {
  font-size: 0.68rem;
  color: var(--ink-faint);
}

.fc-rating {
  top: 16%;
  left: -4%;
  animation-delay: 0s;
}
.fc-rating .fc-icon {
  background: linear-gradient(135deg, #f0c94a, #c98a12);
}

.fc-aspirants {
  bottom: 40%;
  left: -8%;
  animation-delay: 1.2s;
}
.fc-aspirants .fc-icon {
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
}

.fc-rank {
  top: 38%;
  right: -9%;
  animation-delay: 2.1s;
}
.fc-rank .fc-icon {
  background: linear-gradient(135deg, #34c39a, #1f6f5c);
}

@media (max-width: 575.98px) {
  .float-card {
    padding: 0.5rem 0.7rem;
  }
  .float-card .fc-title {
    font-size: 0.74rem;
  }
  .float-card .fc-sub {
    font-size: 0.6rem;
  }
  .fc-rating {
    left: 0;
    top: 2%;
  }
  .fc-aspirants {
    left: 0;
    bottom: 4%;
  }
  .fc-rank {
    right: 0;
    top: 42%;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--lav-100);
  border: 1px solid var(--lav-200);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 2.5rem);
  line-height: 1.08;
  color: var(--ink);
  margin: 1.1rem 0 0;
}
.hero-heading .accent {
  background: linear-gradient(135deg, #2a4a82, #0a1930);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink-dim);
  border-left: 2px solid var(--violet);
  padding-left: 0.9rem;
  margin: 1.4rem 0 1.2rem;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 34rem;
  margin-bottom: 1.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.1rem;
}
.cta-row a{
  text-decoration: none;
}
.countdown {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.countdown .unit {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  min-width: 62px;
  box-shadow: 0 6px 18px rgba(21, 19, 28, 0.05);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.countdown .unit:hover {
  border-color: var(--violet-2);
  transform: translateY(-3px);
}
.countdown .num {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--violet);
  display: block;
}
.countdown .lbl {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.countdown-caption {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 0.6rem;
}

.stat-row {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
}
.stat-num .plus {
  color: var(--violet);
}
.stat-lbl {
  font-size: 0.76rem;
  color: var(--ink-faint);
}

/* ================= Centered Prize Band (signature element) ================= */
.prize-band-section {
  position: relative;
  z-index: 6;
bottom: 50px;
  /* padding-bottom: 3.5rem; */
}
.prize-band {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(100deg, var(--card-dark), var(--card-dark-2));
  border-radius: 999px;
  padding: 0.9rem;
  box-shadow: 0 30px 65px rgba(21, 19, 28, 0.32);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.prize-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 4.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    left: -60%;
  }
  55% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.band-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.6rem 1.7rem;
  min-width: 190px;
}
.band-title .k {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.band-title .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  color: #fff;
  line-height: 1.15;
  margin-top: 0.15rem;
}

.band-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0.8rem 0;
}

.medal-chip {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  cursor: default;
}
.medal-chip:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.medal-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.2);
}
.medal-chip:hover .medal-icon-circle {
  transform: scale(1.15) rotate(-6deg);
}
.medal-chip.gold .medal-icon-circle {
  background: radial-gradient(
    circle at 30% 30%,
    var(--gold-light),
    var(--gold)
  );
}
.medal-chip.silver .medal-icon-circle {
  background: radial-gradient(circle at 30% 30%, #d8d5df, var(--silver));
}
.medal-chip.bronze .medal-icon-circle {
  background: radial-gradient(circle at 30% 30%, #d99a5c, var(--bronze));
}

.medal-text {
  line-height: 1.25;
}
.medal-rank {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.medal-amount {
  /* font-family: var(--font-mono); */
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
}

@media (max-width: 991.98px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .visual-photo-frame {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .prize-band {
    flex-direction: column;
    border-radius: 24px;
    padding: 1rem;
  }
  .band-divider {
    width: auto;
    height: 1px;
    margin: 0.3rem 0.6rem;
  }
  .band-title {
    padding: 0.3rem 0.6rem 0.8rem;
    min-width: 0;
  }
  .medal-chip {
    padding: 0.6rem 0.6rem;
  }
  .medal-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
  .medal-amount {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

*
  ----------------------------------------------------------------------------------------
  *
  START
  ACCRODING
  DESIGN
  *
  ----------------------------------------------------------------------------------------
  */
  .atf-faq-accordion
  .card
  .card-header {
  padding: 0;
  border: none;
  text-align: left;
}
.atf-faq-accordion .card {
  border: none;
  display: block;
  text-align: left;
  margin-bottom: 15px;
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
  -ms-flex-direction: unset;
  flex-direction: unset;
  border-radius: 0 !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.atf-faq-accordion .card .card-body ul li:last-child {
  margin-bottom: 0;
}

.atf-faq-accordion .card:last-child {
  margin-bottom: 0;
}

.atf-faq-accordion .panel {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 10px;
  position: relative;
}
.atf-faq-accordion .panel-heading {
  padding: 0;
  border: none;
  border-radius: 0;
  z-index: 1;
  position: relative;
}
.atf-faq-accordion .panel-heading:before,
.atf-faq-accordion .panel-heading:after {
  content: "";
  width: 50%;
  height: 20%;
  box-shadow: 0 15px 5px rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 15px;
  left: 10px;
  transform: rotate(-3deg);
  z-index: -1;
}
.atf-faq-accordion .panel-heading:after {
  left: auto;
  right: 10px;
  transform: rotate(3deg);
}
.atf-faq-accordion .panel-title button {
  display: block;
  padding: 15px 70px 15px 70px;
  margin: 0;
  background: var(--atf-thm-white);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--atf-thm-color);
  border-radius: 0;
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(0, 0, 0, 0.1) inset;
  position: relative;
  width: 100%;
  text-align: left;
}
.atf-faq-accordion .panel-title button:before,
.atf-faq-accordion .panel-title button.collapsed:before {
  content: "\f106";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  width: 55px;
  height: 100%;
  text-align: center;
  line-height: 50px;
  border-left: 1px solid var(--atf-thm-color);
  position: absolute;
  top: 0;
  right: 0;
}
.atf-faq-accordion .panel-title button.collapsed:before {
  content: "\f107";
}
.atf-faq-accordion .panel-title button .icon {
  display: inline-block;
  width: 55px;
  height: 100%;
  border-right: 1px solid var(--atf-thm-color);
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.atf-faq-accordion .panel-body {
  border-bottom: 3px solid var(--atf-thm-white);
  border-top: none;
  background: var(--atf-thm-white);
  font-size: 15px;
  color: var(--atf-thm-black);
  line-height: 27px;
}
/*
* ----------------------------------------------------------------------------------------
* END ACCRODING  DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 07. END PROGRAM  DESIGN
* ----------------------------------------------------------------------------------------
*/
/**************************************
 * 08. START GALLERY DESIGN
 *************************************/
#portfolio {
  position: relative;
  overflow: hidden;
}
.atf-portfolio-area .portfolio-filter {
  margin-bottom: 40px;
}
.atf-portfolio-area .portfolio-filter button {
  font-size: 16px;
  margin: 0 15px 20px 0;
  overflow: hidden;
  text-transform: capitalize;
  display: inline-block;
  padding: 8px 15px;
  transition: 0.4s;
  outline: none;
  -webkit-transition: 0.4s;
  -ms-transition: 0.4s;
  border-radius: 4px;
  font-weight: 600;
  background: var(--atf-grey-1);
  border: 1px solid #ddd;
}
.atf-portfolio-area .portfolio-filter button:hover,
.atf-portfolio-area .portfolio-filter button.active {
  color: var(--atf-thm-white);
  background: var(--atf-thm-color);
}
.display-table {
  display: table;
  height: 100%;
  width: 100%;
}
.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.atf-portfolio-area .atf-single-portfolio {
  position: relative;
  overflow: hidden;
  margin: 10px;
}
.atf-portfolio-area .atf-single-portfolio .atf-portfolio-content {
  position: absolute;
  width: 100%;
  bottom: 30%;
  left: 0;
  text-align: center;
  z-index: 10;
  padding: 25px;
  opacity: 0;
  -webkit-transition: 0.5s all ease-out;
  transition: 0.5s all ease-out;
  height: 100%;
}
.atf-portfolio-area .atf-single-portfolio .atf-portfolio-content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(101, 20, 168, 0.9);
  z-index: -1;
  -webkit-transition: 0.25s opacity ease;
  transition: 0.25s opacity ease;
  opacity: 0.8;
  border-radius: 4px 5px;
}
.atf-portfolio-area .atf-single-portfolio .atf-portfolio-img img {
  width: 100%;
  border-radius: 4px 5px;
}
.atf-portfolio-area .atf-single-portfolio .p-zoom {
  display: inline-block;
  font-size: 14px;
  color: var(--atf-thm-white);
  transition: all 0.3s ease 0s;
  height: 46px;
  line-height: 44px;
  width: 46px;
  border: 1px solid var(--atf-thm-white);
  border-radius: 50%;
  text-align: center;
  margin-right: 5px;
}
.atf-portfolio-area .atf-single-portfolio .p-zoom:hover {
  background: var(--atf-thm-white);
  color: var(--atf-thm-black);
}
.atf-portfolio-area .atf-single-portfolio .p-title {
  line-height: normal;
  margin-top: 25px;
  color: var(--atf-thm-white);
  margin-bottom: 0;
  font-size: 24px;
}
.atf-portfolio-area .atf-single-portfolio .p-title a {
  color: var(--atf-thm-white);
}
.atf-portfolio-area .atf-single-portfolio .p-title a:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.atf-portfolio-area .atf-single-portfolio:hover .atf-portfolio-content {
  opacity: 1;
  bottom: 0;
}
/**************************************
 * 08. END GALLERY DESIGN
 *************************************/
/*
* ----------------------------------------------------------------------------------------
* 09. START CLASS  DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-class-slide {
  border: 10px solid var(--atf-thm-color);
}
.atf-class-slide .atf-class-img {
  overflow: hidden;
}
.atf-class-slide .atf-class-img img {
  width: 100%;
  height: auto;
  opacity: 0.8;
  transform: scale(1, 1);
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
}
.atf-class-slide:hover .atf-class-img img {
  transform: scale(1.2, 1.2);
  opacity: 1;
}
.atf-class-slide .atf-class-content {
  padding: 20px 20px 20px 30px;
  position: relative;
  background: var(--atf-thm-white);
}
.atf-class-slide .atf-class-date {
  min-width: 28px;
  min-height: 28px;
  line-height: 28px;
  text-align: center;
  background: var(--atf-thm-color);
  position: absolute;
  top: -30px;
  left: 30px;
}
.atf-class-slide .month {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--atf-thm-color);
  padding: 0 10px;
  background: var(--atf-thm-white);
  text-transform: uppercase;
}
.atf-class-slide .date {
  color: var(--atf-thm-white);
  font-size: 14px;
}
.atf-class-slide .atf-class-title {
  margin: 25px 0 10px;
}
.atf-class-slide .atf-class-title a {
  color: var(--atf-thm-black);
  font-size: 24px;
  text-transform: capitalize;
  transition: all 0.5s ease 0s;
}
.atf-class-slide .atf-class-title a:hover {
  color: var(--atf-thm-color);
  text-decoration: none;
}
.atf-class-slide .atf-class-description {
  font-size: 15px;
  line-height: 30px;
}
.atf-class-slide .atf-class-bar {
  padding: 10px 0;
  list-style: none;
  text-align: center;
  background: var(--atf-thm-color);
}
.atf-class-slide .atf-class-bar li {
  display: inline-block;
  margin: 2px 7px 0 0;
  color: var(--atf-thm-black);
  text-align: left;
  background: var(--atf-thm-base);
  padding: 10px 20px;
  border-radius: 5px;
}
.atf-class-slide .atf-class-bar li a {
  text-transform: capitalize;
  font-size: 14px;
  color: var(--atf-thm-color);
  transition: 0.2s ease;
  font-weight: 600;
}
.atf-class-slide .atf-class-bar li a:hover {
  text-decoration: none;
  color: var(--atf-thm-white);
}
.atf-class-slide .atf-class-bar li i {
  color: var(--atf-thm-white);
  margin-right: 5px;
}
/*
* ----------------------------------------------------------------------------------------
* 09. END CLASS  DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 10.START TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-testimonial {
  background-color: var(--atf-grey-1);
  border-radius: 5px;
  padding: 30px;
  margin: 0 15px;
}
.atf-testimonial .atf-testimonial-pic {
  width: 90px;
  height: 90px;
  margin: 0 30px 15px 0;
  float: left;
}
.atf-testimonial .atf-testimonial-pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.atf-testimonial .atf-testimonial-title {
  color: var(--atf-thm-black);
  margin-top: 5px;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 24px;
}
.atf-testimonial .atf-testimonial-title small {
  color: var(--atf-thm-color);
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}
.atf-testimonial .atf-testimonial-review p {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 990px) {
  .testimonial-parallax h2 {
    margin-bottom: 40px;
  }
  .testimonial {
    margin: 0;
  }
}
/*
* ----------------------------------------------------------------------------------------
* 10.END TESTIMONIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* --------------------------------------
* 11. START COUNTER DESIGN
* --------------------------------------
*/
.atf-counter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.atf-counter-value {
  padding: 0px 0px 5px;
  font-size: 25px;
  font-weight: 700;
  color: var(--atf-thm-color);
}
.atf-counter-content h4 {
  font-weight: 400;
  color: var(--atf-thm-black);
}
.atf-counter-content h3 {
  font-size: 24px;
}
.atf-counter-icon i {
  font-size: 25px;
  color: var(--atf-thm-white);
  background: var(--atf-thm-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
/*
* ----------------------------------------------------------------------------------------
* 11. END COUNTER DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 12.START TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-single-team {
  text-align: center;
  border: 1px solid var(--atf-border-1);
  position: relative;
}
.atf-single-team .atf-team-pic {
  position: relative;
  margin-bottom: 20px;
}
.atf-single-team .atf-team-pic img {
  width: 100%;
  height: auto;
}
.atf-single-team .atf-team-title {
  font-weight: 400;
  margin-bottom: 5px;
}
.atf-single-team .atf-team-title a {
  color: var(--atf-thm-black);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  font-size: 24px;
}
.atf-single-team .atf-team-title a:hover {
  color: var(--atf-thm-color) !important;
  text-decoration: none;
}
.atf-single-team .atf-team-post {
  margin-bottom: 15px;
  display: block;
  font-size: 15px;
}
.atf-single-team .atf-team_social {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
.atf-single-team .atf-team_social > li {
  display: inline-block;
}
.atf-single-team .atf-team_social > li > a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: block;
  color: var(--atf-thm-black);
  background: var(--atf-grey-4);
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  font-size: 16px;
  margin-right: 5px;
}
.atf-single-team .atf-team_social > li > a:hover {
  background: var(--atf-thm-color);
  color: var(--atf-thm-white);
}
@media screen and (max-width: 991px) {
  .atf-single-team {
    margin-bottom: 24px;
  }
}
/*
* ----------------------------------------------------------------------------------------
* 12. END TEAM DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 13. START SPECIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-special-offer .atf-home-overlay {
  background: rgba(9, 33, 159, 0.46);
  height: 100%;
  width: 100%;
}
.atf-special-content.atf-section-title h4 {
  background: var(--atf-thm-base);
  display: inline-block;
  padding: 10px 15px;
  border-radius: 7px;
  opacity: 0.9;
  border: 2px solid var(--atf-thm-white);
}
/* #countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
#countdown div {
    margin-top: 20px;
    background: var(--atf-thm-color);
    padding: 15px 30px;
    border-radius: 7px;
    text-align: center;
    font-size: 13px;
    position: relative;
    color: var(--atf-thm-white);
    font-weight: 400;
}
#countdown div strong {
    font-size: 30px;
    color: var(--atf-thm-white);
    letter-spacing: 2px;
} */
.atf-single-special-img img {
  width: auto;
}
/*
* ----------------------------------------------------------------------------------------
* 13. END SPECIAL DESIGN
* ----------------------------------------------------------------------------------------
*/
/*
* ----------------------------------------------------------------------------------------
* 14.START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.atf-post-slide {
  border: 1px solid #eee;
  padding: 22px;
  position: relative;
}
.atf-post-slide:before {
  content: "";
  border-top: 1px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out 0s;
}
.atf-post-slide:hover:before {
  border-top: 1px solid #3398db;
}
.atf-post-slide:hover {
  border-top: 1px solid #3398db;
}
.atf-post-slide .atf-post-img > img {
  width: 100%;
  height: auto;
}
.atf-post-slide .atf-post-title > a {
  font-size: 24px;
  text-transform: capitalize;
  color: var(--thme-black);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.atf-post-slide .atf-post-title > a:hover {
  text-decoration: none;
  color: var(--atf-thm-color) !important;
}
.atf-post-slide .atf-post-bar {
  padding: 0;
  list-style: none;
  overflow: hidden;
  margin: 10px 0;
}
.atf-post-slide .atf-post-bar > li {
  display: inline-block;
  padding: 0 10px;
  float: left;
}
.atf-post-slide .atf-post-bar > li:first-child {
  padding: 0 10px 0 0;
}
.atf-post-slide .atf-post-bar > li:last-child {
  border: 0px none;
}
.atf-post-slide .atf-post-date,
.atf-post-slide .atf-author,
.atf-post-slide .atf-comment {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
}
.atf-post-slide .author > a,
.atf-post-slide .comment > a,
.atf-post-slide .comment > i {
  color: var(--atf-thm-color);
  transition: all 0.3s ease-in-out 0s;
}
.atf-post-slide .atf-author > a:hover,
.atf-post-slide .atf-comment > a:hover {
  text-decoration: none;
  color: var(--thme-color);
}
.atf-post-slide .atf-post-date > i,
.atf-post-slide .atf-author > i,
.atf-post-slide .atf-comment > i {
  margin-right: 8px;
  font-size: 15px;
  color: var(--atf-thm-color);
}
.atf-post-slide .atf-post-description {
  line-height: 1.8;
  margin-bottom: 20px;
}

@media only screen and (max-width: 360px) {
  .atf-post-bar > li:last-child {
    margin-top: 8px;
    padding: 0;
  }
}
/*--------------------------------------------------------------
START BLOG DETAILS DESIGN
----------------------------------------------------------------*/
/* START BREADCRUMB DESIGN */
:root {
  --atf-ff-body: "Open Sans", sans-serif;
  --atf-ff-heading: "Bubblegum Sans", sans-serif;
  --atf-ff-fontawesome: "Font Awesome 7 Free";
  --atf-thm-white: #ffffff;
  --atf-thm-black: #5a1e90;
  --atf-thm-color: #ff4b2b;
  --atf-thm-base: #feda00;
  --atf-grey-1: #f9f9f9;
  --atf-grey-2: #f5f5f5;
  --atf-grey-3: #f6f6f6;
  --atf-grey-4: #f7f7f7;
  --atf-grey-5: #f4f4f4;
  --atf-grey-6: #171a2b;
  --atf-text-body: #858585;
  --atf-border-1: #dddddd;
  --thm-line: linear-gradient(to bottom, #ff416c, #ff4b2b);
}
.atf-page-heading {
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 50px;
  background-size: cover;
  background-attachment: fixed;
}
.atf-page-heading.atf-size-md {
  height: 450px;
}
.atf-page-heading:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.atf-page-heading > div {
  position: relative;
  z-index: 1;
}

.atf-page-heading-title {
  color: var(--atf-thm-white);
  font-size: 45px;
  text-align: center;
  margin-bottom: 7px;
}

.atf-breadcamp {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.atf-breadcamp li {
  color: rgba(255, 255, 255, 0.7);
  list-style: none;
}
.atf-breadcamp li:not(:last-child):after {
  content: "/";
  padding-right: 6px;
  margin-left: 6px;
}
.atf-breadcamp a:hover {
  color: var(--atf-thm-white);
}
/* END BREADCRUMB DESIGN */

.atf-blog-area .atf-post-slide {
  margin: 12px 0;
}
.atf-post.atf-style1 .atf-post-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0px;
  margin-bottom: 0px;
}
.atf-post.atf-style1 {
  display: flex;
}
.atf-post.atf-style1 .atf-post-thumb {
  flex: none;
  margin-right: 10px;
  width: 70px;
}
.atf-post.atf-style1 .atf-post-title a:hover {
  color: var(--atf-thm-color);
}
/* START SIDERBAR DESIGN */
.sidebar-search-input {
  position: relative;
}
.sidebar-search-input input:focus {
  border: 1px solid var(--atf-thm-color);
}
.sidebar-search-input input {
  border: 0;
  height: 58px;
  border: 1px solid transparent;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: var(--atf-thm-white);
}
.sidebar-search-input button {
  position: absolute;
  right: 0;
  width: 58px;
  height: 58px;
  font-size: 16px;
  line-height: 58px;
  text-align: center;
  color: var(--atf-thm-white);
  background: var(--atf-thm-color);
  border-radius: 0 15px 15px 0;
}
.sidebar-search-input button {
  font-size: 16px;
  line-height: 58px;
  text-align: center;
  color: var(--atf-thm-white);
}
.atf-sidebar-widget .atf-post-thumb {
  width: 80px;
}
.atf-sidebar-widget .atf-post-thumb img {
  border-radius: 10px;
}
.atf-sidebar-widget .atf-post-widget-list > li:not(:last-child) {
  border-bottom: 1px solid var(--atf-border-1);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.atf-sidebar-widget .atf-post-info .atf-post-date {
  font-size: 13px;
}
.atf-widget {
  border: 1px solid var(--atf-border-1);
  border-radius: 8px;
  padding: 30px;
  background: var(--atf-grey-2);
  margin: 20px 0;
}
.atf-widget .atf-widget-title {
  font-size: 22px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
  margin-top: -3px;
}
.atf-widget .atf-widget-title::before {
  content: "";
  background-color: var(--atf-thm-color);
  position: absolute;
  left: 26px;
  bottom: 0px;
  height: 2px;
  width: 40px;
}
.atf-widget .atf-widget-title::after {
  content: "";
  background-color: var(--atf-thm-color);
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 4px;
  width: 15px;
}
.atf-widget-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.atf-widget-list li {
  border: 1px solid var(--atf-border-1);
  background: var(--atf-thm-white);
  padding: 12px 30px;
  position: relative;
  margin: 10px 0;
}
.atf-widget-list li::before {
  content: "\f105";
  position: absolute;
  left: 15px;
  top: 12px;
  font-family: var(--atf-ff-fontawesome);
  font-weight: 900;
  color: var(--atf-thm-color);
  font-size: 13px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.atf-widget-list li span {
  font-weight: 600;
  float: right;
}
.atf-widget-list li {
  display: block;
  font-weight: 600;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
}
.atf-widget-list li::before:hover {
  color: var(--atf-thm-white);
}
.atf-widget-list li:hover {
  color: var(--atf-thm-black);
  background: var(--atf-grey-2);
}
.atf-showcase {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.atf-showcase img {
  width: 100%;
  border-radius: 10px;
}
.atf-tagcloud .atf-tag {
  display: inline-block;
  font-size: 14px;
  padding: 2px 10px;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  margin-right: 6px;
  margin-bottom: 10px;
}
.atf-tagcloud .atf-tag:hover {
  color: var(--atf-thm-white);
  background-color: var(--atf-thm-color);
  border-color: var(--atf-thm-color);
}

/* END SIDERBAR DESIGN */

.atf-post-details.atf-style1 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
}
.atf-post-details.atf-style1 .atf-post-thumb {
  margin-bottom: 25px;
}
.atf-post-details.atf-style1 .atf-post-thumb img {
  width: 100%;
}
.atf-post-details.atf-style1 .atf-post-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.atf-post-details.atf-style1 blockquote {
  background-color: var(--atf-grey-1);
  /* margin: 0; */
  padding: 30px 40px 27px;
  font-size: 18px;
  /* line-height: 1.3; */
  border-left: 5px solid var(--atf-thm-color);
  border-radius: 4px;
  font-weight: 500;
  /* margin: 20px 0; */
  /* color: white; */
  text-align: center;
  /* text-transform: lowercase; */
}
.atf-post-details.atf-style1 blockquote small {
  display: block;
  line-height: inherit;
  margin-top: 4px;
  color: #b5b5b5;
  font-size: inherit;
  font-size: 16px;
}
.atf-post-details.atf-style1 blockquote small span {
  color: var(--atf-thm-black);
}
.atf-post-details.atf-style1 .atf-post-label {
  margin-bottom: 15px;
}
.atf-post-details.atf-style1 .atf-post-text p {
  margin-bottom: 15px;
}
.atf-post-details.atf-style1 .atf-post-meta {
  display: flex;
  justify-content: space-between;
  padding: 23px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
.atf-post-details.atf-style1 h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.atf-post-details.atf-style1 p {
  margin-bottom: 15px;
}
.atf-post-details.atf-style1 img {
  margin-bottom: 20px;
  border-radius: 4px;
  margin-top: 5px;
}
.atf-post-details.atf-style1 .embed-responsive {
  margin-top: 20px;
  margin-bottom: 20px;
}
.atf-post-details.atf-style1 .embed-responsive iframe {
  width: 100%;
  height: 459px;
}
.atf-post-label > span {
  display: inline-block;
  position: relative;
}
.atf-post-label > span:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
}
.atf-post-label > span:not(:last-child)::before {
  content: "";
  position: absolute;
  height: 14px;
  width: 1px;
  background-color: #b5b5b5;
  right: 0;
  top: 8px;
}
.atf-post-label a:hover {
  color: var(--atf-thm-color);
}

.atf-post-tage-list {
  display: flex;
  flex-wrap: wrap;
}
.atf-post-tage-list li {
  margin-right: 5px;
  color: var(--atf-thm-black);
  font-weight: 600;
}
.atf-post-tage-list li:not(:last-child):after {
  content: ",";
}
.atf-post-tage-list li a:hover {
  color: var(--atf-thm-color);
}

.atf-post-tages,
.atf-post-share {
  display: flex;
  align-items: center;
}
.atf-post-tages .atf-post-tage-title,
.atf-post-tages .atf-post-share-title,
.atf-post-share .atf-post-tage-title,
.atf-post-share .atf-post-share-title {
  margin: 0;
  margin-right: 10px;
  line-height: 1.4em;
  font-size: 24px;
}

.atf-post-share-btn-list {
  display: flex;
  flex-wrap: wrap;
}
.atf-post-share-btn-list a:not(:last-child) {
  margin-right: 12px;
  color: var(--atf-thm-black);
}
.atf-post-share-btn-list a:hover {
  color: var(--atf-thm-color);
}

.atf-post-btn-gropu {
  display: flex;
  justify-content: space-between;
}
.atf-post-btn-gropu .atf-btn {
  min-width: 170px;
  justify-content: center;
}

.atf-page-heading-in .atf-post-label {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: center;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
}
.atf-page-heading-in .atf-post-label > span:not(:last-child):before {
  background-color: var(--atf-thm-white);
}
.atf-page-heading-in .atf-post-label > span:not(:last-child) {
  color: rgba(255, 255, 255, 0.75);
}
.atf-page-heading-in .atf-post-label a:hover {
  color: var(--atf-thm-base);
}

.atf-page-heading-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 300;
  margin-top: 7px;
}

@media screen and (max-width: 991px) {
  .atf-page-heading-title {
    font-size: 38px;
  }

  .atf-page-heading-subtitle {
    font-size: 15px;
  }

  .atf-page-heading.atf-size-md {
    height: 350px;
    padding-top: 80px;
  }

  .atf-page-heading-title br {
    display: none;
  }

  .atf-page-heading {
    height: 500px;
    padding-top: 80px;
  }
}

.features-section {
  background: #070b1e;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff2d55;
  text-transform: uppercase;
  position: relative;
}

.section-tag::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 2px;
  background: #ff2d55;
  top: 50%;
  margin-left: 12px;
}

.feature-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  color: #f6f7f8;
}

.feature-title span {
  color: #6a11cb;
}

.feature-text {
  color: #e5e6e7;
  line-height: 2;
  font-size: 15px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffb703, #ff9500);
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(255, 170, 0, 0.3);
}

.theme-btn:hover {
  transform: translateY(-6px);
  color: #fff;
}

.feature-image {
  position: relative;
  display: inline-block;
}

.feature-image img {
  border-radius: 130px;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.shape-circle {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #fff7e4, #cddc39);
  border-radius: 50%;
  position: absolute;
  left: -45px;
  bottom: -35px;
  z-index: 1;
  opacity: 0.15;
}

.shape-dots {
  position: absolute;
  right: -20px;
  top: -25px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#6a11cb 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 1;
  animation: floatDots 6s infinite ease-in-out;
}

@keyframes floatDots {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}
/* about section */
.feature-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 28px;
  color: white;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 20px;
  margin-bottom: 25px;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateX(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb703, #ff9900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.icon-box::before {
  content: "";
  position: absolute;
  left: -7px;
  bottom: -7px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px dashed #ffb703;
  animation: rotate 8s linear infinite;
}

.icon-box i {
  line-height: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.8;
  color: #6c757d;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .feature-title {
    font-size: 2.3rem;
  }

  .feature-image {
    margin: 40px 0;
  }

  .feature-card {
    padding: 22px;
  }
}

@media (max-width: 576px) {
  .feature-title {
    font-size: 2rem;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box i {
    font-size: 26px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }
}
.features-section {
  position: relative;
  padding: 120px;

  overflow: hidden;
}

.section-cut {
  position: absolute;
  left: 0;
  transform: rotate(-180deg);
  top: -2px;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.about-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.deadline-stamp {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px dashed var(--gold);
  border-radius: 10px;
  padding: 20px 22px;
  position: relative;
}
.deadline-stamp .seal {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-family: var(--serif);
  transform: rotate(-8deg);
  position: relative;
}
.deadline-stamp .seal::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dotted var(--navy-deep);
  border-radius: 50%;
}
.deadline-stamp .seal .d {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}
.deadline-stamp .seal .m {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.deadline-stamp .info span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.deadline-stamp .info strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy-deep);
  display: block;
}

.participate-card {
  background: #65666a61;
  color: var(--cream);
  border-radius: 10px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
/* .participate-card::after {
  content: "\\1F393";
  position: absolute;
  right: -18px;
  bottom: -24px;
  font-size: 6.5rem;
  opacity: 0.08;
} */
.participate-card span.tag {
  color: var(--gold-soft);
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.participate-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.participate-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.participate-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--silver);
  margin-bottom: 10px;
  line-height: 1.5;
}
/* .participate-card li::before {
  content: "\\2726";
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 1px;
} */
.participate-card li strong {
  color: var(--cream);
}


/* selection Process- section */
.process-section {
  position: relative;
  /* padding: 0.5rem; */
  overflow: hidden;
  background: var(--cream);
}

/* ---------- decorative floating dots ---------- */
.deco-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ---------- header text ---------- */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
}

.process-heading {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.08;
  margin: 0.9rem 0 1.1rem;
}

.process-lede {
  max-width: 520px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.cta-link i {
  transition: transform 0.3s ease;
}
.cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.cta-link:hover {
  color: var(--coral);
}
.cta-link:hover::after {
  transform: scaleX(1);
}
.cta-link:hover i {
  transform: translateX(6px);
}

/* ---------- wave layout (desktop) ---------- */
.wave-wrap {
  position: relative;
  margin-top: 0.5rem;
  min-height: 520px;
}
.wave-svg {
  margin-top: -30px;
  margin-left: -50px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.wave-path {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.wave-wrap.in-view .wave-path {
  stroke-dashoffset: 0;
}

.steps-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}
.step-col {
  flex: 1 1 0;
  padding: 0 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.wave-wrap.in-view .step-col {
  opacity: 1;
  transform: translateY(0);
}
.step-col:nth-child(1) {
  transition-delay: 0.05s;
}
.step-col:nth-child(2) {
  transition-delay: 0.2s;
}
.step-col:nth-child(3) {
  transition-delay: 0.35s;
}
.step-col:nth-child(4) {
  transition-delay: 0.5s;
}

.marker-zone {
  height: 90px;
  position: relative;
}
.step-marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 10px 24px -8px rgba(23, 35, 61, 0.35);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  cursor: default;
}
.step-marker .step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}
.step-col:hover .step-marker {
  transform: translateY(-8px) scale(1.06) rotate(-4deg);
  box-shadow: 0 18px 30px -10px rgba(23, 35, 61, 0.45);
}

.marker-coral {
  background: linear-gradient(145deg, var(--coral), #ff8b7d);
}
.marker-teal {
  background: linear-gradient(145deg, var(--teal), #28c3a4);
}
.marker-amber {
  background: linear-gradient(145deg, var(--amber), #f7c15c);
}
.marker-violet {
  background: linear-gradient(145deg, var(--violet), #a688ff);
}

.step-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--navy);
  margin: 1.1rem 0 0.55rem;
}
.step-text {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* staggered heights for the "climb" -- desktop only */
@media (min-width: 992px) {
  .step-col:nth-child(1) {
    margin-top: 260px;
  }
  .step-col:nth-child(2) {
    margin-top: 170px;
  }
  .step-col:nth-child(3) {
    margin-top: 85px;
  }
  .step-col:nth-child(4) {
    margin-top: 0;
  }
}

/* ---------- mobile / tablet vertical timeline ---------- */
@media (max-width: 991.98px) {
  .wave-svg {
    display: none;
  }
  .steps-row {
    flex-direction: column;
  }
  .step-col {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0 0 2.5rem;
    position: relative;
  }
  .step-col::before {
    content: "";
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: var(--track);
  }
  .step-col:last-child::before {
    display: none;
  }
  .step-col:last-child {
    padding-bottom: 0;
  }
  .marker-zone {
    height: 80px;
    flex: 0 0 80px;
  }
  .step-marker {
    position: static;
  }
  .step-content {
    padding-top: 0.3rem;
  }
}

@media (min-width: 992px) {
  .step-content {
    margin-top: 0;
  }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .step-col,
  .wave-path,
  .deco-dot,
  .step-marker,
  .cta-link i,
  .cta-link::after {
    transition: none !important;
    animation: none !important;
  }
  .wave-wrap .step-col {
    opacity: 1;
    transform: none;
  }
  .wave-path {
    stroke-dashoffset: 0;
  }
}

/* Scso why */
:root {
  --navy-900: #0b2540;
  --navy-800: #070b1e;
  --navy-700: #1c4a80;
  --navy-600: #2e63a3;
  --blue-500: #3f7dd9;
  --blue-soft: rgba(63, 125, 217, 0.1);
  --blue-soft-strong: rgba(63, 125, 217, 0.18);
  --amber: #e8a33d;
  --amber-soft: rgba(232, 163, 61, 0.16);
  --paper: #f6f8fb;
  --paper-2: #ffffff;
  --ink: #0b2540;
  --slate: #5b7290;
  --line: #dbe4ef;
  --radius-lg: 22px;
  --radius-md: 14px;
}

.scso-section {
  position: relative;
  background:
    radial-gradient(1100px 560px at 6% 0%, var(--blue-soft), transparent 60%),
    radial-gradient(
      900px 520px at 100% 100%,
      var(--amber-soft),
      transparent 55%
    ),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--ink);
  overflow: hidden;
  padding: 6rem 0;
  /* font-family: "Inter", sans-serif; */
}

.scso-section .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  animation: scso-float 16s ease-in-out infinite;
}
.blob-a {
  width: 420px;
  height: 420px;
  background: var(--blue-500);
  top: -140px;
  left: -160px;
  opacity: 0.16;
}
.blob-b {
  width: 360px;
  height: 360px;
  background: var(--amber);
  bottom: -150px;
  right: -130px;
  opacity: 0.14;
  animation-delay: -6s;
}
.blob-c {
  width: 260px;
  height: 260px;
  background: var(--navy-700);
  top: 38%;
  right: 12%;
  opacity: 0.06;
  animation-delay: -3s;
}

@keyframes scso-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -25px) scale(1.08);
  }
}

.scso-section .container {
  position: relative;
  z-index: 1;
}

.scso-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-700);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--blue-soft-strong);
  border-radius: 999px;
  background: var(--blue-soft);
  margin-bottom: 1.1rem;
}
.scso-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* ---------- LEFT: event timeline ---------- */
.events-mock-wrap {
  position: relative;
  padding: 1rem 0 2.5rem 0;
  min-height: 480px;
}

.device-frame {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem 5.5rem 1.5rem;
  box-shadow: 0 30px 60px -24px rgba(11, 37, 64, 0.18);
  max-width: 420px;
  margin: 0 auto;
}
.device-frame .frame-handle {
  width: 52px;
  height: 5px;
  border-radius: 99px;
  background: var(--line);
  margin: 0 auto 0.4rem auto;
}
.device-frame .frame-title {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 1.2rem;
}

/* Timeline rail */
.timeline {
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}
.timeline .timeline-progress {
  position: absolute;
  left: 26px;
  top: 6px;
  width: 2px;
  height: 0%;
  background: linear-gradient(180deg, var(--blue-500), var(--navy-700));
  transition: height 1.4s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.timeline.in-view .timeline-progress {
  height: calc(100% - 12px);
}

.event-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.5rem 0.75rem 0;
  border-radius: 12px;
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    background 0.25s ease;
}
.timeline.in-view .event-row {
  opacity: 1;
  transform: translateX(0);
}
.event-row:hover {
  background: var(--blue-soft);
  transform: translateX(4px) !important;
}

.month-badge {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 2px solid var(--line);
  line-height: 1;
  z-index: 1;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.month-badge .m {
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  color: var(--navy-700);
  font-weight: 800;
}
.month-badge .y {
  font-size: 0.6rem;
  color: var(--slate);
  margin-top: 2px;
}

.event-row.is-next .month-badge {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 5px var(--blue-soft);
  animation: badge-pulse 2.2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px var(--blue-soft);
  }
  50% {
    box-shadow: 0 0 0 9px var(--blue-soft-strong);
  }
}

.event-row .ev-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.event-row .ev-sub {
  font-size: 0.78rem;
  color: var(--slate);
}
.event-row .ev-sub .ev-time {
  color: var(--navy-600);
  font-weight: 600;
}
.event-row .ev-tag {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy-600);
  background: var(--blue-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Floating highlighted "next up" card */
.highlight-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  max-width: 360px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border: 1px solid var(--navy-700);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  color: #f2f6fb;
  box-shadow:
    0 22px 48px -12px rgba(11, 37, 64, 0.45),
    0 0 0 6px rgba(63, 125, 217, 0.08);
  animation: scso-glow 3.2s ease-in-out infinite;
}
@keyframes scso-glow {
  0%,
  100% {
    box-shadow:
      0 20px 45px -12px rgba(11, 37, 64, 0.4),
      0 0 0 6px rgba(63, 125, 217, 0.06);
  }
  50% {
    box-shadow:
      0 24px 55px -10px rgba(11, 37, 64, 0.55),
      0 0 0 10px rgba(63, 125, 217, 0.12);
  }
}
.highlight-card .hc-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.highlight-card .hc-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.highlight-card .hc-datetime {
  font-size: 0.8rem;
  color: #bcd2f0;
  margin-bottom: 0.8rem;
}
.highlight-card hr {
  border-color: rgba(255, 255, 255, 0.14);
  margin: 0.7rem 0;
}
.highlight-card .hc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.highlight-card .hc-label {
  font-size: 0.68rem;
  color: #9fb4cf;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.highlight-card .hc-value {
  font-weight: 700;
  font-size: 1.05rem;
}
.highlight-card .hc-value.month {
  color: #7fb0f2;
  font-family: "Fraunces", serif;
}
.highlight-card .hc-value.countdown {
  color: var(--amber);
}

/* ---------- RIGHT: why different ---------- */
.scso-heading {
  /* font-family: "Fraunces", serif; */
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--navy-900);
}
.scso-heading em {
  color: var(--blue-700);
  font-style: normal;
}

.scso-copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 1.1rem;
}
.scso-copy p strong {
  color: var(--navy-800);
  font-weight: 700;
}

.why-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem 0;
}
.why-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-800);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.why-chip:hover {
  transform: translateY(-3px);
  border-color: var(--blue-500);
  box-shadow: 0 10px 22px -10px rgba(63, 125, 217, 0.4);
}
.why-chip .chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.scso-cta {
  background: var(--navy-900);
  color: #ffffff;
  font-weight: 700;
  border: none;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 14px 30px -10px rgba(11, 37, 64, 0.45);
}
.scso-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(11, 37, 64, 0.55);
  background: var(--navy-700);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .highlight-card {
    position: static;
    margin-top: 1.2rem;
    max-width: 100%;
  }
  .device-frame {
    padding-bottom: 1.6rem;
    max-width: 100%;
  }
  .events-mock-wrap {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob,
  .highlight-card,
  .scso-eyebrow .dot,
  .month-badge {
    animation: none !important;
  }
  .event-row,
  .timeline .timeline-progress {
    transition: none !important;
  }
}

:root {
  --navy: #152c4e;
  --navy-soft: #2a4a72;
  --green: #2e8b57;
  --green-soft: #e7f4ec;
  --ink: #3c4657;
  --ink-light: #77828f;
  --line: #e4e8ef;
  --bg: #f6f8fb;
  --card: #ffffff;
  --danger: #d9534f;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
}
.downloads-section {
  padding: 5rem 0;
}

.sec-heading {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}
.sec-sub {
  text-align: center;
  color: var(--ink-light);
  margin-bottom: 3rem;
  font-size: 0.98rem;
}

.block-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px -18px rgba(21, 44, 78, 0.18);
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

/* ============ STEP HEADER ============ */
.step-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.step-header h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.step-header small {
  display: block;
  color: var(--ink-light);
  font-weight: 400;
  font-size: 0.78rem;
}

/* ============ QUESTION PAPERS BLOCK ============ */
.qp-block {
    background-color: #152c4e;
  padding: 2.25rem;
}
.qp-block h3{
    color:white;
}

.stage-option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.stage-option:last-child {
  margin-bottom: 0;
}
.stage-option i.stage-icon {
  font-size: 1.15rem;
  color: var(--navy-soft);
  width: 32px;
}
.stage-option .stage-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.94rem;
}
.stage-option .stage-desc {
  font-size: 0.76rem;
  color: var(--ink-light);
}
.stage-option .chev {
  margin-left: auto;
  transition: transform 0.25s ease;
  color: var(--ink-light);
}
.stage-option:hover {
  border-color: var(--navy-soft);
  transform: translateX(3px);
}
.stage-option.active {
  background: #2e8b57;
  border-color: white;
}
.stage-option.active .stage-name,
.stage-option.active .stage-desc {
  color: #fff;
}
.stage-option.active .stage-icon,
.stage-option.active .chev {
  color: #fff;
}
.stage-option.active .chev {
  transform: translateX(3px);
}

.year-list{
    border:1.5px solid var(--line);
    border-radius:12px;
    overflow:hidden;
  }
  .year-list .year-caption{
    font-size:.72rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-weight:700;
    color:var(--ink-light);
    padding:.7rem 1rem;
    background:#FAFBFD;
    border-bottom:1px solid var(--line);
  }
  .year-scroll{
    max-height:230px;
    overflow-y:auto;
  }
  .year-scroll::-webkit-scrollbar{ width:7px; }
  .year-scroll::-webkit-scrollbar-track{ background:#FAFBFD; }
  .year-scroll::-webkit-scrollbar-thumb{
    background:#C7CEDA;
    border-radius:10px;
  }
  .year-scroll::-webkit-scrollbar-thumb:hover{ background:var(--green); }
  .year-scroll{ scrollbar-width:thin; scrollbar-color:#C7CEDA #FAFBFD; }
  .year-item{
    display:block;
    width:100%;
    text-align:left;
    padding:.65rem 1rem;
    border:none;
    border-bottom:1px solid var(--line);
    background:#fff;
    font-weight:600;
    color:var(--ink);
    font-size:.92rem;
    cursor:pointer;
    transition:background .2s ease, color .2s ease, padding-left .2s ease;
  }
  .year-item:last-child{ border-bottom:none; }
  .year-item:hover{ background:var(--green-soft); padding-left:1.3rem; }
  .year-item.active{
    background:var(--green-soft);
    color:var(--green);
    font-weight:700;
    box-shadow:inset 3px 0 0 var(--green);
  }


.dl-panel {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem;
  /* min-height: 100%; */
}
.dl-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-light);
  font-size: 0.85rem;
  height: 100%;
  min-height: 220px;
  gap: 0.5rem;
}
.dl-empty i {
  font-size: 1.8rem;
  color: #c3cad3;
}

.dl-group-title {
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  margin: 0 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dl-group-title .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}
.dl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 0.55rem;
  background: #fff;
  opacity: 0;
  transform: translateY(8px);
  animation: dlIn 0.4s ease forwards;
}
.dl-row:last-child {
  margin-bottom: 0;
}
@keyframes dlIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dl-row .paper-name {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.dl-row .paper-name i {
  color: var(--danger);
  font-size: 1.05rem;
}
.dl-btn-group {
  display: flex;
  gap: 0.4rem;
  flex: 0 0 auto;
}
.dl-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 1rem;
}
.dl-btn:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.08);
}
.dl-btn.key-btn {
  background: #efeafb;
  color: #6e4fc2;
}
.dl-btn.key-btn:hover {
  background: #6e4fc2;
  color: #fff;
}
.dl-btn.disabled {
  background: #f1f2f4;
  color: #c3cad3;
  cursor: not-allowed;
  pointer-events: none;
}
.dl-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
}
.dl-legend span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.dl-legend i {
  font-size: 0.85rem;
}
.dl-legend .qp-dot {
  color: #6eb98f;
}
.dl-legend .key-dot {
  color: #cabcf1;
}

/* ============ ID LOOKUP BLOCKS (Hall Ticket / Results) ============ */
.lookup-block {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.lookup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex: 0 0 auto;
  color: var(--navy);
  background: var(--green-soft);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.block-card:hover .lookup-icon {
  transform: scale(1.08) rotate(-4deg);
}

.lookup-main {
  flex: 1 1 260px;
  min-width: 240px;
}
.new-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 5px;
  margin-bottom: 0.4rem;
}
.lookup-main h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 0.1rem;
}
.lookup-main p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-light);
}

.lookup-form {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.id-input-row {
  display: flex;
  gap: 0.6rem;
}
.id-input-row input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.id-input-row input:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(42, 74, 114, 0.12);
}
.lookup-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition:
    background 0.25s ease,
    transform 0.15s ease;
}
.lookup-btn:hover {
  background: var(--green);
}
.lookup-btn:active {
  transform: scale(0.97);
}
.lookup-btn:disabled {
  opacity: 0.7;
  cursor: progress;
}

.lookup-hint {
  font-size: 0.72rem;
  color: var(--ink-light);
}

.result-box {
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.84rem;
  display: none;
  align-items: center;
  gap: 0.6rem;
  animation: dlIn 0.35s ease forwards;
}
.result-box.show {
  display: flex;
}
.result-box.success {
  background: var(--green-soft);
  color: #1f6b41;
}
.result-box.error {
  background: #fdecec;
  color: #a33;
}
.result-box .result-dl {
  margin-left: auto;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.result-box .result-dl:hover {
  background: var(--green);
}

.spinner-sm {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 575.98px) {
  .lookup-block {
    padding: 1.5rem;
  }
  .id-input-row {
    flex-direction: column;
  }
  .lookup-btn {
    justify-content: center;
  }
}
:root{
    --navy-950:#061527;
    --navy-900:#0B2545;
    --navy-800:#123262;
    --navy-700:#173C77;
    --navy-500:#3E6BAE;
  
    --white:#FFFFFF;
    --off-white:#F4F6FA;
    --ink:#0B1220;
    --ink-soft:#5B6678;
    --radius:18px;
    --shadow-lg:0 30px 60px -20px rgba(6,21,39,.35);
    --shadow-sm:0 10px 30px -12px rgba(6,21,39,.18);
  }



  .ns-contact h1, .ns-contact h2, .ns-contact h3{
    /* font-family:'Fraunces', serif; */
    letter-spacing:-.01em;
    margin:0;
    
  }

  .ns-contact{
    padding-bottom:0px;
    overflow:hidden;
      background:
      radial-gradient(120% 140% at 50% -10%, rgba(23,60,119,.10), transparent 60%),
      var(--off-white);
  }

  /* ---------- Eyebrow ---------- */
  .ns-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:.78rem;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:var(--navy-700);
  }
  .ns-eyebrow::before{
    content:"";
    width:26px;
    height:2px;
    background:var(--gold);
    display:inline-block;
  }
  .ns-eyebrow--light{ color:rgba(255,255,255,.85); }
  .ns-eyebrow--light::before{ background:var(--gold); }

  /* ---------- Hero ---------- */
  .ns-hero{
    /* padding:6rem 0 3.5rem; */
  
  }
  .ns-heading{
    font-size:clamp(2.4rem, 4.6vw, 3.6rem);
    font-weight:600;
    color:var(--navy-950);
    margin:1rem 0 1.2rem;
    line-height:1.08;
  }
  .ns-lead{
    max-width:620px;
    margin:0 auto;
    color:var(--ink-soft);
    font-size:1.08rem;
    line-height:1.7;
  }

  /* ---------- Main grid ---------- */
  .ns-main{ padding-bottom:5rem; }

  .ns-info-stack{ display:flex; flex-direction:column; gap:1rem; height:100%; }

  .ns-info-card{
    background:var(--white);
    border:1px solid rgba(11,37,69,.08);
    border-radius:var(--radius);
    padding:1.5rem 1.5rem;
    display:flex;
    gap:1.1rem;
    align-items:flex-start;
    box-shadow:var(--shadow-sm);
    transition:transform .35s ease, box-shadow .35s ease;
  }
  .ns-info-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-lg);
  }
  .ns-info-icon{
    flex:0 0 auto;
    width:48px; height:48px;
    border-radius:12px;
    background:var(--navy-900);
    color:var(--white);
    display:flex; align-items:center; justify-content:center;
    font-size:1.15rem;
  }
  .ns-info-label{
    display:block;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--ink-soft);
    margin-bottom:.35rem;
  }
  .ns-info-value{
    display:block;
    /* font-family:'Fraunces', serif; */
    font-size:1rem;
    font-weight:500;
    color:var(--navy-950);
    text-decoration:none;
    word-break:break-word;
  }
  textarea {
    height:70px;
  }
  a.ns-info-value:hover{ color:var(--navy-700); text-decoration:underline; }
  .ns-address{ font-style:normal; line-height:1.55; }
  .ns-muted{ color:var(--ink-soft); font-size:.92rem; font-family:'Inter',sans-serif; }
  .ns-phone-row{ display:flex; align-items:baseline; gap:.6rem; flex-wrap:wrap; margin-bottom:.25rem; }
  .ns-phone-row:last-child{ margin-bottom:0; }
  .ns-phone-tag{ font-size:.78rem; color:var(--ink-soft); }

  /* ---------- Form ---------- */
  .ns-form-card{
    background:var(--navy-900);
    border-radius:24px;
    padding:2.6rem;
    color:var(--white);
    box-shadow:var(--shadow-lg);
    height:100%;
    position:relative;
    overflow:hidden;
  }
  .ns-form-card::after{
    content:"";
    position:absolute;
    top:-60px; right:-60px;
    width:220px; height:220px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(201,162,39,.20), transparent 70%);
  }
  .ns-form-eyebrow{
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:var(--gold);
  }
  .ns-form-heading{
    font-size:1.7rem;
    color:var(--white);
    margin:.6rem 0 1.7rem;
    font-weight:600;
    position:relative;
  }
  .ns-form .form-label{
    color:rgba(255,255,255,.85);
    font-size:.85rem;
    font-weight:600;
    margin-bottom:.4rem;
  }
  .ns-form .form-control{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.16);
    color:var(--white);
    border-radius:12px;
    /* padding:.75rem ; */
  }
  .ns-form .form-control::placeholder{ color:rgba(255,255,255,.4); }
  .ns-form .form-control:focus{
    background:rgba(255,255,255,.09);
    border-color:var(--gold);
    box-shadow:0 0 0 .2rem rgba(201,162,39,.18);
    color:var(--white);
  }
  .ns-form .invalid-feedback{ color:#FFB4A9; }

  .ns-btn-send{
    margin-top:1.8rem;
    border:none;
    background:var(--gold);
    color:var(--navy-950);
    font-weight:700;
    letter-spacing:.02em;
    padding:.85rem 2rem;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    transition:transform .25s ease, background .25s ease;
  }
  .ns-btn-send:hover{ background:#E0BB3E; transform:translateY(-2px); }
  .ns-btn-send i{ font-size:1rem; }

  .ns-form-note{
    margin:1rem 0 0;
    font-size:.85rem;
    color:rgba(255,255,255,.55);
  }
  .ns-form-success{
    display:none;
    margin-top:1.2rem;
    background:rgba(76,175,120,.15);
    border:1px solid rgba(76,175,120,.4);
    color:#B7F0CB;
    padding:.8rem 1rem;
    border-radius:12px;
    font-size:.92rem;
  }
  .ns-form-success.show{ display:block; }

  /* ---------- Values / Get in touch ---------- */
  .ns-values{
    background:var(--navy-950);
    padding:4.5rem 0 5rem;
    position:relative;
  }
  .ns-values .ns-eyebrow{ display:flex; justify-content:center; margin-bottom:2.8rem; }

  .ns-values-row{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:1.5rem;
  }
  .ns-values-row::before{
    content:"";
    position:absolute;
    top:26px;
    left:8%;
    right:8%;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(201,162,39,.55) 12%, rgba(201,162,39,.55) 88%, transparent);
  }
  .ns-value{
    position:relative;
    text-align:center;
    color:rgba(255,255,255,.85);
  }
  .ns-value-icon{
    width:54px; height:54px;
    margin:0 auto 1.1rem;
    border-radius:50%;
    background:var(--navy-800);
    border:1px solid rgba(201,162,39,.4);
    display:flex; align-items:center; justify-content:center;
    font-size:1.25rem;
    color:var(--gold);
    position:relative;
    z-index:1;
  }
  .ns-value-title{
    font-family:'Fraunces', serif;
    font-size:1.02rem;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--white);
    margin-bottom:.5rem;
  }
  .ns-value-text{
    font-size:.88rem;
    line-height:1.55;
    color:rgba(255,255,255,.6);
  }

  /* ---------- Bottom banner ---------- */
  .ns-banner{
    position:relative;
    padding:5.5rem 0;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background:var(--navy-900);
  }
  .ns-banner-image{
    position:absolute;
    inset:0;
    background-image:url('https://commons.wikimedia.org/wiki/Special:FilePath/Sansad_Bhavan-2.jpg');
    background-size:cover;
    background-position:center;
    opacity:.16;
    filter:grayscale(35%);
  }
  .ns-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, var(--navy-950) 0%, rgba(11,37,69,.88) 55%, var(--navy-950) 100%);
  }
  .ns-banner-content{ position:relative; z-index:1; }
  .ns-banner-number{
    display:block;
    font-family:'Fraunces', serif;
    font-weight:700;
    font-size:clamp(3.5rem, 9vw, 6.5rem);
    color:var(--gold);
    line-height:1;
  }
  .ns-banner-quote{
    margin:.8rem 0 0;
    font-family:'Fraunces', serif;
    font-size:clamp(1.3rem, 2.6vw, 2rem);
    color:var(--white);
    font-weight:400;
  }
  .ns-banner-quote strong{ font-weight:700; color:var(--gold); }

  /* ---------- Responsive ---------- */
  @media (max-width: 991.98px){
    .ns-values-row{ grid-template-columns:repeat(3, 1fr); row-gap:2.5rem; }
    .ns-values-row::before{ display:none; }
  }
  @media (max-width: 575.98px){
    .ns-values-row{ grid-template-columns:repeat(2, 1fr); }
    .ns-form-card{ padding:1.8rem; }
    .ns-hero{ padding:4rem 0 2.5rem; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  }

   /* ===== Footer ===== */
  footer.site-footer{
    background:#070b1e;
    position: relative;
    color:rgba(255,255,255,.7);
    padding-top:7.5rem;
 
  }
  footer .footer-brand{
    display:flex;align-items:center;gap:.6rem;
    color:#fff;
    /* font-family:'Lora',serif; */
    font-weight:700;
    font-size:1.25rem;
    margin-bottom:.9rem;
  }
  footer .footer-brand .seal{
    width:36px;height:36px;
    border:2px solid var(--gold);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--gold);
  }
  footer h4{
    color:#fff;
    font-size:.95rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.06em;
    margin-bottom:1.1rem;
  }
  footer ul{list-style:none;padding:0;margin:0;}
  footer ul li{margin-bottom:.6rem;}
  footer ul li a{color:rgba(255,255,255,.65);text-decoration: none;}
  footer ul li a:hover{color:var(--gold);}
  footer p{font-size:.9rem;line-height:1.7;}
  .btn-map{
    background:transparent;
    border:1.5px solid var(--gold);
    color:var(--gold-soft);
    font-weight:600;
    padding:.6rem 1.1rem;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    font-size:.9rem;
    text-decoration: none;
  }
  .btn-map:hover{background:var(--gold);color:var(--navy-deep);}
  .social-icons a{
    width:38px;height:38px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:.5rem;
  }
  .social-icons a:hover{background:var(--gold);border-color:var(--gold);color:var(--navy-deep);}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:2.5rem;
    padding:1.1rem 0;
    font-size:.82rem;
  }

/* =========================
   PAGE LOADER
========================= */

#page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Logo wrapper */
.loader-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoZoom 4.4s ease-in-out infinite;
}

/* Logo */
.loader-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Zoom In / Zoom Out */
@keyframes logoZoom {
    0% {
        transform: scale(0.75);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(0.75);
    }
}

  .qc-widget{
    position:fixed;
    right:22px;
    bottom:122px;
    z-index:1050;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:.75rem;
  }

  /* --- individual contact options --- */
  .qc-option{
    display:flex;
    align-items:center;
    gap:.65rem;
    opacity:0;
    transform:translateY(14px) scale(.85);
    pointer-events:none;
    transition:opacity .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
  }
  .qc-widget.is-open .qc-option{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }
  /* staggered entrance */
  .qc-widget.is-open .qc-option:nth-child(1){ transition-delay:.05s; }
  .qc-widget.is-open .qc-option:nth-child(2){ transition-delay:.11s; }
  .qc-widget.is-open .qc-option:nth-child(3){ transition-delay:.17s; }
  .qc-widget.is-open .qc-option:nth-child(4){ transition-delay:.23s; }

  .qc-option .qc-label{
    background:var(--navy-deep);
    color:#fff;
    font-size:.82rem;
    font-weight:600;
    padding:.4rem .8rem;
    border-radius:6px;
    white-space:nowrap;
    box-shadow:0 6px 16px rgba(0,0,0,.25);
    opacity:0;
    transform:translateX(6px);
    transition:opacity .2s ease, transform .2s ease;
  }
  .qc-option:hover .qc-label{ opacity:1; transform:translateX(0); }

  .qc-option .qc-btn{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.25rem;
    box-shadow:0 8px 20px -4px rgba(0,0,0,.35);
    transition:transform .2s ease, box-shadow .2s ease;
    flex-shrink:0;
  }
  .qc-option .qc-btn:hover{
    transform:translateY(-3px) scale(1.07);
    box-shadow:0 12px 24px -4px rgba(0,0,0,.4);
  }
  .qc-btn.qc-whatsapp{ background:var(--whatsapp); }
  .qc-btn.qc-call{ background:var(--navy); }
  .qc-btn.qc-email{ background:var(--gold); color:var(--navy-deep); }
  .qc-btn.qc-map{ background:#fff; color:var(--navy); border:2px solid var(--navy); }

  /* --- main toggle button --- */
  .qc-main{
    position:relative;
    width:62px;
    height:62px;
    border-radius:50%;
    background:linear-gradient(145deg, var(--gold), #B27F2C);
    color:var(--navy-deep);
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.55rem;
    box-shadow:0 10px 26px -6px rgba(0,0,0,.45);
    cursor:pointer;
    transition:transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
    z-index:2;
  }
  .qc-main:hover{ transform:scale(1.06); }
  .qc-main:active{ transform:scale(.94); }

  .qc-main i{
    transition:transform .35s ease, opacity .2s ease;
  }
  .qc-main .qc-icon-close{
    position:absolute;
    opacity:0;
    transform:rotate(-90deg) scale(.5);
  }
  .qc-widget.is-open .qc-main .qc-icon-open{
    opacity:0;
    transform:rotate(90deg) scale(.5);
  }
  .qc-widget.is-open .qc-main .qc-icon-close{
    opacity:1;
    transform:rotate(0deg) scale(1);
  }

  /* pulsing attention ring around the main button while closed */
  .qc-pulse-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid var(--gold);
    animation:qcPulse 2.4s ease-out infinite;
  }
  .qc-widget.is-open .qc-pulse-ring{ animation:none; opacity:0; }
  @keyframes qcPulse{
    0%   { transform:scale(1);   opacity:.7; }
    80%  { transform:scale(1.6); opacity:0;  }
    100% { transform:scale(1.6); opacity:0;  }
  }

  /* small notification dot */
  .qc-dot{
    position:absolute;
    top:-2px;
    right:-2px;
    width:15px;
    height:15px;
    border-radius:50%;
    background:#e34848;
    border:2px solid var(--paper);
    animation:qcDotBlink 1.6s ease-in-out infinite;
  }
  .qc-widget.is-open .qc-dot{ display:none; }
  @keyframes qcDotBlink{
    0%, 100% { transform:scale(1); }
    50%      { transform:scale(1.25); }
  }

  /* entrance animation for the whole widget on page load */
  .qc-widget{
    animation:qcSlideIn .6s cubic-bezier(.2,.9,.3,1.2) .4s both;
  }
  @keyframes qcSlideIn{
    from{ opacity:0; transform:translateY(24px) scale(.9); }
    to{ opacity:1; transform:translateY(0) scale(1); }
  }

  @media (prefers-reduced-motion: reduce){
    .qc-widget, .qc-pulse-ring, .qc-dot, .qc-option, .qc-main i{ animation:none !important; transition:none !important; }
  }

  /* mobile tweaks */
  @media (max-width:576px){
    .qc-widget{ right:14px; bottom:114px; gap:.6rem; }
    .qc-main{ width:56px; height:56px; font-size:1.4rem; }
    .qc-option .qc-btn{ width:44px; height:44px; font-size:1.1rem; }
    .qc-option .qc-label{ display:none; } /* labels hidden on small screens, icons are self-explanatory */
  }
  
  
  
  @media (max-width:576px){
      .logo-right{
          margin-left:-50px;
      }
    .hero h1{font-size:1.9rem;}
    .exam-toggle .btn{padding:.55rem 1rem;font-size:.9rem;}
    .hero-wrap{
      margin-top:5rem;  
    }
    .logo-left img{
    width:100px;
}
.hero-wrap{
    height:100%;
}
.visual-photo-frame img{
    height:300px;
}
.ns-contact{
    padding:0px;
}
.features-section{
    padding-top:60px;
    padding-inline:10px;
}
.feature-image img{
    max-width:320px;
}
.icon-box i{
    font-size:18px;
}
/*.hero-visual{*/
/*    padding:0px;*/
/*}*/
/*    .hero-visual{*/
/*        margin-top:0px;*/
/*    }*/
    .prize-band-section{
        margin-top:5rem;
    }
    .site-nav{
        background:#efe6fe;
    }
    section {
  padding: 60px 0;
}
.scso-section{
    padding:4rem 0;
}
.participate-card li{
    display:block;
}
  }

  @media (max-width: 1400px) {
    /* Your styles here */
    .banner-text{
      padding-top: -150px;
    }

}

 @media (min-width:1650px){
     .prize-band-section{
       bottom:150px;
     }
     .hero-wrap{
         padding-top:5rem;
     }
}

.seal-wrap{
    width:150px;height:150px;
    margin:.5rem auto 1.4rem;
    position:relative;
  }
  .seal-wrap svg{width:100%;height:100%;}
  .seal-ring-bg{fill:none;stroke:#E9E0C8;stroke-width:8;}
  .seal-ring-fg{
    fill:none;stroke:url(#goldGrad);stroke-width:8;stroke-linecap:round;
    stroke-dasharray:326.7; stroke-dashoffset:326.7;
    transform:rotate(-90deg); transform-origin:50% 50%;
    transition:stroke-dashoffset 1.4s cubic-bezier(.16,1,.3,1);
  }
  .seal-score{
    position:absolute;inset:0;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
  }
  .seal-score .num{
    font-weight:700;
    font-size:2.1rem;
    color:var(--navy-900);
    line-height:1;
  }
  .seal-score .den{
    font-size:.75rem;
    color:var(--ink-600);
    letter-spacing:.05em;
  }

  .result-greeting{
    font-family:var(--ff-display);
    font-size:1.4rem;
    color:var(--ink-900);
    margin-bottom:.15rem;
  }
  .result-greeting .name{color:var(--indigo-500);}
  .result-caption{
    color:var(--ink-600);
    font-size:.95rem;
    margin-bottom:1.6rem;
  }

  /* ---------- Outcome: pass vs fail ---------- */
  .outcome{display:none;}
  .result-section.is-pass .outcome-pass{display:block;}
  .result-section.is-fail .outcome-fail{display:block;}

  .congrats-banner{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    background:linear-gradient(100deg, var(--success), #3FBE80);
    color:#fff;
    font-weight:700;
    font-size:1.05rem;
    padding:.55rem 1.4rem;
    border-radius:100px;
    margin-bottom:1.3rem;
    box-shadow:0 10px 22px -8px rgba(47,158,104,.55);
  }
  .fail-banner{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    background:linear-gradient(100deg, var(--indigo-500), #5567C4);
    color:#fff;
    font-weight:700;
    font-size:1.05rem;
    padding:.55rem 1.4rem;
    border-radius:100px;
    margin-bottom:1.3rem;
    box-shadow:0 10px 22px -8px rgba(53,72,166,.45);
  }

  .result-detail{
    color:var(--ink-900);
    font-size:1rem;
    max-width:26rem;
    margin:0 auto .6rem;
    line-height:1.55;
  }
  .result-detail strong{color:var(--indigo-500);}
  .result-note{
    color:var(--ink-600);
    font-size:.85rem;
    margin-top:1.2rem;
    border-top:1px dashed #E1D6B4;
    padding-top:1rem;
  }

  /* Fail state re-themes the celebratory pink/gold accents to a calmer slate/indigo */
  .result-section.is-fail #downloadCard::before{
    background:repeating-linear-gradient(90deg, var(--indigo-500) 0 16px, #AEB7E0 16px 32px, #ffffff 32px 48px);
  }
  .result-section.is-fail .seal-ring-fg{stroke:url(#slateGrad);}
  .result-section.is-fail .exam-badge{
    background:var(--indigo-500);
    box-shadow:0 8px 16px -6px rgba(53,72,166,.45);
  }
  .result-section.is-fail .card-logo{
    background:transparent;
    border-color:#AEB7E0;
    color:var(--indigo-500);
    /* box-shadow:0 8px 18px -8px rgba(53,72,166,.4); */
  }
  .result-section.is-fail .btn-download{
    background:linear-gradient(100deg, var(--indigo-500), #5567C4);
    box-shadow:0 14px 26px -10px rgba(53,72,166,.5);
  }
  .result-section.is-fail .btn-download:hover,
  .result-section.is-fail .btn-download:focus-visible{
    box-shadow:0 18px 32px -10px rgba(53,72,166,.6);
  }

  .download-wrap{
    max-width:560px;
    margin:1.6rem auto 0;
    text-align:center;
  }
  .btn-download{
    display:inline-flex;
    align-items:center;
    gap:.55rem;
    background:linear-gradient(100deg, var(--pink-500), #FF7CBB);
    border:none;
    color:#fff;
    font-weight:700;
    font-size:.95rem;
    padding:.8rem 1.7rem;
    border-radius:100px;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    box-shadow:0 14px 26px -10px rgba(255,79,160,.6);
  }
  .btn-download:hover, .btn-download:focus-visible{
    transform:translateY(-2px);
    box-shadow:0 18px 32px -10px rgba(255,79,160,.7);
  }
  .btn-download:active{transform:translateY(0);}
  .btn-download:disabled{opacity:.65;cursor:progress;transform:none;}
  .download-hint{
    color:var(--ink-600);
    font-size:.78rem;
    margin-top:.6rem;
  }

  .visually-hidden-focusable:not(:focus){
    clip:rect(0 0 0 0); position:absolute; overflow:hidden;
    height:1px;width:1px;white-space:nowrap;
  }


  #confettiCanvas{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:2000;
  }

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    .seal-ring-fg{transition:none;}
  }
  
  .result-highlight {
    position: relative;
    animation: resultFloat 2s ease-in-out infinite;
    box-shadow: 0 0 0 rgba(157, 42, 45, 0.5);
}

/* Pulsing glow */
.result-highlight::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(157, 42, 45, 0.4);
    border-radius: inherit;
    /*animation: resultPulse 2s ease-out infinite;*/
    pointer-events: none;
}

/* Shine effect */
.result-highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );
    transform: skewX(-20deg);
    /*animation: resultShine 3s ease-in-out infinite;*/
    pointer-events: none;
}

/* Slight floating movement */
@keyframes resultFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Attention pulse */
@keyframes resultPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.08);
        opacity: 0;
    }

    100% {
        transform: scale(1.08);
        opacity: 0;
    }
}

/* Moving shine */
@keyframes resultShine {
    0%, 35% {
        left: -120%;
    }

    65%, 100% {
        left: 140%;
    }
}
.result-wave-btn span {
    display: inline-block;
    animation: resultLetterWave 4s ease-in-out infinite;
}

/* Letter-by-letter timing */
.result-wave-btn span:nth-child(1)  { animation-delay: 0s; }
.result-wave-btn span:nth-child(2)  { animation-delay: 0.08s; }
.result-wave-btn span:nth-child(3)  { animation-delay: 0.16s; }
.result-wave-btn span:nth-child(4)  { animation-delay: 0.24s; }
.result-wave-btn span:nth-child(5)  { animation-delay: 0.32s; }
.result-wave-btn span:nth-child(6)  { animation-delay: 0.40s; }
.result-wave-btn span:nth-child(7)  { animation-delay: 0.48s; }
.result-wave-btn span:nth-child(8)  { animation-delay: 0.56s; }
.result-wave-btn span:nth-child(9)  { animation-delay: 0.64s; }
.result-wave-btn span:nth-child(10) { animation-delay: 0.72s; }
.result-wave-btn span:nth-child(11) { animation-delay: 0.80s; }
.result-wave-btn span:nth-child(12) { animation-delay: 0.88s; }

@keyframes resultLetterWave {
    0%,
    15%,
    100% {
        transform: translateY(0);
    }

    5% {
        transform: translateY(-6px);
    }

    10% {
        transform: translateY(0);
    }
}
 @media (max-width:550px){
     .result-highlight{
         margin-top:10px;
     }
}