.header .navbar img {
     border-radius: 8px;
     height: 70px;
     border-radius: 100%;
}
 

.tab-content ul .content-feature-list{
    list-style: none !important;
}


.tab-content .content-feature-list li {
    list-style: none;
    margin: 0 0 10px;
    position: relative;
}

.tab-content .content-feature-list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0;
}


.tab-content .content-feature-list li i{
color:#2563eb;
margin-right:10px;
}

.tabs {
    max-width: 100%;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="radio"] {
    display: none;
}

.tab-labels {
    display: flex;
    flex-wrap: wrap;
}

.tab-labels label {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    background: #2563eb;
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 600;
    border-right: 1px solid #fff;
    text-transform: uppercase;
}

.tab-labels label:last-child {
    border-right: none;
}

input#tab1:checked~.tab-labels label[for="tab1"],
input#tab2:checked~.tab-labels label[for="tab2"],
input#tab3:checked~.tab-labels label[for="tab3"],
input#tab4:checked~.tab-labels label[for="tab4"] {
    background: linear-gradient(to right, #2563eb, #7e22ce);
    color: #fff;
}

.tab-content {
    display: none;
    padding: 25px;
    background: #fff;
    animation: fadeIn 0.3s ease-in;
}

input#tab1:checked~#content1,
input#tab2:checked~#content2,
input#tab3:checked~#content3,
input#tab4:checked~#content4 {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .tab-labels label {
        flex: 100%;
        border-bottom: 1px solid #fff;
        border-right: none;
    }
}


.single-column-list {    
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    list-style: none;
     gap: 10px 20px;
}


.single-column-list li{
      list-style: none;
    margin: 0 0 10px;
    position: relative;
}


.two-column-list {    
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}



@media (max-width: 600px) {
    .two-column-list {
        grid-template-columns: 1fr;
    }
}



.three-column-list {
     margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
    list-style: none;
    padding: 0;
  }
 
  @media (max-width: 768px) {
    .three-column-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .three-column-list {
      grid-template-columns: 1fr;
    }
  }

  .text-justify{
    text-align: justify;
  }

  
.paper-content ul .content-feature-list{
    list-style: none !important;
}


.paper-content .content-feature-list li {
    list-style: none;
    margin: 0 0 10px;
    position: relative;
}

.paper-content .content-feature-list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0;
}


.paper-content .content-feature-list li i{
color:#2563eb;
margin-right:10px;
}

.logo-text{
   font-size: 18px;
    line-height: 30px;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
}

.display-6{
    font-size: 22px !important;
}
.strikethrough-text {
      text-decoration-line: line-through;
    }
     .floating-playstore {
 position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 9999;
      background: #fff;
      border-radius: 8px 0 0 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      padding: 8px 12px;
      transition: transform 0.3s ease;
    }

    .floating-playstore:hover {
      transform: translateY(-50%) scale(1.05);
    }

    .floating-playstore img {
      width: 40px;
      height: auto;
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .floating-playstore {
        padding: 6px 10px;
      }

      .floating-playstore img {
        width: 110px;
      }
    }

    @media (max-width: 480px) {
      .floating-playstore {
        padding: 4px 8px;
      }

      .floating-playstore img {
        width: 40px;
      }
    }

 .btn-animated {
      display: inline-block;
      padding: 2px 13px;
    font-size: 15px;
      color: #fff;
      background-color: rgba(255, 255, 255, 0.1);
      border: 2px solid #fff;
      border-radius: 30px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      margin-left: 20px;
    }

    .btn-animated:hover {
      background-color: #fff;
      color: #7e22ce;
      transform: scale(1.05);
    }


    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255, 0.7);
      }
      50% {
        box-shadow: 0 0 0 10px rgba(255,255,255, 0);
      }
    }

    @media (max-width: 600px) {
     

      .btn-animated {
        padding: 10px 20px;
        font-size: 0.95rem;
      }
    }

    
     .floating-appstore {
 position: fixed;
      top: 40%;
      right: 0;
      transform: translateY(-50%);
      z-index: 9999;
      background: #fff;
      border-radius: 8px 0 0 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      padding: 8px 12px;
      transition: transform 0.3s ease;
    }

    .floating-appstore:hover {
      transform: translateY(-50%) scale(1.05);
    }

    .floating-appstore img {
      width: 40px;
      height: auto;
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .floating-appstore {
        padding: 6px 10px;
      }

      .floating-appstore img {
        width: 110px;
      }
    }

    @media (max-width: 480px) {
      .floating-appstore {
        padding: 4px 8px;
      }

      .floating-appstore img {
        width: 40px;
      }
    }

    .pb-200{
      padding-bottom: 200px;
    }

     .form-group {
      margin-bottom: 15px;
    }

    label {
      font-size: 14px;
      color: #333;
      display: block;
      margin-bottom: 6px;
      text-align: left;
    }

     input, select {
      width: 100%;
      padding: 12px;
      border: 2px solid #e3e3e3;
      border-radius: 8px;
      outline: none;
      font-size: 14px;
      background: #fff;
    }

    input:focus, select:focus {
      border-color: #e3e3e3;
    }


.faq {
      width: min(920px, 100%);
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: clamp(16px, 3vw, 28px);
      border: 1px solid rgba(255, 255, 255, .06);
    }

      

    .faq-list {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .faq-item {
      border: 1px solid rgba(128, 141, 168, .22);
      border-radius: 10px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent);
      overflow: hidden;
    }

    .faq-question {
      cursor: pointer;
      user-select: none;
      padding: 16px 18px;
      display: flex;
      align-items: start;
      gap: 12px;
      position: relative;
    }

    .chev {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(122, 162, 255, .35);
      box-shadow: inset 0 0 0 2px rgba(122, 162, 255, .12);
      transition: transform .25s ease;
    }

    .faq-item.active .chev {
      transform: rotate(90deg);
    }

    .q {
      font-weight: 700;
      font-size: clamp(15px, 1.8vw, 18px);
    }

    .kicker {
      display: inline-block;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(122, 162, 255, .16);
       margin-right: 8px;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding: 0 18px 0 52px;
     }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 18px 18px 52px;
    }

    @media (max-width: 540px) {
      .faq-question {
        padding: 14px 14px;
      }

      .faq-answer {
        padding: 0 14px 0 46px;
      }

      .faq-item.active .faq-answer {
        padding: 0 14px 14px 46px;
      }
    }