.achievements {
  padding: 0px 20px 60px 20px;
  background: #fff;
  text-align: center;
}

.ach-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #171f32;
}

.ach-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

.ach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fixed 4 columns */
  gap: 20px; /* Reduced gap */
  max-width: 1200px; /* Increased max-width */
  margin: auto;
}

.ach-box {
  background: #ffffff;
  border: 1px solid gray;
  border-radius: 8px;
  padding: 15px 15px; /* Reduced padding */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  height: 280px; /* Fixed height for consistency */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.ach-box:hover {
    transform: translateY(-6px);
    border: 1px solid #df622c;
}

.icon {
  width: 60px; /* Reduced icon size */
  height: 60px; /* Reduced icon size */
  display: block;
  margin: 10px auto; /* Reduced margin */
}

.count {
  font-size: 50px; /* Reduced font size */
  font-weight: bold;
  color: #df622c;
  display: block;
  margin-top: 15px; /* Reduced margin */
  margin-bottom: 10px; /* Reduced margin */
  line-height: 1;
}

.ach-box p {
  font-size: 0.95rem; /* Slightly smaller text */
  color: #171f32;
  margin-bottom: 0;
  line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .ach-grid {
    max-width: 100%;
    gap: 15px;
  }
  
  .ach-box {
    padding: 12px 12px;
    height: 260px;
  }
  
  .count {
    font-size: 45px;
  }
  
  .icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 992px) {
  .ach-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: 20px;
  }
  
  .ach-box {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .ach-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    max-width: 90%;
  }
  
  .ach-title {
    font-size: 2rem;
  }
  
  .ach-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .achievements {
    padding: 0px 15px 40px 15px;
  }
  
  .ach-box {
    height: 220px;
    padding: 15px;
  }
  
  .count {
    font-size: 40px;
  }
  
  .icon {
    width: 50px;
    height: 50px;
  }
}

/* For very small desktop screens (under 1280px) */
@media (max-width: 1280px) and (min-width: 993px) {
  .ach-grid {
    gap: 15px;
  }
  
  .ach-box {
    padding: 12px 10px;
    height: 270px;
  }
  
  .ach-box p {
    font-size: 0.9rem;
  }
}
.count-container {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  margin-top: 15px;
  margin-bottom: 10px;
}

.count {
  font-size: 50px;
  font-weight: bold;
  color: #df622c;
  line-height: 1;
}

.plus-sign {
  font-size: 30px;
  font-weight: bold;
  color: #df622c;
  margin-left: 5px;
  line-height: 1;
  align-self: flex-start;
}

.ach-box p {
  font-size: 0.95rem;
  color: #171f32;
  margin-bottom: 0;
  line-height: 1.3;
}

.ach-box {
  background: #ffffff;
  border: 1px solid gray;
  border-radius: 8px;
  padding: 15px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .count {
    font-size: 45px;
  }
  
  .plus-sign {
    font-size: 28px;
  }
}

@media (max-width: 1280px) and (min-width: 993px) {
  .count {
    font-size: 42px;
  }
  
  .plus-sign {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .count {
    font-size: 40px;
  }
  
  .plus-sign {
    font-size: 24px;
  }
}