/* Pricing Section */
.price-section {
    position: relative;
    padding: 70px 0;
    background-color: #fff;
}

.price-heading {
  margin-bottom: 50px;
}

.price-heading h1 {
  color: var(--color-primary);
}

.price-heading p {
  color: var(--color-text);
}

.price-bg {
  padding: 20px;
  border: 2px solid #e7e9eb;
  margin-bottom: 50px;
  border-radius: 30px;
  transition: all 0.3s ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

.price-bg:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.price-content,
.price-content3 {
  text-align: left;
}

.price-content {
  /* border-right: 2px solid #e7e9eb; */
}

.price-content ul li,
.price-content3 ul li {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.price-content ul li i,
.price-content3 ul li i {
  font-size: 18px;
  color: var(--color-btn-bg);
  font-weight: 600;
  margin-right: 8px;
}

.price-packges {
  text-align: center;
  border-left: 2px solid #e7e9eb;
  border-right: 2px solid #e7e9eb;
  padding: 20px;
}
@media (max-width: 991px) {
  .price-packges {
    border-left: none;
    border-right: none;
    padding: 15px 5px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .price-packges {
    border-left: none;
    border-right: none;
    padding: 25px 5px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.price-packges h2 {
  font-size: 35px;
  font-weight: 600;
  color: var(--color-primary);
}

.price-packges h1 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 15px;
  color: var(--color-accent);
}

.price-packges span {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
}

.price-buttom {
  background-color: var(--color-btn-bg);
  color: var(--color-btn-text);
  padding: 10px 40px;
  text-align: center;
  border: none;
  border-radius: var(--color-border-radius);
  display: inline-block;
  transition: all 0.3s ease;
}

.price-buttom:hover {
  background-color: var(--color-btn-hover-bg);
}

.faq-section {
        position: relative;
        padding: 100px 0;
        clip-path: ellipse(145% 90% at 50% 91%);
    }
    
    .faq-card {
        transition: all 0.3s ease;
        border: 1px solid rgba(13, 110, 253, 0.1);
    }
    
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.1) !important;
        border-color: rgba(13, 110, 253, 0.2);
    }
    
    .transition-all {
        transition: all 0.3s ease;
    }
    
    .bg-primary-opacity-05 {
        background-color: rgba(13, 110, 253, 0.05);
    }
    
    .faq-icon {
        transition: all 0.3s ease;
    }
    
    .faq-card:hover .faq-icon {
        background: rgba(13, 110, 253, 0.2) !important;
        transform: rotate(5deg) scale(1.1);
    }