.pricing-plans {
  /* background-color: #f9f9f9; */
  padding: 80px 0;
  /* Increased padding for spacing */
}

.area-title {
  margin-bottom: 40px;
  margin-top: 40px;
  /* Added top margin to create spacing from hero */
}

.plan-card {
  background: #f3f8ff;
  /* Light blue */
  border: 1px solid #d0e4ff;
  /* Subtle border */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  align-items: center;
  /* Centers child elements */
  text-align: center;
  /* Centers text inside */
  display: flex;
  flex-direction: column;
  /* Stacks children vertically */
  padding: 20px;
  gap: 15px;
  position: relative;
  /* Ensures proper positioning for the discount badge */
}

.plan-card:hover {
  background: #e8f3ff;
  /* Brighter background on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* More intense shadow */
  transform: translateY(-3px);
  /* Moves the card slightly */
}

.plan-card.popular::before {
  content: "Popular";
  position: absolute;
  top: -10px;
  left: 10px;
  background: linear-gradient(45deg, #6a5af9, #41d8dd);
  /* Gradient albastru */
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 30px;
  /* Ensures spacing between badge and title */
  background: linear-gradient(45deg, #6a5af9, #41d8dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;

}

.plan-card .discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  /* Keeps it in the top-right corner */
  background: linear-gradient(90deg, #ff0000, #3a3a3a);
  /* Gradient red-to-dark gray (almost black) */
  color: #fff !important;
  /* Ensures text remains readable */
  font-size: 0.75rem;
  /* Same as original for consistency */
  padding: 5px 10px;
  /* Same padding as original */
  border-radius: 8px;
  /* Retains rounded corners */
  font-weight: bold;
  /* Keeps bold text */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* Slightly darker shadow for contrast */
  z-index: 1;
  /* Ensures it stays above other elements */
  transition: none;
  /* Disables hover animation */
  transform: translateY(-3px);
  /* Matches the card's movement compensation */
  text-transform: uppercase;
  /* Makes text stand out more */
  border: 2px solid #ff0000;
  /* Strong red border for emphasis */
  animation: pulse 1.5s infinite;
  /* Adds subtle attention-grabbing animation */
}

/* Black Friday pulse animation */
@keyframes pulse {
  0% {
    transform: translateY(-3px) scale(1);
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.5);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.7);
  }

  100% {
    transform: translateY(-3px) scale(1);
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.5);
  }
}

.plan-card:hover .discount-badge {
  transform: translateY(-3px);
  /* Ensures stability during card hover */
}

.price {
  margin: 15px 0;
  text-align: center;
}

.price h4 {
  font-size: 1.8rem;
  font-weight: normal;
  color: #007bff;
  margin: 0;
  text-align: center;

}

.price span {
  font-size: 1rem;
  color: #555;
  margin-left: 4px;
}

.price p {
  font-size: 1rem;
  color: #888;
  margin-top: 5px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-card ul li {
  font-size: 1rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: left;
  color: #333;
}

.plan-card ul li i {
  color: #007bff;
  margin-right: 8px;
}

.btn-primary {
  background: linear-gradient(45deg, #6a5af9, #41d8dd);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  margin: 0 auto;
  /* Center the button horizontally */
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #0056b3, #007bff);
  transform: scale(1.05);
}

.note {
  font-size: 0.8rem;
  color: #555;
  text-align: center;
  margin-top: 30px;
}


.chose-img .icon-gradient {
  font-size: 4rem;
  /* Adjust size as needed */
  background: linear-gradient(45deg, #6a5af9, #41d8dd);
  /* Gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin: 0 auto 10px;
  /* Center icon and add spacing */
  text-align: center;
}

.single-chose {
  text-align: center;
  /* Ensure everything is centered */
}

.single-chose h4 {
  font-size: 1.25rem;
  /* Adjust heading size */
  margin-top: 10px;
  background: linear-gradient(45deg, #6a5af9, #41d8dd);
  /* Gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-align: center;
}

.single-chose p {
  font-size: 1rem;
  /* Adjust paragraph size */
  margin-top: 5px;
  color: #666;
  /* Text color */
}

/* CTA Banner */
.cta-banner {
  background-color: #f9f9f9;
  background: linear-gradient(45deg, #0036b8, #005ae1);
  text-align: center;
  padding: 60px 20px;
  color: #ffffff;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 80%;
  margin-top: -10px;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: #005ae1;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0px 4px 10px rgba(0, 90, 225, 0.2);
}

.cta-banner .btn-primary:hover {
  background: #f2f2f2;
  color: #005ae1;
  transform: scale(1.05);
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  position: relative;
  text-align: center;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content .close:hover {
  color: red;
}

/* Ensure the buttons inside plan-btn align correctly */

/* Ensure buttons in the CTA are aligned to the left */
.inner-banner-area .shared-content .plan-btn a,
.inner-banner-area .shared-content .plan-btn button {
  width: auto;
  /* Prevent full width */
  text-align: center;
  /* Keep text centered */
}

/* Apply the same button styles from .cta-banner .btn-primary */
.inner-banner-area .shared-content .plan-btn .btn-primary,
.inner-banner-area .shared-content .plan-btn .btn-try-now {
  margin-top: 5px;
  background: #ffffff;
  color: #005ae1;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0px 4px 10px rgba(0, 90, 225, 0.2);
}

/* Hover effect */
.inner-banner-area .shared-content .plan-btn .btn-primary:hover,
.inner-banner-area .shared-content .plan-btn .btn-try-now:hover {
  background: #f2f2f2;
  transform: scale(1.05);
  color: #005ae1;
}