/* ==========================================================================
   Our Works Section from styles.css
   ========================================================================== */

/* Our Works Section */
.our-works {
  padding: 3rem 0;
  background: #000000;
}

.work-header {
  text-align: center;
  margin-bottom: 4rem;
}


.work-label {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.work-title {
  font-size: 2.75rem;
  font-weight: 100;
  color: #ffffff;
  margin: 0;
  padding:0 3.5em;
  letter-spacing: -0.02em;
}

.work-card-title{
  margin-bottom: 0.3rem;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.work-card {
  background: #ffffff;
  color: #000000;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.work-card-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-card-icon {
  color: #00d4ff;
}

.work-card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom:1rem;
  align-items:flex-start;
}

.work-card-number {
  font-size: 110px;
  font-weight: bold;
  background:linear-gradient(to bottom, #0500EF, #2FFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(5, 0, 239, 0.2));
}

.work-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #000000;
}


.work-card p {
  color: #000000;
  font-weight: 100;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  font-size: 17px;
  padding-bottom: 15px;
}