    .surahEn{
        font-family: 'Montserrat',sans-serif !important;
        color: #B386A7;
        font-size: 12px;
    }
    .surahNo{
        font-family: 'Montserrat',sans-serif !important;
        border: none;
    }

/*card design starting here*/
.cusCard{
  width: 100%;
  height: 80px;
  margin: 5px;
  border: 1px solid #D6DBDF !important;
  text-align: center;
  border-radius: 100px;
  position: relative;
}
.cusCard h5{
    font-family: amiri;
    padding-bottom: 3px;
}
.cardd{
  width: 100%;
  height: 80px;
  margin: 5px;
  border: none !important;
  background: #EAEDED;
  cursor: pointer;
  text-align: center;
  border-radius: 100px;
  position: relative;
}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.cardd::after, .cardd::before{
  content: '';
  position: absolute;
  height: 81px;
  width: 100.60%;
  background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1 !important;
  border-radius: 100px;
  animation: 3s spin linear infinite;
}
.cardd::before{
  filter: blur(4px);
  opacity: 0.5;
}
@keyframes spin{
  from{
    --angle: 0deg;
}
to{
    --angle: 360deg;
}
}

/*under card animation styles*/

.square h5 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    transform: translate(-50%, -50%);
    font-size: 24px;
    z-index: 10; /* Ensure it's above the rotating elements */
}

.square {
    position: relative;
    width: 50px;
    height: 50px;
}

.square::before,
.square::after,
.square span {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    animation: animate 6s linear infinite;

    max-width: 250px;
    padding: 1rem;
    color: white;
    border-width: 3px;
    border-style: solid;
    border-image: 
    linear-gradient(
      to bottom, 
      #8f8fd7, 
      rgba(0, 0, 0, 0)
  ) 1 100%;
}

.square::after {
    animation-duration: 4s;
}

.square span {
    animation-duration: 10s;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*card design Ending here*/


/*button bar and sliding styles starting from here*/
.butdiv1 {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.butdiv2 {
    text-align: center;
}
.bar{
    border: 3px solid #D6DBDF;
    background-color: #EAEDED;
    border-radius: 53px;
    padding: 2px;
}

.button-bar {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    border-radius: 53px;
    overflow: hidden;
}

.button {
    flex: 1;
    padding: 9px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #E0E0E0;
}

.indicator {
    position: absolute;
    background-color: #9E9E9E;
    height: 100%;
    width: 33.33%; 
    transition: transform 0.7s ease;
    border-radius: 50px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1;
}

/*button bar and sliding styles Ending here*/



