    /* BetPawa Footer Styles */
        .betpawa-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #9be22d;
            z-index: 1000;
            padding: 0; /* Remove any padding */
            text-decoration: none;
        }
        
        .promo-banner {
            background: #9be22d;
            color: rgb(20, 19, 19);
            text-align: center;
            padding: 4px 15px;
            font-weight: 500;
            font-size: 11px;
            letter-spacing: 0.3px;
        }
        
        .footer-nav-container {
            display: flex;
            height: 95px;
            position: relative;
            padding: 0; /* Remove container padding */
        }
        
        .footer-wing {
            flex: 1;
            background: #252a2d;
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .footer-left {
            border-top-right-radius: 65px;
            justify-content: flex-start; /* Changed to flex-start */
            padding-left: 25px; /* Add left padding instead */
            margin-left: 0; /* Remove any margin */
        }
        
        .footer-right {
            border-top-left-radius: 65px;
            justify-content: flex-end; /* Changed to flex-end */
            padding-right: 25px; /* Add right padding instead */
            margin-right: 0; /* Remove any margin */
            color: #a0a0a0;
        }
        
        .nav-items-2 {
            display: flex;
            gap: 30px;
            text-decoration: none;
        }
        
        .nav-items-2 .nav-item-2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #a0a0a0;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 50px;
            text-decoration: none;
            margin-top: -20px;
        }

        .nav-items-2.nav-item-2,
        .nav-items-2.active {
          color: #9feb35; /* highlight green */
      }

      .nav-item-2 {
    color: #777; /* default text color */
    transition: 0.2s ease;
}

.nav-item-2.active {
    color: #9be22d; /* New green color */
}

.nav-item-2.active img {
    filter: brightness(0) saturate(100%) 
            invert(78%) sepia(15%) saturate(1892%) 
            hue-rotate(36deg) brightness(103%) contrast(94%);
}
        
        .nav-icon-2 {
            width: 22px;
            height: 22px;
            object-fit: contain;
            vertical-align: middle;
        }
        
        .nav-label {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.3px;
            text-decoration: none;
        }


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


  .nav-items-2 {
    padding: 0 8px;
    font-size: 13px;
    gap: -4px;  /* smaller gap */
    margin-right: 4px;
  }

  .nav-icon-2 {
    width: 32px;
    height: 32px;
  }
}
        
        /* Central Circle */
        .center-circle {
            position: absolute;
            left: 50%;
            top: 1px;
            transform: translateX(-50%);
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #252a2d;
            color: #a0a0a0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 3px solid #474747;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 10;
        }
        
        
        
        .center-circle .nav-icon-2 {
            font-size: 24px;
        }
        
        /* Gap between wings */
        .footer-nav-container::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 10px;
            background: transparent;
        }
        