*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #071124;
}
h1, h2, h3{
    padding: 10px 0px 10px 0px;
    border-style: solid;
    border-width: 3px 20px 3px 20px;
    border-color: #006D73;
    border-radius: 8px 8px 8px 8px;
    text-align: center;
    font-size: 27px;
    color: #fff;
}
p, li{
    color: #fff;
}
.logo{
    width: 150px;
}
/* HEADER */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #11578F;
}

/* LOGIN AREA */
.login-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-area input {
    padding: 8px 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* BUTTONS */
.login{
    background-color: #006D73;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}


/* NAVBAR */
.menu-bar {
    background: linear-gradient(180deg, #5f7fdb 0, #0cddff 100%);
    overflow-x: auto;
}

.menu-bar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-bar ul li {
    padding: 2px 18px;
    color: #000;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
    font-size: 12px;
    background: rgba(255,255,255,0.2);
    border-right: 1px solid rgba(0,0,0,0.1);
}

/* ACTIVE + COLORS */
.menu-bar ul li .yellow {
    background: #ffd700;
}

.menu-bar ul li .red {
    background: #e60000;
    color: #fff;
}
.menu-bar::-webkit-scrollbar {
    display: none;
}
/* NEW TAG */

.can{
    margin-top: 20px;
    margin-bottom: 20px;
}

.well{
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.faq-section {
    width: 100%;
    padding: 60px;
    box-sizing: border-box;
  }

  .faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
  }

  .faq-item {
    background: #f9f9f9;
    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;
    background: #006D73;
    color: white;
  }

  .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: #000;
    padding: 0 20px;
  }

  .faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #fff;
  }

 /* footer */
.footer{
    background:#000;
    color:#fff;
    padding:50px 7%;
}

.footer-container{
    display:grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    width:120px;
    margin-bottom:25px;
}

.footer-text{
    font-size:18px;
    line-height:2;
    max-width:420px;
}

.badge-box{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    align-items:center;
}

.badge-box img{
    width:90px;
    object-fit:contain;
}

.middle-heading{
    font-size:28px;
    font-weight:700;
    margin-bottom:35px;
    line-height:1.4;
    border: none;
}

.contact-info{
    font-size:20px;
    line-height:2;
}

.contact-info a{
    color:#fff;
    text-decoration:none;
}

.footer-links a{
    display:block;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    margin-bottom:20px;
}

.footer-links a:hover{
    color:#f5d76e;
}

.footer-note{
    margin-top:40px;
    font-size:20px;
    line-height:1.8;
    font-style:italic;
}

.footer-note span{
    color:yellow;
}

.copyright{
    margin-top:40px;
    font-size:20px;
    font-style:italic;
}

.bottom-icons{
    margin-top:60px;
}

.bottom-icons img{
    width:380px;
    max-width:100%;
}


/* MOBILE */

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-logo{
        width:260px;
    }

    .middle-heading{
        font-size:24px;
    }

    .footer-text,
    .contact-info,
    .footer-links a,
    .footer-note,
    .copyright{
        font-size:17px;
    }


}
  /* footer */
         /*whatsaap*/
 .float {
    position: fixed;
    width: 50px;
    height: 50px;
    /* bottom: 20px; */
    right: 35px;
    background: linear-gradient(
      90deg,
      rgb(55, 223, 97) 0%,
      rgb(9, 187, 3) 100%
    );    
    color: #fff !important;
    bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
  }
  .bb{
    color: #fff;
  }
  .my-float {
    margin-bottom: 8px;
    margin-top: 1px;
    margin-left: 1px;
    font-size: 30px;
  }
  /*whatsaap end*/
@media only screen and (max-width: 476px){
    .faq-section{
        padding: 10px;
    }
    p{
        text-align: justify;
    }
  .can {
    margin-top: 0px;
    margin-bottom: 0px;
    }
    .drag {
    width: 185px;
    }
    .login-area input {
        display: none;
    }
    .btn.red2 {
        display: none;
    }
    .logo{
        width: 100px;
    }
}