@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}
.WB img {
width: 20%;;
}
header a {
  text-decoration: none;
}
.sm {
  margin-bottom: 0px;
  margin-top: 20px;
  background-color: white;
    }
    .sm a{
      display: inline-flex;
      text-decoration: none;
      font-size: 25px;
      width: 60px;
      height: 60px;
      color: white;
      justify-content: center;
      align-items: center;
      position: relative;
      margin: 0 2px;
    }
.sm a::before{
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 25%;
  z-index: -1;
  transition: transform .3s ease-in;
}
.sm a:nth-child(1)::before{
  background: red;
}
.sm a:nth-child(3)::before{
  background: #5865f2;;
}
.sm a:nth-child(4)::before{
  background: #1c96e9;
}
.sm a:nth-child(2)::before{
  background: white;
}
.sm a:nth-child(5)::before{
  background: #E1306C;
}
.sm a:hover::before{
  transform: scale(0);
}
.sm a i{
  transition: transform .3s ease-in;
}
.sm a:nth-child(1):hover i{
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.5);
}
.sm a:nth-child(1):hover i{
  background: red;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.5);
}
.sm a:nth-child(2):hover i{
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.5);
}
.sm a:nth-child(3):hover i{
  background:#5865f2; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.5);
}
.sm a:nth-child(4):hover i{
  background: #1c96e9;;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.5);
}
.sm a:nth-child(5):hover i{
  background: #E1306C;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.5);
}
.banner-card {
max-width: 100%;
height: auto;
}
.banner-card img {
width: 100%;
opacity: 0.3;
}
.banner-text {
position: absolute;
top:20%;
}

header {
  padding: 0 20px;
  background-color: white;
  height: 70px;
  display: flex;
  justify-content: space-between;
}

#brand {
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
}

#brand a {
  color: #09c372;
}

ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

ul a {
  color: white;
}

ul li {
  padding: 5px;
  margin-left: 10px;
}

ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

#login,
#register {
  border-radius: 5px;
  padding: 5px 8px;
}

#login {
  border: 1px solid #498afb;
}

#register {
  border: 1px solid #ff3860;
}

#register a {
  color: #ff3860;
}

#login a {
  color: #498afb;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}
.nul {
height: 200px;
}
#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: #000000; /* changed from black to #000000 */
  appearance: 110%;
  margin: 6px 0;
  transition: 0.4s;
  color: blue;
}
.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.policy {
cursor: pointer;
}

.policy:hover {
  text-decoration: underline;
  cursor: pointer;
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: black;
  position: absolute;
  z-index: 10000;
  top: 50px;
  left: 0;
  width: 100vw;
  height: 350px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition:
  transform 3s cubic-bezier(0.4,0,0.2,1),
  opacity 1.5s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  border-radius: 10px;
}

header.open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

header.closing .mobile-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: black;
  position: absolute;
  z-index: 10000;
  top: 50px;
  left: 0;
  width: 100vw;
  height: 350px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition:
  transform 3s cubic-bezier(0.4,0,0.2,1),
  opacity 1.5s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  border-radius: 10px;
}

header.open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

header.closing .mobile-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

.mobile-menu li {
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;
  }
}
.ffb {
  color: black;   
    font-weight: bolder;
    margin-left: 10px;
    font-family: arial;
    }
    .black {
    background-color: black;
    }
    .clox {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
    }
    .read {
    display:block;
    font-family: Arial;
    background-color: white;
    border-color: white;
    border-style: solid;
    color:yellow;
    margin-left: 500px;
    margin-top: 50px;
    font-size: 30px;
    border-radius: 110px;
    width:200px;
    height:100px;
    }
    .read:hover {
    background-color: yellow;
    color:white;
    transition: 0.19s;
    transition: 0.23s;
    transform: scale(1.1);
      transition: 0.3s;
    }
    .wem {
    color:black;
    font-family: Arial;
    display: inline;
    margin-bottom: 0;
    }
    .ffb:hover {
    color:white;;
    font-family: Arial;
    transition: 0.19s;
    transition: 0.23s;
    }
    .ffb:active {
    color:royalblue;
    font-family: Arial;
    }
    .sqg2 {
      color:yellow;
      text-decoration: none;
      font-family: Arial;
      font-weight: bolder;
      margin-right: 30px;
      }
      .sqg2:hover {
      color:red;
      text-decoration: none;
      font-family: Arial;
      transition: 0.19s;
      transition: 0.23s;
      }
      .sqg2:active {
      color:black;
      text-decoration: none;
      font-family: Arial;
      }
    .sqg {
    color:yellow;
    text-decoration: none;
    font-family: Arial;
    font-weight: bolder;
    margin-right: 30px;
    }
    .sqg:hover {
    color:red;
    text-decoration: none;
    font-family: Arial;
    transition: 0.19s;
    transition: 0.23s;
    }
    .sqg:active {
    color:black;
    text-decoration: none;
    font-family: Arial;
    }
    .owners {
      color:rgb(0, 238, 255);
      font-weight: bolder;
      text-decoration: none;
      font-family: Arial;
      margin-right: 30px;
      }

      .owners:hover {
      color:red;
      text-decoration: none;
      font-family: Arial;
      font-weight: bolder;
      transition: 0.19s;
      transition: 0.23s;
      }
      .download-app {
        color:#5d00ff; 
        background-color:orange;
        border-color:orange; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        height:40px;
        width:100px;
      }
      .download-app:hover {
        color:orange; 
        background-color:#5d00ff;
        border-color:#5d00ff; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        transition: 0.19s;
        transition: 0.23s;
      }
      .download-app:active {
        color:white;; 
        background-color:black;
        border-color:black; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        transition: 0.19s;
        transition: 0.23s;
      } 
      .tap {
      opacity: 1;
      }
      .tap:hover {
        opacity: 0.2;
      }
      .tap:active {
        opacity: 0.05;
      }
      .owners:active {
      color:black;
      text-decoration: none;
      font-weight: bolder;
      font-family: Arial;
      }
    .nd1 {
      color:rgb(0, 255, 42);
      font-weight: bolder;
      text-decoration: none;
      font-family: Arial;
      text-decoration: underline;
      margin-right: 30px;
      }
      .nd1:hover {
      color:red;
      text-decoration: none;
      font-family: Arial;
      font-weight: bolder;
      text-decoration: underline;
      transition: 0.19s;
      transition: 0.23s;
      }
      .nd1:active {
      color:black;
      text-decoration: none;
      font-weight: bolder;
      text-decoration: underline;
      font-family: Arial;
      }
    .nd {
      color:rgb(0, 255, 42);;
      text-decoration: none;
      font-family: Arial;
      font-weight: bolder;
      margin-right: 30px;
      }
      .nd:hover {
      color:red;
      text-decoration: none;
      font-family: Arial;
      transition: 0.19s;
      transition: 0.23s;
      }
      .nd:active {
      color:black;
      text-decoration: none;
      font-family: Arial;
      }
      .update {
        color:dodgerblue;
        font-weight: bolder;
        text-decoration: none;
        font-family: Arial;
        margin-right: 20px;
      }
      .update:hover {
        color:red;
        text-decoration: none;
        font-family: Arial;
        transition: 0.19s;
        transition: 0.23s;
      }
      .update:active {
        color:black;
        text-decoration: none;
        font-family: Arial;
      }
      .download-mobile {
        color:#5d00ff; 
        background-color:black;
        border-color:black; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        height:40px;
        width:100px;
      }
      .download-mobile:hover {
        color:orange; 
        background-color:#5d00ff;
        border-color:#5d00ff; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        transition: 0.19s;
        transition: 0.23s;
      }
      .download-mobile:active {
        color:black; 
        background-color:white;
        border-color:white; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        transition: 0.19s;
        transition: 0.23s;
      } 
      .download {
        color:orange; 
        background-color:#ffffff;
        border-color:#ffffff; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        height:40px;
        width:100px;
      }
      .download:hover {
        color:#5d00ff; 
        background-color:orange;
        border-color:orange; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        transition: 0.19s;
        transition: 0.23s;
      }
      .download:active {
        color:white;; 
        background-color:black;
        border-color:black; 
        cursor:pointer ;
        border-radius:100px;
        border-style:solid; 
        font-size:20px; 
        margin-left:30px;
        transition: 0.19s;
        transition: 0.23s;
      } 
      .LMAWB {
        margin-top: 30px;
         height: 70px;
          border-radius: 20px;
           border-color:#000000;
           background-color: #000000;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ffffff;
                 width: 300px;
                 border-style: solid;
      }
            .LMAWB:hover {
         height: 70px;
          border-radius: 20px;
           border-color:#5d00ff;
           background-color: transparent;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #000000;
                 width: 300px;
      }
            .LMAWB:active {
        margin-top: 50px;
         height: 70px;
          border-radius: 20px;
           border-color:#ffa500;
           background-color: #0051ff;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ff0000;
                 width: 300px;
      }
            .downloadheader {
         height: 50px;
          border-radius: 15px; 
           border-color:#0059ff;
           background-color: #000000;
           transition: .3s;
            border-width: 1.5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ffffff;
                 width: 120px;
                 border-style: solid;
      }
            .downloadheader:hover {
         height: 70px;
          border-radius: 20px;
           border-color:#5d00ff;
           background-color: transparent;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #000000;
                 width: 300px;
      }
            .downloadheader:active {
        margin-top: 20px;
         height: 70px;
          border-radius: 20px;
           border-color:#ffa500;
           background-color: #0051ff;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ff0000;
                 width: 300px;
      }
                  .downloadheader-mobile {
         height: 50px;
          border-radius: 15px; 
           border-color:#ffffff;
           background-color: #000000;
           transition: .3s;
            border-width: 1px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ffffff;
                 width: 100px;
                 border-style: solid;
      }
            .downloadheader-mobile:hover {
         height: 70px;
          border-radius: 20px;
           border-color:#5d00ff;
           background-color: transparent;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ffffff;
                 width: 300px;
      }
            .downloadheader-mobile:active {
        margin-top: 20px;
         height: 70px;
          border-radius: 20px;
           border-color:#ffa500;
           background-color: #0051ff;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ff0000;
                 width: 300px;
      }
                  .downloadheadersup {
         height: 50px;
          border-radius: 15px; 
           border-color:#000000;
           background-color: #000000;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ffffff;
                 width: 150px;;
                 border-style: solid;
      }
            .downloadheadersup:hover {
         height: 50px;
          border-radius: 20px;
           border-color:#5d00ff;
           background-color: transparent;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #000000;
                 width: 150px;
      }
        .downloadheadersup:active {
         height: 50px;
          border-radius: 20px;
           border-color:#ffa500;
           background-color: #0051ff;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
               cursor: pointer;
                color: #ff0000;
                 width: 150px;
      }
                  .transparent {
         height: 50px;
          border-radius: 15px; 
           border-color:transparent;
           background-color: transparent;
           transition: .3s;
            border-width: 5px;
             font-size: 15px;
              font-weight: bolder;
                color: transparent;
                 width: 150px;;
                 border-style: solid;
      }
      html { scroll-behavior: smooth; }
      body { font-family: 'Gabarito', Arial, sans-serif; background: #f7f9fa; margin: 0; }
           .features {
        display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
        background: linear-gradient(120deg, #ffa500 0%, #5d00ff 100%); padding: 60px 10px 40px 10px; margin-top: -40px;
      }
      .feature-card {
        background: #f0f4ff; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        padding: 32px 24px; width: 320px; text-align: center; transition: transform 0.2s;
        cursor: pointer;
      }
      .feature-card:hover { transform: translateY(-8px) scale(1.03); }
      .feature-icon { font-size: 2.5rem; color: #009cff; margin-bottom: 18px; }
      .feature-title { font-size: 1.3rem; font-weight: bold; margin-bottom: 10px; }
      .feature-desc { font-size: 1rem; color: #333; }
      .sqg1 {
      color:salmon;
      font-family: Arial;
      font-weight: bolder;
      margin-right: 30px;
      }
      .sqg1:hover {
      color:red;
      text-decoration: none;
      font-family: Arial;
      transition: 0.19s;
      transition: 0.23s;
      }
      .sqg1:active {
      color:black;
      text-decoration: none;
      font-family: Arial;
      }
    .nocopyright {
    font-family: Arial;
    font-size: 15px;
    color:white;
    margin-top: 200px;
    margin-bottom: 20px;
    }
    .bible1 {
    font-family: Arial;
    color:salmon;
    text-decoration: none;
    font-weight: bolder;
    }
    .bible {
    font-family: Arial;
    margin-left: 150px;
    color:salmon;
    margin-right: 20px;
    font-weight: bolder;
    text-decoration: none;
    transition: .3s;
    
    }
    .bible:hover {
    width:100%;
    text-decoration: underline;
    color:red;
    text-decoration: none;
    font-family: Arial;
    transition: 0.19s;
    transition: 0.23s;
    transition: .5s;
    
    }
    .bible:active {
    color:black;
    text-decoration: none;
    font-family: Arial;
    }
    .we {
    color:lightblue;
    text-decoration: none;
    font-family: Arial;
    }
    .we:hover {
    color:red;
    text-decoration: none;
    font-family: Arial;
    transition: 0.19s;
    transition: 0.23s;
    }
    .we:active {
    color:black;
    text-decoration: none;
    font-family: Arial;
    }
    .contact {
    color:lightblue;
    text-decoration: none;
    margin-left: 30px;
    margin-right: 20px;
    font-family: Arial;
      }
    .contact:hover {
    color:red;
    text-decoration: none;
    font-family: Arial;
    transition: 0.19s;
    transition: 0.23s;
    }
    .contact:active {
    color:black;
    text-decoration: none;
    font-family: Arial;
    }
      .contactdevs {
    color:lightblue;
    text-decoration: none;
    font-family: Arial;
      }
    .contactdevs:hover {
    color:red;
    text-decoration: none;
    font-family: Arial;
    transition: 0.19s;
    transition: 0.23s;
    }
    .contactdevs:active {
    color:black;
    text-decoration: none;
    font-family: Arial;
    }
    .so {
    margin-left: 100px;
    font-family: Arial;
    }
    .sq {
    color:yellow;
    text-decoration: none;
    font-size: 20px;
    font-family: Arial;
    }
    .copyright {
    color:white;
    font-family: Arial;
    margin-bottom: 20px;
    font-family:Gabarito;
    }
    .copyright2 {
    color:white;
    font-family: Arial;
    }
    .wel {
    font-size: 18px;
    font-family: Arial;
    }
    .wel2 {
    display: inline-block;
    font-size: 18px;
    color:black;
    font-family: Arial;
    }
    .bless {
    margin-bottom: 100px;
    color:green;
    font-size: 19px;
    font-family: Arial;
    margin-left: 450px;
    }
    .select-menu{
      width: 150px;
      cursor: pointer;
      position: relative;
    }
    
    .select{
      background-color: #000000;
      padding: 20px;
      color: #fff;
      font-weight: 500;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top:35px;
    }
    
    .options-list{
      position: absolute;
      width: 80%;
      background-color: green;
      color:orange;
      border-radius: 6px;
      margin-top: 14px;
      padding: 0 20px;
      max-height: 150px;
      overflow-y: auto;
      transition: .4s linear .2s;
      height: 0;
    }
    
    .option{
      padding: 8px 0;
      font-weight: 500;
      font-size: 14px;
      transition: .3s ease-in-out;
    }
    
    .option:hover,
    .option.selected{
      color: #5d00ff;
    }
    
    .options-list::-webkit-scrollbar{
      width: 4px;
      background-color: #5d00ff;
    }
    
    .options-list::-webkit-scrollbar-thumb{
      background-color: yellow;
    }
    
    .options-list.active{
      height: 180px;
    }
.banner-card{
height: auto;
}
banner-text{
position:absolute;
top:0;
padding:10px;
}
.banner-card{
position:relative;
}
.download-faq {
  color:#5d00ff; 
  background-color:orange;
  border-color:orange; 
  cursor:pointer ;
  border-radius:100px;
  border-style:solid; 
  font-size:20px; 
  margin-left:30px;
  height:40px;
  width:100px;
}
.download-faq:hover {
  color:orange; 
  background-color:#5d00ff;
  border-color:#5d00ff; 
  cursor:pointer ;
  border-radius:100px;
  border-style:solid; 
  font-size:20px; 
  margin-left:30px;
  transition: 0.19s;
  transition: 0.23s;
}
.download-faq:active {
  color:white;; 
  background-color:black;
  border-color:black; 
  cursor:pointer ;
  border-radius:100px;
  border-style:solid; 
  font-size:20px; 
  margin-left:30px;
  transition: 0.19s;
  transition: 0.23s;
} 
#preloader{
  background: #ffffff url(https://wonderbible.github.io/Loading.gif) no-repeat center center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}
.card-list .card-item {
  list-style: none;
}
.card-list .card-item .card-link {
  width: 400px;
  display: block;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
}
.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}
.card-list .card-link .badge {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 16px 0 18px;
  width: fit-content;
  border-radius: 50px;
}

/* Default: right-to-left */
.mobile-menu {
  transform: translateX(100%);
  transition:
    transform 3s cubic-bezier(0.4,0,0.2,1),
    opacity 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* Right-to-left pattern */
header.open.rtl-menu .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
header.closing.rtl-menu .mobile-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

/* Left-to-right pattern */
header.open.ltr-menu .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
header.closing.ltr-menu .mobile-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
}
header.ltr-menu .mobile-menu {
  transform: translateX(-100%);
}