.genrators-overlay {
    background: linear-gradient(to left, #1f4ea0d0, rgba(255, 255, 255, 0));
}

.generators img {
    object-fit: cover;
}

.features {
    background: #32B4DC;
    color: #fff;
}

.bg-light-blue {
    background: #32b4dc8c;
}

.voltage {
    background: #0F0F3708;
}

/* Products */

/* Main section styling */
.product-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Section title styling */
.section-title {
    /* color: #172152;
    font-weight: bold; */
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

.section-title-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #32B4DC;
}

/* Category title styling */
.category-title {
    color: #172152;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Product card styling */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: none;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    background: linear-gradient(135deg, #172152 0%, #2a3b7c 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: #172152;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.product-specs {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 14px;
}

.product-action {
    margin-top: auto;
}

/* Button styling */
.btn-product-details {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}



.btn-view-all {
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #172152 0%, #2a3b7c 100%);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.btn-icon {
    margin-left: 8px;
}

/* Hover effects */
.btn-product-details:hover,
.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    color: #fff !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}