
/* IT Solutions Page Styles */
.it-solutions-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px 40px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.it-solutions-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.it-solutions-header {
  text-align: center;
  margin-bottom: 50px;
}

.it-solutions-header h1 {
  font-size: 3rem;
  color: #1e3c72;
  margin-bottom: 20px;
  font-weight: 700;
}

.it-solutions-header p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 3px solid #ffd700;
  padding-bottom: 10px;
  display: inline-block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-item {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.service-item:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.service-icon i {
  font-size: 1.4rem;
  color: #2a5298;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(42, 82, 152, 0.15);
  border-color: #2a5298;
}

.service-item h3 {
  color: #1e3c72;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .it-solutions-container {
    padding: 70px 15px 30px;
  }

  .it-solutions-header h1 {
    font-size: 2.2rem;
  }

  .services-section {
    padding: 25px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }
}
