:root {
    --titleGradient: linear-gradient(to right, #000000, #666666);
    --textColor: #565656;
    --boxGradient: linear-gradient(to right, #95C5B6, #C7E3CD);
    --primaryColor: #388E3B;
    --boxShadow: 0 0 4px 0 #00000040;
    --inputBgColor: #F7F7F7;
    --inputBorderColor: #DBDBDB;
    --borderRadius: 10px;
    --inputTextColor: #9C9C9C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
p {
    margin: 0;
}

input,
select {
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    color: var(--textColor);
    border: 1px solid var(--inputBorderColor);
    border-radius: var(--borderRadius);
    background-color: var(--inputBgColor);
    padding: 12px 16px;
}

input::placeholder {
    font-weight: 400;
    font-size: 13px;
    color: var(--inputTextColor);
}

input:focus {
    outline: none;
    border: 1px solid var(--primaryColor);
}

input:hover {
    border: 1px solid var(--primaryColor);
}

select:focus {
    outline: none;
    border: 1px solid var(--primaryColor);
    background-color: var(--inputBgColor);
}

select:hover {
    border: 1px solid var(--primaryColor);
}

label {
    color: var(--textColor);
    font-weight: 700;
    font-size: 13px;
}

option {
    background-color: var(--inputBgColor);
    border: 1px solid var(--inputBorderColor);
    color: var(--inputTextColor);
}

option:hover {
    color: white;
    background-color: var(--primaryColor);
}

.slider {
    accent-color: var(--primaryColor);
}

input[type=range]::-webkit-slider-thumb{
    border: 7.9px solid #388E3B !important;
    background: #388E3B !important;
}

input[type=range]::-webkit-slider-runnable-track {
    box-shadow: inset 0 0 4px #ccc;
}

.icon {
    font-size: 12px;
    font-weight: 700;
    color: var(--textColor);
    position: relative;
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    width: auto;
    font-size: 12px;
    text-align: center;
    padding: 6px 8px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: none !important;
    white-space: nowrap !important;
    color: white;
    background-color: var(--textColor);
    border-radius: var(--borderRadius);
    position: absolute;
    margin-left: -80px;
    font-family: 'Roboto', sans-serif !important;
    bottom: 130%;
    left: auto;
}

.icon:hover .tooltip-text {
    visibility: visible;
}

.btn {
    color: white;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--primaryColor);
    border-radius: 4px;
    padding: 6px 24px;
    box-shadow: none;
    border-style: none;
    cursor: pointer;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-wrapper {
    width: 24px;
    height: 24px;
    overflow: hidden;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, #F7F9F900, #F7F9F900);
    gap: 20px;
    overflow-x: hidden;

}

.heading {
    font-weight: 700;
    font-size: 28px;
    background: var(--titleGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.subheading {
    font-weight: 400;
    font-size: 14px;
    color: var(--textColor);
    text-align: center;
}



.container {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;

}


.container-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
}

.container-right {
    height: 100%;
    display: flex;
    flex-direction: column;

}

.inner-container-right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.input-container>span {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--primaryColor);
    text-align: center;
}

.processes-box-container {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
}

.processes-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primaryColor);
    border-radius: var(--borderRadius);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.processes-box:hover {
    transform: translate(-2px, -4px);
}

.processes-box.selected {
    background-color: var(--primaryColor);
}

.processes-box.selected>.process-box-label {
    color: white;
}

.processes-box>.process-box-label {
    font-size: 12px;
    color: var(--textColor);
    font-weight: 500;
    text-align: center;
}

#company-name {
    font-size: 28px;
    font-weight: 500;
    background: var(--titleGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-top: 10px;
}

.result-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    z-index: 1;
}

.result-container>.result-card-bg {
    margin-top: 10px;
}

.result-inner-container {
    width: 100%;
    height: 100%;
}

.result-inner-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.result-card-bg {
    width: 250px;
    height: 200px;
    position: relative;
    background-color: #000000B2;
    z-index: 0;
    border-radius: 10px;
}

.result-card {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 15px !important;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 1;
    background-color: #FFFFFF;
    box-shadow: var(--boxShadow);
    border-radius: 10px;
}

.result-card-inner-bg {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 30%;
    left: 38%;
    border-radius: 50%;
    background-color: #5DDC60;
    filter: blur(100px);
    z-index: 1000;
}

.result-card-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    background: var(--titleGradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-card-subtitle {
    font-size: 26px;
    font-weight: 400;
}

.result-card-img-wrapper {
    width: 80px;
    height: 80px;
}

.section-container {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#section-container {
    border-radius: 9px;
    background: var(--boxGradient);
    box-shadow: var(--boxShadow);
    margin: 20px 0 5px 0;
}

#section-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--textColor);
    text-align: center;
}

#service-heading {
    font-size: 28px;
}

.services {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    width: 100%;
    height: 100px;
    display: flex;
    padding: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: var(--boxShadow);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translate(-4px, -8px);
    /*box-shadow: 1px 2px 4px 0 #388E3B;*/
    box-shadow: #388E3B 0px 3px 8px;
    backdrop-filter: blur(20px);
}

.service-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--textColor);
    text-align: center;
}

.service-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--textColor);
    text-align: center;
}



#result-container {
    position: relative;
    overflow: hidden;
}


.canvas {
       top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: visible;
    z-index: 10;
}



@media screen and (min-width:301px) {

    input,
    select {
        font-size: 14px;
    }

    input::placeholder {
        font-size: 14px;
    }

    label {
        font-size: 14px;
    }

    .processes-box-container {
        width: 100%;
        height: 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 10px;
    }
}
 @media screen and (min-width:350px) {
        .btn{
        padding: 12px 24px;
    }
 }

@media screen and (min-width:426px) {
    .heading {
        font-size: 36px;
    }

    .subheading {
        font-size: 20px
    }

    #company-name {
        font-size: 36px;
    }

    .processes-box-container {
        /* width: 100%;
        height: 100px; */
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 10px;
    }

    .container-right .inner-container-right>.section-container {
        width: 100%;
        height: 120px;
    }

    #service-heading {
        font-size: 32px;
    }

    #section-container {
        margin: 20px 0 0 0;
    }
}

@media screen and (min-width:641px) {

    input,
    select {
        font-size: 16px;
    }

    label {
        font-size: 16px;
    }

    input::placeholder {
        font-size: 16px;
    }

    .processes-box-container {
        display: flex;
        gap: 10px;
        height: 60px;
    }
}


@media screen and (min-width:769px) {
    .body {
        padding: 20px 40px;
    }

    #service-heading {
        font-size: 36px;
    }

    .result-container>.result-inner-container {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .services {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media screen and (min-width:1024px) {
    .body {
        padding: 20px;
    }

    .heading {
        font-size: 48px;
    }

    #company-name {
        font-size: 36px;
    }

    .container {
        flex-direction: row;
        gap: 30px;
    }

    .result-container>.result-inner-container {
        margin-left: 8px !important;
    }

    .services {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 20px;
    }

    .section-container {
        width: 80%;
        align-self: center;
    }

    #company-name {
        margin-top: 0;
    }
}

@media screen and (min-width:1201px) {
    .heading {
        font-size: 42px;
    }


    .container {
        gap: 40px;
    }

    .container-left {
        width: 45%;
    }

    .container-right {
        width: 55%;
    }

    .result-container>.result-inner-container {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        margin-left: 8px;
    }

    .services {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 20px;
    }

    .section-container {
        width: 80% !important;
        align-self: center;
    }

    #company-name {
        margin-top: 0;
    }

}

/* ==========================
   RANGE SLIDER COLOR FIX
   Works in Chrome, Edge, Firefox, Safari
   ========================== */

/* Track */
input.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primaryColor) var(--val, 50%), #e0e0e0 0%);
    outline: none;
    transition: background 0.3s;
}

/* Thumb */
input.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: var(--primaryColor);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 3px rgba(0,0,0,0.3);
}

input.slider::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background: var(--primaryColor);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Firefox track */
input.slider::-moz-range-track {
    height: 8px;
    background: #e0e0e0;
    border-radius: 5px;
}