<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0056b3;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Product Filters */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #0056b3;
    border-radius: 50px;
    background: transparent;
    color: #0056b3;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1.1rem;
}

.filter-btn:hover, .filter-btn.active {
    background: #0056b3;
    color: white;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,86,179,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay-content {
    color: white;
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.product-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.overlay-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: white;
}

.overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.overlay-content ul li {
    margin-bottom: 8px;
    opacity: 0.9;
}

.product-info {
    padding: 25px;
    background: white;
}

.product-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-features span:hover {
    background: #e9ecef;
}

.product-features i {
    color: #0056b3;
    font-size: 1rem;
}

/* CTA Section */
.custom-design-cta {
    background: linear-gradient(135deg, #0056b3 0%, #0077cc 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #0056b3;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #0056b3;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: #0056b3;
    padding: 10px 25px;
    font-size: 1rem;
}

.btn-light:hover {
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 30px 0 40px;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-features span {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    .custom-design-cta {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
</pre></body></html>