*{
    margin: 0;
    padding: 0;
}
body{
    margin:0;
    font-family:Arial, sans-serif;
    background:linear-gradient(#0f8cd2,#17648c);
}

.login-page{
    max-width:450px;
    margin:0 auto;
    padding:10px 15px 40px;
}

.logo{
    display: block;
    margin: 0 auto 20px;
    max-width: 200px; /* apne hisab se size */
    height: auto;
}

.login-box{
    background:#f2f2f2;
    border-radius:6px;
    padding:15px;
    box-shadow:0 0 10px rgba(0,0,0,.3);
}

.login-box .log{
    text-align:center;
    color:#1188cc;
    margin:0 0 15px;
    font-weight:500;
    font-size: 20px;
}

.input-group{
    display:flex;
    margin-bottom:15px;
}

.input-group input{
    flex:1;
    border:1px solid #ccc;
    padding:12px;
    font-size:15px;
    outline:none;
}

.input-group span{
    width:45px;
    background:#e9ecef;
    border:1px solid #ccc;
    border-left:none;
    display:flex;
    align-items:center;
    justify-content:center;
}

.btn-login,
.btn-demo{
    width:100%;
    border:none;
    background:#1188cc;
    color:#fff;
    padding:12px;
    font-size:15px;
    margin-bottom:8px;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.captcha-text{
    font-size:12px;
    text-align:center;
    color:#444;
    line-height:1.5;
}

.apk-link{
    display:block;
    text-align:center;
    color:#1d73d6;
    text-decoration:none;
    margin-top:10px;
}
.stay{
    background-color: #fff;
    padding: 30px;
}
.faq-section {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background-color: #fff;
  }

  .faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
  }

  .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:linear-gradient(#0f8cd2,#17648c);
  }

  .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;
  }
  /* footer */
  .footer{
    background: #000;
    color:#fff;
    padding:50px 0 0;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    padding:0 20px;
}

.footer-logo{
    width:160px;
    margin-bottom:15px;
}

.footer-box h3{
    color:#fff;
    margin-bottom:15px;
    font-size:20px;
    font-weight: 700;
}

.footer-box p{
    color:#ccc;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#0f8cd2;
    padding-left:5px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#333;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#0f8cd2;
    color:#fff;
    transform:translateY(-5px);
}

.footer-bottom{
    text-align:center;
    padding:20px;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#aaa;
    font-size:14px;
}

@media(max-width:768px){
    .footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}
  /* footer */
   .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;
    }
}
@media only screen and (max-width: 476px){
    p{
        text-align: justify;
    }
    .faq-section{
        padding: 10px;
    }
    .footer-box{
        text-align: start;
    }
}