﻿
        .hero {
            position: relative;
            padding: 50px 20px;
           /* background-image: url(/images/product-and-solutions-desktop-scaled.jpg);
            background-repeat: no-repeat;
            background-size: cover;*/
           background: linear-gradient(to right, #3A5AA4, #A8C0FA);
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 60px;
        }
        
        .hero-text h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .hero-text p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #fff;
        }
        
        .btn {
            display: inline-block;
            background-color: #333;
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        
        .btn:hover {
            background-color: #555;
        }
        
        .hero-image {
            flex: 1;
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
        }
        
        .floating-card {
            position: absolute;
            bottom: 30px;
            left: -100px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 20px;
            width: 250px;
            z-index: 10;
        }
        
        .floating-card::before {
            content: '';
            position: absolute;
            top: -10px;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: #f39c12;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }
        
        .floating-card h3 {
            font-size: 16px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .floating-card ul {
            list-style-type: none;
        }
        
        .floating-card li {
            margin-bottom: 8px;
            font-size: 14px;
            color: #666;
            display: flex;
            align-items: center;
        }
        
        .floating-card li::before {
            content: '✓';
            color: #f39c12;
            margin-right: 10px;
        }
        
        .floating-card .arrow {
            position: absolute;
            bottom: 10px;
            right: 10px;
            font-size: 12px;
            color: #666;
        }

.product-categories {
    padding: 40px;
    background-color: white;
    margin: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-categories h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.category-description {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 14px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.category-item {
    background-color: white;
    padding: 30px 15px;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

    .category-item:hover {
        background-color: #f9f0e6;
    }

    .category-item.active {
        background-color: #f9f0e6;
    }

.category-icon {
    display: inline-block;
    font-size: 50px;
    line-height: 1;
    text-align: center;
    transition: all .3s;
}
    .category-icon svg {
        fill: #4D4D4D;
        display: block;
        height: 1em;
        position: relative;
        width: 1em;
    }
.category-item h3 {
    font-size: 16px;
    color: #3f444b;
    margin: 0;
    font-weight: normal;
}

.more-categories {
    margin-top: 40px;
    padding: 30px;
    background-color: #9CB6F1;
    border-radius: 5px;
    text-align: center;
}

.more-categories-content {
    max-width: 800px;
    margin: 0 auto;
}

.more-categories h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.more-categories p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.btn-orange {
    display: inline-block;
    background-color: #3A5AA4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

    .btn-orange:hover {
        background-color: #3A5AA4;
    }

.our-solutions {
    padding: 50px 40px;
    background-color: #f8f9fa;
}

    .our-solutions h2 {
        font-size: 30px;
        margin-bottom: 10px;
        color: #333;
        text-align: center;
    }

.solutions-description {
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    font-size: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

    .solution-item.reverse {
        flex-direction: row-reverse;
    }

.solution-content {
    flex: 1;
}

    .solution-content h3 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #333;
    }

    .solution-content p {
        margin-bottom: 30px;
        color: #666;
        line-height: 1.6;
    }

.btn-start {
    display: inline-block;
    color: #1B3164;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

    .btn-start:hover {
        color: #1B3164;
    }

.solution-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

    .solution-images img {
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

.solution-image {
    flex: 1;
}

    .solution-image img {
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .floating-card {
                position: relative;
                left: 0;
                margin-top: 30px;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-item {
                flex-direction: column;
                text-align: center;
            }

                .solution-item.reverse {
                    flex-direction: column;
                }

            .solution-images {
                grid-template-columns: repeat(2, 1fr);
            }
        }
