.about-section {
  padding: 100px 0;
  background: #06070d;
  position: relative;
}


.about-section::before {
    inset:0;

  background: radial-gradient(
    circle at top center,
    rgba(52, 93, 255, 0.18) 0%,
    rgba(52, 93, 255, 0.08) 35%,
    transparent 70%
  );

  pointer-events: none;
}
.about-tag {
  display: inline-block;
  color: #4da3ff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-heading {
  color: #fff;
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.about-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;

  margin: 0 auto 25px;
}

/* Tablet */

@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }

  .about-heading {
    font-size: 42px;
  }

  .about-text {
    font-size: 17px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }

  .about-tag {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .about-heading {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.8;
  }
}

.about-btn-wrapper {
  display: flex;
  justify-content: center;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(77, 163, 255, 0.6);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(77, 163, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-btn:hover {
  background: #4da3ff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(77, 163, 255, 0.25);
}

.about-btn span {
  transition: transform 0.3s ease;
}

.about-btn:hover span {
  transform: translateX(6px);
}
