.top-title{
    font-size: 30px;
}
/* Base container */
.stats-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 40px;
  flex-wrap: wrap; /* allows wrapping */
}

/* Card */
.stat-card {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.icon {
  font-size: 40px;
  color: #e31b23;
}

/* Text */
.content h3 {
  margin: 0;
  font-size: 20px;
  color: #e31b23;
  font-weight: 700;
}

.content p {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* full spectrum starts here */
.recycling-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.title {
  font-size: 36px;
  color: #1f4fd8;
  font-weight: 700;
}

.subtitle {
  margin-top: 10px;
  font-size: 20px;
  color: #000;
}

.description {
  margin: 20px auto 50px;
  max-width: 800px;
  color: #555;
  line-height: 1.6;
}

/* Cards Layout */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.info-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Item */
.item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.item:last-child {
  margin-bottom: 0;
}

.icon {
  font-size: 32px;
  color: red;
  min-width: 40px;
}

.item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #222;
}

.item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.item span {
  color: red;
  font-weight: 600;
  cursor: pointer;
  margin-left: 5px;
}
/* full spectrum Ends here */
/* 🔹 Responsive */


/* 📱 Tablet (≤ 992px) */
@media (max-width: 992px) {
  .stat-card {
    width: 100%;
    max-width: 500px;
  }
  .cards-wrapper {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 30px;
  }
}

@media screen and (max-width:768px) {
  .top-title{
    font-size: 20px;
} 
.service-details-wrap  h3{
  font-size: 20px;  
}
}
/* 📱 Mobile (≤ 576px) */
@media (max-width: 576px) {
  .stats-container {
    padding: 20px;
    gap: 20px;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .icon {
    font-size: 36px;
  }

  .content h3 {
    font-size: 18px;
  }

  .info-card {
    padding: 25px;
  }

  .item {
    flex-direction: column;
    text-align: left;
  }

  .icon {
    font-size: 28px;
  }

  .title {
    font-size: 26px;
  }

  .subtitle {
    font-size: 18px;
  }
}


