:root {
  --primary: #c5a059;
  /* Gold accent */
  --secondary: #e0e0e0;
  /* Light background */

  /* Logo Inspired Colors */
  --logo-blue: #213363;
  --logo-green: #6eb544;
  --logo-red: #e84545;
  --logo-gold: #f9b233;

  --bg-dark: #ffffff;
  --text-light: #1a1a1a;
  --text-muted: #333333;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --font-main: "Inter", sans-serif;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 20px rgba(197, 160, 89, 0.3);

  /* Background Effect Colors */
  --effect-1: rgba(33, 51, 99, 0.05);
  --effect-2: rgba(110, 181, 68, 0.05);
  --effect-3: rgba(232, 69, 69, 0.05);
}

@keyframes mesh-pulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2) translate(5%, 5%);
    opacity: 0.8;
  }

  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) perspective(1000px) rotateY(-10deg);
  }

  50% {
    transform: translateY(-20px) perspective(1000px) rotateY(-5deg);
  }

  100% {
    transform: translateY(0px) perspective(1000px) rotateY(-10deg);
  }
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
  position: relative;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, var(--effect-1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, var(--effect-2) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, var(--effect-3) 0%, transparent 50%),
    radial-gradient(circle at 80% 10%,
      rgba(249, 178, 51, 0.05) 0%,
      transparent 30%);
  z-index: -1;
  animation: mesh-pulse 20s ease-in-out infinite alternate;
}

/* Navigation */
.navbar-floating {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar-floating.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.nav-link {
  display: inline-block;
  padding: 0;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: #000;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 992px) {
  .navbar-floating {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 1rem 1.5rem;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }
}

.mobile-menu-btn {
  display: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg,
      var(--logo-blue) 0%,
      var(--logo-green) 50%,
      var(--logo-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.15;
}

section:nth-of-type(odd)::after {
  background: var(--logo-blue);
  top: -10%;
  right: -10%;
}

section:nth-of-type(even)::after {
  background: var(--logo-green);
  bottom: -10%;
  left: -10%;
}

section#problem::after {
  background: var(--logo-red);
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

/* Glassmorphism */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .glass-panel {
    padding: 2rem 1.5rem;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding: 140px 0 60px;
  background-image:
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-block {
  text-align: left;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.2rem;
  background: rgba(33, 51, 99, 0.05);
  border: 1px solid rgba(33, 51, 99, 0.1);
  border-radius: 50px;
  color: var(--logo-blue);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--logo-green);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--logo-green);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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

@keyframes mesh-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-main-title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--logo-blue);
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
}

.hero-main-title .text-accent {
  color: var(--primary);
  display: block;
  font-size: 1.5rem;
  /* Increased from 1rem */
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 550px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.proof-text {
  display: flex;
  flex-direction: column;
}

.proof-text strong {
  font-size: 1rem;
  color: var(--logo-blue);
}

.proof-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual-block {
  position: relative;
  z-index: 2;
}

.visual-container {
  position: relative;
  border-radius: 40px;
  padding: 20px;
  background: radial-gradient(circle at center,
      rgba(197, 160, 89, 0.1) 0%,
      transparent 70%);
}

.main-visual {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 80px -20px rgba(33, 51, 99, 0.3);
  animation: float-slow 10s ease-in-out infinite;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--glass-border);
  z-index: 3;
}

.stat-1 {
  top: 10%;
  right: -20px;
  animation: float-stat-1 8s infinite alternate;
}

.stat-2 {
  bottom: 10%;
  left: -40px;
  animation: float-stat-2 12s infinite alternate;
}

.floating-stat i {
  width: 40px;
  height: 40px;
  background: rgba(110, 181, 68, 0.1);
  color: var(--logo-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--logo-blue);
}

.floating-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.scroll-jump {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-jump:hover {
  transform: translateX(-50%) translateY(-5px);
  background: var(--logo-blue);
  color: #fff;
}

@keyframes float-stat-1 {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-15px);
  }
}

@keyframes float-stat-2 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(15px);
  }
}

@media (max-width: 1200px) {
  .hero-grid {
    gap: 2rem;
  }

  .hero-main-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text-block {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-main-title {
    font-size: 3rem;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-visual-block {
    order: 2;
    margin-top: 3rem;
  }

  .floating-stat {
    display: none;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle,
      rgba(33, 51, 99, 0.08) 0%,
      transparent 70%);
  filter: blur(80px);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle,
      rgba(110, 181, 68, 0.05) 0%,
      transparent 70%);
  filter: blur(100px);
  z-index: 1;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--logo-blue);
  opacity: 0.6;
  z-index: 10;
  animation: fade-up 1s ease-out 1s forwards;
  opacity: 0;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--logo-blue);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--logo-blue);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-scroll 2s ease-in-out infinite;
}

@keyframes wheel-scroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: rgba(33, 51, 99, 0.05);
  border: 1px solid rgba(33, 51, 99, 0.2);
  border-radius: 100px;
  color: var(--logo-blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
  backdrop-filter: blur(10px);
}

.hero-badge:hover {
  background: rgba(197, 160, 89, 0.15);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
  transform: translateY(-2px);
}

.hero-badge i {
  margin-right: 8px;
  font-size: 0.7rem;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-headline {
  font-size: 3.8rem;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: var(--logo-blue);
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .accent-text {
  color: var(--primary);
  display: inline-block;
}

.hero-headline .highlight-text {
  background: linear-gradient(135deg,
      var(--logo-blue) 0%,
      var(--logo-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  /* Increased gap */
  width: 100%;
  max-width: 800px;
  /* Increased width */
  margin: 0 auto;
  /* Center it */
}

.hero-feature-pill {
  display: flex;
  flex-direction: row;
  /* Horizontal layout looks cleaner here */
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 24px;
  color: var(--logo-blue);
  font-size: 1.1rem;
  font-weight: 600;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(197, 160, 89, 0.05);
  animation: fade-up 1s ease-out 0.6s forwards;
  opacity: 0;
}

.hero-feature-pill i {
  font-size: 1.8rem;
  color: var(--logo-green);
  transition: transform 0.3s ease;
}

.hero-feature-pill:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--logo-green);
  box-shadow: 0 20px 50px rgba(110, 181, 68, 0.15);
  background: #fff;
}

.hero-feature-pill:hover i {
  transform: rotate(10deg) scale(1.2);
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .hero-btn-group {
    width: 100%;
    gap: 1.5rem;
  }

  .btn-primary {
    width: 100%;
    padding: 1.2rem 2rem;
  }

  .hero-trust-badge {
    padding: 0.4rem 0.8rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-feature-pill {
    padding: 1.2rem;
    gap: 1rem;
    font-size: 1rem;
  }
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1.1rem;
  border: none;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--logo-blue),
      var(--logo-green),
      var(--logo-gold),
      var(--logo-red));
  background-size: 300% 300%;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: gradient-shift 10s ease infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #e6c88b 100%);
  z-index: -1;
  transition: opacity 0.5s;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 40px rgba(33, 51, 99, 0.3);
  filter: brightness(1.1);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: #1a1a1a;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-15px);
}

.card:hover::before {
  height: 100%;
}

.card h3,
.card h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Form Styling (Admin) */
input,
textarea,
select {
  font-family: var(--font-main);
  width: 100%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.05);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.03);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  /* Slightly larger arrow */
  width: 100%;
  padding: 1.2rem;
  padding-right: 3rem;
  color: #1a1a1a;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

option {
  background-color: #fff !important;
  color: #1a1a1a !important;
}

/* Success Banner */
.success-banner {
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Roadmap/Process Styles */
#process {
  background: #f9f9f9;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 5rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.roadmap-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.roadmap-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--logo-blue);
  opacity: 0.25;
  font-family: "Outfit";
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--logo-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

/* Qualification Styles */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.qualify-card {
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.qualify-card.positive {
  background: rgba(0, 255, 136, 0.03);
  border-color: rgba(0, 255, 136, 0.1);
}

.qualify-card.negative {
  background: rgba(255, 77, 77, 0.03);
  border-color: rgba(255, 77, 77, 0.1);
}

.qualify-list {
  list-style: none;
  margin-top: 2rem;
}

.qualify-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.qualify-item i {
  margin-top: 5px;
}

.qualify-card.positive i {
  color: #00ff88;
}

.qualify-card.negative i {
  color: #ff4d4d;
}

/* Responsive Overrides */
@media (max-width: 992px) {

  .roadmap-grid,
  .qualify-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-floating {
    padding: 0.5rem 1rem;
    width: 100%;
    top: 0;
    border-radius: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}

.pain-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pain-points-grid {
    grid-template-columns: 1fr;
  }
}

.pain-point-card {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.pain-point-card:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.pain-point-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(33, 51, 99, 0.05);
  color: var(--logo-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

.pain-point-icon-box i {
  color: var(--primary);
  font-size: 1.8rem;
  transition: var(--transition);
}

.pain-point-card:hover .pain-point-icon-box {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.pain-point-card:hover .pain-point-icon-box i {
  color: #fff;
}

.pain-point-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
  font-weight: 700;
}

.pain-point-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Why Section Redesign */
.why-hero-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.mission-statement-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  padding: 3rem 4rem;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(197, 160, 89, 0.05) 100%);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.mission-statement-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.mission-text-small {
  font-size: 1.1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.mission-text-large {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.mission-text-large strong {
  color: var(--primary);
  display: block;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.faq-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(197, 160, 89, 0.3);
}

.faq-item.active {
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--primary);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* Lead Form Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(15px);
  z-index: 99999;
  /* Highest possible to stay above success banner */
  display: none;
  /* Controlled by JS and .active class */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 15px;
}

.modal-overlay.active {
  display: block;
  /* Switch to block for natural scrolling */
  opacity: 1;
  visibility: visible;
}

/* Prevent body scrolling when modal is open */
body.modal-open {
  height: 100vh;
  overflow: hidden;
}

.modal-content {
  background: #071533;
  border: 1px solid var(--primary);
  padding: 3rem;
  border-radius: 24px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 50px;
  /* Centered with bottom margin */
  position: relative;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 1),
    0 0 50px rgba(197, 160, 89, 0.15);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 2rem 1rem;
    border-radius: 15px;
  }
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

/* Enhanced Modal UI */
.modal-header-premium {
  text-align: center;
  margin-bottom: 3rem;
}

.consulting-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.framework-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.framework-card:hover {
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.framework-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.framework-card h5 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin: 0;
  color: #fff;
}

.consulting-details-section {
  background: rgba(197, 160, 89, 0.03);
  border-left: 3px solid var(--primary);
  padding: 2rem;
  border-radius: 0 15px 15px 0;
  margin-bottom: 3rem;
}

.consulting-details-section h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.covers-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .covers-list {
    grid-template-columns: 1fr;
  }
}

.covers-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.covers-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.limited-slots-warning {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .consulting-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #fff;
}

.lead-form h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #000;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #000;
  font-family: var(--font-main);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
  background: rgba(0, 0, 0, 0.08);
}

/* Roadmap / Process Section */
.roadmap-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
}

/* Connecting line (desktop only) */
.roadmap-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
  z-index: 0;
}

@media (max-width: 900px) {
  .roadmap-grid::before {
    display: none;
  }

  .roadmap-grid {
    gap: 4rem;
  }
}

.roadmap-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.roadmap-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(197, 160, 89, 0.15);
}

.step-marker {
  width: 100px;
  /* Space for the line to pass behind */
  height: 40px;
  margin-bottom: 2rem;
  background: #ffffff;
  /* Hide line behind icon area */
  display: flex;
  align-items: center;
}

.step-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(33, 51, 99, 0.25);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}

.roadmap-card h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 1rem;
}

.roadmap-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(33, 51, 99, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--logo-blue);
  transition: all 0.3s ease;
  font-size: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.roadmap-card:hover .step-icon {
  background: var(--logo-blue);
  color: #fff;
}

/* Qualification Section */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .qualify-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.qualify-card {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 3.5rem;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.qualify-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qualify-card.positive {
  background: linear-gradient(180deg,
      rgba(74, 222, 128, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border-top: 4px solid #4ade80;
}

.qualify-card.positive h3 {
  color: #4ade80;
}

.qualify-card.negative {
  background: linear-gradient(180deg,
      rgba(255, 77, 77, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border-top: 4px solid #ff4d4d;
}

.qualify-card.negative h3 {
  color: #ff4d4d;
}

.qualify-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualify-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.5;
  padding: 1rem;
  border-radius: 12px;
  transition: background 0.3s ease;
  color: #1a1a1a;
  font-weight: 500;
}

.qualify-item:hover {
  background: rgba(0, 0, 0, 0.03);
  color: #000;
}

.qualify-item i {
  margin-top: 4px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.qualify-card.positive .qualify-item i {
  color: #4ade80;
}

.qualify-card.negative .qualify-item i {
  color: #ff4d4d;
}

/* Responsive Tweaks */
@media (max-width: 992px) {

  .roadmap-grid,
  .qualify-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-floating {
    padding: 0.5rem 1rem;
    width: 100%;
    top: 0;
    border-radius: 0;
  }

  .hero {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  /* Heading Corrections for Mobile */
  h2,
  .why-hero-header h2,
  #problem h2,
  .roadmap-header h2 {
    font-size: 2rem !important;
    word-wrap: break-word;
  }

  #problem p {
    font-size: 1.2rem !important;
  }

  #problem p {
    font-size: 1.2rem !important;
  }

  .mission-text-large {
    font-size: 2rem;
  }

  /* Founder Section Mobile */
  #founder .glass-panel {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  #founder .hero-badge {
    margin: 0 auto 1.5rem;
  }

  #founder .founder-content div[style*="display: flex"] {
    justify-content: center;
  }

  .mission-statement-box {
    padding: 2rem 1.5rem;
  }

  .qualify-card,
  .pain-point-card,
  .roadmap-card {
    padding: 2rem;
  }
}

/* Modal Styles - Critical Fix */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  width: 90%;
  max-width: 600px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--primary);
}

body.modal-open {
  overflow: hidden;
}

/* Modal Form Styles */
.modal-header-premium {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 2rem;
}

.consulting-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.framework-card {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

.framework-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.framework-card h5 {
  font-size: 0.8rem;
  margin: 0;
  color: #000;
  letter-spacing: 1px;
}

.details-column h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.covers-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.covers-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: #333;
}

.covers-list li strong {
  color: #000;
}

.limited-slots-warning {
  background: rgba(255, 152, 0, 0.05);
  /* Lighter background */
  border: 1px solid rgba(255, 152, 0, 0.2);
  color: #d87c00;
  /* Darker orange text */
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  /* Better touch target */
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: #000;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.05);
}

.form-section-title {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 2rem 0 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.5rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.radio-option:hover {
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--primary);
}

/* Instagram Feed Grid */
.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.insta-feed-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.insta-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(33, 51, 99, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: all 0.4s ease;
  color: #fff;
}

.insta-overlay i {
  font-size: 2rem;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.insta-overlay span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.insta-feed-item:hover img {
  transform: scale(1.1);
}

.insta-feed-item:hover .insta-overlay {
  opacity: 1;
}

.insta-feed-item:hover .insta-overlay i,
.insta-feed-item:hover .insta-overlay span {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .insta-feed-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Section Styles */
.cta-box {
  padding: 5rem 3rem;
  border: 2px solid var(--primary) !important;
  position: relative;
  margin-top: 3rem;
}

.time-sensitive-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  padding: 5px 20px;
  color: var(--primary);
  font-weight: 800;
  border: 1px solid var(--primary);
  border-radius: 5px;
}

.cta-box-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.cta-btn {
  font-size: 1.3rem;
  padding: 1.5rem 4rem;
  border-radius: 15px;
}

.cta-urgency {
  margin-top: 3rem;
  color: #ff4d4d;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  #book h2 {
    font-size: 2.5rem !important;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .cta-box-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .cta-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }

  .cta-urgency {
    font-size: 1rem;
    margin-top: 2rem;
  }
}

/* Global Mobile Responsiveness Fixes */
@media (max-width: 576px) {
  .hero-section .btn-lg {
    width: 100%;
    margin-bottom: 10px;
  }

  .d-flex.gap-3.justify-content-center {
    flex-direction: column !important;
  }

  .display-3 {
    font-size: 2.5rem !important;
  }

  .section-padding {
    padding: 4rem 0 !important;
  }
}

[id] {
  scroll-margin-top: 100px;
}
/* Golden Yellow Text for Results Box */
.results-golden {
    color: #FFD700 !important;
}

.results-golden h5,
.results-golden h2,
.results-golden p {
    color: #FFD700 !important;
}

.results-golden .opacity-75 {
    opacity: 0.9 !important;
}

.results-golden .opacity-50 {
    opacity: 0.7 !important;
}

/* Override Bootstrap text-white for golden text */
.results-golden h5.fw-bold,
.results-golden h2.display-4,
.results-golden h2.display-4.fw-bold,
.results-golden p.small {
    color: #FFD700 !important;
}

.results-golden .opacity-75 {
    color: rgba(255, 215, 0, 0.9) !important;
}

.results-golden .opacity-50 {
    color: rgba(255, 215, 0, 0.7) !important;
}
