/* Resetting and General Styles */
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.containerr {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
/* Categories Section */
.categories {
  padding: 40px 0;
  background-color: white;
}

.categories .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between cards */
}

.categories .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between cards */
}

.categories .card {
  flex: 1 1 calc(25% - 40px); /* Responsive layout, fits four cards per row */
  max-width: 280px; /* Prevent cards from stretching too wide */
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* .categories .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
} */

.categories .card i {
  font-size: 4rem;
  color: #007bff;
  margin-bottom: 10px;
}
.card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Individual Colors for Icons */
.card:nth-child(1) i {
  color: orange;
  /* IT: Blue */
}

.card:nth-child(2) i {
  color: blue;
  /* Education: Green */
}

.card:nth-child(3) i {
  color:red;
  /* Accounting: Yellow */
}

.card:nth-child(4) i {
  color:rgb(0, 90, 179);
  /* Engineering: Red */
}

.card:nth-child(5) i {
  color: #6f42c1;
  /* Research: Purple */
}

.card:nth-child(6) i {
  color: #17a2b8;
  /* HR: Teal */
}

.card:nth-child(7) i {
  color: #fd7e14;
  /* Administrative: Orange */
}

.card:nth-child(8) i {
  color:rgb(232, 62, 119);
  /* Clinical: Pink */
}

.card:nth-child(9) i {
  color:rgb(232, 147, 62);
  /* Clinical: Pink */
}

.card:nth-child(10) i {
  color:rgb(225, 160, 47);
  /* Clinical: Pink */
}
/* .categories .card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0 0;
} */
.card h3 {
  font-size: 1.2rem;
  color: #333;
}



/* Ensure Proper Spacing Between Sections */
.categories + footer {
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .categories .card {
    flex: 1 1 calc(50% - 20px); /* Two cards per row on smaller screens */
  }
}

@media (max-width: 576px) {
  .categories .card {
    flex: 1 1 calc(100% - 20px); /* One card per row on extra-small screens */
  }
}
.talent-solutions p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color:white;
}
.card:hover {
  transform: translateY(-5px);
  background-color: #fecb00;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.talent-solutions h2 {
  font-size: 2rem;
  /* margin-bottom: 1rem;  */
  text-emphasis: bold;
  color: #002147;
}

.talent-solutions p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}
.talent-solutions {
  padding: 2rem 0;
  background: white;
}