/* Application Lifecycle Management Page Styles */

/* Font Family */
body {
  font-family: 'Poppins', sans-serif;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Background */
.section-bg {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

/* Feature Cards */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Step Elements */
.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #3b82f6;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #1e40af;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.step-circle:hover {
  transform: scale(1.1);
  background: #93c5fd;
}

/* Circular Icons */
.circular-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1e40af;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.circular-icon:hover {
  transform: scale(1.05);
  background: #bfdbfe;
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Image Container */
.image-container {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Timeline Elements */
.timeline-line {
  position: relative;
  height: 100%;
  width: 2px;
  background: #94a3b8;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item > div:first-child {
  margin-right: 20px;
}

.timeline-item:nth-child(even) > div:first-child {
  margin-left: 20px;
  margin-right: 0;
}

/* Text Blocks */
.text-block {
  transition: all 0.3s ease;
}

.text-block:hover {
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .step-circle {
    width: 35px;
    height: 35px;
    margin: 0 8px;
  }
  
  .circular-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .step-number {
    font-size: 1.5rem;
  }
}