.clean-home {
  direction: rtl;
  font-family: 'Vazirmatn', sans-serif;
  color: #2a2a2a;
  background: linear-gradient(145deg, #f0fcff, #ffffff);
  padding-bottom: 60px;
}

.clean-home .container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}
.homepic{
  max-width: 100%;
 max-height: 400px;
 width: 100%;
 height: auto;
 object-fit:fill;
 display: block;
 margin: 0 auto;
 border-radius: 12px;
}
.clean-home h1 {
  font-size: 2.8rem;
  color: #004466;
  margin-bottom: 20px;
  border-bottom: 4px solid #e0f4fc;
  display: inline-block;
}

.clean-home .intro {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.benefits {
  list-style: none;
  padding: 0;
  direction: rtl;
}

.benefits li {
  position: relative;
  padding-right: 35px;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 12px 35px 12px 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.benefits li::before {
  content: "✔️";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #2ecc71; /* سبز خوش‌رنگ */
  font-size: 18px;
  font-weight: bold;
}
.steps ol {
  counter-reset: step;
  padding-left: 20px;
}

.steps li {
  margin-bottom: 20px;
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  background: #0077cc;
  color: white;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
}

.pricing {
  margin: 40px 0;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 20px rgba(0,68,102,0.1);
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.pricing-table th {
  background: #004466;
  color: white;
  padding: 12px;
}

.pricing-table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-table tbody tr:hover {
  background: #f0faff;
}

.cta {
  background: linear-gradient(to right, #d6f0fb, #ffffff);
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,119,204,0.1);
  margin-top: 40px;
}

.cta p {
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.cta a {
  text-decoration: none;
  padding: 12px 28px;
  margin: 0 10px;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

@media (max-width: 768px) {
  .clean-home h1 { font-size: 2rem; }
  .cta a { display: block; margin: 10px auto; }
}
.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;
  }
}