@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --secondary-color: #fff;
}
body {
  font-family: "Inter", sans-serif;
}
.container {
  margin: 0 auto;
}

@theme dark {
  :root {
    --secondary-color: #1f2937;
  }
}

header.active {
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.tab.active {
  font-weight: 700;
  background: linear-gradient(90deg, #7f00ff, #e100ff, #b700ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px dotted #b700ff;
  padding-bottom: 30px;
}
.theme-gradient {
  background: linear-gradient(270deg, #7f00ff, #e100ff, #b700ff);
  background-size: 600% 600%;
  animation: gradient 8s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-primary {
  background: linear-gradient(90deg, #7f00ff, #e100ff, #b700ff);
  padding: 0.5rem 1rem;
  text-align: center;
  display: inline-block;

  transition: background 0.3s ease;
}
.card {
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: var(--secondary-color);
}
.card-body {
  padding: 0.5rem 1rem;
}
.card-body h4 {
  font-weight: 600;
}
.card-body p {
  font-size: 0.875rem;
  color: #4b5563;
}
.blog_Slider {
  overflow-y: auto;
}

.blog_Slider .swiper-pagination {
  bottom: 10px !important;
}
.blog_Swiper .swiper-wrapper {
  align-items: stretch;
  padding-bottom: 50px;
}

.blog_Swiper .swiper-slide {
  height: auto;
  display: flex;
}

.blog_Swiper .swiper-slide > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 767px) {
  header {
    padding-left: 10px;
    padding-right: 10px;
  }
  .tab_list {
    gap: 15px;
  }
  .tab_list li {
    flex-direction: row;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 14px;
  }
  .tab.active {
    border-bottom: none;
    border-right: 1px dotted #b700ff;
    padding-right: 10px;
    padding-bottom: 0;
  }
  .tab.active {
    font-size: 14px;
  }
}
