.tea-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  height: 100%;
}

.tea-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tea-img-box {
  background: #fff;
  padding: 20px;
  overflow: hidden;
  padding: 57px;
}

.tea-img-box img {
  transition: 0.5s;
  width: 100%;
}

.tea-card:hover .tea-img-box img {
  transform: scale(1.08);
}

.tea-content {
  padding: 15px;
}

.tea-type {
  font-size: 11px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  letter-spacing: 1px;
}

.tea-title {
  font-size: 16px;
  color: #222;
  font-weight: 600;
  margin: 8px 0 15px;
  line-height: 1.4;
  font-family: auto;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sale-price {
  color: #e53935;
  font-size: 17px;
  font-weight: 700;
}

.old-price {
  color: #999;
  font-size: 16px;
  text-decoration: line-through;
}

.discount-text {
  color: #2e7d32;
  font-size: 15px;
  font-weight: 700;
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e53935;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  z-index: 2;
}

@media (max-width: 576px) {
  .sale-price {
    font-size: 20px;
  }

  .old-price,
  .discount-text {
    font-size: 13px;
  }

  .tea-title {
    font-size: 14px;
  }
}

.feature-box {
  background: #fff;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b5d3b, #198754);
  color: #fff;
  font-size: 32px;
}

.feature-box h6 {
  color: #222;
  font-family: auto;
}

.process-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.process-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b5d3b, #198754);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
}

.process-number {
  display: inline-block;
  background: #f3f8f4;
  color: #198754;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card h6 {
  /* font-weight:700; */
  margin-bottom: 10px;
  font-family: auto;
}

.process-card p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .process-card {
    padding: 25px 15px;
  }
}










.counter-section{
    background: linear-gradient(135deg, #0b5d3b, #198754);
    position: relative;
    overflow: hidden;
}

.counter-box{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 35px 20px;
    color: #fff;
    transition: all .4s ease;
}

.counter-box:hover{
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
}

.counter-icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.counter{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.counter::after{
    content: "+";
}

.counter-box p{
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

@media(max-width:768px){
    .counter{
        font-size: 38px;
    }
}





.testimonial-card{
    background:#f8f9fa;
    padding:35px;
    border-radius:20px;
    text-align:center;
    /* box-shadow:0 8px 25px rgba(0,0,0,.06); */
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    /* box-shadow:0 20px 40px rgba(0,0,0,.12); */
}



.quote-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0b5d3b,#198754);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:15px;
}

.testimonial-card h5{
    margin-bottom:5px;
    font-weight:700;
}

.testimonial-card span{
    color:#888;
    font-size:14px;
}


