.modal-content {
    border-radius: 20px;
}

.solution-detail-gallery .main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.thumbnails-container {
    padding: 10px 0;
}

#thumbnailsCarousel .item {
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

#thumbnailsCarousel .item:hover {
    border-color: #f5a425;
    transform: scale(1.05);
}

#thumbnailsCarousel .item.active {
    border-color: #f5a425;
}

#thumbnailsCarousel img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.solution-details-info h5 {
    font-size: 16px;
    font-weight: 600;
}

#solutionTechnologies .badge {
    background: rgba(245, 164, 37, 0.2);
    color: #f5a425;
    border: 1px solid #f5a425;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
}

#solutionFeatures {
    list-style: none;
    padding-left: 0;
}

#solutionFeatures li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#solutionFeatures li:before {
    content: "✓";
    color: #f5a425;
    font-weight: bold;
    margin-right: 10px;
}

#solutionFiles a {
    display: inline-block;
    background: rgba(245, 164, 37, 0.1);
    color: #f5a425;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

#solutionFiles a:hover {
    background: rgba(245, 164, 37, 0.3);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .solution-detail-gallery .main-image img {
        height: 300px;
    }
}