/* 
    css styles for pricing page
*/


.fa-circle-dot {
    color: #0085c3
}

.pricing-section {
    padding-top: 0 ;
    width: 100%;
}
.title-box {
    color : #000;
}
.price { 
    color: #000;
}
.pricing-section {
    padding: 80px 0;
}

.auto-container {
    max-width: 1400px; 
    margin: 0 auto;
    width: 100%;
}

.pricing-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing-block {
    display: flex;
    padding: 0 15px;
    margin-bottom: 30px;
}

.pricing-block .inner-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-block .inner-box:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.pricing-block .title-box {
    margin-bottom: 25px;
    min-height: 100px;
}

.pricing-block .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-block .text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.pricing-block .price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.pricing-block .price sup {
    font-size: 20px;
    top: -15px;
}

.pricing-block .price sub {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.pricing-block .sub-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.pricing-block .features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-block .features li {
    padding: 12px 0 12px 30px;
    font-size: 15px;
    color: #555;
    position: relative;
    display: flex;
    align-items: center;
}

.pricing-block .features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75em; 
  transform: none; 
  color: #0066cc;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

html[dir="rtl"] .pricing-block .features li:before {
  content: "✓";
  position: absolute;
  right: -20px;
  top: 0.75em; 
  transform: none; 
  color: #0066cc;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.pricing-block .features li.false {
    color: #999;
    text-decoration: line-through;
}

.pricing-block .features li.false:before {
    content: "✗";
    color: #999;
}

.pricing-block .theme-btn {
    margin-top: auto;
    text-align: center;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-block .theme-btn:hover {
    transform: scale(1.02);
}



