*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#23292E;
    font-family:Arial,sans-serif;
}
h1, h2, h3{
    color: #fff;
}
p, li{
    color: #fff;
}
/* HEADER */

.top-header{
    background:#1e2631;
}

.header-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

.logo img{
    width: 50px;
}

.header-btns{
    display:flex;
    gap:10px;
}
.header-btns i{
    color: #fff;
    margin-top: 10px;
    font-size: 20px;
}
.demo-btn,
.login-btn{
    text-decoration:none;
    color:#fff;
    background:#157347;
    padding: 5px 10px;
    font-weight:700;
}

.login-section{
margin-left:auto;
display:flex;
align-items:center;
background:#0b8053;
height:50px;
}

marquee{
    color: #fff;
}
.speak{
    width: 30px;
}

.login-btn{
background:#1c8c6c;
color:white;
border:none;
padding:8px 15px;
margin-left:5px;
cursor:pointer;
}



/* FIXTURE */

.fixture-bar{
    display:flex;
    background:#4d4d4d;
    color:#fff;
}

.fixture-title{
    background:#0b8053;
    padding:5px 15px;
    font-weight:700;
    font-size: 15px;
}

.fixture-list{
    width:100%;
    background:#444;
    color:#fff;
}

.fixture-item{
    display:inline-block;
    margin-right:50px;
    text-align:center;
}

.fixture-item strong{
    display:block;
    font-size:18px;
}

.fixture-item small{
    display:block;
    font-size:13px;
}

.now{
    font-size: 20px;
    font-weight: 700;
    color: #aaafb5;
    text-transform: uppercase;
    text-decoration: underline;
    margin-top: 10px;
}

/* Provider Grid */

.provider-grid{
    display:flex;
    overflow-x:auto;
    overflow-y:hidden;
    gap:2px;
    white-space:nowrap;
    margin-bottom: 3px;
}

.provider-grid::-webkit-scrollbar{
   display: none;
}

.provider-card{
    flex:0 0 auto;
    width:240px; /* mobile width */
}

.provider-card img{
    width:100%;
    display:block;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.image-grid img {
    width: 100%;
    display: block;
}

/* Mobile */
@media (max-width: 767px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.gift{
    margin-top: 30px;
    margin-bottom: 30px;
}
.winner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.winner-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.winner-card {
    min-width: 220px;
    background: #1d1d1d;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
}

.winner-card img {
    width: 80px;
    height: 80px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.winner-track:hover {
    animation-play-state: paused;
}

/* Mobile */
@media (max-width: 767px) {
    .winner-card {
        min-width: 170px;
    }
}
.faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
  }

  .faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
  }

  .faq-item {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    color: #fff;
    background-color: #0b8053;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
  }

  .faq-question.active::after {
    content: '-';
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #000;
  }
   .whatsapp{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    animation: pulse 1.5s infinite;
}

.whatsapp img{
    width: 28px;
    height: 28px;
}

@keyframes pulse{
    0%{
        transform: translateX(-50%) scale(1);
    }
    50%{
        transform: translateX(-50%) scale(1.05);
    }
    100%{
        transform: translateX(-50%) scale(1);
    }
}

@media(max-width:576px){
    .whatsapp{
        width: 90%;
        justify-content: center;
        bottom: 15px;
        font-size: 15px;
        padding: 12px 15px;
    }
}
/* footer */
.site-footer{
    background:#23292E;
    color:#fff;
    margin-top:20px;
}

.support-bar{
    background:#444;
    text-align:center;
    padding:12px;
}

.support-bar .sup{
    margin:0;
    font-size:18px;
    font-weight:700;
}

.footer-links{
    text-align:center;
    padding:20px 10px;
}

.footer-links a{
    color:#cfd2d6;
    text-decoration:underline;
    margin:0 15px;
    font-size:15px;
}

.footer-links span{
    color:#cfd2d6;
}

.footer-security{
    border-top:1px dashed #666;
    border-bottom:1px dashed #666;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.security-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.security-left img{
    width:150px;
}

.security-left h4{
    margin:0;
    font-size:12px;
    font-weight:700;
}

.security-left p{
    margin:0;
    color:#d0d0d0;
    font-size:12px;
}

.security-right{
    display:flex;
    gap:15px;
}

.security-right img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.copyright{
    text-align:center;
    padding:18px;
    font-size:16px;
    color:#d0d0d0;
}

/* Mobile */
@media (max-width:768px){
    .footer-security{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .security-left{
        flex-direction:column;
    }

    .security-left img{
        width:120px;
    }

    .security-left h4{
        font-size:24px;
    }

    .security-left p{
        font-size:14px;
    }

    .footer-links a{
        display:inline-block;
        margin:5px;
        font-size:14px;
    }
}
/* footer */

@media only screen and (max-width: 476px){
    p{
        text-align: justify;
    }
    .faq-section{
        padding: 10px;
    }
}