    /* BetPawa Footer Styles */
        .betpawa-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #252a2d;
            z-index: 1000;
            padding: 0; /* Remove any padding */
            text-decoration: none;
        }
        
        .promo-banner {
            display: flex;
            align-items: flex-start; /* 👈 top */
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -20px; /* sit down under the footer wings */
            margin-left: calc(50% - 50vw);
            max-width: 2000px;
            background: #9be22d;
            color: #141313;
            text-align: left;
            font-weight: 500;
            font-size: 12px;
            letter-spacing: 0.3px;
            border-radius: 0px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.25);
            z-index: 4; /* sits beneath footer wings (wings use z-index:5) */
        }

        /* small-screen tweak */
        @media (max-width: 600px) {
            .promo-banner {
                width: calc(100%);
                margin-left: calc(50% - 50vw);
                padding: 14px 16px;
                padding-top: 5px;
                font-size: 11px;
                top: -20px;
            }
        }    

        .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%;
            overflow: visible; /* allow wings to extend past container */
            position: relative;
        }

        .footer-left {
            border-top-right-radius: 26px;
            justify-content: flex-start;
            padding-left: 20px;
            margin-left: 0;
            margin-right: 15px; /* extend a bit under the center circle */
            position: relative;
            top: 4px;
            z-index: 5; /* sit behind the center-circle (z-index:10) */
        }

        .footer-right {
            border-top-left-radius: 26px;
            justify-content: flex-end;
            padding-right: 20px;
            margin-right: 0;
            margin-left: 15px; /* extend a bit under the center circle */
            color: #a0a0a0;
            position: relative;
            top: 4px;
            z-index: 5; /* sit behind the center-circle (z-index:10) */
        }  
        
        .nav-items-2 {
            display: flex;
            gap: 20px;
            text-decoration: none;
        }
        
        .nav-items-2 .nav-item-2 {
            position: relative;
            display: inline-block;
            flex-direction: column;
            align-items: top;
            color: #a0a0a0;
            cursor: pointer;
            transition: all 0.2s ease;
            min-width: 50px;
            text-decoration: none;
            top: -22px;
        }

        .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: 26px;
            height: 35px;
            object-fit: contain;
            vertical-align: middle;
        }
        
        .nav-label {
            font-size: 13px;
            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: 23px;  /* smaller gap */
    margin-right: -6px;
  }

  .nav-icon-2 {
    width: 35px;
    height: 34px;
  }
}



        
        /* Central Circle */
        .center-circle {
            position: absolute;
            left: 50%;
            top: 1px;
            transform: translateX(-50%);
            width: 68px;
            height: 68px;
            border-radius: 50%;
            background: #252a2d;
            color: #7b7b7b;
            display: flex;
            flex-direction: column;
            justify-content: top;
            align-items: center;
            border: 4px solid #434a4d;
            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;
        }
        
/* Badge style */
.nav-badge {
    position: absolute;
    top: 14px;
    right: 7px;
    background: #9be22d; /* Betpawa green */
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.955);
    font-size: 11px;
    font-weight: bold;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
        