/* Base Reset */
.service-section-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Main Container */
.service-section-wrapper {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fe532c15, #2c8dfe15, #ff8c0015);
  padding: 60px 0;
}

.service-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid Layout */
.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-col {
  flex: 0 0 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  padding: 0;
}

/* Card Styles */
.service-card {
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  background: linear-gradient(135deg, #ffffff 50%, #fe532c 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.service-icon {
  background: linear-gradient(45deg, #fe532c, #ff8c00);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
  background-position: 0 100%;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
  background: linear-gradient(45deg, white, #f0f0f0);
  color: #fe532c;
  transform: rotateY(180deg);
}

.service-card:hover h3 {
  color: white;
}

.service-card:hover p {
  color: #f0f0f0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .service-col {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .service-section-wrapper {
    padding: 40px 0;
  }
  
  .service-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .service-card {
    padding: 25px 20px;
  }
}