/* Services Section Styles */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: "Cherry Bomb One", system-ui;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color:#22223b;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #3f4bf838;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Item Layout */
.service-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  background: rgb(26, 45, 126);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding:30px;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Reverse layout for alternating pattern */
.service-item.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius:20px;
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  flex: 1;
  padding: 3rem;
  position: relative;
  
}


.step-number {
  position: absolute;
  top: -5px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.service-content h3 {
  font-family: "Sour Gummy", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #15bb23;
}

.service-content p {
   font-family: "Sour Gummy", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
}

.what-you-get {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.what-you-get h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8rem;
}

.what-you-get ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-you-get li {
  padding: 0.3rem 0;
  color: #000000;
  position: relative;
  padding-left: 1.5rem;
}

.what-you-get li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

/* CTA Button */
.cta-container {
  text-align: center;
  margin-top: 4rem;
}

.cta-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-item,
  .service-item.reverse {
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
  }
  
  .service-image {
    order: 1;
  }
  
  .service-content {
    order: 2;
    padding: 2rem;
  }
  
  .step-number {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .service-content h3 {
    font-size: 1.5rem;
  }
  
  .service-content p {
    font-size: 1rem;
  }
  
  .service-image img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .service-image img {
    height: 200px;
  }
}