
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f6f8;
    color: #333;
    padding-bottom: 260px;
    }
    header {
    background: linear-gradient(135deg, #1e3c8c 0%, #dc2626 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    }
    .header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
    }
    .logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    }
    nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.3s;
    cursor: pointer;
    }
    nav a:hover {
    opacity: 0.8;
    }
    .page {
    display: none;
    }
    .page.active {
    display: block;
    }
    .hero {
    background: linear-gradient(135deg, #1e3c8c 0%, #dc2626 100%);
    color: white;
    padding: 20px 20px 40px;
    text-align: center;
    position: relative;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    .carousel-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 600px;
    z-index: 1;
    }
    .carousel {
    position: relative;
    width: 100%;
    height: 100%;
    }
    .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .carousel-slide.active {
    opacity: 1;
    z-index: 10;
    }
    .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    }
    .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    }
    .carousel-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    }
    .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .carousel-dots {
    display: flex;
    gap: 12px;
    }
    .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    }
    .dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
    }
    .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    .hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    }
    .hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    }
    .btn {
    display: inline-block;
    background: #ffd700;
    color: #1e3c8c;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
    }
    .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    }
    .section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    }
    .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    }
    .feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    color: #333;
    }
    .feature-card:hover {
    transform: translateY(-10px);
    }
    .feature-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 24px;
    }
    .feature-card p {
    color: #666;
    line-height: 1.6;
    }
    .network-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    }
    .network-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #ffd700;
    color: #333;
    }
    .network-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0 0 8px 8px;
    margin-bottom: 0;
    box-shadow: none;
    margin: -15px -15px 0 -15px;
    }
    .network-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .network-card h3 {
    color: #333;
    margin: 10px 0;
    font-size: 18px;
    }
    .network-card a {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    border: none;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
    }
    .network-card a:hover {
    background: #ffed4e;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
    }
    .network-card:nth-child(1) {
    border-top: 4px solid #ffd700;
    }
    .network-card:nth-child(1) h3 {
    color: #ffd700;
    }
    .network-card:nth-child(2) {
    border-top: 4px solid #e60000;
    }
    .network-card:nth-child(2) h3 {
    color: #e60000;
    }
    .network-card:nth-child(3) {
    border-top: 4px solid #0066cc;
    }
    .network-card:nth-child(3) h3 {
    color: #0066cc;
    }
    .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 50px;
    color: #333;
    }
    .step {
    text-align: center;
    }
    .step-number {
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin: 0 auto 15px;
    }
    .step h4 {
    color: #333;
    margin-bottom: 10px;
    }
    .step p {
    color: #666;
    font-size: 14px;
    }
    footer {
    background: linear-gradient(135deg, #1e3c8c 0%, #dc2626 100%);
    color: white;
    padding: 40px 20px 30px;
    text-align: center;
    margin-top: 60px;
    }
    .network-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    }
    .logo-box {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    }
    .logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }
    .logo-box.mtn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    }
    .logo-box.airteltigo {
    background: linear-gradient(135deg, #e60000 0%, #0066cc 100%);
    color: white;
    }
    .logo-box.telecel {
    background: linear-gradient(135deg, #e60000 0%, #cc0000 100%);
    color: white;
    }
    .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
    }
    .footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
    }
    .footer-section a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
    cursor: pointer;
    }
    .footer-section a:hover {
    color: #ffd700;
    }
    .footer-section p {
    color: #e0e0e0;
    margin-bottom: 10px;
    }
    .footer-section p a {
    display: inline;
    color: #ffd700;
    }
    .footer-section p a:hover {
    color: #ffed4e;
    }
    .footer-bottom {
    border-top: 2px solid #ffd700;
    padding-top: 20px;
    color: #e0e0e0;
    }
    .footer-bottom p {
    color: #ffd700;
    font-weight: bold;
    }
    /* MTN Page Styles */
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    }
    .page-title {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 10px;
    }
    .breadcrumb {
    color: #666;
    margin-bottom: 30px;
    }
    .breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    margin-right: 5px;
    cursor: pointer;
    }
    .breadcrumb a:hover {
    text-decoration: underline;
    }
    .bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    }
    .bundle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    color: #333;
    }
    .bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    .bundle-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 20px;
    text-align: center;
    }
    .bundle-data {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    }
    .bundle-type {
    font-size: 14px;
    opacity: 0.9;
    }
    .bundle-content {
    padding: 20px;
    }
    .bundle-price {
    font-size: 36px;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 15px;
    }
    .bundle-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    }
    .bundle-features {
    list-style: none;
    margin-bottom: 20px;
    font-size: 14px;
    }
    .bundle-features li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    }
    .bundle-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    }
    .buy-btn {
    width: 100%;
    padding: 12px;
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    .buy-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    }
    .table-view {
    display: none;
    }
    .table-view.active {
    display: block;
    }
    table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    color: #333;
    }
    th {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c8c;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    }
    td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    }
    tr:hover {
    background: #f9f9f9;
    }
    .view-toggle {
    margin-bottom: 30px;
    text-align: right;
    }
    .toggle-btn {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    }
    .toggle-btn:hover {
    background: #e0e0e0;
    border-color: #bbb;
    }
    .toggle-btn.active {
    background: #ffd700;
    color: #333;
    border-color: #ffd700;
    }
    #mainNav {
    display: flex;
    gap: 15px;
    align-items: center;
    }
    #mainNav a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    }
    .payment-wrapper {
    display: flex;
    justify-content: center;
    padding: 30px 15px;
    }

    .payment-card {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .payment-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: #222;
    }

    .form-group {
    margin-bottom: 18px;
    }

    .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    }

    .form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    }

    .form-group input:focus {
    outline: none;
    border-color: #0a7cff;
    }

    .summary-box {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    }

    .summary-box p {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    font-size: 15px;
    }

    .pay-btn {
    width: 100%;
    background: linear-gradient(135deg, #0a7cff, #0056d2);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }



    /* AFA section scoped styles */
    #afa .afa-hero{
        padding: 48px 20px;
        background: linear-gradient(135deg, rgba(30,60,140,0.95) 0%, rgba(220,38,38,0.95) 100%), url('slid\\MTN-shop.jpg');
        background-blend-mode: overlay;
        background-size: cover;
        color: #fff;
        text-align: center;
        z-index: -2;
    }
    #afa .afa-hero h1{ font-size: 40px; margin-bottom:8px; }
    #afa .afa-hero p{ font-size:18px; opacity:0.95; margin-bottom:16px; }

    #afa .afa-grid{
        display: block;
        grid-template-columns: 1fr 420px;
        gap: 32px;
        align-items: start;
        margin-top: -20px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px 60px;
    }

    #afa .info-card, #afa .form-card{
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        padding: 26px;
        color: #333;
        overflow: hidden;
    }

    #afa .info-card h2{ color:#1e3c8c; margin-bottom:8px; font-size:22px;}
    #afa .info-card p{ color:#555; margin-bottom:18px; line-height:1.6; }

    #afa .features-grid{
        display:grid;
        grid-template-columns: repeat(2, 1fr);
        gap:12px;
        margin-bottom:18px;
    }
    #afa .feature-pill{
        display:flex;
        gap:12px;
        align-items:center;
        background:linear-gradient(180deg,#fff,#fff);
        border-radius:10px;
        padding:12px;
        border:1px solid #f0f0f0;
    }
    #afa .feature-pill .ico{
        font-size:20px;
        width:40px;
        height:40px;
        border-radius:8px;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#ffd700;
        color:#1e3c8c;
        font-weight:700;
    }
    #afa .steps-compact{
        display:flex;
        gap:12px;
        margin-top:12px;
        flex-wrap:wrap;
    }
    #afa .step-mini{
        flex:1 1 45%;
        background:#f9fafb;
        border-radius:8px;
        padding:12px;
        border:1px dashed #eee;
        text-align:center;
    }
    #afa .step-mini .num{ background:#1e3c8c; color:#fff; width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; margin-bottom:8px; }

    /* Form styles */
    #afa .form-card h3{ color:#ffd700; margin-bottom:6px; font-size:20px;}
    #afa form { display:flex; flex-direction:column; gap:12px; }
    #afa .form-control{ display:flex; flex-direction:column; gap:6px; }
    #afa .form-control label{ font-size:13px; color:#444; }
    #afa .form-control input[type="text"],
    #afa .form-control input[type="email"],
    #afa .form-control input[type="file"],
    #afa .form-control input[type="tel"],
    #afa .form-control select{ padding:10px 12px; border-radius:8px; border:1px solid #e6e6e6; font-size:14px; outline:none; }
    #afa .form-control input:focus{ box-shadow:0 6px 18px rgba(30,60,140,0.06); border-color:#cfd8ff; }
    #afa .muted{ font-size:13px; color:#777; }

    #afa .actions{ display:flex; gap:12px; align-items:center; margin-top:6px; }
    #afa .btn-primary{
        background: linear-gradient(90deg,#ffd700,#ffed4e);
        color:#1e3c8c;
        padding:12px 18px;
        border-radius:8px;
        border:none;
        font-weight:700;
        cursor:pointer;
        box-shadow: 0 6px 18px rgba(255,215,0,0.12);
    }
    #afa .btn-secondary{
        background:#f3f4f6;
        color:#333;
        padding:10px 14px;
        border-radius:8px;
        border:1px solid #e6e6e6;
        cursor:pointer;
    }

    #afa .success-msg{
        display:none;
        background:#ecfdf5;
        color:#065f46;
        border:1px solid #bbf7d0;
        padding:12px;
        border-radius:8px;
        margin-top:8px;
    }

    @media (max-width: 980px){
        #afa .afa-grid{ grid-template-columns: 1fr; margin-top: 20px; }
        #afa .features-grid{ grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 520px){
        #afa .features-grid{ grid-template-columns: 1fr; }
        #afa .step-mini{ flex-basis:100%; }
    }

    .afa-intro-card{
        background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        radial-gradient(600px 200px at 10% 10%, rgba(255,215,0,0.08), transparent 15%),
        radial-gradient(500px 180px at 90% 90%, rgba(220,38,38,0.06), transparent 18%);
        padding:20px 22px;
        border-radius:14px;
        box-shadow: 0 14px 40px rgba(0,0,0,0.45);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        max-width:980px;
        width:100%;
    }
    .afa-intro-copy{
        color:#f7f9fb;
        font-size:18px;
        line-height:1.6;
        margin:0;
        text-shadow: 0 3px 14px rgba(0,0,0,0.55);
    }
    .afa-badges{
        margin-top:12px;
        display:flex;
        gap:10px;
        justify-content:center;
        flex-wrap:wrap;
    }
    .afa-badge{
        display:inline-block;
        padding:10px 14px;
        border-radius:999px;
        font-weight:700;
        font-size:14px;
        color:#102a43;
        box-shadow:0 8px 22px rgba(2,6,23,0.35);
        border:1px solid rgba(255,255,255,0.06);
        transform: translateZ(0);
    }
    .afa-badge.gold{ background: linear-gradient(90deg,#ffd700,#ffed4e); color:#102a43; }
    .afa-badge.blue{ background: linear-gradient(90deg,#60a5fa,#2563eb); color:#fff; }
    .afa-badge.red{ background: linear-gradient(90deg,#fb7185,#ef4444); color:#fff; }
    @media (max-width:520px){
        .afa-intro-card{ padding:14px; }
        .afa-badge{ padding:8px 10px; font-size:13px; }
    }

    /* Services grid: desktop 3-cols, tablet 2-cols, mobile 2-cols compact */
    .services-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .services-card{
        background: #fff;
        padding: 24px; /* increased padding */
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        min-height: 140px; /* slightly taller */
        transition: transform .18s ease, box-shadow .18s ease;
        border-top: 4px solid #ffd700; /* add top border color on all viewports */
    }
    .services-card:hover{ transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.10); }
    .services-card .icon{ font-size: 28px; }
    .services-card h3{ margin: 6px 0 4px; font-size: 18px; color: #1e3c8c; }
    .services-card p{ color: #555; font-size: 14px; margin:0; }
    .services-card a{
        margin-top: 10px;
        display: inline-block;
        background:#ffd700;
        color:#1e3c8c;
        padding:8px 14px;
        border-radius:8px;
        text-decoration:none;
        font-weight:700;
        cursor:pointer;
    }

    @media (max-width: 980px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }

    /* Ensure mobile overrides from global styles do not remove the top border or padding */
    @media (max-width: 768px){
        .services-card{ padding:18px !important; min-height:120px !important; border-top:4px solid #ffd700 !important; }
    }

    @media (max-width: 520px){
        .services-grid{ grid-template-columns: repeat(2, 1fr); gap:12px; }
        .services-card{ padding:14px; min-height:110px; }
        .services-card h3{ font-size:16px; }
        .services-card .icon{ font-size:24px; }
        .services-card a{ padding:8px 10px; font-size:14px; border-radius:6px; }
        /* reinforce border on very small screens */
        .services-card{ border-top:4px solid #ffd700 !important; }
    }

    #wallet .wallet-hero{
        background: linear-gradient(135deg,#1e3c8c 0%, #dc2626 100%);
        color:#fff;
        padding:36px 20px;
        text-align:center;
        border-radius:10px;
        box-shadow:0 8px 30px rgba(14,34,80,0.16);
        margin: 20px;
    }
    #wallet .wallet-hero h1{ font-size:28px; margin-bottom:6px; }
    #wallet .wallet-hero p{ font-size:15px; opacity:0.95; margin-bottom:0; }

    #wallet .wallet-container{
        max-width:1100px;
        margin: 28px auto;
        padding: 0 20px 60px;
        box-sizing: border-box;
    }

    .wallet-grid{
        display:grid;
        grid-template-columns: 380px 1fr;
        gap:24px;
        align-items:start;
    }

    .card{
        background:#fff;
        border-radius:12px;
        padding:20px;
        box-shadow:0 10px 30px rgba(2,6,23,0.06);
        color:#102a43;
    }

    .balance-card{
        display:flex;
        flex-direction:column;
        gap:12px;
        align-items:stretch;
    }
    .balance-amount{
        font-size:36px;
        font-weight:900;
        color:#ffd700;
    }
    .balance-meta{
        color:#64748b;
        font-size:14px;
    }

    .topup-form{ display:flex; flex-direction:column; gap:12px; margin-top:8px; }
    .field{ display:flex; flex-direction:column; gap:6px; }
    .field label{ font-size:13px; color:#334155; font-weight:700; }
    .field input[type="number"],
    .field input[type="text"],
    .field select{
        padding:10px 12px; border-radius:8px; border:1px solid #e6e6e6; font-size:15px; outline:none;
    }
    .field input:focus, .field select:focus{ box-shadow:0 8px 20px rgba(16,46,108,0.06); border-color:#cfd8ff; }

    .pay-methods{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
        margin-top:10px;
    }
    .pay-method{
        background:linear-gradient(180deg,#fff,#fff);
        border-radius:10px;
        padding:10px;
        text-align:center;
        border:1px solid #f1f5f9;
        cursor:pointer;
        transition:transform .14s ease, box-shadow .14s ease, border-color .14s;
        font-weight:700;
    }
    .pay-method.selected{ border-color:#ffd700; transform:translateY(-4px); box-shadow:0 10px 26px rgba(255,215,0,0.08); }

    .actions{ display:flex; gap:12px; margin-top:8px; }
    .btn-primary{ background: linear-gradient(90deg,#ffd700,#ffed4e); color:#071233; padding:12px 16px; border-radius:8px; border:none; font-weight:800; cursor:pointer; }
    .btn-secondary{ background:#f3f4f6; color:#334155; padding:10px 14px; border-radius:8px; border:1px solid #e6e6e6; cursor:pointer; }

    .transactions{
        display:flex;
        flex-direction:column;
        gap:12px;
    }
    .txn-row{
        display:flex;
        justify-content:space-between;
        gap:12px;
        align-items:center;
        padding:12px;
        border-radius:8px;
        background:#fbfdff;
        border:1px solid #f1f5f9;
        font-size:14px;
    }
    .txn-left{ display:flex; gap:12px; align-items:center; }
    .txn-type{ width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; border-radius:10px; font-weight:800; color:#071233; background:linear-gradient(90deg,#ffd700,#ffed4e); }
    .txn-meta{ color:#334155; font-weight:700; }
    .txn-time{ color:#64748b; font-size:13px; }

    .methods-list{ display:grid; gap:12px; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); margin-top:12px; }

    .table-wrap{ overflow:auto; max-height:420px; padding-right:6px; }
    .empty{ color:#64748b; font-size:14px; }

    @media (max-width: 980px){
        .wallet-grid{ grid-template-columns: 1fr; }
        .balance-amount{ font-size:28px; }
        .pay-methods{ grid-template-columns: repeat(4,1fr); }
    }
    @media (max-width:520px){
        #wallet .wallet-hero{ padding:22px; border-radius:10px; margin:12px; }
        .pay-methods{ grid-template-columns: repeat(3,1fr); }
        .btn-primary{ width:100%; }
        .actions{ flex-direction:column-reverse; }
    }



    @media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    nav {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav a {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .page-title {
        font-size: 28px;
    }
    .carousel-container {
        height: 220px;
    }
    .carousel-controls {
        gap: 10px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .carousel-slide {
        background-size: contain;
    }
    .home-network-cards {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        gap: 16px !important;
        align-items: start;
    }
    .network-card, .feature-card {
        padding: 0px !important;
        min-height: 120 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        text-align: center;
        gap: 8px;
        align-items: stretch;
        border-top: none !important;
    }
    .logo{
        font-size: 16px !important;
    }
    .feature-card h3{
        font-size: 16px;
        padding: 10px;
        margin-bottom: -20px !important;
    }
    .feature-card p{
        font-size: 14px;
        padding: 8px;
    }
    .network-card p{
        width: 100%;
        margin: 0 auto;
        text-align: center;
        font-size: 14px;
        padding: 10px;
    }
    .network-card img {
        width: 100% !important;
        height: 120px !important;
        object-fit: cover !important;
        min-height: 120px !important;
        max-height: 120px !important;
        border-radius: 10px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        width: calc(100% + 30px);
        display: block;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        cursor: pointer;
    }
    .network-card img:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    }
    .network-card h3 {
        margin: 0;
        font-size: 18px;
        text-align: center;
        color: #e60000;
    }
    #mainNav {
        position: absolute;
        top: 50px;
        /* width/left will be set via JS to match header width */
        right: auto;
        left: auto;
        /* match header/nav bar background */
        background: linear-gradient(135deg, #1e3c8c 0%, #dc2626 100%);
        padding: 8px;
        border-radius: 8px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease, opacity 0.25s ease, left 0.2s ease, width 0.2s ease;
        opacity: 0;
        z-index: 200;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    #mainNav a {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: #fff;
    }
    #mainNav.open {
        max-height: 800px; /* large enough to show links */
        opacity: 1;
    }
    .menu-toggle {
        display: block !important;
        color: #fff !important; /* ensure icon is white */
        -webkit-tap-highlight-color: transparent;
    }   
    .hero{
        min-height: 80vh !important;
        padding: 30px 20px !important;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.4)), linear-gradient(135deg, #1e3c8c 0%, #dc2626 100%) !important;
        background-blend-mode: overlay;
        background-size: cover;
        background-position: center;
        color: #fff !important;
        text-shadow: 0 3px 10px rgba(0,0,0,0.6);
        backdrop-filter: blur(2px);
        z-index: 5;
    }
    #home section {
        padding: 18px 14px;
        margin-bottom: 14px;
    }

    #home .section-title {
        font-size: 20px;
        margin-bottom: 12px;
        text-align: center;
        color: #1e3c8c;
        font-weight: 700;
        letter-spacing: 0.2px;
    }

    /* Card base */
    .mobile-card {
        background: linear-gradient(180deg, #ffffff, #fffefc);
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(12, 30, 60, 0.08);
        padding: 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        transition: transform .18s ease, box-shadow .18s ease;
        will-change: transform;
        border: 1px solid rgba(10,20,40,0.03);
    }
    .mobile-card:active,
    .mobile-card:focus,
    .mobile-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 18px 40px rgba(12, 30, 60, 0.12);
    }

    /* Network cards row */
    .home-network-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: stretch;
    }
    .network-card {
        padding: 12px;
        text-align: center;
        color: #102a43;
        border-radius: 12px;
        background: transparent;
        gap: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .network-card img {
        width: 86px;
        height: 86px;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(2,6,23,0.08);
        border: 3px solid rgba(255,215,0,0.08);
        transition: transform .18s ease, box-shadow .18s ease;
        cursor: pointer;
    }
    .network-card img:active,
    .network-card img:focus,
    .network-card img:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 18px 40px rgba(2,6,23,0.12);
    }
    .network-card h3 {
        font-size: 16px;
        margin-top: 6px;
        margin-bottom: 6px;
        color: #1e3c8c;
        font-weight: 800;
    }
    .network-card p {
        font-size: 13px;
        color: #475569;
        margin: 0;
    }
    .network-card a {
        margin-top: 10px;
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 10px 12px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        color: #102a43;
        background: linear-gradient(90deg,#ffd700,#ffec4a);
        box-shadow: 0 8px 22px rgba(255,215,0,0.12);
        border: 1px solid rgba(255,200,10,0.08);
        cursor: pointer;
    }
    .network-card a:active,
    .network-card a:focus,
    .network-card a:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(255,215,0,0.18);
    }

    /* Services grid as stacked cards */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    .services-card {
        padding: 14px !important;
        min-height: 110px !important;
        border-radius: 12px;
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
        border-top: 4px solid #ffd700 !important;
        background: linear-gradient(180deg,#ffffff,#fffdf9);
    }
    .services-card .icon {
        width: 56px;
        height: 56px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        background: linear-gradient(90deg,#ffd700,#ffed4e);
        box-shadow: 0 8px 22px rgba(255,215,0,0.12);
    }
    .services-card h3 { font-size: 16px; margin: 0; color: #102a43; font-weight:800; }
    .services-card p { margin: 0; font-size: 13px; color: #475569; }

    .services-card a {
        margin-left: auto;
        align-self: center;
        background: #1e3c8c;
        color: #fff;
        padding: 8px 12px;
        border-radius: 10px;
        text-decoration: none;
        font-weight:700;
        font-size: 14px;
        box-shadow: 0 8px 22px rgba(16, 46, 108, 0.12);
    }

    /* Steps / How to buy */
    .steps {
        gap: 12px;
        padding: 18px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .step {
        padding: 12px 10px;
        background: linear-gradient(180deg,#fff,#fff);
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 8px 24px rgba(2,6,23,0.06);
    }
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
        background: linear-gradient(90deg,#ffd700,#ffed4e);
        color: #102a43;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin-bottom: 8px;
    }
    .step h4 { font-size: 14px; margin: 6px 0 4px; color: #102a43; font-weight: 800; }
    .step p { font-size: 13px; color: #64748b; margin: 0; }

    /* subtle entrance animation for cards */
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .network-card, .services-card, .step {
        animation: fadeUp .36s ease both;
    }

    /* ensure comfortable touch targets */
    .network-card, .mobile-card, .services-card, .step, .network-card a { touch-action: manipulation; }

    /* reduce font sizes slightly to fit small screens */
    body { font-size: 15px; }
    
    .services-section { padding: 18px 12px; }
    .services-section .section-title { text-align:center; color:#0f172a; font-weight:900; margin-bottom:12px; letter-spacing:0.2px; }
    .services-section .services-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: stretch;
    }
    .services-section .service-card{
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        border-radius: 14px;
        background: linear-gradient(180deg,#ffffff,#fffdf9);
        border: 1px solid rgba(16,40,80,0.04);
        box-shadow: 0 10px 30px rgba(2,6,23,0.06);
        transition: transform .18s ease, box-shadow .18s ease;
        min-height: 140px;
        align-items: center;       /* center align everything */
        text-align: center;        /* center text */
        justify-content: center;   /* vertical centering */
    }
    /* stack badge and body vertically for a clean centered look */
    .services-section .card-head{
        display:flex;
        gap:10px;
        align-items:center;
        flex-direction:column;
    }
    .services-section .service-badge{
        width:56px;
        height:56px;
        border-radius:12px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        font-size:22px;
        background: linear-gradient(90deg,#ffd700,#ffed4e);
        color:#071233;
        box-shadow: 0 8px 22px rgba(255,215,0,0.12);
        margin-bottom:6px;
        flex: 0 0 56px;
    }
    .services-section .card-body{ display:flex; flex-direction:column; gap:6px; flex:1; align-items:center; justify-content:center; }
    .services-section .service-title{ margin:0; font-size:15px; font-weight:800; color:#071233; }
    .services-section .service-desc{ margin:0; font-size:13px; color:#475569; line-height:1.3; max-width:220px; }
    .services-section .service-action{
        margin-top:8px;
        display:inline-block;
        text-align:center;
        padding:9px 12px;
        border-radius:10px;
        text-decoration:none;
        font-weight:800;
        font-size:13px;
        box-shadow: 0 8px 22px rgba(16,46,108,0.10);
        width:100%;
        max-width:220px;
        align-self:center;
    }
    .services-section .action-go{ background: linear-gradient(90deg,#1e3c8c,#2563eb); color:#fff; }
    .services-section .action-learn{ background: linear-gradient(90deg,#06b6d4,#0ea5a4); color:#043b49; }
    .services-section .action-help{ background: linear-gradient(90deg,#f97316,#fb7185); color:#fff; }
    .services-section .service-card:focus,
    .services-section .service-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 44px rgba(2,6,23,0.12); outline: none; }
    }


    .wallet-hero {
  background: linear-gradient(135deg, #0a7cff, #003f9e);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 0 0 25px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .wallet-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    }

    .wallet-hero p {
    font-size: 16px;
    max-width: 420px;
    opacity: 0.95;
    }


    /* help pae */
.help-hero {
  background: linear-gradient(135deg, #54046d, #8f0226);
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  margin-bottom: -80px;
  margin-top: 20px;
  width: 90%;
}

.help-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.help-hero p {
  font-size: 14px;
  opacity: 0.95;
}

/* CONTENT */
.help-content {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

/* FAQ */
.faq-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: #6b0340;
  margin-bottom: 8px;
  font-size: 17px;
}

.faq-item p {
  color: #555;
  font-size: 15px;
}

/* CTA */
.support-cta {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  margin-top: 40px;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
}

.support-cta h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.support-cta p {
  margin-bottom: 20px;
}

/* LINKS */
.help-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.help-links a {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  color: #0a7cff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.help-links a:hover {
  transform: translateY(-3px);
}

/* contact page */
.contact-hero {
   background: linear-gradient(135deg, #54046d, #8f0226);
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  border-radius: 10px;
  margin-bottom: -80px;
  margin-top: 20px;
  width: 90%;
}

.contact-hero h1 {
  font-size: 29px;
}

/* CONTACT CARD */
.contact-card {
  max-width: 900px;
  margin: 50px auto;
  padding: 45px;
  background: linear-gradient(135deg, #ffffff, #e2e2e2);
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.contact-intro {
  text-align: center;
  font-size: 16px;
  margin-bottom: 35px;
  color: #333;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* BOX */
.contact-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ICON */
.contact-icon {
  font-size: 34px;
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.contact-box h3 {
  color: #1e3c8c;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-box a {
  color: #dc2626;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
}

.contact-box a:hover {
  text-decoration: underline;
}

.contact-box p {
  margin: 5px 0;
  font-size: 15px;
}

/* FULL WIDTH */
.contact-box.full {
  grid-column: 1 / -1;
}

/* BADGE */
.open-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 14px;
  background: #dc2626;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
}








/* Base reset for footer area */
    .fixed-footer{
      position: relative;
      left: auto;
      right: auto;
      bottom: auto;
      z-index: 10;
      margin: 0;
      background: linear-gradient(180deg, rgba(14,34,80,0.96) 0%, rgba(220,38,38,0.98) 100%);
      color: #f8f9fb;
      padding: 20px;
      box-shadow: 0 -6px 30px rgba(6,10,30,0.18);
      border-top: 1px solid rgba(255,215,0,0.08);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      box-sizing: border-box;
      overflow: hidden;
    }
    .footer-inner{
      max-width:1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 18px;
      align-items: start;
      box-sizing: border-box;
      width: calc(100% - 40px);
    }
    .brand{
      display:flex;
      flex-direction:column;
      gap:12px;
      align-items:flex-start;
      width:100%;
      box-sizing: border-box;
      text-align: left;
    }
    .brand .logo{ font-weight:900; color:#fff; font-size:18px; }
    .brand-sub{ color:rgba(255,255,255,0.9); font-size:13px; text-align:left; }

    .network-logos{ display:flex; gap:12px; align-items:center; width:100%; margin-top:8px; justify-content:flex-start; flex-wrap:wrap; box-sizing: border-box; }
    .logo-box{
      min-width:72px;
      height:72px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      font-size:14px;
      padding:8px;
      color:#071233;
      box-shadow: 0 8px 22px rgba(2,6,23,0.18);
      transition: transform .18s ease, box-shadow .18s ease;
      flex: 0 0 auto;
      box-sizing: border-box;
      max-width: 48%;
    }
    .logo-box.mtn{ background: linear-gradient(90deg,#ffd700,#ffed4e); color:#08132a; }
    .logo-box.airteltigo{ background: linear-gradient(90deg,#ff8a8a,#0066cc); color:#fff; }
    .logo-box.telecel{ background: linear-gradient(90deg,#ff6b6b,#cc0000); color:#fff; }
    .logo-box:hover{ transform: translateY(-6px); box-shadow: 0 18px 44px rgba(2,6,23,0.24); }

    .footer-content{ display: grid; grid-template-columns: repeat(4, minmax(140px, 1fr)); gap: 14px; align-items: start; text-align:left; box-sizing: border-box; }
    .footer-section{ background: transparent; padding: 0; text-align:left; }
    .footer-section h4{ margin: 0 0 10px 0; font-size: 14px; color: #fff7d9; letter-spacing: 0.3px; font-weight: 800; text-align:left; }
    .footer-section a, .footer-section p, .footer-section a:visited{
      color: rgba(248,249,251,0.9);
      text-decoration: none;
      display:block;
      margin-bottom:8px;
      font-size:13px;
      transition: color .16s ease, transform .12s ease;
      cursor:pointer;
      padding:6px 8px;
      border-radius:8px;
      text-align:left;
      box-sizing: border-box;
    }
    .footer-section a:hover{ color:#ffd700; transform: translateX(4px); background: rgba(255,255,255,0.02); }
    .footer-section p a{ color:#ffd700; font-weight:700; }

    .footer-bottom{
      max-width:1200px;
      margin: 14px auto 0;
      display:flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      color: rgba(255,235,160,0.95);
      font-size: 13px;
      padding-top: 12px;
      border-top: 1px solid rgba(255,215,0,0.06);
      box-sizing: border-box;
      text-align:left;
    }
    .footer-bottom p{ margin:0; opacity:0.95; }
    .brand-title{ font-size:16px; font-weight:900; color:#fff; margin:0; letter-spacing:0.2px; }
    .brand-sub{ font-size:13px; color:rgba(255,255,255,0.9); }

    /* ACCORDION (mobile friendly) */
    .accordion-btn{ display:none; width:100%; text-align:left; background:transparent; border:none; color: #fff; font-size:14px; padding:8px 0; cursor:pointer; font-weight:800; }
    .accordion-panel{ display:block; transition: max-height .28s ease, opacity .18s ease; overflow:hidden; }
    /* Desktop / tablet keep everything expanded and visible by default */

    /* Mobile-first accessibility / tap-target improvements */
    .footer-section a{ padding:10px 8px; font-size:15px; border-radius:10px; }
    .logo-box{ min-width:64px; height:64px; }

    /* RESPONSIVE: improved mobile layout */
    @media (max-width: 900px){
      .fixed-footer{ padding:18px 16px; }
      .footer-inner{
        grid-template-columns: 1fr;
        gap:12px;
        align-items: stretch;
        width: calc(100% - 32px);
        padding: 0;
      }
      /* Left-align and stack brand + logos */
      .brand{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width:100%;
        gap:8px;
        text-align:left;
      }
      .brand-sub{ font-size:13px; text-align:left; }
      .network-logos{ gap:10px; justify-content:flex-start; margin-top:6px; }
      .accordion-btn{ display:block; }
      /* Make accordion panels collapsed by default on small screens */
      .footer-section .accordion-panel{ max-height:0; opacity:0; padding-top:0; }
      .footer-section .accordion-btn[aria-expanded="true"] + .accordion-panel{ max-height: 1000px; opacity:1; padding-top:8px; }
      .footer-section a{ padding:12px 10px; font-size:15px; text-align:left; }
      .logo-box{ min-width:56px; height:56px; font-size:13px; border-radius:10px; max-width: 32%; }
      .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
        gap:8px;
        padding-top:10px;
      }
      .footer-content{ grid-template-columns: repeat(2, 1fr); gap:12px; text-align:left; }
    }

    @media (max-width: 480px){
      .footer-content{ grid-template-columns: 1fr; gap:10px; }
      .logo-box{ min-width:52px; height:52px; font-size:13px; max-width: 40%; }
      .fixed-footer{ padding:14px 12px; }
      .footer-section a{ font-size:15px; padding:12px 10px; text-align:left; }
      .footer-section h4{ font-size:14px; margin-bottom:6px; text-align:left; }
      .footer-bottom{ font-size:12px; gap:6px; padding-top:8px; align-items:flex-start; text-align:left; }
    }



    /* admin css */
    /* PAGE CENTERING */
.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a7cff, #003f9e);
  padding: 20px;
}

/* CARD */
.admin-login-card {
  background: #ffffff;
  width: 100%;
  max-width: 380px;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  text-align: center;
}

/* TITLE */
.admin-login-card h2 {
  margin-bottom: 5px;
  font-size: 26px;
  color: #1e3c8c;
}

.login-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* INPUTS */
.form-group {
  margin-bottom: 18px;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.form-group input:focus {
  outline: none;
  border-color: #0a7cff;
  box-shadow: 0 0 0 2px rgba(10,124,255,0.15);
}

/* BUTTON */
.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0a7cff, #0056d2);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.admin-dashboard {
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.dashboard-header h2 {
  font-size: 28px;
}

.logout-btn {
  background: #dc2626;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* TABLE */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  padding: 14px;
  text-align: left;
}

th {
  background: #0a7cff;
  color: #fff;
}

tr:nth-child(even) {
  background: #f9f9f9;
}

/* STATUS */
.status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.status.pending {
  background: #fde68a;
  color: #92400e;
}

.status.completed {
  background: #bbf7d0;
  color: #166534;
}

/* ACTION */
.action-btn {
  background: #0a7cff;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.action-btn.full {
  display: block;
  text-align: center;
  margin-top: 12px;
}

/* MOBILE CARDS */
.mobile-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.card-row {
  margin-bottom: 8px;
  font-size: 15px;
}

.completed-text {
  margin-top: 10px;
  font-weight: bold;
  color: #16a34a;
}

/* RESPONSIVE */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* MOBILE TWEAK */
/* MOBILE-FIRST IMPROVEMENTS */
@media (max-width: 600px) {

  .admin-login-wrapper {
    padding: 15px;
    align-items: flex-start;
    padding-top: 60px;
  }

  .admin-login-card {
    max-width: 100%;
    width: 100%;
    padding: 35px 25px;
    border-radius: 16px;
  }

  .admin-login-card h2 {
    font-size: 24px;
  }

  .login-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .form-group input {
    font-size: 14px;
    padding: 16px;
    border-radius: 12px;
  }

  .login-btn {
    font-size: 18px;
    padding: 16px;
    border-radius: 12px;
  }
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}