
.tool-title {
  font-size: 1rem;
  line-height: 1.2rem;
  color: rgb(60, 78, 240);
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgb(189, 206, 241);
  text-align: center;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
  font-weight: 400;
  text-transform: uppercase;
  box-sizing: border-box;
  word-wrap: break-word;
}
h2{
  padding-top: 1%;
}
.para{
  text-align: center;
  font-weight: 300;
  padding-top: 1%;
  font-size: large;
}

.tool-image-grid {
  display: flex;
  flex-wrap: wrap;                /* Wrap items to next line */
  justify-content: center;        /* Center items horizontally */
  gap: 100px 40px;                 /* Row gap 30px, column gap 40px */
  max-width: 1100px;              /* Optional: limit total width */
  margin: 40px auto 0 auto;       /* Center grid in container */
  font-family: 'Roboto', sans-serif;
}


.tool-item {
  text-align: center;
  width: 150px;              /* Optional: Slightly reduce width if needed */
  position: relative;
}

.tool-item:nth-child(odd) {
  transform: translateY(45px);
}


.circle-wrapper {
  width: 110px;
  height: 110px;
  border-radius: 70%;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.circle-wrapper img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.tool-item p {
  font-size: 14px;
  color: black;
  font-weight: 500;
  margin: 0;
  font-family: 'Roboto',sans-serif;
}

.circle-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-color: #2a88f9; /* Optional: Green highlight on hover */
}

.tool-image-grid p{
  text-transform: uppercase;
  font-weight: 500;
  font-size: small;
}

.tool-wraper .tool-image-grid .tool-item p{
  font-weight: 600;
}

@media (max-width: 600px) {
  .tool-title {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}