:root{
  --purple:#7c3aed;
  --cyan:#06b6d4;
}

.section{
  padding:65px 5%;
}

.text-center{text-align:center;}


.section-desc_cycle{
    color:#FFFFFF;
    max-width: 650px;
    font-size: 22px;
    margin: 10px auto 0;
    line-height: 1.5;
}

.section-title_cycle{
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
   background: linear-gradient(90deg, #00faff, #00c6ff);
    -webkit-text-fill-color: transparent;
    background-clip: text;}

.span_title_here{
    background: linear-gradient(90deg, #ffd600, #00ff37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= ULTRA SDLC ================= */

.sdlc-section{
  position:relative;
  overflow:hidden;
}

/* BACKGROUND GLOW */
.sdlc-section::before{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle, rgba(124,58,237,0.25), transparent 70%);
  top:-200px;
  left:-200px;
}

.sdlc-container{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:20px;
  position:relative;
}

/* FLOW LINE */
.sdlc-container::before{
  content:'';
  position:absolute;
  top:32px;
  left:5%;
  right:5%;
  height:3px;
  background:linear-gradient(90deg,var(--purple),var(--cyan));
  background-size:200%;
  animation:flow 4s linear infinite;
}

@keyframes flow{
  0%{background-position:0%}
  100%{background-position:200%}
}

/* CARD */
.sdlc-card{
  position:relative;
  padding:50px 16px 24px;
  border-radius:16px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.1);
  text-align:center;
  transition:.4s;
  opacity:0;
  transform:translateY(40px);
}

/* SCROLL SHOW */
.sdlc-card.show{
  opacity:1;
  transform:translateY(0);
}

/* HOVER */
.sdlc-card:hover{
  transform:translateY(-12px) scale(1.05);
  background:rgba(124,58,237,0.15);
  box-shadow:0 20px 60px rgba(124,58,237,0.4);
}

/* NUMBER */
.sdlc-dot{
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  width:46px;
  height:46px;
  border-radius:50%;
  background: linear-gradient(135deg, #140bff, #00d9ff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  box-shadow:0 0 20px rgba(124,58,237,0.8);
}

/* TEXT */
.sdlc-card h3{
    font-size: 18px;
    margin-bottom: 8px;
    color: #01ffff;
}

.sdlc-card p{
  font-size:14px;
  color:#ffffff;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .sdlc-container{
    grid-template-columns:repeat(3,1fr);
  }
  .sdlc-container::before{display:none;}
}

@media(max-width:600px){
  .sdlc-container{
    grid-template-columns:1fr;
  }
}