/* Add this to your existing CSS file */

.text-center {
    text-align: center;
  }
  
  .rounded-dropdown {
    border-radius: 20px;
    color: #14FB00;
    background: black;
    max-width: 250px;
    border: 1px solid #14FB00;
    text-align: center; box-shadow: 0 5px 10px -5px #14FB00, /* Bottom shadow */
    -5px 5px 10px -5px #14FB00, /* Left side shadow */
    5px 5px 10px -5px #14FB00; /* Right side shadow */
  }

  .rounded-dropdown option {
    background-color: black;
    color: #14FB00;
  }

  .rounded-dropdown:focus,
  .rounded-dropdown:active {
    background-color: black;
    color: #14FB00;
  }

  
  .rounded-div {
    border-radius: 20px;
    box-shadow: 0 0 10px #14FB00;
    padding: 10px;
    display: inline-block;
  }
  
  .rounded-div label {
    margin: 0 10px;
    padding: 5px 10px;
    border-right: 1px solid green;
  }
  
  .rounded-div label:last-child {
    border-right: none;
  }
  

  
  .green-title {
    color: #14FB00;
  }
  
  .price-circle {
    background-color: #14FB00;
    color: white;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  
  .plan_details {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .text-center {
    text-align: center;
  }

  .centered-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .centered-div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

    /*RADIO BUTTONS*/

    .centered-radio-group {
        display: flex;
        justify-content: center;
      }
    
      .radio-label {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        color: white !important;
        padding: 10px 20px;
        cursor: pointer;
        position: relative;
      }

      .radio-label span{
        color: white;
      }
    
      .radio-label:not(:last-child)::after {
        content: '';
        width: 2px;
        height: 100%;
        background-color: #14FB00;
        position: absolute;
        right: 0;
        top: 0;
      }
    
      .radio-label input[type="radio"] {
        display: none;
      }
    
      .radio-label input[type="radio"]:checked + span {
        color: #14FB00;
      }



      .plan_selection .radio-label {
        display: flex;
        align-items: center;
  padding: 10px 20px;
        justify-content: center;
        background-color: black;
        padding: 10px 20px;
        cursor: pointer;
        position: relative;
        border-radius: 10px; /* Rounded corners */ 
        box-shadow: 0 5px 10px -5px #14FB00, /* Bottom shadow */
        -5px 5px 10px -5px #14FB00, /* Left side shadow */
        5px 5px 10px -5px #14FB00; /* Right side shadow */
      }
      
      .plan_selection .radio-label:not(:last-child)::after {
        content: '';
        width: 2px;
        height: 100%;
        background-color: #14FB00;
        position: absolute;
        right: 0;
        top: 0;
      }
      
      .plan_selection .radio-label input[type="radio"] {
        display: none;
      }
      
      .plan_selection .radio-label span {
        color: white; /* Default color for non-selected labels */
      }
      
      .plan_selection .radio-label input[type="radio"]:checked + span {
        color: #14FB00; /* Color for selected label */
      }

.seperator-vertical{
    margin-top: 50px; /* Adjust the value as needed */
}



/*PRICES BOX*/

.plan_box {
    width: 300px; /* Adjust the width as needed */
    padding: 20px;
    background-color: black;
    color: white;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 5px 10px -5px #14FB00, /* Bottom shadow */
    5px 5px 10px -5px #14FB00; /* Right side shadow */
    position: relative;
  }

  
  .feature-list {
    list-style: none;
    padding: 0;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  
  .feature-list li::before {
    content: '✔'; /* Green checkmark */
    color: #14FB00;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .price-ellipsis {
    display: inline-block;
    padding: 5px 35px;
    background-color: #14FB00;
    color: black;
    border: 2px solid #14FB00;
    border-radius: 50px; /* Ellipsis shape */
    font-size: 1.5em;
    margin-top: 20px;
  }



  /*Extra boxes*/
  .extra_box {
    width: 300px; /* Adjust the width as needed */
    padding: 20px;
    background-color: black;
    color: white;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    
    border: 1px solid gray; /* Gray border */
    
    box-shadow: 0 5px 10px -5px black, /* Bottom shadow */
    5px 5px 10px -5px black; /* Right side shadow */
  }
  
  .icon-image {
    width: 80px; /* Adjust the size as needed */
    height: 80px; /* Adjust the size as needed */
    margin-bottom: 10px;
  }
  
  .green-title {
    color: #14FB00;
    margin: 10px 0;
  }
  
  .white-text {
    color: white;
    margin: 10px 0;
  }



  /*EXAMPLES*/

  .features-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
  }
  
  .features-column {
    flex: 1;
    padding: 10px; /* Reduced padding */
    margin: 0 10px; /* Adjust margin as needed */
  }
  
  .image-column {
    flex: 1;
    padding: 10px; /* Reduced padding */
    text-align: center;
    margin: 0 10px; /* Adjust margin as needed */
  }
  
  .example-image {
    max-width: 200px;
    height: auto;
  }
  
  .green-title {
    color: #14FB00;
    margin-bottom: 20px;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  
  .feature-list li::before {
    content: '✔'; /* Green checkmark */
    color: #14FB00;
    position: absolute;
    left: 0;
    top: 0;
  }
  .feature-list-right {
    list-style: none;
    padding: 0;
  }
  
  .feature-list-right li {
    position: relative;
    padding-right: 25px; /* Adjust padding to the right */
    margin-bottom: 10px;
    text-align: right; /* Ensure text is aligned to the right */
  }
  
  .feature-list-right li::before {
    content: '✔'; /* Green checkmark */
    color: #14FB00;
    position: absolute;
    right: 120px; /* Position checkmark to the left */
    top: 0;
  }



  /*Freq Asked*/
  .faq-section {
    margin-top: 20px;
  }
  
  .green-title {
    color: #14FB00;
    margin-bottom: 20px;
  }
  
  .faq-item {
    margin-bottom: 10px;
    background: black;
    border-radius: 10px;
    padding-left: 20px;
    max-width: 90%;
    border: 1px solid #14FB00;
  }


  
  

  
.faq-question {
    background-color: transparent;
    border: none;
    color: #14FB00;
    font-size: 1.2em;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 10px 0;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  

  .faq-question:focus {
    outline: none; /* Remove focus outline */
  }

  .faq-answer {
    display: none;
    padding: 10px 0;
    border-top: 1px solid #14FB00;
  }
  
.faq-answer {
    display: none;
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }

  
.faq-question .arrow {
    /* font-size: 1.2em;*/
    margin-right: 10px; 
    margin-left: 20px; /* Space between text and arrow */
    transition: transform 0.3s ease;
  }

  
  .faq-item.active .arrow {
    transform: rotate(180deg); /* Rotate arrow when active */
  }

  
.faq-answer p {
    margin: 0;
  }

