
/* Recruitment Services Page Styles */
.recruitment-services-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;
}

.recruitment-services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.recruitment-services-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.recruitment-services-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-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(42, 82, 152, 0.15);
  border-color: #2a5298;
}

.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 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;
}

.cta-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 30px 0;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffd700;
}

.cta-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
}

.cta-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1e3c72;
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

  .recruitment-services-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;
  }

  .cta-section {
    padding: 30px 20px;
  }

  .cta-section h3 {
    font-size: 1.6rem;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
