@font-face {
    font-family: 'avini'; 
    src: url('font/font.ttf') format('truetype');
    font-weight: normal; 
    font-style: normal; 
}
.footer-wrapper {
    position: relative;
    z-index: 1;
}
    .card {
        font-family: 'avini', sans-serif;
        width: 190px;
        height: 254px;
        background: #07182E;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 20px;
    }

    .card h2 {
        z-index: 2;
        color: white;
        font-size: 2em;
    }

    .card::before {
        content: '';
        position: absolute;
        width: 100px;
        background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
        height: 130%;
        animation: rotBGimg 3s linear infinite;
        transition: all 0.2s linear;
        z-index: 0;
    }

    @keyframes rotBGimg {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .card::after {
        content: '';
        position: absolute;
        background: #07182E;
        inset: 5px;
        border-radius: 15px;
        z-index: 1;
    }

    .card2 {
        display: inline-block;
        margin-left: 20px;
    }

    .circle {
        z-index: 2;
    }

    .card1 {
        font-family: 'avini', sans-serif;
        width: 190px;
        height: 254px;
        background: #07182E;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 20px;
    }

    .card1 h2 {
        z-index: 2;
        color: white;
        font-size: 2em;
    }

    .card1::before {
        content: '';
        position: absolute;
        width: 100px;
        background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
        height: 130%;
        animation: rotBGimg 3s linear infinite;
        transition: all 0.2s linear;
        z-index: 0;
    }

    @keyframes rotBGimg {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .card1::after {
        content: '';
        position: absolute;
        background: #07182E;
        inset: 5px;
        border-radius: 15px;
        z-index: 1;
    }

    .card3 {
        display: inline-block;
        margin-left: 20px;
    }




    p {
        z-index: 2;
        color: white;
        margin-top: 10px;
    }

    .provinces-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .hidden {
        display: none;
    }


    #showMoreBtn {
        margin-top: 40px;
        padding: 10px 20px;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;

        font-family: 'avini', sans-serif;


        width: 200px;
        background-color: #0056b3;
        transform: translateY(-50%);
        padding: 10px;
        border-radius: 30px;
        border: none;
        font-size: 20px;
        color: #ffffff;

        transition: all 0.3s ease;
    }


    #showMoreBtn:hover {
        transform: translateY(-50%) scale(1.1);
    }




    .search-container {
        position: relative;
        width: 400px;
        margin: 0 auto;
        margin-bottom: 30px;
        font-family: 'avini', sans-serif;
    }


    #searchInput {
        width: 100%;
        padding: 12px 50px 12px 20px;
      
        font-size: 16px;
        border: 2px solid #007BFF;
        border-radius: 30px;
        outline: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #searchInput:focus {
        border-color: #0056b3;
        box-shadow: 0 2px 10px rgba(0, 123, 255, 0.5);
    }


    #searchBtn {
        font-family: 'avini', sans-serif;
        position: absolute;
        right: 300px;
        top: 50%;
        width: 100px;
        background-color: #0056b3;
        transform: translateY(-50%);
        padding: 10px;
        border-radius: 30px;
        border: none;
        font-size: 20px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #searchBtn:hover {
        color: #ffffff;
        transform: translateY(-50%) scale(1.1);
    }

    
    #resetBtn {
        font-family: 'avini', sans-serif;

        position: absolute;
        right: 420px;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 10px;
        width: 100px;
        top: 50%;
        transform: translateY(-50%);
        background-color: red;
        border: none;
        font-size: 18px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #resetBtn:hover {

        transform: translateY(-50%) scale(1.1);
    }


    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
        }
    }

    #searchInput:focus {
        animation: pulse 1.5s infinite;
    }

 
    #searchInput::placeholder {
        color: #999;
        font-style: italic;
    }

 
    #searchInput:hover {
        border-color: #0056b3;
        box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    }
    .user-avatar {
          width: 100px;
          height: 100px;
          border-radius: 50%;
          margin-bottom: 10px;
      }
      .user-info {
          text-align: center;
          padding: 20px;
          margin: 0 auto;
      }

      















      .suggestion-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 400px;
    max-height: 200px;
    overflow-y: auto;
    font-family: 'avini', sans-serif;
    position: absolute;
    z-index: 10;
   
}

.suggestion-list li {
    padding: 10px;
    cursor: pointer;
    font-size: 18px;

}

.suggestion-list li:hover {
    background-color: #f0f0f0;
}

.filter-container {
    width: 400px;
  
    font-family: 'avini', sans-serif;
    font-size: 20px;
    text-align: center;
}

#category-select {
    padding: 8px;
    width: 100px;
    text-align: center;
    font-size: 17px;
    border-radius: 10px;
    border: 2px solid #007BFF;

}

.typed-text {
    display: inline;
    color: rgb(255, 238, 4);
    border-right: 2px solid #333;
    white-space: nowrap;
    overflow: hidden;
  }
  .h2t{
    font-family: 'avini', sans-serif;
      font-size: 40px;
text-align: right;
color: white;
  }
 

@media (max-width: 768px) {
.h2t {
  font-size: 1.5rem;
}
}

@media (max-width: 480px) {

 .h2t {
  margin-top: 30px;
  font-size: 1.2rem;
}
}

@media (max-width: 1200px) {
    .provinces-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
}

@media (max-width: 992px) {
    .provinces-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {
    .provinces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .provinces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card, .card1 {
        width: 160px;
        height: 220px;
    }
    
    .card h2, .card1 h2 {
        font-size: 1.5em;
    }
    .search-container {
        width: 200px;
        left: 120px;
    }
    #searchBtn{
        right: 330px;
    }
    #resetBtn{
    
       
        right: 210px;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 10px;
        width: 100px;
        top: 50%;
        transform: translateY(-50%);
        background-color: red;
        border: none;
        font-size: 18px;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
    }
   
#category-select {
    padding: 6px;
    width: 80px;
 
    font-size: 16px;
  margin-bottom: 100px;


}

    }

