.jeiotech-products-section {
    padding: 30px 20px;
    background: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.section-header {
    text-align: Left;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}
.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}
.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #ffffff;
}
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image {
    transform: scale(1.05);
}
.product-description-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 73, 94, 0.95);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}
.product-card:hover .product-description-overlay {
    opacity: 1;
}
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    min-height: 48px;
    line-height: 1.4;
}
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.btn-view {
    background: #3498db;
    color: white;
}
.btn-view:hover {
    background: #2980b9;
    transform: translateY(-2px);
}
.btn-quote {
    background: #1d8ba1;
    color: white;
}
.btn-quote:hover {
    background: #77b9c6;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
}
@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .section-header h2 { font-size: 2rem; }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .jeiotech-products-section { padding: 40px 15px; }
    .section-header h2 { font-size: 1.75rem; }
    .product-actions { flex-direction: column; }
    .btn { width: 100%; }
}