/* Solutions Header */
.title-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.title-pill {
    background-color: #dbeafe; /* Light blue background as in image */
    color: #4b7bec; /* Main blue color */
    padding: 10px 40px;
    border-radius: 12px;
    font-size: 38px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Decorative Dots */
.deco-dots {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    z-index: 2;
}

.dot {
    border-radius: 50%;
    opacity: 0.8;
}

.dot-blue {
    width: 80px;
    height: 80px;
    background-color: #82ace1;
}

.dot-yellow {
    width: 50px;
    height: 50px;
    background-color: #f7ff3d;
    margin-bottom: 5px;
}

.dot-purple {
    width: 30px;
    height: 30px;
    background-color: #9d8df1;
    margin-bottom: -15px;
}

/* Solution Blocks */
.solution-blocks {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 100px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 0; /* Gap handled by connector or margins */
    position: relative;
    justify-content: space-between;
}

.solution-item.item-reverse {
    flex-direction: row-reverse;
}

.solution-image-link {
    display: block;
    width: 45%;
    flex-shrink: 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.solution-image-link:hover {
    transform: translateY(-5px);
}

.solution-image {
    position: relative;
    width: 100%;
}

.image-offset {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #c0ebff;
    z-index: -1;
    border-radius: 4px;
}

/* Offset positioning based on layout */
.solution-item:not(.item-reverse) .image-offset {
    bottom: -30px;
    left: -20px;
}

.solution-item.item-reverse .image-offset {
    bottom: -30px;
    right: -20px;
}

.solution-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 0; /* Sharp corners as in image */
    display: block;
    box-shadow: var(--shadow-md);
}

/* Connector Line */
.solution-connector {
    height: 2px;
    background-color: #4b7bec; /* Match title-pill blue */
    flex-grow: 1;
    min-width: 60px; /* Ensure it never collapses on desktop */
    margin: 0 40px;
    opacity: 1;
}

.solution-content {
    width: 40%;
}

.solution-title-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.solution-title-link h3 {
    transition: color 0.3s ease;
}

.solution-title-link:hover h3 {
    color: #4b7bec;
}

.solution-content h3 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: 2px;
}

.highlight-p {
    font-size: 18px;
    color: #4b7bec; /* Match title pill color */
    font-weight: 600;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .solution-item, .solution-item.item-reverse {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .solution-image-link, .solution-content {
        width: 100%;
    }
    
    .solution-connector {
        display: none;
    }
    
    .title-pill {
        font-size: 28px;
    }
    
    .deco-dots {
        transform: scale(0.7);
        top: 20px;
        left: 10px;
    }
}

/* Check-circle icon vertical alignment */
.content-block li {
    display: flex;
    align-items: center;
}
