:root {
  --body-bg-color: #26201e;
  --body-text-color: #ffffff;
  --heading-color: #d4d4d4;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #26201e;
  --link-color: #f9dd64;
  --header-bg-color: #26201e;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  /* background-color: var(--body-bg-color); */
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0 2px,
      rgba(0, 0, 0, 0.05) 2px 4px
    ),
    linear-gradient(135deg, #26201e, #1e1a18, #34312f);
  background-attachment: fixed;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.navbar {
  background-color: var(--header-bg-color) !important;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.hero-section {
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 -60px 60px -40px rgba(0, 0, 0, 0.6) inset,
    /* top shadow */ 0 60px 60px -40px rgba(0, 0, 0, 0.6) inset; /* bottom shadow */
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      90deg,
      #ff6a008c,
      rgba(186, 197, 218, 0.56),
      #ff6a008c
    )
    1;
}
.quick-links {
  background: #1d1917;
  padding: 20px 22px;
  border-radius: 12px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6), 0 8px 18px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 279px;
  margin-bottom: 15px;
}

.quick-links h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #ff6a00; /* rally orange accent */
  padding-left: 10px;
}

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

.sidebar-page-list li {
  position: relative;
  padding-left: 21px;
  margin: 11px 0;
}

.sidebar-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='%23ff6a00' viewBox='0 0 24 24'><path d='M5 11l1-3c.2-.6.7-1 1.3-1h9.4c.6 0 1.1.4 1.3 1l1 3H5zm15 1v5h-2v-2H6v2H4v-5c0-.6.4-1 1-1h14c.6 0 1 .4 1 1zM7 16c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1zm10 0c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
}
.sidebar-page-list a {
  display: block;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

/* Hover effect — modern neon speed glow */
.sidebar-page-list a:hover {
  background: rgba(255, 106, 0, 0.15);
  transform: translateX(4px);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.4);
  color: #fff;
}

/* Active page indicator (optional) */
.sidebar-page-list a.active {
  background: rgba(255, 106, 0, 0.25);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.4);
  transform: translateX(4px);
}
.site-footer {
  background: radial-gradient(
      circle at top left,
      rgba(255, 106, 0, 0.1),
      transparent 55%
    ),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.7), transparent 60%),
    #26201e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 20px 22px;
  color: #f0f0f0;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr) minmax(0, 1.5fr) minmax(
      0,
      2fr
    );
  gap: 32px;
}

.footer-column h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-brand .footer-tagline {
  margin-top: 10px;
  max-width: 320px;
  color: #c4c4c4;
  font-size: 0.9rem;
}

/* Links list */
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-link {
  color: #d7d7d7;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a::before,
.footer-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6a00, #ffb347);
  transition: width 0.2s ease;
}

.footer-links a:hover,
.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-links a:hover::before,
.footer-link:hover::before {
  width: 100%;
}

/* Support / Social */
.footer-support p {
  margin: 6px 0;
}

.footer-support span {
  color: #ffb347;
  text-decoration: none;
}

.footer-support span:hover {
  color: #ffffff;
}

/* Social circles */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.6);
  color: #ffb347;
  font-size: 1.1rem; /* icon size */
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    color 0.2s ease;
}

.social-circle:hover {
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  color: #141010;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.6);
}

/* Newsletter */
.footer-newsletter p {
  margin-bottom: 12px;
  color: #d0d0d0;
}

.newsletter-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
@media (max-width: 1300px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter-form input[type="email"]::placeholder {
  color: #8c8c8c;
}

.newsletter-form input[type="email"]:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.6);
  background: rgba(0, 0, 0, 0.65);
}

.newsletter-form button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  color: #141010;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.7);
  filter: brightness(1.05);
}

.newsletter-form button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Bottom line */
.footer-bottom {
  max-width: 1200px;
  margin: 26px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.8rem;
  color: #a0a0a0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .footer-brand {
    text-align: center;
  }

  .footer-brand .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    text-align: center;
  }

  .social-circle {
    width: 36px;
    height: 36px;
  }
}
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: radial-gradient(
      circle at 10% 0%,
      rgba(255, 106, 0, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at 90% 100%,
      rgba(0, 255, 208, 0.12),
      transparent 55%
    ),
    linear-gradient(135deg, #26201e 0%, #171210 100%);
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

/* subtle diagonal “speed lines” */
.error-404::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0 2px,
    transparent 2px 10px
  );
  opacity: 0.25;
  pointer-events: none;
}

.error-404-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  z-index: 1;
}

.error-404-content {
  text-align: center;
}

/* small label */
.error-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #ffb347;
}

/* big 404 */
.error-code {
  font-size: clamp(5rem, 12vw, 7rem);
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 106, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.9);
}

/* slight “glitchy” offset on middle 0 */
.error-code span {
  position: relative;
}

.error-code span::before,
.error-code span::after {
  content: "0";
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.error-code span::before {
  transform: translate(-3px, 1px);
  color: #ff6a00;
}

.error-code span::after {
  transform: translate(3px, -1px);
  color: #00ffd0;
}

.error-title {
  margin-top: 8px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.error-text {
  margin: 18px auto 26px;
  max-width: 520px;
  color: #d2d2d2;
  font-size: 0.98rem;
}

/* buttons */
.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-primary-404,
.btn-ghost-404 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

/* main CTA */
.btn-primary-404 {
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  color: #141010;
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.7);
}

.btn-primary-404:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(255, 106, 0, 0.9);
}

/* secondary CTA */
.btn-ghost-404 {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #f5f5f5;
}

.btn-ghost-404:hover {
  border-color: #ff6a00;
  color: #ffb347;
  background: rgba(0, 0, 0, 0.4);
}

/* responsiveness */
@media (max-width: 600px) {
  .error-text {
    font-size: 0.92rem;
  }

  .btn-primary-404,
  .btn-ghost-404 {
    width: 100%;
  }
}
/* Section container */
.header {
  position: relative;
  animation: fadeInUp 0.8s ease both;
}

/* Section title */
.header h2 {
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  position: relative;
  padding-left: 16px;
}

.header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: linear-gradient(180deg, #ff6a00, #ffb347);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
}

/* Paragraphs */
.header p {
  color: #d3d3d3;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
  position: relative;
}
.header ul li {
  color: #d3d3d3;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 14px;
  position: relative;
}

/* Soft fade-in for paragraphs */
.header p {
  animation: fadeIn 0.8s ease both;
}

.header p:nth-of-type(1) {
  animation-delay: 0.15s;
}
.header p:nth-of-type(2) {
  animation-delay: 0.3s;
}
.header p:nth-of-type(3) {
  animation-delay: 0.45s;
}
.header p:nth-of-type(4) {
  animation-delay: 0.6s;
}

/* Optional subtle divider under the whole section */
.header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(
    90deg,
    #ff6a008c,
    rgba(255, 106, 0, 0.15),
    transparent
  );
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Optional spacing tweak for mobile */
@media (max-width: 600px) {
  .header h2 {
    font-size: 1.8rem;
  }
  .header p {
    font-size: 1rem;
  }
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  position: relative;
}

.heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #f9dd64;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Rally-inspired underline stripe */
.heading h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  background: #f9dd64;
  margin: 0.6rem auto 0;
  border-radius: 4px;
}

.heading p {
  color: #cccccc;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------------------------
   CONTENT BOXES
----------------------------*/
.box {
  background: #161616;
  border-left: 4px solid #f9dd64;
  padding: 1.3rem 19px;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Subtle diagonal rally stripes background */
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    -40deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 10px,
    transparent 10px,
    transparent 20px
  );
  pointer-events: none;
}

.box h3 {
  color: #f9dd64;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}

.box p {
  color: #cdcdcd;
  line-height: 1.6;
}
.box ul li {
  color: #cdcdcd;
  line-height: 1.6;
}

/* Hover effect */
.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
}
/* ---------------------------
   TIMELINE CONTAINER
----------------------------*/
.timeline {
  position: relative;
  padding-left: 30px;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 37px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #333;
  border-radius: 4px;
}

/* Counter Setup */
.timeline {
  counter-reset: rally-step;
}

/* Each Step Title */
.timeline h3 {
  counter-increment: rally-step;
  position: relative;
  padding-left: 30px;
  margin-top: 2.5rem;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f9dd64;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Step Number (the circular badge) */
.timeline h3::before {
  content: counter(rally-step);
  position: absolute;
  left: -38px;
  top: 0;
  width: 40px;
  height: 40px;
  background: #0d0d0d;
  border: 3px solid #f9dd64;
  color: #f9dd64;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Rally glow */
  box-shadow: 0 0 12px rgba(249, 221, 100, 0.6);
}

/* Paragraph Style */
.timeline p {
  margin-left: 30px;
  color: #cccccc;
  line-height: 1.65;
}
.timeline ul li {
  margin-left: 30px;
  color: #cccccc;
  line-height: 1.65;
}

/* Hover Effect - Rally Neon Pulse */
.timeline h3:hover::before {
  box-shadow: 0 0 20px rgba(249, 221, 100, 0.9),
    0 0 30px rgba(249, 221, 100, 0.6);
  transform: scale(1.05);
  transition: 0.25s ease;
}

.cust-bg {
  background: #0e0e0e; /* Deep rally-dark */
  border-radius: 12px;
  padding: 1.5rem 19px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.55);
}

/* Subtle diagonal rally light streaks */
.cust-bg::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(
    circle at top left,
    rgba(249, 221, 100, 0.07),
    transparent 60%
  );
  transform: rotate(-15deg);
  pointer-events: none;
}

/* Another faint layer for realism */
.cust-bg::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 150%;
  height: 150%;
  background: linear-gradient(
    135deg,
    rgba(249, 221, 100, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Titles */
.cust-bg h2 {
  color: #f9dd64;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.9rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  position: relative;
  letter-spacing: 1px;
}

/* Small underline stripe under H2 (rally style) */
.cust-bg h2::after {
  content: "";
  display: block;
  width: 75px;
  height: 4px;
  margin-top: 0.5rem;
  background: #f9dd64;
  border-radius: 4px;
}

/* Paragraphs */
.cust-bg p {
  color: #cccccc;
  line-height: 1.7;
  font-size: 1.06rem;
  margin-bottom: 1.2rem;
  max-width: 850px;
}

/* Slight hover lighting when mouse enters section */
.cust-bg:hover {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
  transition: 0.3s ease;
}
.box-first,
.box-second {
  background-color: #242424de;
  padding: 17px 15px;
}
.box-second {
  background-color: #121212de;
}
@media (min-width: 767px) {
  .box-first {
    border-top-left-radius: 21px;
    border-bottom-left-radius: 21px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
  .box-second {
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 767px) {
  .box-first {
    border-radius: 21px 21px 0 0;
  }
  .box-second {
    border-radius: 0 0 21px 21px;
  }
}
.white-img {
  filter: brightness(0) invert(1);
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.cust-box {
  background: #343434;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 21px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
}
