.favorite-button {
        display: none;
    }

    .relative:hover .favorite-button {
        display: block;
    }

    .relative:hover .card-image {
        display: none;
    }
    
    .relative:hover .card-image-hover {
        display: block;
    }
.swiper-button-next,
    .swiper-button-prev,
    .swiper-button-next-2,
    .swiper-button-prev-2 {
      width: 40px; /* Set desired width */
      height: 40px; /* Set desired height */
      background-color: rgb(14, 13, 13);
      color: white !important; /* Icon color */
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0; /* Initially hide the buttons */
      transition: opacity 0.3s;
    }

    /* Adjust icon size */
    .swiper-button-next::after,
    .swiper-button-prev::after,
    .swiper-button-next-2::after,
    .swiper-button-prev-2::after {
      font-size: 24px;
    }

    /* Show the buttons on hover */
    .swiper:hover .swiper-button-next,
    .swiper:hover .swiper-button-prev,
    .swiper:hover .swiper-button-next-2,
    .swiper:hover .swiper-button-prev-2 {
      opacity: 1;
    }
  .relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.border-effect {
    border: 2px solid transparent;
    position: relative;
}

.border-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition: all 0.5s linear;
    pointer-events: none;
}

.border-effect:hover::before {
    border-color: rgb(253, 252, 252);
    animation: border-animation 1s forwards;
}



@keyframes border-animation {
    0% {
        border-top-color: rgb(255, 254, 254);
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    25% {
        border-top-color: rgb(252, 252, 253);
        border-right-color: rgb(254, 254, 255);
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    50% {
        border-top-color: rgb(252, 250, 250);
        border-right-color: rgb(253, 251, 251);
        border-bottom-color: rgb(252, 250, 250);
        border-left-color: transparent;
    }
    75% {
        border-top-color: rgb(253, 250, 250);
        border-right-color: rgb(252, 249, 249);
        border-bottom-color: rgb(253, 250, 250);
        border-left-color: rgb(250, 249, 249);
    }
    100% {
        border-top-color: rgb(253, 253, 253);
        border-right-color: rgb(253, 252, 252);
        border-bottom-color: rgb(253, 252, 252);
        border-left-color: rgb(253, 252, 252);
    }
}



.bg-imges{
background: linear-gradient(to left,#d0ced838,#a5a3ad50,#adacb35b),url("https://nfctagify.com/cdn/shop/files/Screenshot_2024-02-06_080758_ae0c69ee-b64a-4c54-bb51-81f247e25807.jpg?v=1707226973&width=1728&quot;");
}



.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-container h1 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #f1f1f1;
}

.faq-icon {
    font-size: 18px;
}


