/* From Uiverse.io by mrhyddenn */ 
button {
  position: relative;
  margin: 0;
  padding: 0.5em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: #09026b;
  border-radius: 10px;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

button:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

button:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

button::before,
button::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

button:hover::before,
button:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

button:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

button:hover::after {
  transform: translate(50%, 0) scale(1.1);
}






/* From Uiverse.io by mrhyddenn */ 
.button1 {
  position: relative;
  margin: 0;
  padding: 0.5em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: #ffffff;
  border-radius: 10px;
  color: #0b004d;
  font-weight: 500;
  font-size: 18px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.button1:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.button1:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.button1::before,
.button1::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.button1:hover::before,
.button1:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.button1:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.button1:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

.category-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.category-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(3, 4, 80, 0.2));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
  transition: background 0.4s ease;
}

.category-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card:hover .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

@media (min-width: 768px) {
  .category-section {
    flex-direction: row;
    justify-content: space-between;
  }

  .category-card {
    flex: 1;
    max-width: 32%;
  }
  .category-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}
}




.footer-img{
  width: 100%;
  height: 500px;
  padding: 0;
  margin: 0;
}