/* ==================== TECH NEWSBAR SLIDER ==================== */

.newsbar-slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;

    background: rgba(0, 0, 0, 0.877);
    position: relative;
}

/* Neon top & bottom borders */
.newsbar-slider::before,
.newsbar-slider::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg, transparent, #39ff14, transparent); /* neon green */
    opacity: 0.6;
}

.newsbar-slider::before { top: 0; }
.newsbar-slider::after { bottom: 0; }

/* Track Animation */
.slider-track {
    display: inline-flex;
    gap: 60px;
    animation: ticker 22s linear infinite;
    overflow: hidden;
}

/* Individual items */
.item {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;

  color: #39ff14; /* neon green text */

  padding: 4px 0;            /* reset */
  padding-left: 90px;        /* <-- main fix: moves text away from the line */
  padding-right: 25px;       /* balanced spacing */

  border-left: 1px solid rgba(57,255,20,0.3); /* neon green border */

  display: inline-block;     /* normal flow */
  text-align: center;        /* center text inside */
}

/* Infinite scroll animation */
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}










/* ===================== FOOTER NEW ===================== */
.footer-new {
    background: #0a0a0a;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    font-family: 'Orbitron', sans-serif;
    color: #e5e5e5;
    padding: 60px 20px 30px 20px;
    position: relative;
    border-top: 3px solid #37fd48;
    box-shadow: inset 0 0 25px rgba(55,253,72,0.1);
  }
  
  .footer-new-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
  }
  
  /* Left: Logo + Tagline */
  .footer-left {
    flex: 1 1 280px;
    text-align: left;
  }
  .footer-new-logo {
    width: 140px;
    display: block;
    margin-bottom: 10px;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #ccc;
    max-width: 220px;
  }
  
  /* Middle: Quick Links */
  .footer-middle {
    flex: 1 1 200px;
  }
  .footer-middle h4 {
    font-size: 1.1rem;
    color: #37fd48;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  .footer-middle ul {
    list-style: none;
    padding: 0;
  }
  .footer-middle li {
    margin-bottom: 12px;
  }
  .footer-middle li a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
  }
  .footer-middle li a:hover {
    color: #37fd48;
    text-shadow: 0 0 8px rgba(55,253,72,0.7);
  }
  
  /* Right: Social */
  .footer-right {
    flex: 1 1 200px;
  }
  .footer-right h4 {
    font-size: 1.1rem;
    color: #37fd48;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  .footer-right ul {
    list-style: none;
    padding: 0;
  }
  .footer-right li {
    margin-bottom: 12px;
  }
  .footer-right li a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
  }
  .footer-right li a:hover {
    color: #37fd48;
    text-shadow: 0 0 8px rgba(55,253,72,0.7);
  }
  .footer-right li a i {
    font-size: 1.1rem;
  }
  
  /* Disclaimer */
  .footer-disclaimer-new {
    max-width: 900px;
    margin: 30px auto 15px auto;
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    line-height: 1.5;
    border-top: 1px solid rgba(55,253,72,0.2);
    padding-top: 15px;
  }
  
  /* Bottom */
  .footer-bottom-new {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    padding: 10px 0;
    border-top: 1px solid rgba(55,253,72,0.1);
    background: linear-gradient(to right, rgba(55,253,72,0.05), transparent 50%, rgba(55,253,72,0.05));
  }
  
  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 900px) {
    .footer-new-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-left {
      text-align: center;
    }
    .footer-tagline {
      max-width: 300px;
      margin: 0 auto 15px auto;
    }
  }
  /* ===================== MOBILE ONLY FIX ===================== */
@media (max-width: 900px) {

  /* Stack sections centered */
  .footer-new-container {
      flex-direction: column;
      align-items: center !important;
      text-align: center !important;
      gap: 35px;
  }

  /* Make every column centered on mobile */
  .footer-left,
  .footer-middle,
  .footer-right {
      width: 100%;
      padding: 0 !important;
      display: flex;
      flex-direction: column;
      align-items: center !important;
      text-align: center !important;
  }

  /* Center images */
  .footer-new-logo {
      margin-left: auto;
      margin-right: auto;
      display: block;
  }

  /* Center Quick Links list */
  .footer-middle ul,
  .footer-right ul {
      margin: 0 auto;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center !important;
  }

  /* Center social icon + text */
  .footer-right li a {
      justify-content: center !important;
  }
}
