.wand-box {
    background-color: var(--tertiary);
    color: var(--primary);
    width: 2rem;
    height: 2rem;
    align-content: center;
    text-align: center;
}

.wand-box-text {
    flex-wrap: wrap;
    width: 80%;
    text-align: center;
}

.bg-gradiant {
    background-image: url("/img/websiteImages/border-image.svg");
    padding: 3rem;
    background-repeat: repeat;
    align-items: center;
    height: 100%;
}

.service-card {
    border: 1px solid var(--tertiary);
    border-radius: 1rem;
    padding: 1rem;
    min-height: 12rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    h6 {
        font-weight: bolder;
        font-size: large;
        margin: 0.5rem 0;
        white-space: wrap;
        text-align: center;
    }

    button {
        font-size: small;
        font-weight: bold;
        padding-inline: 1.5rem;
    }
}

.heading {
    color: var(--primary);
    font-size: xx-large;
    font-weight: 700;
}



.form-label {
    color: var(--primary);
    font-weight: bold;
}

.form-control-custom {
    border-radius: 2rem !important;
    width: 100%;
    border: 1px solid var(--tertiary);
    padding: 0.5rem;
}

.upload-input {
    border-radius: 2rem !important;
    width: 100%;
    border: 1px solid var(--tertiary) !important;
}

.form-select-custom {
    border: 1px solid var(--tertiary);
    border-radius: 2rem !important;
}

.form-control-custom:active {
    border: 2px solid var(--primary);
}

.question-group {
    display: flex;
    gap: 1.5rem;
    border: 1px solid var(--tertiary);
    padding: 2rem;
    border-radius: 2rem;
    align-items: stretch;
    z-index: 20;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.column.textarea-column {
    justify-content: stretch;
}

.column.textarea-column>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.column.textarea-column textarea {
    flex: 1;
    height: 100%;
}


.form-check-label {
    color: var(--primary);
    font-weight: bold;
}

#agreeCheck {
    border: 1.5px solid var(--tertiary);
}

.form-section-title {
    color: var(--secondary);
    font-weight: bold;
    background-color: var(--white);
    margin-bottom: -3.7rem;
    z-index: 100;
    width: fit-content;
    padding-inline: 1.5rem;
    margin-inline-start: 3rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider-services {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-services::before,
.slider-services::after {
    /* background: linear-gradient(to right, #2d27536a 0%, rgba(0, 0, 0, 0) 100%); */
    content: "";
    height: 100px;
    position: absolute;
    width: 100px;
    z-index: 2;
}

.slider-services::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider-services::before {
    left: 0;
    top: 0;
}

.slider-services .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider-services .slide {
    display: flex;
    /* Add this */
    justify-content: center;
    align-items: center;
    /* This centers the image vertically */
    height: 100px;
    width: 250px;
}

.slider-services .slide img {
    height: 60%;
    width: 60%;
    object-fit: contain;
}

.circle-background {
    background-image: url('/img/websiteImages/circles.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.background-rectangle {
    position: absolute;
    top: -10px;
    inset-inline-start: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--tertiary);
    opacity: 0.5;
    border-radius: 20px;
    z-index: 0;
    animation: floatDown 3s ease-in-out infinite alternate;
    min-height: 9rem;
    min-width: 25vw;
}

.image-wrapper img {
    position: relative;
    z-index: 1;
    bottom: -10px;
    animation: floatUp 3s ease-in-out infinite alternate;
    min-width: 25vw;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes floatDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(8px);
    }
}