#solutions {
    background-image: linear-gradient(#1C1E31 .1rem, transparent .1rem), linear-gradient(90deg, #1C1E31 .1rem, transparent .1rem);
    background-size: 4rem 4rem;
    background-position: center center;
}

#solutions .container * {
    z-index: 1;
}

#solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--color-dark) 0%, rgba(255, 255, 255, 0) 15%);
    z-index: 0;
}

#solutions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, var(--color-dark) 0%, rgba(255, 255, 255, 0) 15%);
    z-index: 0;
}


.solutions-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 1.5rem;
    background-image: radial-gradient(rgba(0, 153, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
}

@media screen and (max-width: 768px) {
    .solutions-wrapper {
        grid-template-columns: 1fr;
    }
}

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

/* glass morphism solution card */
.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
}


.solution-card .card-inner {
    position: relative;
    display: flex;
    gap: 1rem;
    height: 100%;
}

.solution-card .solution-image {
    height: 100%;
    width: 200px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 0.5rem;
    position: relative;
    flex-shrink: 0;
}

.solution-card .solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@media screen and (max-width: 768px) {
    .solution-card .card-inner {
        flex-direction: column;
    }

    .solution-card .solution-image {
        width: 100%;
        height: 200px;
    }

    /*
        .solution-card .solution-info {
            width: 100%;
            flex-grow: 0;
        } */
}


/* dark bottom solution image */
.solution-card .solution-image::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 30%);
}


.solution-card .solution-name {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}

.solution-card:hover {
    border: 1px solid var(--color-primary);
}

.solution-card:hover .solution-name {
    color: var(--color-primary);
}

.cta-card {
    padding: 2rem;
}
