.blue_container{
    background-color: var(--bg-dark);
    color:#FAFAFA;
}

.left_side_price_sec_text_container{
    width: 50%;
}
.left_side_price_sec_text_container p:nth-child(1){
font-weight: 600;
font-size: 44px;
line-height: 54px;
letter-spacing: 0;

}
.left_side_price_sec_text_container p:nth-child(2){
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0;
    color: #FAFAFAB2;
    margin: 1rem 0 0;


}
.rgt_side_price_sec_text_container{
    width: 50%;
    
}

.pricingSwiper{
    margin: 2rem 0;
}

.toggle-container {
  display: flex;
  background-color: #c0c8d1;
  border-radius: 30px;
  padding: 4px;
  width: fit-content;
  margin: 0 0 0 auto;
}

.toggle-option {
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  position: relative;
}

.toggle-option.active {
  background-color: #FAFAFA;
    color: #030712;
    font-weight: 500;
}

.discount {
  background-color: #34d27d;
  color: #000000;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 5px;
}


.pricing_card {
  background-color: var(--bg-dark-blue);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 25px 20px;
  box-sizing: border-box;
}

.pricing_title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px;
}

.pricing_subtitle {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: -0.18px;
  
  color: #a9b7c6;
  margin: 0 0 20px;
}

.pricing_price {
     display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    gap: 6px;
}

.price_amount {
font-weight: 500;
font-size: 40px;
line-height: 48px;
letter-spacing: -0.64px;

}

.price_duration {
    color: #FAFAFAB2;

    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.32px;
}
.pricing_limits {
  margin-bottom: 20px;
}

.limit_item {
  font-size: 16px;
  margin: 8px 0;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: #cfe8f9;
}

.limit_icon {
  margin-right: 8px;
  font-size: 16px;
}

.pricing_button {
  position: relative;
  background-color: var(--color-light-blue);
  color: #FAFAFA;
  border: none;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.pricing_button:hover {
  background-color: #fafafa;
  color: var(--color-light-blue);
  transform: scale(1.05); /* Slight zoom */
}

.pricing_included {
  font-size: 14px;
  margin: 1.5rem 0 0 ;
}

.included_title {
    color: #FAFAFA;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
}

.included_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included_item {
  margin: 8px 0;
  position: relative;
  padding-left: 0;
  display: flex;
  gap: 10px;
  
}
/* 
.included_item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffffff;
} */
.three_price_card{
  width: 33%;
}

.contact_sales{
 font-size: 14px;
    /* color: #FAFAFAB2; */
    text-align: center;
    /* margin-top: 10px; */
    position: absolute;
    bottom: -40px;
    left: 50%;
    color: #3482E1;
    transform: translate(-50%, -50%);
}
.or_text{
  color: var(--color-white);
  margin-right: 4px;
}


@media (max-width: 767px) {
    .toggle-option {
        justify-content: center;
        width: 50%;
    }
  .toggle-container{
    width: 100%;
  }
  .toggle-option.active {
   
    width: 50%;
}
  .three_price_card{
  width: 98%;
          margin: 0 0 1rem;
}
    .row_price {
     flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .toggle-container {
  
    margin: 0 auto;
    }
    .left_side_price_sec_text_container {
        width: 100%;
        text-align: center;
    }
    .left_side_price_sec_text_container p:nth-child(1) {
        font-size: 32px;
        line-height: 40px;
    }
    .left_side_price_sec_text_container p:nth-child(2) {
        font-size: 14px;
        line-height: 24px;
    }
    .rgt_side_price_sec_text_container {
        width: 100%;
        margin-top: 20px;
    }
    
}