/* Green highlight for Novus Solutions in header */
.novus-green {
  color: #9ACD32 !important;
  font-weight: 700;
}

/* Dark charcoal footer */
.footer.lightgrey-bg {
  background: #222 !important;
  color: #f0f0f0;
}

.footer.lightgrey-bg a {
  color: #F2C94C;
}

.footer.lightgrey-bg a:hover {
  color: #F28C28;
}



/* ================= TIMELINE — VERTICAL ALTERNATING ================= */
.timeline-section {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.timeline-section h2 {
  color: #fff;
}

.timeline-section .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.timeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(242, 140, 40, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(123, 97, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.timeline-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Header */
.tl-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.tl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 140, 40, 0.12);
  border: 1px solid rgba(242, 140, 40, 0.3);
  color: #F2C94C;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Vertical Timeline Container */
.tl-vertical {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 2;
}

/* Central vertical line */
.tl-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg,
      #F28C28 0%, #E34234 30%, #7B61FF 65%, #9ACD32 100%);
  border-radius: 3px;
  opacity: 0.5;
}

/* Animated line fill */
.tl-vertical::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 0%;
  background: linear-gradient(180deg,
      #F28C28 0%, #E34234 30%, #7B61FF 65%, #9ACD32 100%);
  border-radius: 3px;
  animation: tlLineDraw 2s ease-out forwards 0.5s;
}

@keyframes tlLineDraw {
  to {
    height: 100%;
  }
}

/* Each timeline item row */
.tl-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tl-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.tl-item:last-child {
  margin-bottom: 0;
}

/* Left items: card on left, node in center */
.tl-item.tl-left {
  flex-direction: row;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
}

.tl-item.tl-left .tl-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Right items: node in center, card on right */
.tl-item.tl-right {
  flex-direction: row;
  justify-content: flex-start;
  padding-left: calc(50% + 40px);
}

.tl-item.tl-right .tl-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Node (circle on the line) */
.tl-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 3px solid var(--accent, #F28C28);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.tl-node-inner {
  width: 14px;
  height: 14px;
  background: var(--accent, #F28C28);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent, #F28C28);
}

.tl-item:hover .tl-node {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08), 0 0 30px var(--accent);
}

/* Pulse ring */
.timeline-pulse-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent, #F28C28);
  opacity: 0;
  pointer-events: none;
}

/* Card */
.tl-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

.tl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.tl-item:hover .tl-card {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Connector line from card to node */
.tl-item.tl-left .tl-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.tl-item.tl-right .tl-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  width: 40px;
  height: 2px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

/* Step number */
.tl-step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -2px;
}

/* Card icon */
.tl-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent, #F28C28), rgba(255, 255, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.tl-item:hover .tl-card-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* Card body text */
.tl-card-body {
  position: relative;
  z-index: 1;
}

.tl-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent, #F2C94C);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 6px;
}

.tl-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tl-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

/* ===== TIMELINE LIVE STATUS ===== */

/* Status badge */
.timeline-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Completed */
.tl-item.status-completed .timeline-status-badge {
  background: rgba(76, 175, 80, 0.15);
  color: #66bb6a;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.tl-item.status-completed .timeline-status-badge::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
}

.tl-item.status-completed .tl-node {
  background: var(--accent, #F28C28);
  border-color: var(--accent, #F28C28);
  box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.15), 0 0 20px rgba(76, 175, 80, 0.2);
}

.tl-item.status-completed .tl-node-inner {
  background: #fff;
}

.tl-item.status-completed .tl-card {
  border-left: 3px solid #4caf50;
}

/* Live / Current */
.tl-item.status-live .timeline-status-badge {
  background: rgba(242, 140, 40, 0.15);
  color: #ffab40;
  border: 1px solid rgba(242, 140, 40, 0.4);
  animation: liveGlow 2s ease-in-out infinite;
}

.tl-item.status-live .timeline-status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff5722;
  border-radius: 50%;
  animation: liveDot 1.5s ease-in-out infinite;
}

@keyframes liveDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

@keyframes liveGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 140, 40, 0);
  }

  50% {
    box-shadow: 0 0 14px 3px rgba(242, 140, 40, 0.25);
  }
}

.tl-item.status-live .tl-node {
  animation: liveNodePulse 2s ease-in-out infinite;
  border-width: 4px;
}

@keyframes liveNodePulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(242, 140, 40, 0.15), 0 0 20px var(--accent);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(242, 140, 40, 0.08), 0 0 40px var(--accent);
  }
}

.tl-item.status-live .tl-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(242, 140, 40, 0.1);
}

.tl-item.status-live .tl-card::before {
  background: linear-gradient(135deg, rgba(242, 140, 40, 0.05), transparent);
}

.tl-item.status-live .timeline-pulse-ring {
  animation: pulseRingExpand 2.5s ease-out infinite;
}

@keyframes pulseRingExpand {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Upcoming */
.tl-item.status-upcoming .timeline-status-badge {
  background: rgba(62, 111, 182, 0.1);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tl-item.status-upcoming .timeline-status-badge::before {
  content: '\f017';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 10px;
}

.tl-item.status-upcoming .tl-node {
  opacity: 0.45;
}

.tl-item.status-upcoming .tl-card {
  opacity: 0.6;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Mini countdown */
.timeline-countdown-mini {
  display: none;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tl-item.status-upcoming .timeline-countdown-mini,
.tl-item.status-live .timeline-countdown-mini {
  display: inline-block;
}

.tl-item.status-live .timeline-countdown-mini {
  color: #ffab40;
  background: rgba(242, 140, 40, 0.08);
  border-color: rgba(242, 140, 40, 0.15);
}

/* Progress bar */
.timeline-progress-bar {
  max-width: 600px;
  margin: 50px auto 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.timeline-progress-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #4caf50, #F28C28, #7B61FF);
  background-size: 200% 100%;
  animation: progressShimmer 3s linear infinite;
  transition: width 1s ease;
  width: 0%;
  position: relative;
}

.timeline-progress-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(242, 140, 40, 0.6), 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes progressShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.timeline-progress-label {
  position: absolute;
  right: 0;
  top: -28px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== TIMELINE RESPONSIVE ===== */
@media (max-width: 768px) {
  .timeline-section {
    padding: 70px 0 60px;
  }

  .tl-header {
    margin-bottom: 40px;
  }

  .tl-vertical::before,
  .tl-vertical::after {
    left: 24px;
    transform: none;
  }

  .tl-item.tl-left,
  .tl-item.tl-right {
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 0 0 64px;
  }

  .tl-item.tl-left .tl-node,
  .tl-item.tl-right .tl-node {
    position: absolute;
    left: 24px;
    transform: translateX(-50%);
  }

  .tl-node {
    width: 36px;
    height: 36px;
  }

  .tl-node-inner {
    width: 10px;
    height: 10px;
  }

  .tl-card {
    max-width: none;
    padding: 24px 20px 20px;
  }

  .tl-item.tl-left .tl-card::after,
  .tl-item.tl-right .tl-card::after {
    display: none;
  }

  .tl-step-num {
    font-size: 36px;
    top: 12px;
    right: 14px;
  }

  .tl-card-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .tl-title {
    font-size: 18px;
  }

  .tl-desc {
    font-size: 13px;
  }

  .tl-item {
    margin-bottom: 36px;
  }

  .tl-item:hover .tl-node {
    transform: translateX(-50%) scale(1.15);
  }
}

@media (max-width: 480px) {

  .tl-vertical::before,
  .tl-vertical::after {
    left: 18px;
  }

  .tl-item.tl-left,
  .tl-item.tl-right {
    padding-left: 52px;
  }

  .tl-item.tl-left .tl-node,
  .tl-item.tl-right .tl-node {
    left: 18px;
  }

  .tl-node {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }

  .tl-node-inner {
    width: 8px;
    height: 8px;
  }

  .tl-card {
    padding: 18px 16px 16px;
  }

  .tl-title {
    font-size: 16px;
  }

  .tl-item {
    margin-bottom: 28px;
  }
}


/* Animated 3D icons for cards */
.card-3dicon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8BBF2A 60%, #9ACD32 100%);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(154, 205, 50, 0.4);
  animation: float3d 2.5s infinite ease-in-out;
}

.card-3dicon i {
  font-size: 30px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(154, 205, 50, 0.5));
}

/* Logo Hero Slider */
.logo-slider-outer {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translateX(40px);
}

.logo-slider-blob {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s ease, transform 0.9s ease;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.logo-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Hero Welcome Text */
.hero-welcome {
  text-align: center;
  margin-top: -32px;
  z-index: 3;
  position: relative;
}

.welcome-line {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
  text-shadow: none;
  margin-bottom: 8px;
  animation: welcomeFadeIn 1.2s ease-out both;
}

.welcome-tagline {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  overflow: hidden;
  border-right: 2px solid #F28C28;
  white-space: nowrap;
  width: 0;
  margin: 0 auto;
  animation: typing 2.5s steps(24) 1s forwards, blink 0.7s step-end infinite;
}

@keyframes welcomeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing {
  to {
    width: 380px;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.slider-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.slider-particles .particle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  animation: particleFloat 5s infinite linear;
}

.slider-particles .particle:nth-child(1) {
  left: 12%;
  top: 18%;
  background: #F2C94C;
  animation-delay: 0s;
}

.slider-particles .particle:nth-child(2) {
  left: 70%;
  top: 10%;
  background: #3E6FB6;
  animation-delay: 1s;
}

.slider-particles .particle:nth-child(3) {
  left: 80%;
  top: 70%;
  background: #F28C28;
  animation-delay: 2s;
}

.slider-particles .particle:nth-child(4) {
  left: 20%;
  top: 80%;
  background: #fff;
  animation-delay: 3s;
}

.slider-particles .particle:nth-child(5) {
  left: 50%;
  top: 50%;
  background: #F2C94C;
  animation-delay: 4s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
}

/* Hide old hero-slide styles for blob slider */
.hero-right .hero-slide {
  display: none !important;
}

/* Blob Slider Shapes for Hero */
.blob-slider {
  position: absolute;
  top: 50%;
  right: -60px;
  width: 120px;
  height: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
  transform: translateY(-50%);
}

.blob-slider-shape {
  width: 90px;
  height: 70px;
  border-radius: 60% 40% 50% 70%;
  animation-delay: 0s;
}

.blob-slider2 {
  background: #3E6FB6;
  animation-delay: 1s;
}

.blob-slider3 {
  background: #F2C94C;
  animation-delay: 2s;
}

@keyframes blobSliderFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-18px) scale(1.08);
  }
}

/* Responsive blob slider */
@media(max-width:900px) {
  .blob-slider {
    position: static;
    width: 100%;
    height: 60px;
    flex-direction: row;
    gap: 8px;
    margin: 16px auto 0 auto;
    transform: none;
    justify-content: center;
  }

  .blob-slider-shape {
    width: 40px;
    height: 30px;
    filter: blur(8px);
  }
}

/* Vertical Novus logo container adjustment */
.vertical-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
}

.vertical-logo {
  height: 90px;
  width: auto;
  margin-bottom: 8px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(62, 111, 182, 0.12);
}

/* =========================
RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* ================= PRELOADER ================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(160deg, #f4f7fa 0%, #eef2f3 40%, #f0f4f1 70%, #f6f8fa 100%);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Particle canvas */
#preloaderParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Floating glow orbs */
.preloader-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: glowDrift 6s ease-in-out infinite;
}

.preloader-glow-1 {
  width: 300px;
  height: 300px;
  background: rgba(242, 140, 40, 0.12);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.preloader-glow-2 {
  width: 250px;
  height: 250px;
  background: rgba(123, 97, 255, 0.10);
  bottom: 10%;
  right: 15%;
  animation-delay: -2s;
}

.preloader-glow-3 {
  width: 200px;
  height: 200px;
  background: rgba(242, 201, 76, 0.10);
  top: 50%;
  left: 60%;
  animation-delay: -4s;
}

@keyframes glowDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

/* Logo with spinning ring */
.preloader-logo {
  width: 110px;
  height: 110px;
  position: relative;
  animation: preloaderFloat 3s ease-in-out infinite;
}

.preloader-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 15px rgba(242, 140, 40, 0.25));
  z-index: 2;
}

.preloader-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #F28C28;
  border-right-color: rgba(242, 201, 76, 0.4);
  animation: ringRotate 1.8s linear infinite;
}

.preloader-logo-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: rgba(123, 97, 255, 0.5);
  border-left-color: rgba(123, 97, 255, 0.2);
  animation: ringRotate 2.5s linear infinite reverse;
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Title */
.preloader-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: 1px;
  margin: 0;
}

.preloader-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: -6px 0 14px;
}

/* Preloader Prize Pool — EXPLOSION EFFECT */
.preloader-prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 18px;
  position: relative;
  animation: prizeExplodeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

/* Burst particles */
.prize-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 0;
  pointer-events: none;
}

.prize-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F2C94C;
  transform: rotate(calc(var(--i) * 30deg)) translateX(0);
  animation: sparkBurst 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

.prize-spark:nth-child(odd) {
  background: #F28C28;
  width: 6px;
  height: 6px;
}

.prize-spark:nth-child(3n) {
  background: #ff6b6b;
  width: 5px;
  height: 5px;
}

.prize-spark:nth-child(4n) {
  background: #9ACD32;
}

@keyframes sparkBurst {
  0% {
    opacity: 1;
    transform: rotate(calc(var(--i) * 30deg)) translateX(0) scale(1.5);
  }

  60% {
    opacity: 1;
    transform: rotate(calc(var(--i) * 30deg)) translateX(85px) scale(1);
  }

  100% {
    opacity: 0;
    transform: rotate(calc(var(--i) * 30deg)) translateX(110px) scale(0);
  }
}

.preloader-prize-icon {
  font-size: 42px;
  color: #F2C94C;
  filter: drop-shadow(0 0 20px rgba(242, 201, 76, 0.8)) drop-shadow(0 0 40px rgba(242, 140, 40, 0.4));
  animation: prizeExplodeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both, trophyPulse 1.5s ease-in-out 1.5s infinite;
  z-index: 1;
}

@keyframes trophyPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(242, 201, 76, 0.8)) drop-shadow(0 0 40px rgba(242, 140, 40, 0.4));
  }

  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 30px rgba(242, 201, 76, 1)) drop-shadow(0 0 60px rgba(242, 140, 40, 0.6));
  }
}

.preloader-prize-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 5px;
  text-transform: uppercase;
  z-index: 1;
}

.preloader-prize-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, #F28C28, #F2C94C, #ff6b6b, #F2C94C, #F28C28);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prizeShimmer 2.5s linear infinite;
  filter: drop-shadow(0 4px 12px rgba(242, 140, 40, 0.5));
  z-index: 1;
  line-height: 1.1;
}

@keyframes prizeExplodeIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-10deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.3) rotate(3deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes prizeShimmer {
  0% {
    background-position: 300% 0;
  }

  100% {
    background-position: -300% 0;
  }
}

/* Progress bar */
.preloader-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 280px;
}

.preloader-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: linear-gradient(90deg, #F28C28, #F2C94C, #F28C28);
  background-size: 200% 100%;
  animation: preloaderShimmer 1.5s linear infinite;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(242, 140, 40, 0.3);
}

@keyframes preloaderShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.preloader-percent {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #111;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}


/* =========================
CONTAINER
========================= */

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 40px;
}


/* =========================
NAVBAR
========================= */

.navbar {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 70px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 40px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);

  z-index: 999;

  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);

}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 75px;
}

.logo-title {
  font-weight: 700;
}

.logo-sub {
  font-size: 12px;
  color: #666;
}

.nav-right {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Hide hamburger menu on desktop */
.hamburger {
  display: none;
}

/* Show nav links on desktop */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-right a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.nav-right a:hover {
  color: #F28C28;
}

.nav-btn {

  background: #3E6FB6;
  color: white !important;

  padding: 10px 24px;
  border-radius: 30px;

}


/* =========================
APPLE HERO SECTION
========================= */

.hero {

  height: 100vh;

  display: flex;
  align-items: center;

  background: none;

  position: relative;

  overflow: hidden;

  padding-top: 0;

}

/* Soft radial glow tint overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 15% 25%, rgba(154, 205, 50, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 75%, rgba(242, 140, 40, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(62, 111, 182, 0.04), transparent 50%);
  z-index: 2;
  pointer-events: none;
}

/* Subtle bottom fade */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(244, 247, 250, 0.5) 100%);
  z-index: 2;
  pointer-events: none;
  animation: none;
}

@keyframes smokeFloat {
  0% {
    opacity: 0.5;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0.8;
    transform: translateY(-15px) scale(1.03);
  }
}


/* HERO CONTAINER */

.hero-container {

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  padding: 100px 60px 40px 60px;

  z-index: 3;

  background: linear-gradient(160deg, rgba(244, 247, 250, 0.55) 0%, rgba(238, 242, 243, 0.5) 40%, rgba(240, 244, 241, 0.55) 70%, rgba(246, 248, 250, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  border: none;
  border-radius: 0;
  box-shadow: none;

}


/* LEFT SIDE */

.hero-left {
  max-width: 600px;
}

.hero-title {

  font-size: 80px;
  font-weight: 900;

  line-height: 1.1;

}

/* ===== STYLED HERO TITLE ===== */
.hero-title-styled {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}

.hero-title-hack {
  color: #1a1a2e;
  -webkit-text-fill-color: #1a1a2e;
  -webkit-text-stroke: none;
  paint-order: stroke fill;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 2px;
  text-shadow:
    0 0 10px rgba(26, 26, 46, 0.15),
    0 0 30px rgba(62, 111, 182, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.1);
  animation: heroTextGlow 3s ease-in-out infinite alternate;
}

.hero-title-elevate {
  color: #1a1a2e;
  -webkit-text-stroke: none;
  paint-order: stroke fill;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 3px;
  text-shadow:
    0 0 10px rgba(26, 26, 46, 0.15),
    0 0 30px rgba(62, 111, 182, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: heroTextGlow 3s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}

@keyframes heroTextGlow {
  0% {
    text-shadow:
      0 0 10px rgba(26, 26, 46, 0.1),
      0 0 20px rgba(62, 111, 182, 0.08),
      0 4px 20px rgba(0, 0, 0, 0.08);
    transform: scale(1);
  }

  100% {
    text-shadow:
      0 0 15px rgba(26, 26, 46, 0.2),
      0 0 40px rgba(62, 111, 182, 0.15),
      0 4px 25px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
  }
}

.hero-title-elevate::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F28C28, #9ACD32, #3E6FB6);
  border-radius: 4px;
  animation: underlineShimmer 3s ease infinite;
}

@keyframes underlineShimmer {

  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(0.85);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-title-year {
  font-size: 1em;
  font-weight: 900;
  color: #18f511;
  -webkit-text-fill-color: #18f511;
  -webkit-text-stroke: none;
  paint-order: stroke fill;
  vertical-align: baseline;
  text-shadow: 0 0 20px rgba(50, 43, 36, 0.4);
  animation: yearPulse 2s ease-in-out infinite;
}

@keyframes yearPulse {

  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 30px rgba(242, 140, 40, 0.8);
  }
}

/* Remove glitch effect (replaced) */
.glitch {
  animation: none;
}

.glitch::before,
.glitch::after {
  display: none;
}

.hero-subtitle {

  font-size: 22px;
  margin: 20px 0;
  color: #333;

}


/* CTA */

.cta {

  background: #252424;
  color: white;

  padding: 14px 34px;

  border-radius: 30px;

  text-decoration: none;

  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;

  transition: 0.3s;

}

.cta:hover {

  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

}


/* =========================
COUNTDOWN — FLIP CARD STYLE
========================= */

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cd-flip {
  position: relative;
  width: 80px;
  height: 90px;
  perspective: 400px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cd-flip-top,
.cd-flip-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  border-radius: 8px;
}

.cd-flip-top {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  z-index: 2;
}

.cd-flip-bottom {
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.04));
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.cd-flip-top span,
.cd-flip-bottom span {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: #1a1a2e;
  font-variant-numeric: tabular-nums;
  line-height: 90px;
}

.cd-flip-top span {
  top: 0;
}

.cd-flip-bottom span {
  bottom: 0;
}

.cd-flip-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  z-index: 10;
  transform: translateY(-1px);
}

/* Unit-specific accent glow */
[data-unit="days"] .cd-flip {
  box-shadow: 0 6px 24px rgba(242, 140, 40, 0.35), inset 0 0 0 1.5px rgba(242, 140, 40, 0.35);
  border-radius: 10px;
}

[data-unit="hours"] .cd-flip {
  box-shadow: 0 6px 24px rgba(242, 201, 76, 0.35), inset 0 0 0 1.5px rgba(242, 201, 76, 0.35);
  border-radius: 10px;
}

[data-unit="mins"] .cd-flip {
  box-shadow: 0 6px 24px rgba(242, 140, 40, 0.3), inset 0 0 0 1.5px rgba(242, 140, 40, 0.3);
  border-radius: 10px;
}

[data-unit="secs"] .cd-flip {
  box-shadow: 0 6px 24px rgba(227, 66, 52, 0.4), inset 0 0 0 1.5px rgba(227, 66, 52, 0.35);
  border-radius: 10px;
}

[data-unit="secs"] .cd-flip-top span,
[data-unit="secs"] .cd-flip-bottom span {
  color: #ff6b6b;
}

.countdown-card label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.5);
}

.countdown-colon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
}

.countdown-colon span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  animation: colonBlink 1s ease-in-out infinite;
}

.countdown-colon span:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes colonBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(0.7);
  }
}

/* Flip tick animation */
.cd-flip.tick .cd-flip-top {
  animation: flipDown 0.4s ease-in-out;
}

@keyframes flipDown {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(-10deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}


/* =========================
HERO RIGHT SLIDER
========================= */

.hero-right {

  position: relative;

  width: 500px;
  height: 500px;
  overflow: hidden;

}

.hero-slide {

  position: absolute;

  width: 100%;

  opacity: 0;

  transform: scale(0.9);

  transition: 1s ease;

}

.hero-slide.active {

  opacity: 1;
  transform: scale(1);

}


/* =========================
FLOATING LOGOS
========================= */

.floating-logo {

  position: absolute;
  width: 90px;

  animation: float 6s infinite ease-in-out;

  z-index: 1;

}

.make-logo {

  top: 120px;
  right: 200px;

}

.shopify-logo {

  bottom: 120px;
  right: 250px;

}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }

}


/* ===== APPLE-STYLE MOVING ELEMENTS ===== */
.hero-moving-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

/* Orbiting rings */
.orbit-ring {
  position: absolute;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
}

.ring1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 20s linear infinite;
}

.ring1::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #F2C94C;
  border-radius: 50%;
  top: -6px;
  left: 50%;
  box-shadow: 0 0 20px #F2C94C88;
}

.ring2 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 30s linear infinite reverse;
  border-style: dashed;
  border-color: rgba(0, 0, 0, 0.06);
}

.ring2::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #3E6FB6;
  border-radius: 50%;
  bottom: -4px;
  left: 50%;
  box-shadow: 0 0 16px #3E6FB688;
}

.ring3 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 15s linear infinite;
  border-color: rgba(242, 140, 40, 0.15);
}

.ring3::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #F28C28;
  border-radius: 50%;
  top: 50%;
  right: -5px;
  box-shadow: 0 0 18px #F28C2888;
}

@keyframes orbitSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Floating geometric shapes */
.floating-shape {
  position: absolute;
}

.shape-circle {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(62, 111, 182, 0.15);
  border-radius: 50%;
  top: 15%;
  left: 8%;
  animation: floatShape 6s ease-in-out infinite;
}

.shape-square {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(242, 201, 76, 0.2);
  top: 70%;
  right: 12%;
  animation: floatShape 8s ease-in-out infinite reverse;
  transform: rotate(45deg);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 45px solid rgba(62, 111, 182, 0.12);
  top: 25%;
  right: 25%;
  animation: floatShape 7s ease-in-out infinite 1s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 1;
  }
}

/* Floating dots */
.shape-dot {
  width: 6px;
  height: 6px;
  background: rgba(62, 111, 182, 0.25);
  border-radius: 50%;
  animation: dotDrift 10s linear infinite;
}

.dot1 {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.dot2 {
  top: 60%;
  left: 70%;
  animation-delay: 3s;
  animation-duration: 15s;
}

.dot3 {
  top: 80%;
  left: 20%;
  animation-delay: 6s;
  animation-duration: 11s;
}

.dot4 {
  top: 40%;
  left: 85%;
  animation-delay: 2s;
  animation-duration: 14s;
}

@keyframes dotDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  50% {
    transform: translate(-60px, -80px) scale(1.5);
    opacity: 0.5;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translate(60px, 80px) scale(1);
    opacity: 0;
  }
}

/* Scan line */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(242, 201, 76, 0.3), transparent);
  animation: scanMove 4s ease-in-out infinite;
}

@keyframes scanMove {
  0% {
    top: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Subtle grid lines */
.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(80px, 80px);
  }
}

/* ===== HERO TEXT SCROLLER ===== */
.hero-scroller {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.95));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  z-index: 10;
  border-top: 2px solid rgba(154, 205, 50, 0.5);
  border-bottom: 2px solid rgba(242, 140, 40, 0.3);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35), inset 0 2px 0 rgba(154, 205, 50, 0.2), inset 0 -1px 0 rgba(242, 140, 40, 0.15);
}

@keyframes scrollerBgShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

.scroller-track {
  display: flex;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
  animation: scrollText 20s linear infinite;
  width: max-content;
}

.scroller-track span {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 255, 255, 0.15);
}

.scroller-track span::after {
  content: '\2022';
  margin-left: 16px;
  color: #9ACD32;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(154, 205, 50, 0.6);
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Prize pool pop styling */
.prize-pop {
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #F2C94C !important;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.2), rgba(242, 140, 40, 0.15));
  padding: 5px 18px;
  border-radius: 20px;
  border: 1px solid rgba(242, 201, 76, 0.4);
  letter-spacing: 1.5px !important;
  animation: prizeGlow 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(242, 201, 76, 0.6) !important;
}

@keyframes prizeGlow {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(242, 201, 76, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(242, 201, 76, 0.6), 0 0 40px rgba(242, 201, 76, 0.2);
  }
}

/* =========================
BLOBS
========================= */

.blob {

  position: absolute;

  border-radius: 60% 40% 50% 70%;


  filter: blur(60px);
  opacity: 0.85;
  z-index: 0;
  will-change: transform;
  border: 3px solid rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.18), 0 2px 40px 0 rgba(0, 0, 0, 0.18);
}

.blob1 {

  width: 320px;
  height: 320px;

  background: radial-gradient(circle, #9ACD32 0%, rgba(154, 205, 50, 0.4) 70%);

  top: -40px;
  right: 15%;
  animation: blobFloat1 18s ease-in-out infinite;

}

.blob2 {

  width: 280px;
  height: 280px;

  background: radial-gradient(circle, #F28C28 0%, rgba(242, 140, 40, 0.35) 70%);

  bottom: 8%;
  left: 2%;
  animation: blobFloat2 22s ease-in-out infinite;

}

.blob3 {

  width: 260px;
  height: 260px;

  background: radial-gradient(circle, #3E6FB6 0%, rgba(62, 111, 182, 0.35) 70%);

  top: 35%;
  right: 0%;
  animation: blobFloat3 20s ease-in-out infinite;
  opacity: 0.5;

}

.blob4 {

  width: 220px;
  height: 220px;

  background: radial-gradient(circle, #9ACD32 0%, rgba(154, 205, 50, 0.3) 70%);

  bottom: 25%;
  left: 30%;
  animation: blobFloat4 25s ease-in-out infinite;
  opacity: 0.4;

}

.blob5 {

  width: 180px;
  height: 180px;

  background: radial-gradient(circle, #F2C94C 0%, rgba(242, 201, 76, 0.3) 70%);

  top: 15%;
  left: 5%;
  animation: blobFloat5 16s ease-in-out infinite;
  opacity: 0.45;

}

.blob6 {

  width: 300px;
  height: 300px;

  background: radial-gradient(circle, #4A90D9 0%, rgba(74, 144, 217, 0.35) 70%);

  top: 10%;
  left: 40%;
  animation: blobFloat6 24s ease-in-out infinite;
  opacity: 0.45;

}

.blob7 {

  width: 240px;
  height: 240px;

  background: radial-gradient(circle, #2C5F9E 0%, rgba(44, 95, 158, 0.35) 70%);

  bottom: 15%;
  right: 20%;
  animation: blobFloat7 19s ease-in-out infinite;
  opacity: 0.4;

}

@keyframes blobFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 60% 40% 50% 70%;
  }

  25% {
    transform: translate(15px, 20px) scale(1.04);
    border-radius: 50% 60% 40% 55%;
  }

  50% {
    transform: translate(-10px, 12px) scale(0.97);
    border-radius: 45% 55% 65% 40%;
  }

  75% {
    transform: translate(8px, -15px) scale(1.02);
    border-radius: 55% 45% 50% 60%;
  }
}

@keyframes blobFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 40% 60% 55% 45%;
  }

  25% {
    transform: translate(-18px, -15px) scale(1.05);
    border-radius: 55% 45% 50% 60%;
  }

  50% {
    transform: translate(14px, -20px) scale(0.95);
    border-radius: 60% 40% 45% 55%;
  }

  75% {
    transform: translate(-8px, 12px) scale(1.03);
    border-radius: 50% 55% 60% 45%;
  }
}

@keyframes blobFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50% 50% 40% 60%;
  }

  33% {
    transform: translate(-20px, 15px) scale(1.06);
    border-radius: 40% 60% 55% 50%;
  }

  66% {
    transform: translate(12px, -18px) scale(0.94);
    border-radius: 55% 45% 60% 40%;
  }
}

@keyframes blobFloat4 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 55% 45% 50% 60%;
  }

  50% {
    transform: translate(18px, -12px) scale(1.07);
    border-radius: 45% 55% 60% 50%;
  }
}

@keyframes blobFloat5 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 60% 40% 50% 55%;
  }

  33% {
    transform: translate(12px, 18px) scale(1.05);
    border-radius: 50% 55% 45% 60%;
  }

  66% {
    transform: translate(-15px, -8px) scale(0.96);
    border-radius: 45% 60% 55% 50%;
  }
}

@keyframes blobFloat6 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 55% 45% 60% 40%;
  }

  25% {
    transform: translate(-12px, 18px) scale(1.04);
    border-radius: 45% 55% 50% 60%;
  }

  50% {
    transform: translate(16px, -10px) scale(0.96);
    border-radius: 60% 40% 45% 55%;
  }

  75% {
    transform: translate(-8px, -14px) scale(1.03);
    border-radius: 50% 60% 55% 45%;
  }
}

@keyframes blobFloat7 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50% 50% 45% 55%;
  }

  33% {
    transform: translate(14px, -16px) scale(1.06);
    border-radius: 55% 45% 55% 50%;
  }

  66% {
    transform: translate(-10px, 12px) scale(0.95);
    border-radius: 40% 60% 50% 55%;
  }
}


/* =========================
SECTIONS
========================= */

.section {
  padding: 120px 0;
  overflow-x: hidden;
}

.white {
  background: white;
}

.green {
  background: #9ACD32;
}

.section h2 {

  font-size: 42px;
  text-align: center;

  margin-bottom: 15px;

}

.section-sub {

  text-align: center;
  margin-bottom: 50px;

  color: #666;

}


/* =========================
CARDS
========================= */

.card-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;

}

.card {

  background: white;

  padding: 30px;

  border-radius: 15px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

  text-align: center;

  transition: 0.3s;

}

.card:hover {

  transform: translateY(-10px);

}

.card-icon {

  width: 60px;
  margin-bottom: 15px;

}


/* =========================
TIMELINE
========================= */

.timeline {

  max-width: 600px;
  margin: auto;

  border-left: 4px solid #F28C28;

  padding-left: 30px;

}

.event {

  margin-bottom: 40px;

  position: relative;

}

.event::before {

  content: "";

  position: absolute;

  left: -12px;
  top: 5px;

  width: 20px;
  height: 20px;

  background: #F28C28;

  border-radius: 50%;

}


/* =========================
PARTNERS
========================= */

.partners-grid {

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;

}

.partner-card {

  background: white;

  padding: 30px;

  border-radius: 15px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

  transition: 0.3s;
  text-align: center;

}

.partner-role {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-top: 8px;
}

.partner-card:hover {

  transform: translateY(-10px);

}

.partner-3dicon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  height: auto;
  margin: 0 auto 18px auto;
  animation: none;
}

.partner-3dicon img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.partner-card .partner-3dicon img[src*="make-logo"] {
  width: 110px;
  height: 110px;
}

.vertical-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(62, 111, 182, 0.12);
}


/* =========================
PROBLEM STATEMENTS
========================= */

.problem-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
}

.problem-section h2 {
  color: #fff;
}

.problem-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(242, 140, 40, 0.2);
  border-color: rgba(242, 140, 40, 0.4);
}

.problem-icon {
  font-size: 42px;
  margin-bottom: 16px;
  color: #9ACD32;
}

.problem-icon i {
  display: inline-block;
  transition: transform 0.3s;
  filter: drop-shadow(0 2px 8px rgba(154, 205, 50, 0.4));
}

.problem-card:hover .problem-icon i {
  transform: scale(1.15);
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #9ACD32;
}

.problem-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.problem-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #000308, #000000);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 7, 17, 0.4);
}

.problem-download-btn i {
  font-size: 14px;
}

.download-ppt-container {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 30px;
}

.ppt-download-btn {
  background: #9ACD32;
  font-size: 16px;
  padding: 12px 28px;
}

.ppt-download-btn:hover {
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}


/* =========================
FAQ — BLUE THEME (matching Problem Statements)
========================= */

.faq-green-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
}

.faq-green-section h2 {
  color: #fff;
}

.faq-green-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  color: #9ACD32;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  font-family: inherit;
}

.faq-question:hover {
  color: #b8e654;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: #9ACD32;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #F2C94C;
}

.faq-item.active .faq-question {
  color: #F2C94C;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}


/* =========================
ABOUT COMPANY — REDESIGNED
========================= */

.about-company-section {
  background: #ffffff;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.about-company-section h2 {
  color: #1a1a1a;
}

.about-company-section .section-sub {
  color: rgba(0, 0, 0, 0.5);
}

/* Background effects */
.about-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.about-glow.glow-1 {
  width: 500px;
  height: 500px;
  background: #9ACD32;
  top: -150px;
  right: -100px;
  animation: aboutGlowPulse 6s ease-in-out infinite;
}

.about-glow.glow-2 {
  width: 400px;
  height: 400px;
  background: #3E6FB6;
  bottom: -100px;
  left: -80px;
  animation: aboutGlowPulse 8s ease-in-out infinite reverse;
}

@keyframes aboutGlowPulse {

  0%,
  100% {
    opacity: 0.18;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.15);
  }
}

.about-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Header */
.about-header {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-novus-logo {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 18px auto;
  filter: drop-shadow(0 4px 16px rgba(62, 111, 182, 0.2));
  border-radius: 16px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(154, 205, 50, 0.12);
  border: 1px solid rgba(154, 205, 50, 0.3);
  color: #9ACD32;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-highlight {
  background: linear-gradient(135deg, #8BBF2A, #9ACD32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content layout */
.about-company-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Logo */
.about-logo-card {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.about-logo-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 18px;
}

/* Text blocks */
.about-company-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-text-block.about-square {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 28px;
  background: #f8f9fc;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-text-block.about-square:hover {
  background: #f0f2f7;
  border-color: #d0d5e0;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-text-block.about-wide {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: #f8f9fc;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-text-block.about-wide:hover {
  background: #f0f2f7;
  border-color: #d0d5e0;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-text-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8BBF2A, #9ACD32);
  border: 1px solid rgba(154, 205, 50, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-text-block:hover .about-text-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(154, 205, 50, 0.4);
}

.about-text-block h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.about-text-block p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

/* Stats row */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}

.about-stat-card {
  background: #f8f9fc;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8BBF2A, #9ACD32);
  opacity: 0;
  transition: opacity 0.3s;
}

.about-stat-card:hover {
  transform: translateY(-6px);
  border-color: #c0c8d8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-stat-card:hover::before {
  opacity: 1;
}

.about-stat-icon {
  font-size: 24px;
  color: #9ACD32;
  margin-bottom: 12px;
}

.about-stat-card .stat-number {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #8BBF2A, #9ACD32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-card .stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}


/* =========================
CONTACT
========================= */

.contact-section {
  background: linear-gradient(135deg, #f8f9fc 0%, #eef1f7 100%);
}

.contact-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

/* Left — Contact Info */
.contact-info-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid #e4e8ef;
  transition: background 0.3s, transform 0.3s;
  border-radius: 12px;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item:hover {
  background: #fff;
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8BBF2A, #9ACD32);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(154, 205, 50, 0.3);
  transition: transform 0.3s;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1);
}

.contact-info-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text p {
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  margin: 0;
}

.contact-info-text a:hover {
  color: #F28C28;
}

/* Right — Social & CTA */
.contact-social-side {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 24px;
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.contact-social-side h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-social-side>p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.social-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.social-icon-btn:hover {
  background: #9ACD32;
  border-color: #9ACD32;
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 24px rgba(242, 140, 40, 0.35);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9ACD32;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: #9ACD32;
}

.contact-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(62, 111, 182, 0.45);
}

.contact-cta i {
  transition: transform 0.3s;
}

.contact-cta:hover i {
  transform: translateX(4px);
}

/* =========================
FOOTER
========================= */

.footer {

  background: #222;
  color: #f0f0f0;

  text-align: center;

  padding: 20px 0;

}

.footer img {
  height: 100px;
  margin-bottom: 20px;
}

.footer-links {

  display: flex;
  justify-content: center;
  gap: 30px;

  flex-wrap: wrap;

  margin-bottom: 20px;

}

.footer-links a {

  color: #F2C94C;
  text-decoration: none;

}

.footer-links a:hover {
  color: #F28C28;
}


/* =====================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ===================================================== */

/* ---------- 1200px — Large tablets / small laptops ---------- */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
    padding: 0 30px;
  }

  .hero-title {
    font-size: 70px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .navbar {
    padding: 0 30px;
  }

  .about-stats-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 1024px — Tablets ---------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section h2 {
    font-size: 38px;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .partners-grid {
    gap: 30px;
  }

  /* Countdown */
  .countdown {
    gap: 8px;
    justify-content: center;
  }

  .cd-flip {
    width: 68px;
    height: 78px;
  }

  .cd-flip-top span,
  .cd-flip-bottom span {
    font-size: 36px;
    line-height: 78px;
  }

  .countdown-card label {
    font-size: 9px;
  }

  .countdown-colon {
    padding-top: 24px;
  }

  /* Problem grid 3 cols → 2 cols */
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About stats → 3 cols */
  .about-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
  }

  .about-stat-card {
    padding: 24px 16px;
  }

  .about-stat-card .stat-number {
    font-size: 26px;
  }

  /* About text grid */
  .about-text-grid {
    gap: 16px;
  }

  /* Contact — stack vertically */
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info-side,
  .contact-social-side {
    width: 100%;
  }
}

/* ---------- 900px — Mobile landscape / small tablets ---------- */
@media (max-width: 900px) {

  /* Hero layout → column */
  .hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 90px 25px 40px 25px;
  }

  .hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 48px;
    margin-bottom: 15px;
  }

  .hero-title-styled {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 18px;
    margin: 15px 0;
  }

  .hero-right {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .floating-logo {
    display: none;
  }

  /* Hide heavy orbit rings on smaller screens */
  .orbit-ring {
    opacity: 0.5;
  }

  .ring1 {
    width: 300px;
    height: 300px;
  }

  .ring2 {
    width: 420px;
    height: 420px;
  }

  .ring3 {
    width: 220px;
    height: 220px;
  }

  /* Welcome tagline — remove typing, use fade-in on mobile */
  .welcome-tagline {
    font-size: 14px;
    letter-spacing: 3px;
    width: auto;
    border-right: none;
    overflow: visible;
    animation: welcomeFadeIn 1.5s ease-out 1s both;
  }

  /* Navbar hamburger */
  .nav-right {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    width: 260px;
    padding: 25px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    gap: 20px;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
  }

  .nav-links.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #111;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Sections */
  .section {
    padding: 80px 0;
    overflow-x: hidden;
  }

  .section h2 {
    font-size: 32px;
  }

  .container {
    padding: 0 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card {
    padding: 25px;
  }

  /* Partners */
  .partners-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .partner-card {
    padding: 20px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }

  /* Countdown — keep in single row */
  .countdown {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }

  .countdown-card {
    gap: 5px;
  }

  .cd-flip {
    width: 58px;
    height: 66px;
  }

  .cd-flip-top span,
  .cd-flip-bottom span {
    font-size: 28px;
    line-height: 66px;
  }

  .countdown-card label {
    font-size: 8px;
    letter-spacing: 1px;
  }

  /* Shorten labels on mobile */
  [data-unit="mins"] label {
    font-size: 0;
  }

  [data-unit="mins"] label::after {
    content: "MINS";
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  [data-unit="secs"] label {
    font-size: 0;
  }

  [data-unit="secs"] label::after {
    content: "SECS";
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .countdown-colon {
    padding-top: 20px;
    gap: 8px;
  }

  .countdown-colon span {
    width: 4px;
    height: 4px;
  }

  /* About company */
  .about-company-content {
    flex-direction: column;
    text-align: left;
    gap: 30px;
    align-items: center;
  }

  .about-logo-card {
    width: 200px;
  }

  .about-novus-logo {
    width: 80px;
  }

  .about-text-grid {
    grid-template-columns: 1fr;
  }

  .about-text-block.about-square {
    padding: 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text-block.about-wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
  }

  .about-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px;
  }

  .about-stat-card {
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-stat-card .stat-number {
    font-size: 24px;
  }

  .about-stat-card .stat-label {
    font-size: 11px;
  }

  .about-stat-icon {
    font-size: 20px;
  }

  .about-text-block h3 {
    font-size: 15px;
  }

  .about-text-block p {
    font-size: 13px;
  }

  .about-text-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Contact — stack vertically */
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info-side,
  .contact-social-side {
    width: 100%;
  }

  /* Problem grid 2 cols */
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Logo slider responsive */
  .logo-slider-outer {
    width: 220px;
    height: 220px;
    margin: 0 auto 24px auto;
    transform: none;
  }
}

/* ---------- 768px — Mobile portrait ---------- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-title-styled {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-right {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 15px auto 0 auto;
  }

  /* Hide orbit decorations */
  .orbit-ring {
    display: none;
  }

  .floating-shape {
    display: none;
  }

  .shape-dot {
    display: none;
  }

  .blob {
    filter: blur(50px);
    opacity: 0.3;
  }

  .blob1 {
    width: 200px;
    height: 200px;
  }

  .blob2 {
    width: 180px;
    height: 180px;
  }

  .blob3 {
    width: 160px;
    height: 160px;
  }

  .blob4,
  .blob5,
  .blob6,
  .blob7 {
    display: none;
  }

  .scan-line {
    display: none;
  }

  .grid-lines {
    display: none;
  }

  .section h2 {
    font-size: 28px;
  }

  .section {
    padding: 60px 0;
  }

  .section-sub {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .container {
    padding: 0 15px;
  }

  .navbar {
    padding: 0 15px;
    height: 60px;
  }

  .logo {
    height: 50px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-sub {
    font-size: 11px;
  }

  .nav-links {
    top: 60px;
    width: 200px;
    padding: 15px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero {
    padding-top: 60px;
  }

  /* Countdown — properly sized for 768px */
  .countdown {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
  }

  .cd-flip {
    width: 54px;
    height: 62px;
    border-radius: 10px;
  }

  .cd-flip-top span,
  .cd-flip-bottom span {
    font-size: 26px;
    line-height: 62px;
  }

  .countdown-card label {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .countdown-colon {
    padding-top: 16px;
    gap: 6px;
  }

  .countdown-colon span {
    width: 4px;
    height: 4px;
  }

  /* Cards — single column */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 20px;
    margin: 0;
  }

  /* Partners */
  .partners-grid {
    gap: 20px;
  }

  .partner-card {
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
  }

  /* Problem grid → single column */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card {
    padding: 24px 20px;
  }

  .problem-icon {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .problem-card h3 {
    font-size: 17px;
  }

  .problem-card p {
    font-size: 13px;
  }

  .problem-download-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  /* About company */
  .about-company-content {
    flex-direction: column;
    text-align: left;
    gap: 30px;
    align-items: center;
  }

  .about-logo-card {
    width: 200px;
  }

  .about-novus-logo {
    width: 80px;
  }

  .about-text-grid {
    grid-template-columns: 1fr;
  }

  .about-text-block.about-square {
    padding: 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text-block.about-wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
  }

  .about-stat-card {
    padding: 18px 12px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-stat-card:last-child {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
  }

  .about-stat-card .stat-number {
    font-size: 22px;
  }

  .about-stat-card .stat-label {
    font-size: 10px;
  }

  .about-stat-icon {
    font-size: 20px;
  }

  .about-text-block h3 {
    font-size: 15px;
  }

  .about-text-block p {
    font-size: 13px;
  }

  .about-text-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Contact — stack vertically */
  .contact-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .contact-info-side,
  .contact-social-side {
    width: 100%;
  }

  .contact-social-side {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .contact-social-side h3 {
    font-size: 20px;
  }

  .contact-social-side>p {
    font-size: 14px;
  }

  .social-icon-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .contact-cta {
    padding: 12px 28px;
    font-size: 14px;
  }

  .contact-info-item {
    padding: 16px 12px;
    gap: 14px;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 12px;
  }

  .contact-info-text h3 {
    font-size: 14px;
  }

  .contact-info-text a,
  .contact-info-text p {
    font-size: 13px;
  }

  /* Welcome — no typing animation */
  .welcome-line {
    font-size: 16px;
  }

  .welcome-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    width: auto;
    border-right: none;
    overflow: visible;
    animation: welcomeFadeIn 1.5s ease-out 1s both;
  }

  /* Footer */
  .footer {
    padding: 20px 0;
  }

  .footer img {
    height: 60px;
  }

  .footer p {
    font-size: 13px;
  }

  .footer-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 14px;
  }

  /* Preloader */
  .preloader-title {
    font-size: 20px;
  }

  .preloader-tagline {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .preloader-prize-amount {
    font-size: 28px;
  }

  .preloader-prize-icon {
    font-size: 28px;
  }

  .preloader-prize-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .preloader-logo {
    width: 80px;
    height: 80px;
  }

  .preloader-logo img {
    width: 48px;
    height: 48px;
  }

  .preloader-bar-wrapper {
    width: 200px;
  }

  .prize-spark {
    width: 5px !important;
    height: 5px !important;
  }

  /* Scroller */
  .scroller-track span {
    font-size: 11px;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    padding: 14px 0;
  }

  .faq-toggle {
    font-size: 18px;
  }

  /* Timeline progress bar */
  .timeline-progress-bar {
    max-width: 90%;
  }
}

/* ---------- 480px — Small mobile ---------- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-container {
    padding: 80px 15px 30px 15px;
  }

  .section h2 {
    font-size: 24px;
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }

  .navbar {
    padding: 0 15px;
    height: 60px;
  }

  .logo {
    height: 50px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-sub {
    font-size: 11px;
  }

  .nav-links {
    top: 60px;
    width: 200px;
    padding: 15px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero {
    padding-top: 60px;
  }

  /* Countdown — properly sized for 768px */
  .countdown {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
  }

  .cd-flip {
    width: 54px;
    height: 62px;
    border-radius: 10px;
  }

  .cd-flip-top span,
  .cd-flip-bottom span {
    font-size: 26px;
    line-height: 62px;
  }

  .countdown-card label {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .countdown-colon {
    padding-top: 16px;
    gap: 6px;
  }

  .countdown-colon span {
    width: 4px;
    height: 4px;
  }

  /* Cards — single column */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 20px;
    margin: 0;
  }

  /* Partners */
  .partners-grid {
    gap: 20px;
  }

  .partner-card {
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
  }

  /* Problem grid → single column */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card {
    padding: 24px 20px;
  }

  .problem-icon {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .problem-card h3 {
    font-size: 17px;
  }

  .problem-card p {
    font-size: 13px;
  }

  .problem-download-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  /* About company */
  .about-company-content {
    flex-direction: column;
    text-align: left;
    gap: 30px;
    align-items: center;
  }

  .about-logo-card {
    width: 200px;
  }

  .about-novus-logo {
    width: 80px;
  }

  .about-text-grid {
    grid-template-columns: 1fr;
  }

  .about-text-block.about-square {
    padding: 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text-block.about-wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
  }

  .about-stat-card {
    padding: 18px 12px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-stat-card:last-child {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
  }

  .about-stat-card .stat-number {
    font-size: 22px;
  }

  .about-stat-card .stat-label {
    font-size: 10px;
  }

  .about-stat-icon {
    font-size: 20px;
  }

  .about-text-block h3 {
    font-size: 15px;
  }

  .about-text-block p {
    font-size: 13px;
  }

  .about-text-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Contact — stack vertically */
  .contact-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .contact-info-side,
  .contact-social-side {
    width: 100%;
  }

  .contact-social-side {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .contact-social-side h3 {
    font-size: 20px;
  }

  .contact-social-side>p {
    font-size: 14px;
  }

  .social-icon-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .contact-cta {
    padding: 12px 28px;
    font-size: 14px;
  }

  .contact-info-item {
    padding: 16px 12px;
    gap: 14px;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 12px;
  }

  .contact-info-text h3 {
    font-size: 14px;
  }

  .contact-info-text a,
  .contact-info-text p {
    font-size: 13px;
  }

  /* Welcome — no typing animation */
  .welcome-line {
    font-size: 16px;
  }

  .welcome-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    width: auto;
    border-right: none;
    overflow: visible;
    animation: welcomeFadeIn 1.5s ease-out 1s both;
  }

  /* Footer */
  .footer {
    padding: 20px 0;
  }

  .footer img {
    height: 60px;
  }

  .footer p {
    font-size: 13px;
  }

  .footer-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 14px;
  }

  /* Preloader */
  .preloader-title {
    font-size: 20px;
  }

  .preloader-tagline {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .preloader-prize-amount {
    font-size: 28px;
  }

  .preloader-prize-icon {
    font-size: 28px;
  }

  .preloader-prize-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .preloader-logo {
    width: 80px;
    height: 80px;
  }

  .preloader-logo img {
    width: 48px;
    height: 48px;
  }

  .preloader-bar-wrapper {
    width: 200px;
  }

  .prize-spark {
    width: 5px !important;
    height: 5px !important;
  }

  /* Scroller */
  .scroller-track span {
    font-size: 11px;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    padding: 14px 0;
  }

  .faq-toggle {
    font-size: 18px;
  }

  /* Timeline progress bar */
  .timeline-progress-bar {
    max-width: 90%;
  }
}

/* ---------- 480px — Small mobile ---------- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-container {
    padding: 80px 15px 30px 15px;
  }

  .section h2 {
    font-size: 24px;
  }

  .section-sub {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 12px;
  }

  .navbar {
    padding: 0 12px;
  }

  .logo {
    height: 50px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-sub {
    font-size: 11px;
  }

  .nav-links {
    top: 60px;
    width: 200px;
    padding: 15px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero {
    padding-top: 60px;
  }

  /* Countdown — properly sized for 768px */
  .countdown {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
  }

  .cd-flip {
    width: 54px;
    height: 62px;
    border-radius: 10px;
  }

  .cd-flip-top span,
  .cd-flip-bottom span {
    font-size: 26px;
    line-height: 62px;
  }

  .countdown-card label {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .countdown-colon {
    padding-top: 16px;
    gap: 6px;
  }

  .countdown-colon span {
    width: 4px;
    height: 4px;
  }

  /* Cards — single column */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 20px;
    margin: 0;
  }

  /* Partners */
  .partners-grid {
    gap: 20px;
  }

  .partner-card {
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
  }

  /* Problem grid → single column */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card {
    padding: 24px 20px;
  }

  .problem-icon {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .problem-card h3 {
    font-size: 17px;
  }

  .problem-card p {
    font-size: 13px;
  }

  .problem-download-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  /* About company */
  .about-company-content {
    flex-direction: column;
    text-align: left;
    gap: 30px;
    align-items: center;
  }

  .about-logo-card {
    width: 200px;
  }

  .about-novus-logo {
    width: 80px;
  }

  .about-text-grid {
    grid-template-columns: 1fr;
  }

  .about-text-block.about-square {
    padding: 22px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text-block.about-wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
  }

  .about-stat-card {
    padding: 18px 12px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-stat-card:last-child {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
  }

  .about-stat-card .stat-number {
    font-size: 22px;
  }

  .about-stat-card .stat-label {
    font-size: 10px;
  }

  .about-stat-icon {
    font-size: 20px;
  }

  .about-text-block h3 {
    font-size: 15px;
  }

  .about-text-block p {
    font-size: 13px;
  }

  .about-text-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* Contact — stack vertically */
  .contact-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .contact-info-side,
  .contact-social-side {
    width: 100%;
  }

  .contact-social-side {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .contact-social-side h3 {
    font-size: 20px;
  }

  .contact-social-side>p {
    font-size: 14px;
  }

  .social-icon-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .contact-cta {
    padding: 12px 28px;
    font-size: 14px;
  }

  .contact-info-item {
    padding: 16px 12px;
    gap: 14px;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-radius: 12px;
  }

  .contact-info-text h3 {
    font-size: 14px;
  }

  .contact-info-text a,
  .contact-info-text p {
    font-size: 13px;
  }

  /* Welcome — no typing animation */
  .welcome-line {
    font-size: 16px;
  }

  .welcome-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    width: auto;
    border-right: none;
    overflow: visible;
    animation: welcomeFadeIn 1.5s ease-out 1s both;
  }

  /* Footer */
  .footer {
    padding: 20px 0;
  }

  .footer img {
    height: 60px;
  }

  .footer p {
    font-size: 13px;
  }

  .footer-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links a {
    font-size: 14px;
  }

  /* Preloader */
  .preloader-title {
    font-size: 20px;
  }

  .preloader-tagline {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .preloader-prize-amount {
    font-size: 28px;
  }

  .preloader-prize-icon {
    font-size: 28px;
  }

  .preloader-prize-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .preloader-logo {
    width: 80px;
    height: 80px;
  }

  .preloader-logo img {
    width: 48px;
    height: 48px;
  }

  .preloader-bar-wrapper {
    width: 200px;
  }

  .prize-spark {
    width: 5px !important;
    height: 5px !important;
  }

  /* Scroller */
  .scroller-track span {
    font-size: 11px;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    padding: 14px 0;
  }

  .faq-toggle {
    font-size: 18px;
  }

  /* Timeline progress bar */
  .timeline-progress-bar {
    max-width: 90%;
  }
}

/* ---------- 360px — Extra small mobile ---------- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-title-styled {
    gap: 4px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .section h2 {
    font-size: 20px;
  }

  .section-sub {
    font-size: 12px;
  }

  .hero-right {
    max-width: 160px;
  }

  .cd-flip {
    width: 44px;
    height: 52px;
  }

  .cd-flip-top span,
  .cd-flip-bottom span {
    font-size: 20px;
    line-height: 52px;
  }

  .countdown-card label {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .countdown {
    gap: 3px;
    flex-wrap: nowrap;
  }

  .countdown-colon {
    padding-top: 14px;
    gap: 5px;
  }

  .countdown-colon span {
    width: 3px;
    height: 3px;
  }

  .nav-links {
    width: 160px;
    top: 56px;
  }

  .navbar {
    height: 56px;
  }

  .hero {
    padding-top: 56px;
  }

  .logo {
    height: 42px;
  }

  .logo-title {
    font-size: 13px;
  }

  .container {
    padding: 0 8px;
  }

  .section {
    padding: 50px 0;
  }

  /* Cards and content */
  .card {
    padding: 14px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }

  .card-3dicon {
    width: 44px;
    height: 44px;
  }

  .card-3dicon i {
    font-size: 20px;
  }

  /* About stats — single column */
  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-stat-card {
    padding: 14px 10px;
  }

  .about-stat-card .stat-number {
    font-size: 18px;
  }

  /* Problem cards */
  .problem-card {
    padding: 18px 14px;
  }

  .problem-card h3 {
    font-size: 15px;
  }

  .problem-download-btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  /* Preloader */
  .preloader-title {
    font-size: 18px;
  }

  .preloader-prize-amount {
    font-size: 24px;
  }

  .preloader-prize-icon {
    font-size: 24px;
  }

  .preloader-logo {
    width: 70px;
    height: 70px;
  }

  .preloader-logo img {
    width: 42px;
    height: 42px;
  }

  .preloader-bar-wrapper {
    width: 180px;
  }

  /* Contact */
  .contact-social-side {
    padding: 22px 14px;
  }

  .social-icon-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-cta {
    padding: 10px 22px;
    font-size: 13px;
  }

  /* Welcome — no typing animation */
  .welcome-line {
    font-size: 14px;
  }

  .welcome-tagline {
    font-size: 11px;
    width: auto;
    border-right: none;
    overflow: visible;
    animation: welcomeFadeIn 1.5s ease-out 1s both;
  }

  /* FAQ */
  .faq-question {
    font-size: 13px;
  }
}

/* =========================================
   OVERRIDING MOBILE RESPONSIVENESS FIXES
   ========================================= */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
  }

  * {
    box-sizing: border-box;
  }

  /* Hero Scroller Overflow Fix */
  .hero-scroller,
  .scroller-track {
    max-width: 100vw !important;
  }

  /* Mobile Navigation Menu Fixes */
  .nav-links {
    width: 280px !important;
    max-width: 85vw;
    padding: 25px 20px !important;
    right: 0 !important;
    transform: translateX(100%) !important;
    align-items: center;
  }

  .nav-links.active {
    transform: translateX(0) !important;
  }

  .nav-links .cta {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    padding: 12px 20px;
    font-size: 16px;
  }

  /* Typography Fixes */
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
    max-width: 100%;
  }

  .hero-title span {
    display: inline-block;
  }

  .hero-subtitle {
    font-size: 1.1rem !important;
  }

  .countdown {
    transform: scale(0.9);
    transform-origin: center top;
    width: 100%;
    justify-content: center !important;
    margin-left: 0;
    flex-wrap: nowrap !important;
  }

  .tl-vertical::before,
  .tl-vertical::after {
    left: 20px !important;
  }

  .tl-item.tl-left,
  .tl-item.tl-right {
    padding-left: 60px !important;
    padding-right: 15px !important;
    width: 100%;
    box-sizing: border-box;
  }

  .tl-item.tl-left .tl-node,
  .tl-item.tl-right .tl-node {
    left: 20px !important;
    transform: translateX(-50%) !important;
  }

  .tl-card {
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
  }

  .card-grid,
  .partners-grid,
  .problem-grid,
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
    max-width: 100vw;
  }

  .card,
  .partner-card,
  .problem-card {
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .hero-welcome {
    margin-bottom: 40px;
    max-width: 100%;
    padding-top: 20px;
  }

  .welcome-tagline {
    border-right: none !important;
    white-space: normal !important;
    width: 100% !important;
    animation: none !important;
  }

  /* Fix overlapping sticky navbar */
  .hero-container {
    padding-top: 130px !important;
  }

  /* Fix duplicate MINUTESMINS / SECONDSSECS */
  .countdown-card label {
    font-size: 10px !important;
  }

  [data-unit="mins"] label {
    font-size: 0 !important;
  }

  [data-unit="mins"] label::after {
    content: "MINS";
    font-size: 10px;
  }

  [data-unit="secs"] label {
    font-size: 0 !important;
  }

  [data-unit="secs"] label::after {
    content: "SECS";
    font-size: 10px;
  }

  /* Center flip digits and correct column gap */
  .cd-flip-top span,
  .cd-flip-bottom span {
    left: 0 !important;
  }

  .countdown {
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem !important;
  }

  .countdown {
    transform: scale(0.85);
    gap: 6px !important;
  }

  .nav-links {
    width: 250px !important;
  }

  .countdown-card label {
    font-size: 8px !important;
  }

  [data-unit="mins"] label::after {
    font-size: 8px !important;
  }

  [data-unit="secs"] label::after {
    font-size: 8px !important;
  }
}