.hero {
    margin-top: 30px;
    background-color: rgb(226 239 255);
}



.industries-we-serve {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.industries-we-serve h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.highlight {
    color: #007bff;
}

.hex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.hex {
    width: 120px;
    height: 138px;
    background-color: #007bff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

.hex-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.hex i {
    font-size: 36px;
    margin-bottom: 10px;
}

.hex p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.hex:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .hex {
        width: 90px;
        height: 104px;
    }

    .hex i {
        font-size: 28px;
    }

    .hex p {
        font-size: 10px;
    }
}


  /* Product Page Specific Styles */
  .product-page {
    padding: 80px 0;
}

.product-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    flex: 1;
}

.main-image {
    width: 100%;
    height: 400px;
    /* object-fit: contain; */
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: zoom-in;
    background-color: var(--light-color);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
}

.product-details {
    flex: 1;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-sku {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.product-meta {
    margin: 20px 0;
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
}

.meta-label {
    font-weight: 600;
    width: 120px;
    color: var(--dark-color);
}

.product-variations {
    margin: 25px 0;
}

.variation-option {
    margin-bottom: 15px;
}

.variation-option h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.variation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.variation-btn:hover, .variation-btn.active {
    border-color: var(--primary-color);
    background-color: rgba(30, 144, 255, 0.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.quantity-selector label {
    margin-right: 15px;
    font-weight: 600;
}

.quantity-input {
    width: 70px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background-color: var(--secondary-color);
}

.btn-wishlist {
    background-color: transparent;
    color: var(--dark-color);
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-wishlist:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.product-tabs {
    margin: 50px 0;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    padding: 25px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: var(--light-color);
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.specifications-table th {
    width: 30%;
    color: var(--dark-color);
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.related-products h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-add-to-cart, .btn-wishlist {
        width: 100%;
    }
    
    .tab-header {
        overflow-x: auto;
        white-space: nowrap;
    }
}



.ethanol-distribution {
    padding: 50px 20px;
    background-color: #f9f9f9;
    /* font-family: 'Arial', sans-serif; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.ethanol-distribution h2 {
    font-size: 36px;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.highlight {
    color: #007bff;
}

.ethanol-distribution p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .ethanol-distribution h2 {
        font-size: 28px;
    }

    .ethanol-distribution p {
        font-size: 14px;
    }
}

.ethanol-benefits {
    padding: 50px 20px;
    background-color: #e3f2ff;
    /* font-family: 'Arial', sans-serif; */
}



.ethanol-benefits h2 {
    font-size: 36px;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}



.ethanol-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ethanol-benefits li {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ethanol-benefits li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ethanol-benefits .icon {
    font-size: 24px;
    margin-right: 15px;
    color: #007bff;
    flex-shrink: 0;
}

.ethanol-benefits li div {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ethanol-benefits h2 {
        font-size: 28px;
    }

    .ethanol-benefits li {
        flex-direction: column;
        align-items: flex-start;
    }

    .ethanol-benefits .icon {
        margin-bottom: 10px;
    }
}

