/* 
=============================================================================
ENHANCED COLOR SCHEME - Original Sizes
Modern colors, gradients, and shadows with original dimensions
=============================================================================
*/

/* Products Section - Enhanced Colors */
.products-section {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    /* Gradient instead of flat color */
    width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

/* Section Title - Better Color */
.section-title {
    font-size: 1.5rem;
    /* Keep original size */
    color: #033e73;
    margin-bottom: 0.5rem;
    margin-top: 0;
    text-align: left;
    font-weight: 700;
    /* Bolder for better visibility */
    padding-left: 2rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    /* Slight tightening */
}

/* Products Grid - Original Size */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    /* Keep original 160px */
    gap: 1.5rem;
    /* Keep original gap */
    padding: 0 2rem;
    background: transparent;
    /* Remove background, let gradient show */
    padding: 2rem;
    margin: 0;
}

/* Product Card - Enhanced Design */
.product-card {
    background: #ffffff;
    /* Pure white for better contrast */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 61, 122, 0.08);
    /* Softer, more professional shadow */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother animation */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 61, 122, 0.1);
    /* Subtle border */
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 61, 122, 0.15);
    /* Enhanced shadow on hover */
    border-color: #f0922e;
    /* Orange accent on hover */
}

/* Product Image - Enhanced Background */
.product-image {
    height: 100px;
    /* Keep original height */
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    /* Subtle gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(0, 61, 122, 0.05);
    /* Subtle separator */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Product Info - Original Padding */
.product-info {
    padding: 1rem;
    /* Keep original padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

/* Product Name - Better Color & Weight */
.product-name {
    font-size: 1rem;
    /* Keep original size */
    font-weight: 700;
    /* Bolder */
    color: #033e73;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Product Description - Better Contrast */
.product-desc {
    font-size: 0.85rem;
    /* Keep original size */
    color: #64748b;
    /* Better contrast than #4b5563 */
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-grow: 1;
}

/* Button - Modern Gradient Design */
.btn-view {
    display: block;
    background: linear-gradient(135deg, #f0922e 0%, #ff9f40 100%);
    /* Gradient button */
    color: white;
    padding: 1rem;
    /* Keep original padding */
    text-align: center;
    border-radius: 6px;
    /* Slightly more rounded */
    text-decoration: none;
    font-weight: 700;
    /* Bolder */
    font-size: 0.85rem;
    /* Keep original size */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(240, 146, 46, 0.3);
    /* Button glow */
}

.btn-view:hover {
    background: linear-gradient(135deg, #d67d1f 0%, #f0922e 100%);
    /* Darker gradient on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 146, 46, 0.4);
    /* Enhanced glow */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        padding: 1rem;
    }
}


/* Solutions Section - Images Fill Area */
#solutions .product-image {
    padding: 0;
}

#solutions .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}