/* === OUR PROCESS SECTION === */
.process-section {
  padding: 5rem 1rem;
  background: #0e0d1b;
  background: linear-gradient(to bottom,#5d008b,#270250,#0e0d1b);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-title,
.process-subtitle {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-section.active .process-title,
.process-section.active .process-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.process-title {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ad49ff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.process-subtitle {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 4rem;
}

/* === DESKTOP LAYOUT === */
.process-desktop {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  position: relative;
  padding-bottom: 5rem;
  gap: 1rem;
}

.process-line-horizontal {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(to right, #ad49ff, #ffffff);
  z-index: 2;
  transition: width 2s ease;
  box-shadow: 0 0 25px rgba(173, 73, 255, 0.4);
}

.process-section.active .process-line-horizontal {
  width: 100%;
}
.process-step-box-wrapper{

  display: flex; 
  gap: 2rem;
  align-items: self-start;
  justify-content: space-around;
}
.process-step-box-wrapper-2{
 
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: self-start;
  justify-content: space-around;
}

.process-step-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.vertical-connector {
  width: 4px;
  height: 60px;
  background: linear-gradient(to top, #ad49ff, #ffffff);
  margin-bottom: -1px;
  z-index: 1;
  box-shadow: 0 0 25px rgba(173, 73, 255, 0.4);
  
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 2rem 1rem;
  width: 200px;
  height: 200px;
  text-align: center;
  border: 5px solid rgb(241, 192, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  border: 4px solid transparent;
  background: linear-gradient(#3c006a, #573d66) padding-box,
              linear-gradient(45deg, #ad49ff, #ffffff) border-box;
                box-shadow: 0 0 20px rgba(173, 73, 255, 0.4);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(173, 73, 255, 0.4);
}

.step-card i {
  font-size: 1.8rem;
  color: #c78aff;
  margin-bottom: 0.6rem;
}

.step-card h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
  color: #fff;
}

.step-card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

/* === MOBILE LAYOUT === */
.process-mobile {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
}

.mobile-step {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  max-width: 300px;
  width: 90%;
  text-align: center;
  position: relative;
  border:1px solid rgba(255, 255, 255, 0.114);
}

.mobile-step i {
  font-size: 1.6rem;
  color: #bb70ff;
  margin-bottom: 0.6rem;
}

.mobile-step p {
  font-size: 0.95rem;
  color: #ccc;
}

/* === RESPONSIVE SWITCH === */
@media screen and (max-width: 1410px) {
.process-step-box-wrapper-2{
 
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  gap: 1rem;
  align-items: self-start;
  justify-content: space-around;
}
}


@media screen and (max-width: 820px) {
  .process-desktop {
    display: none;
  }
  .process-mobile {
    display: flex;
  }
}
