.item-section {
  font-family: "Inter", sans-serif;
  padding: 60px 20px;
  background-color: var(--primary-color);
}

.item-container {
  max-width: 1200px;
  margin: 0 auto;
}

.item-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  --bs-gutter-x: 30px;
}

.column.text-area {
  max-width: 700px;
  text-align: center;
}

.item-header {
  font-size: 60px;
  font-weight: bold;
  color: #333;
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
  background: linear-gradient(180deg, #DFC5FF 0%, rgba(230, 208, 255, 0.1) 85.52%);
  z-index: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid --thirdry-color;
  gap: 6px;
  height: 31px;
  padding: 0 14px;
  color: --thirdry-color;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.item-title {
  color: --text-color;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.37;
  text-transform: capitalize;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
}

.item-title span {
  background: linear-gradient(90deg, #FFC69C 22.27%, #9F54FD 105.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.demos-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.demos-item {
    border-radius: 6px;
    border: 1px solid #DECAFF;
    background: #DECAFF;
    padding: 20px;
    text-align: center;
    transition: all 0.3s linear 0s;
  width: calc(33.333% - 20px);
  max-width: 320px;
  text-align: center;
}

.demos-item-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.demos-item-img img {
  width: 100%;
  display: block;
}

.demos-item-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.demos-item-title a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s linear 0s;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}


.demos-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .demos-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .demos-item {
    width: 100%;
  }
}
