/* Background & Layout */
#skill-faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  width: 400px;
  background: url("image/background/faq-bg.png") no-repeat center center/cover;
  opacity: 0.1;
  transform: rotate(15deg);
  z-index: 0;
}

#skill-faq .container {
  position: relative;
  z-index: 2;
}

/* Header Styling */
.section-header h2 {
  font-weight: 800;
  background: linear-gradient(135deg, #03c4fe, #f64eb7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Skill Box Design */
.skill-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.skill-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(3, 196, 254, 0.2),
    0 10px 25px rgba(246, 78, 183, 0.15),
    inset 0 0 15px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.progress {
  height: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 20px;
  background-image: linear-gradient(135deg, #03c4fe, #f64eb7);
  background-size: 200% 200%;
  animation: gradientMove 2s ease infinite;
  transition: width 1.5s ease-in-out;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* FAQ */
.accordion-item {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Accordion Button (Header) */
.accordion-button {
  background-color: #1a1a1a;
  color: #f64eb7 !important;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Active/Expanded Button */
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #111111, #222222);
  color: rgb(3, 196, 254);
  box-shadow: inset 0 -2px 0 #111111;
}

/* Accordion Body (Content Area) */
.accordion-body {
  background: rgba(20, 20, 20, 0.9);
  padding: 20px;
  border-left: 4px solid #222222;
  color: #e0e0e0;
}

/* Optional: Darken the background image thumbnail */
.faq-thumb-small {
  width: 90px;
  border: 2px solid #333;
  filter: brightness(0.8);
}

.img-fluid.rounded-4 {
  border: 5px solid rgba(255, 255, 255, 0.1);
}

.text-info {
  color: #03c4fe !important;
}
