.office-cleaning {
  direction: rtl;
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Vazirmatn', sans-serif;
  color: #333;
}

.office-cleaning .container {
  max-width: 1200px;
  margin: auto;
}

.office-cleaning h2 {
  font-size: 32px;
  color: #004466;
  margin-bottom: 20px;
  text-align: center;
}

.office-cleaning .service-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
}

.office-cleaning p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 25px;
}

.office-cleaning h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #0077aa;
}

.office-cleaning .benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.office-cleaning .benefits li {
  background: #e6f7ff;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  position: relative;
  padding-right: 35px;
  box-shadow: 0 0 5px rgba(0,0,0,0.08);
}

.office-cleaning .benefits li::before {
  content: "✔️";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: green;
  font-size: 18px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
}

.price-table th {
  background-color: #004466;
  color: #fff;
  font-weight: bold;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.note {
  margin-top: 30px;
  background-color: #fff3cd;
  color: #856404;
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid #ffeeba;
}

@media (max-width: 768px) {
  .office-cleaning h2 {
    font-size: 26px;
  }

  .office-cleaning h3 {
    font-size: 20px;
  }

  .price-table th,
  .price-table td {
    padding: 12px;
    font-size: 15px;
  }

  .note {
    font-size: 14px;
  }
}
.call-button{
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color:#4a97df ;
  color: white;
  font-size: 28px;
  text-align: center;
  border-radius: 50%;
  z-index: 1000;
  text-decoration: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.call-button .ripple{
  content: "";
  display: block;
  position: fixed;
  width: 60px;
  height: 60px;
  border: 2px solid #4a97df;
  border-radius: 50%;
  animation: pluse 2s linear infinite;
  opacity: 0.6;
  transform: translate(-50% -50%);
  z-index: 999;
}
.call-button .ripple.delay{
  animation-delay: 1s;
}
@keyframes pluse {
  0%{
    transform: scale(1);
    opacity: 0.6;
  }
  70%{
    transform: scale(2);
    opacity: 0.3;
  }
  100%{
    transform: scale(2.5);
    opacity: 0;
  }
}