/* Why Choose Us Section */
.why-choose-us {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    max-width: 90%;
    margin: 2.5rem auto;
    padding: 2rem 1.5rem;
}
.why-choose-us h2 {
    color: #007b5e;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.why-choose-us ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.why-choose-us ul li {
    background: #f8f8f8;
    border-left: 5px solid  #007b5e;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
    padding: 1rem 1.2rem;
    min-width: 180px;
    max-width: 220px;
    flex: 1 1 180px;
    text-align: left;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 1rem;
    box-sizing: border-box;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.why-choose-us ul li:hover {
    background:  #e0f7fa;
    border-left-color:  #007b5e;
}
.why-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(21,101,192,0.08);
    border: 1px solid #e0e0e0;
}
@media (max-width: 900px) {
    .why-choose-us {
        padding: 1.2rem 0.5rem;
    }
    .why-choose-us ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .why-choose-us ul li {
        max-width: 95vw;
        min-width: 0;
    }
}
/* Applications Section - Classic Professional Style */
.applications {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    max-width: 90%;
    margin: 2.5rem auto;
    padding: 2rem 1.5rem;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.applications h2 {
    color: #007b5e;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-family: inherit;
}
.applications ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 90%;
}
.applications ul li {
    background: #f8f8f8;
    border-left: 5px solid #007b5e;
    margin-bottom: 1.1rem;
    padding: 1rem 1.2rem 1rem 1.5rem;
    font-size: 1.08rem;
    color: #222;
    font-family: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s;
}
.applications ul li:hover {
    background: #e0f7fa;
    border-left-color: #388e3c;
}
@media (max-width: 900px) {
    .applications {
        padding: 1.2rem 0.5rem;
    }
    .applications ul {
        max-width: 98vw;
    }
    .applications ul li {
        font-size: 1rem;
        padding: 0.8rem 0.8rem 0.8rem 1rem;
    }
}
/* Manufacturing Process Section */
.manufacturing-process {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    max-width: 90%;
    margin: 2.5rem auto;
    padding: 2.2rem 1.5rem;
}

.manufacturing-process h2 {
    color: #007b5e;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.manufacturing-process ol {
    counter-reset: process-step;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.manufacturing-process ol li {
    background: #f5f7fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.08);
    padding: 1.2rem 1rem;
    flex: 0 1 calc(33.333% - 2rem); /* 3 per row */
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.08rem;
    color: #222;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 220px;
    padding: 1.8rem 1.2rem;
}

.manufacturing-process ol li:before {
    counter-increment: process-step;
    content: counter(process-step);
    position: absolute;
    top: -18px;
    left: 16px;
    background: #007b5e;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

/* Responsive for screens less than 900px */
@media (max-width: 900px) {
    .manufacturing-process ol {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .manufacturing-process ol li {
        flex: 1 1 100%;
        max-width: 95vw;
    }
}


/* Key Benefits Section */
.key-benefits {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    max-width: 90%;
    margin: 2.5rem auto;
    padding: 2rem 1.2rem;
}
.key-benefits h2 {
    color: #007b5e;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.key-benefits ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.key-benefits ul li {
    background: #e8f5e9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(76,175,80,0.08);
    padding: 1rem 1.2rem;
    flex: 0 1 calc(24% - 1.5rem); /* 3 per row with gap adjustment */
    text-align: center;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .key-benefits h1 ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        
    }

    .key-benefits ul li {
        flex: 1 1 100%;
        max-width: 90%;
        min-height: 120px; /* Set a minimum or fixed height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }
}



/* Product Overview Cards */
.product-overview {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 2.5rem auto;
    padding: 2rem 1rem;
    max-width: 90%;
}
.product-overview h2 {
    text-align: center;
    color:  #007b5e;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}
.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
/* Larger Product Cards and Images */
.product-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    padding: 2% 3%;
    width: 90%;
    max-width: 30%;
    height: auto; /* or set to % if inside a container with defined height */
    text-align: center;
    margin: 1.5% auto;
    flex: 1 1 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    background: #fff;
    border: 1px solid #e0e0e0;
}
@media (max-width: 900px) {
    .product-cards {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .product-card {
        max-width: 98vw;
        min-width: 0;
        padding: 1.5rem 0.5rem;
    }
    .card-img {
        width: 80%;
        /* height: 10%; */
    }
}

.product-card:hover {
    box-shadow: 0 6px 24px rgba(76,175,80,0.18);
    transform: translateY(-6px) scale(1.04);
}
.product-card h3 {
    color:   #007b5e;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.product-card p {
    color: #444;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .product-cards {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .product-card {
        max-width: 95vw;
    }
}
.background-image-section {
    background-image: url('zincIngot.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.background-image-section h1{
    color: white;
    text-align: center;
     font-size: clamp(2.5rem, 2.5vw, 3.5rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.background-image-section p {
    color: white;
    font-size: clamp(1.5rem, 1.5vw, 2.5rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Product Specifications Table Styles */
.specifications-section {
    padding: 4rem 2rem;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    max-width: 90%;
    margin: 2.5rem auto;
}

.specifications-section h2 {
    color: #007b5e;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.table-container {
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 8px;
    background: white;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.specs-table th {
    background-color: #007b5e;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    color: #2c3e50;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tbody tr:hover {
    background-color: #e8f5e9;
    transition: background-color 0.3s ease;
}

/* Responsive Design for Table */
@media screen and (max-width: 768px) {
    .specifications-section {
        padding: 2rem 1rem;
    }
    
    .specs-table {
        font-size: 0.85rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.75rem;
    }
    
    .table-container {
        margin: 0;
        border-radius: 0;
    }
    
    .specs-table td:last-child {
        min-width: 140px;
    }
}