 /* form starting stylings ------------------------------- */
    .pricingFormInputSub {
        position: relative;

        margin: 10px;
        margin-bottom: 45px;


    }

    input {
        font-size: 18px;
        font-family: poppins;
        padding: 10px 10px 10px 5px;
        display: block;
        min-width: 10px;

        width: 100%;
        border: none;
        border-bottom: 1px solid #757575;

    }

    input:focus {
        outline: none;
    }

    /* LABEL ======================================= */
    .estimateLabel {
        color: #171717;
        font-size: 18px;
        font-weight: normal;
        font-family: poppins;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 10px;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    /* active state */
    input:focus~label,
    input:valid~label {
        top: -30px;
        font-size: 14px;
        color: #1e1e1e;
    }

    /* BOTTOM BARS ================================= */
    .bar {
        position: relative;
        display: block;
        width: 300px;
    }

    .bar:before,
    .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #5264AE;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    .bar:before {
        left: 50%;
    }

    .bar:after {
        right: 50%;
    }

    /* active state */
    input:focus~.bar:before,
    input:focus~.bar:after {
        width: 50%;
    }

    /* HIGHLIGHTER ================================== */
    .highlight {
        position: absolute;
        height: 60%;
        width: 100px;
        top: 25%;
        left: 0;
        pointer-events: none;
        opacity: 0.5;
    }

    /* active state */
    input:focus~.highlight {
        -webkit-animation: inputHighlighter 0.5s ease;
        -moz-animation: inputHighlighter 0.5s ease;
        animation: inputHighlighter 0.5s ease;
    }



    /* 2x2 Grid Layout */
    .CustomSelectorGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 20px;
    }

    /* Hide the default radio button */
    .CustomSelector input[type="radio"] {
        display: none;
    }

    /* Make the label clickable everywhere */
    .CustomSelector {
        cursor: pointer;
        display: block;


    }

    /* The main card style - matching the input field aesthetic */
    .CustomSelectorContent {
        background-color: #ffffff;

        box-shadow: 0px 3px 8px 0px rgba(113, 113, 113, 0.5);
        transition: all 0.2s ease-in-out;
        display: flex;

        flex-direction: column;

        max-width: 450px;
    }

    .inputError {
        border: 2px solid red !important;
    }

    /* Active/Press effect */
    .CustomSelector:active .CustomSelectorContent {
        transform: translateY(2px);
        box-shadow: 0px 0px 3px 0px rgba(113, 113, 113, 0.5);
    }

    /* Checked State - keeping the yellow background from the first image */
    .CustomSelector input[type="radio"]:checked+.CustomSelectorContent {
        background-color: #ffffffff;
    }

    /* Header containing text and radio circle */
    .CustomSelectorHeader {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 20px 15px 20px;
    }


    .CustomSelectorText {
        font-size: 1.25rem;
        font-weight: 600;
        color: #222222;
        line-height: 1.3;
        max-width: 85%;
    }

    .CustomSelector input[type="radio"]:checked+.CustomSelectorContent .CustomSelectorText {
        color: #000000;
    }

    /* Custom Radio Indicator */
    .CustomSelectorRadioIcon {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid #666;
        position: relative;
        flex-shrink: 0;
        background-color: white;
    }


    /* Adds the dot inside the radio circle when selected */
    .CustomSelector input[type="radio"]:checked+.CustomSelectorContent .CustomSelectorRadioIcon::after {
        content: "";
        position: absolute;
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
        background-color: #21ae73ae;
        border-radius: 50%;
    }


    .CustomSelectorContent img {
        /* width: calc(100% - 40px); */
        margin: 0 20px 20px 20px;



    }


    .inputForm2by2{
      display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: repeat(2, 1fr);  
  gap: 10px; 
}



.pricingContainer{
    display:flex;
    justify-content: center;
}


@media (max-width: 700px) {
  .inputForm2by2 {
    grid-template-columns: 1fr;
  }

  .pricingContainer{
    flex-direction: column;
  }


}

    @media (max-width: 900px) {

          .pricingContainer {
    grid-template-columns: 1fr;
  }

        .CustomSelectorGrid {
            grid-template-columns: 1fr;
        }
    }