.section9{
    width: 100%;
    height: 100%;
}

.section9-head{
    width: 80%;
    height: 100%;
    margin-left: 10%;
    display: grid;
  	grid-template-columns: repeat(2, 1fr);
}
.section9-head-card{
    width: 100%;
}
.section9 h1{
    font-size: 18px;
    color: #2386c9;
    margin-left: 10%;

}
.section9-head-card h2{
    font-size: 40px;
    margin-top: 1%;
}
.section9-head-card p{
    width: 100%;
    font-size: 17px;
    margin-top: 3%;
}
.pricing-container {
  padding: 80px 20px;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.pricing-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}

.pricing-card:nth-child(2) {

  border-color: #007bff;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.pricing-card:nth-child(2)::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #007bff;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card-header {
  margin-bottom: 25px;
}

.plan-header {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.plan-subheader {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.pricing-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #e1e5e9, transparent);
  margin: 25px 0;
}

.pricing-price {
  margin: 30px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price-currency {
  font-size: 1.5rem;
  color: #007bff;
  font-weight: 600;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
}

.price-amount::after {
  content: "/month";
  font-size: 1rem;
  color: #666;
  font-weight: normal;
  margin-left: 5px;
}

.pricing-features {
  text-align: left;
  margin: 30px 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 8px 0;
}

.feature-icon {
  width: 20px;
  height: 20px;
  background: #28a745;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

.pricing-button-wrapper {
  margin-top: 30px;
}

.pricing-button {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
}

.pricing-button:hover {
  background: linear-gradient(135deg, #0056b3, #003d82);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.pricing-card:nth-child(2) .pricing-button {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.pricing-card:nth-child(2) .pricing-button:hover {
  background: linear-gradient(135deg, #1e7e34, #155724);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}
.section9-end-blank{
    width: 100%;
    height: 80px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .pricing-container {
    padding: 60px 15px;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .pricing-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card:nth-child(2) {
    transform: none;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .pricing-card {
    padding: 25px 15px;
  }

  .plan-header {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }
}