/* Step Section Styles */
.cs_step_section {
  background-color: #000000;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
}

.cs_step_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 0;
}

.cs_step_card {
  /* Glassmorphism Background */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Glass-like Border */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  
  /* Smooth Transitions */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  
  /* Subtle Shadow */
  /* box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1); */
}

.cs_step_card:hover {
  transform: translateY(-8px);
  
  /* Enhanced Glassmorphism on Hover */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  
  border-color: rgba(99, 102, 241, 0.3);
  
  /* Enhanced Shadow */
  box-shadow: 
    0 20px 40px rgba(99, 102, 241, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cs_step_icon_wrap {
  margin-bottom: 25px;
  position: relative;
}

.cs_step_icon {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  
  /* Glassmorphism for Icon */
  background: rgba(99, 102, 241, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  
  /* Subtle Inner Glow */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(99, 102, 241, 0.1);
}

.cs_step_card:hover .cs_step_icon {
  /* Enhanced Glassmorphism on Hover */
  /* background: rgba(99, 102, 241, 0.15); */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* border-color: rgba(99, 102, 241, 0.4); */
  transform: scale(1.1);
  
  /* Enhanced Glow */
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 8px 20px rgba(99, 102, 241, 0.2);
}

.cs_step_icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
  font-weight: bold;
  transform: scale(1.1);
}

.cs_step_title {
  margin-bottom: 10px;
  font-weight: 700;
}

.cs_step_subtitle {
  margin-bottom: 15px;
  font-weight: 600;
}

.cs_accent_color {
  color: #ffc107;
}

.cs_purple_color {
  color: #8b5cf6;
}

.cs_step_text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

/* Connecting lines between steps - REMOVED */

/* Square shape for icons */
.cs_step_icon::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 15px;
}