*{
    margin: 0;
    padding: 0;
}
h1, h2, h3{
    color: #000;
    font-size: 30px;
}
p, li{
    color: #000;
}
.ban{
    width: 100%;
    height: 100%;
}
/* HEADER */
.header {
    padding: 15px 20px;
    background-image: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

/* LOGO */
.logo {
    width: 100px;
}
/* LOGIN AREA */
.login-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BUTTONS */
.register{
    background: linear-gradient(-180deg, #f72424, #bb1c00) !important;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
}

.login{
    background: #243a48;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
}

/* MENU BAR */
.menu-bar {
  background-image: linear-gradient(180deg, #5f7fdb 0, #0cddff 100%);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* .menu-bar::-webkit-scrollbar {
  display: none;
} */

.menu-bar ul {
  display: flex;
  flex-wrap: nowrap; /* IMPORTANT */
  justify-content: flex-start; /* center hatao */
  padding: 0;
  margin: 0;
}

.menu-bar ul li {
  padding: 4px 10px;
  color: black;
  font-weight: 700;
  border-right: 1px solid rgba(0,0,0,0.3);
  cursor: pointer;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
}

.menu-bar ul li:last-child {
  border-right: none;
}
/* header */

.image-card {
    margin-top: 10px;
}
.image-card img{
    width: 100%;
    height: 150px;
}

.image-text{
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1px;
}
.image-text p{
    font-size: 18px;
    color: #fff;
}

/* Provider Grid */
.now{
    font-size: 14px;
    background: linear-gradient(-180deg, #f72424, #bb1c00);
    padding: 3px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 5px;
}
.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:340px; /* mobile width */
}

.provider-card img{
    width:100%;
    display:block;
}
/* MENU BAR */
.menu-bar2 {
  background-color: #000;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  
}


.menu-bar2 ul {
  display: flex;
  flex-wrap: nowrap; /* IMPORTANT */
  justify-content: flex-start; /* center hatao */
  padding: 0;
  margin: 0;
}

.menu-bar2 ul li {
  padding: 10px 10px;
  color: #fff;
  font-weight: 700;
  border-right: 1px solid rgba(0,0,0,0.3);
  cursor: pointer;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  background-color: #243a48;
  margin-left: 10px;
  border-radius: 10px;
}

.menu-bar2 ul li:last-child {
  border-right: none;
}
.content-box{
    max-height: 250px;   /* Section ki height */
    overflow-y: auto;    /* Vertical scrollbar */
    overflow-x: hidden;  /* Horizontal scrollbar hide */
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
    width: 90%;
    margin-left: 70px;
    margin-top: 30px;
}

/* faq */
.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-image: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    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;
  }

/* faq */
/* footer */
.footer-container {
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 900px;
  margin-left: 200px;
}
.footer-top {
  background: #e9e9e9;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-links p{
    font-size: 14px;
}
.footer-links a{
    color: #000;
    text-decoration: none;
}
.footer-logo {
  width: 60px;
  margin-top: 5px;
}
.app{
    width: 200px;
}
/* footer */

/* Bottom fixed section */
    .bottom-fixed {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-image: linear-gradient(-180deg, #243a48 20%, #172732 91%);
      /* padding: 15px; */
      display: flex;
      justify-content: space-between;
      gap: 15px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        z-index: 1000;   
    }
    .bottom-fixed a{
        text-align: center;
        color: #fff;
        text-decoration: none;
        padding-top: 10px;
    }
    .bottom-fixed img{
        width: 20px;
    }
    .fixed-bottom{
        margin-left: 250px;
    }

    .gel{
        background-image: linear-gradient(-180deg, #32617f 20%, #1f4258 91%);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 10px;
    }

    /*whatsaap*/
.whatsapp-image {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 999;
  animation: zoomPulse 3s infinite ease-in-out;
}

/* Image animation */
@keyframes zoomPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.whatsapp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 476px){
    p{
        text-align: justify;
    }
    .provider-card{
    flex:0 0 auto;
    width:140px; /* mobile width */
    }
    .image-card img{
    width: 100%;
    height: 100px;
     }
     .image-text p{
    font-size: 12px;
    text-align: center;
     }
    .footer-container {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 50px;
    }
    .faq-section{
        padding: 10px;
    }
    .content-box{
        width: 100%;
        margin-left: 0px;
    }
}
@media (min-width: 768px) {
   .bottom-fixed {
    display: none;
  }
  .stick{
    display: none;
  }
}