/* Base Styles */
.service-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
.service-detail-header {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #fe532c, #2c8dfe);
  color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-detail-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-detail-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.service-detail-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Section Styles */
.service-detail-section {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.service-detail-section-title {
  color: #1f194c;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fe532c;
  display: inline-block;
}

/* Content Styles */
.service-detail-list {
  list-style: none;
  margin: 1.5rem 0;
}

.service-detail-list li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.service-detail-list i {
  color: #fe532c;
  position: absolute;
  left: 0;
  top: 0.2rem;
}

/* Grid Layout */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-detail-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
}

.service-detail-card i {
  font-size: 2rem;
  color: #2c8dfe;
  margin-bottom: 1rem;
}

.service-detail-card h3 {
  color: #1f194c;
  margin-bottom: 0.5rem;
}

/* Methodology Styles */
.service-detail-methodology {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-detail-phase {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
  border-left: 4px solid #fe532c;
}

.service-detail-phase-number {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: #fe532c;
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CTA Styles */
.service-detail-cta {
  text-align: center;
  padding: 3rem 0;
}

.service-detail-button {
  background: #fe532c;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-detail-button:hover {
  background: #2c8dfe;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-detail-title {
    font-size: 2rem;
  }
  
  .service-detail-methodology,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}


/* Add to style.css */
.course-duration {
  background: #2c8dfe;
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.service-detail-card h3 {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-card {
  display: flex;
  flex-direction: column;
}

.service-detail-card p {
  flex-grow: 1;
}