/* ============================================================
   FIRSTLINCOLN — Interactive Data Science Banner
   ============================================================ */

/* ---- Container ---- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ---- Animated Gradient Background ---- */
.hero-banner__gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #0a0e1a 0%,
    #0d1b2a 30%,
    #1b2838 60%,
    #0a0e1a 100%
  );
}

.hero-banner__gradient::before,
.hero-banner__gradient::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: gradientFloat 12s ease-in-out infinite alternate;
}

.hero-banner__gradient::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 35, 19, 0.35), transparent 70%);
  top: -10%;
  right: 10%;
}

.hero-banner__gradient::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 122, 255, 0.3), transparent 70%);
  bottom: -10%;
  left: 5%;
  animation-delay: -6s;
}

@keyframes gradientFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.1);
  }
  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* ---- Canvas Layer ---- */
.hero-banner__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---- Floating Data Elements ---- */
.hero-banner__floaters {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.floater {
  position: absolute;
  color: rgba(255, 255, 255, 0.06);
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
  white-space: nowrap;
  animation: floaterDrift 25s linear infinite;
  user-select: none;
}

.floater--binary {
  font-size: 11px;
  letter-spacing: 2px;
}
.floater--code {
  font-size: 10px;
  color: rgba(0, 200, 150, 0.07);
}
.floater--math {
  font-size: 13px;
  color: rgba(223, 35, 19, 0.06);
}
.floater--graph {
  font-size: 14px;
  color: rgba(0, 122, 255, 0.06);
}

.floater:nth-child(1) {
  top: 5%;
  left: -20%;
  animation-duration: 35s;
  animation-delay: 0s;
}
.floater:nth-child(2) {
  top: 15%;
  left: -30%;
  animation-duration: 40s;
  animation-delay: -5s;
}
.floater:nth-child(3) {
  top: 30%;
  left: -25%;
  animation-duration: 32s;
  animation-delay: -10s;
}
.floater:nth-child(4) {
  top: 45%;
  left: -35%;
  animation-duration: 38s;
  animation-delay: -15s;
}
.floater:nth-child(5) {
  top: 60%;
  left: -20%;
  animation-duration: 36s;
  animation-delay: -8s;
}
.floater:nth-child(6) {
  top: 75%;
  left: -30%;
  animation-duration: 42s;
  animation-delay: -20s;
}
.floater:nth-child(7) {
  top: 85%;
  left: -25%;
  animation-duration: 34s;
  animation-delay: -3s;
}
.floater:nth-child(8) {
  top: 20%;
  left: -40%;
  animation-duration: 45s;
  animation-delay: -12s;
}
.floater:nth-child(9) {
  top: 50%;
  left: -15%;
  animation-duration: 30s;
  animation-delay: -18s;
}
.floater:nth-child(10) {
  top: 90%;
  left: -35%;
  animation-duration: 37s;
  animation-delay: -7s;
}

@keyframes floaterDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw + 400px));
  }
}

/* ---- Orbiting Rings ---- */
.hero-banner__rings {
  position: absolute;
  z-index: 2;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

.orbit-ring--1 {
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  animation: orbitSpin 20s linear infinite;
}

.orbit-ring--2 {
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  animation: orbitSpin 30s linear infinite reverse;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.03);
}

.orbit-ring--3 {
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  animation: orbitSpin 15s linear infinite;
  border-color: rgba(223, 35, 19, 0.08);
}

.orbit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  margin-left: -4px;
}

.orbit-node--red {
  background: rgba(223, 35, 19, 0.6);
  box-shadow: 0 0 15px rgba(223, 35, 19, 0.4);
}

.orbit-node--blue {
  background: rgba(0, 122, 255, 0.6);
  box-shadow: 0 0 15px rgba(0, 122, 255, 0.4);
}

.orbit-node--white {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  width: 6px;
  height: 6px;
  top: -3px;
  margin-left: -3px;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 35, 19, 0.8), transparent);
  box-shadow:
    0 0 40px rgba(223, 35, 19, 0.3),
    0 0 80px rgba(223, 35, 19, 0.1);
  animation: centerPulse 3s ease-in-out infinite;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes centerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* ---- Content Layer ---- */
.hero-banner__content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 0 15px 0 80px;
}

.hero-banner__tag {
  display: inline-block;
  padding: 7px 30px 7px 80px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--theme-color1, #df2313);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: contentReveal 0.8s ease forwards 0.4s;
  position: relative;
}

.hero-banner__tag::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  width: 35px;
  height: 2px;
  background: var(--theme-color1, #df2313);
  transform: translateY(-50%);
}

.hero-banner__heading {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: contentReveal 0.8s ease forwards 0.6s;
}

.hero-banner__heading .highlight {
  background: linear-gradient(135deg, var(--theme-color1, #df2313), #ff6b4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner__cycler {
  display: inline-block;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.hero-banner__desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 35px;
  max-width: 550px;
  opacity: 0;
  transform: translateY(30px);
  animation: contentReveal 0.8s ease forwards 0.8s;
}

.hero-banner__cta {
  opacity: 0;
  transform: translateY(30px);
  animation: contentReveal 0.8s ease forwards 1s;
}

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

/* ---- Stats Bar ---- */
.hero-banner__stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: contentReveal 0.6s ease forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 1.2s;
}
.stat-item:nth-child(2) {
  animation-delay: 1.4s;
}
.stat-item:nth-child(3) {
  animation-delay: 1.6s;
}
.stat-item:nth-child(4) {
  animation-delay: 1.8s;
}

.stat-item__number {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__number .accent {
  color: var(--theme-color1, #df2313);
}

.stat-item__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
}

/* ---- Scroll Indicator ---- */
.hero-banner__scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: contentReveal 0.6s ease forwards 2s;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.2;
  }
}

/* ---- Mouse Glow Follower ---- */
.hero-banner__glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 35, 19, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition:
    left 0.3s ease-out,
    top 0.3s ease-out;
  will-change: left, top;
}

/* ============================================================
   TRANSPARENT HEADER — Blends with Banner
   ============================================================ */

.header-style-two-new {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent !important;
  box-shadow: none !important;
}

.header-style-two-new .main-box {
  background: transparent !important;
}

.header-style-two-new .main-box .logo-box {
  background: transparent !important;
}

/* Nav links white on transparent header */
.header-style-two-new .main-menu .navigation > li > a {
  color: rgba(255, 255, 255, 0.75) !important;
}
.header-style-two-new .main-menu .navigation > li:hover > a,
.header-style-two-new .main-menu .navigation > li.current > a {
  color: #ffffff !important;
}

/* Underline color for active/hover */
.header-style-two-new .main-menu .navigation > li:before {
  background-color: var(--theme-color1, #df2313) !important;
}

/* Info button + search icon */
.header-style-two-new .info-btn-two {
  color: #fff !important;
}
.header-style-two-new .info-btn-two small {
  color: rgba(255, 255, 255, 0.5) !important;
}
.header-style-two-new .info-btn-two i.icon {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.header-style-two-new .ui-btn {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Mobile toggler white */
.header-style-two-new .mobile-nav-toggler {
  color: #fff !important;
}

/* Get a Quote button */
.header-style-two-new .outer-box .theme-btn.btn-style-two {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.header-style-two-new .outer-box .theme-btn.btn-style-two:hover {
  background: var(--theme-color1, #df2313);
  border-color: var(--theme-color1, #df2313);
}

/* Dropdown menus stay solid */
.header-style-two-new .main-menu .navigation > li > ul {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.header-style-two-new .main-menu .navigation > li > ul > li > a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.header-style-two-new .main-menu .navigation > li > ul > li:hover > a {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05);
}
.header-style-two-new .main-menu .navigation > li > ul > li > ul {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.header-style-two-new .navigation li > ul .mega-label {
  color: rgba(255, 255, 255, 0.35);
}

/* Fix nav wrapping — tighten spacing so all items fit on one line */
.header-style-two-new .main-box .logo-box {
  padding: 20px 40px !important;
  margin-right: 30px !important;
}
.header-style-two-new .main-menu .navigation > li {
  margin-right: 32px;
}

/* Sticky header keeps solid bg — overrides only apply to main header */
.header-style-two-new .sticky-header {
  background: rgba(10, 14, 26, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3) !important;
}
.header-style-two-new .sticky-header .main-menu .navigation > li > a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.header-style-two-new .sticky-header .main-menu .navigation > li:hover > a,
.header-style-two-new .sticky-header .main-menu .navigation > li.current > a {
  color: #fff !important;
}
.header-style-two-new .sticky-header .mobile-nav-toggler {
  color: #fff !important;
}
.header-style-two-new .sticky-header .logo {
  background-color: transparent !important;
}

/* ============================================================
   FULL-SCREEN MOBILE NAV OVERLAY (cbwebsitedesign style)
   ============================================================ */

/* Hide old mobile menu structure */
.mobile-menu-visible .mobile-menu .menu-box {
  transform: none !important;
}

/* Override mobile menu to full-screen overlay */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
}

.mobile-menu .menu-backdrop {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mobile-menu .menu-box {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-height: 100vh !important;
  background: #0d0d0d !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translateY(-100%) !important;
  border-radius: 0 !important;
  overflow-y: auto !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
  transform: translateY(0%) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Upper box — logo + close */
.mobile-menu .upper-box {
  padding: 25px 30px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.mobile-menu .close-btn {
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 16px !important;
  color: #fff !important;
  transform: none !important;
  top: 0 !important;
  transition: all 0.3s ease !important;
}

.mobile-menu .close-btn:hover {
  background: var(--theme-color1, #df2313);
  border-color: var(--theme-color1, #df2313);
  opacity: 1 !important;
}

.mobile-menu-visible .mobile-menu .close-btn {
  transform: none !important;
}

/* Nav links — large, centered */
.mobile-menu .navigation {
  border-top: none !important;
  padding: 30px 0 !important;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.mobile-menu .navigation li {
  border-bottom: none !important;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.mobile-menu-visible .mobile-menu .navigation li {
  opacity: 1;
  transform: translateY(0);
}

/* Hide mega-label spans in mobile menu */
.mobile-menu .navigation .mega-label {
  display: none !important;
}

/* Stagger animation for each nav item */
.mobile-menu-visible .mobile-menu .navigation li:nth-of-type(1) {
  transition-delay: 0.15s;
}
.mobile-menu-visible .mobile-menu .navigation li:nth-of-type(2) {
  transition-delay: 0.2s;
}
.mobile-menu-visible .mobile-menu .navigation li:nth-of-type(3) {
  transition-delay: 0.25s;
}
.mobile-menu-visible .mobile-menu .navigation li:nth-of-type(4) {
  transition-delay: 0.3s;
}
.mobile-menu-visible .mobile-menu .navigation li:nth-of-type(5) {
  transition-delay: 0.35s;
}
.mobile-menu-visible .mobile-menu .navigation li:nth-of-type(6) {
  transition-delay: 0.4s;
}
.mobile-menu-visible .mobile-menu .navigation li:nth-of-type(7) {
  transition-delay: 0.45s;
}

.mobile-menu .navigation li > a {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #fff !important;
  padding: 14px 20px !important;
  letter-spacing: 0.02em;
  line-height: 1.3 !important;
  display: inline-block !important;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-menu .navigation li > a:hover {
  color: var(--theme-color1, #df2313) !important;
}

/* Active underline on hover */
.mobile-menu .navigation li > a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--theme-color1, #df2313);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.mobile-menu .navigation li > a:hover::after {
  transform: scaleX(1);
}

/* Dropdown button */
.mobile-menu .navigation li.dropdown .dropdown-btn {
  width: 50px !important;
  height: auto !important;
  line-height: inherit !important;
  position: relative !important;
  display: inline-block !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 14px !important;
  vertical-align: middle;
  right: auto !important;
  top: auto !important;
}

.mobile-menu .navigation li.dropdown .dropdown-btn::after {
  display: none !important;
}

.mobile-menu .navigation li.dropdown .dropdown-btn i {
  transition: transform 0.3s ease;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active i {
  transform: rotate(180deg);
}

/* Sub-menu items */
.mobile-menu .navigation li > ul > li {
  padding-left: 0 !important;
}

.mobile-menu .navigation li > ul > li > a {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 8px 20px !important;
}

.mobile-menu .navigation li > ul > li > a:hover {
  color: var(--theme-color1, #df2313) !important;
}

.mobile-menu .navigation li > ul > li:first-child {
  border-top: none !important;
}

/* Contact info at bottom */
.mobile-menu .contact-list-one {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 25px 30px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-menu .contact-list-one li {
  flex: 1;
  min-width: 200px;
}

.mobile-menu .contact-info-box {
  text-align: center;
}

.mobile-menu .contact-info-box .icon {
  color: var(--theme-color1, #df2313) !important;
}

/* Social links */
.mobile-menu .social-links {
  display: flex !important;
  justify-content: center;
  gap: 15px;
  padding: 0 30px 30px !important;
  flex-shrink: 0;
}

.mobile-menu .social-links li a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-menu .social-links li a:hover {
  background: var(--theme-color1, #df2313);
  border-color: var(--theme-color1, #df2313);
}

/* Animated hamburger icon — 3 lines via CSS */
.mobile-nav-toggler .icon {
  display: block;
  position: relative;
  width: 26px;
  height: 2px;
  background: currentColor;
  top: 9px;
  transition: background 0.3s ease;
}

.mobile-nav-toggler .icon::before,
.mobile-nav-toggler .icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.mobile-nav-toggler .icon::before {
  top: -8px;
}

.mobile-nav-toggler .icon::after {
  top: 8px;
}

/* ============================================================
   BLACK BACKGROUND VARIANT (.hero-banner--dark)
   Inspired by analyticsvidhya.com
   ============================================================ */

.hero-banner--dark {
  background: #000000;
}

.hero-banner--dark .hero-banner__gradient {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #0a0a0a 30%,
    #111111 60%,
    #000000 100%
  );
}

.hero-banner--dark .hero-banner__gradient::before {
  background: radial-gradient(circle, rgba(223, 35, 19, 0.2), transparent 70%);
  opacity: 0.3;
}

.hero-banner--dark .hero-banner__gradient::after {
  background: radial-gradient(
    circle,
    rgba(100, 60, 255, 0.15),
    transparent 70%
  );
  opacity: 0.25;
}

/* Brighter particles on pure black */
.hero-banner--dark .hero-banner__glow {
  background: radial-gradient(circle, rgba(223, 35, 19, 0.06), transparent 70%);
}

/* Subtle grid dots instead of lines */
.hero-banner--dark .floater {
  color: rgba(255, 255, 255, 0.04);
}

.hero-banner--dark .floater--code {
  color: rgba(0, 200, 150, 0.05);
}

.hero-banner--dark .floater--math {
  color: rgba(223, 35, 19, 0.04);
}

/* Orbit rings subtler */
.hero-banner--dark .orbit-ring {
  border-color: rgba(255, 255, 255, 0.03);
}

.hero-banner--dark .orbit-ring--2 {
  border-color: rgba(255, 255, 255, 0.02);
}

/* Content — crisp white on pure black */
.hero-banner--dark .hero-banner__heading {
  color: #ffffff;
  text-shadow: none;
}

.hero-banner--dark .hero-banner__heading .highlight {
  background: linear-gradient(135deg, #ff4136, #ff6b4a, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner--dark .hero-banner__desc {
  color: rgba(255, 255, 255, 0.45);
}

.hero-banner--dark .hero-banner__tag {
  background: rgba(255, 255, 255, 0.04);
  border-left-color: #ff4136;
}

.hero-banner--dark .hero-banner__tag::before {
  background: #ff4136;
}

/* Stats bar */
.hero-banner--dark .hero-banner__stats {
  border-top-color: rgba(255, 255, 255, 0.04);
}

.hero-banner--dark .stat-item__number {
  color: #ffffff;
}

.hero-banner--dark .stat-item__label {
  color: rgba(255, 255, 255, 0.3);
}

/* Sticky header for dark variant */
.hero-banner--dark ~ .main-header .sticky-header,
.page-wrapper:has(.hero-banner--dark) .sticky-header {
  background: rgba(0, 0, 0, 0.92) !important;
}

/* Dropdown menu dark variant */
.page-wrapper:has(.hero-banner--dark)
  .header-style-two-new
  .main-menu
  .navigation
  > li
  > ul {
  background: #111;
  border-color: rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 1200px) {
  .hero-banner__rings {
    width: 350px;
    height: 350px;
    right: 3%;
  }
  .orbit-ring--1 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
  }
  .orbit-ring--2 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
  }
  .orbit-ring--3 {
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
  }
}

@media (max-width: 991px) {
  .hero-banner__content {
    padding: 0 30px;
    max-width: 100%;
  }
  .hero-banner__heading {
    font-size: 44px;
  }
  .hero-banner__rings {
    opacity: 0.3;
    right: -5%;
  }
  .hero-banner__stats {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 100vh;
    align-items: flex-start;
    padding-top: 120px !important;
  }
  .hero-banner__content {
    padding: 0 20px;
  }
  .hero-banner__heading {
    font-size: 34px;
  }
  .hero-banner__desc {
    font-size: 15px;
  }
  .hero-banner__rings {
    display: none;
  }
  .hero-banner__stats {
    gap: 20px;
    bottom: 20px;
  }
  .stat-item__number {
    font-size: 22px;
  }
  .hero-banner__scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-banner__heading {
    font-size: 28px;
  }
  .hero-banner__tag {
    font-size: 11px;
    padding: 6px 20px 6px 55px;
  }
  .hero-banner__tag::before {
    left: 15px;
    width: 25px;
  }
  .hero-banner__stats {
    gap: 15px;
  }
  .stat-item__number {
    font-size: 18px;
  }
  .stat-item__label {
    font-size: 10px;
  }
}
