

/*  section2  
  
    */

    .product-section {
        display: flex;
        gap: 2rem;
        padding: 15px;
        flex-wrap: wrap;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .product-image {
        flex: 0 0 40%;
        max-width: 100%;
        margin-right: 20px;
    }
    
    .product-image img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }
    
    .product-image img:hover {
        transform: scale(1.1);
        transform-origin: center;
    }
    
    .product-details {
        flex: 1;
        max-width: 100%;
    }
    .product-details > p{
        line-height: 1.5rem;
    }
   
    
    .details-box {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 10px;
        margin: 20px 0;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    
    .detail-row {
        display: contents;
        
    }
    
    .detail-title {
        font-weight: bold;
    }
    
    .detail-value {
        text-align: left;
        padding-bottom: 10px;
    }
    .arsh{
        padding-bottom: 300px;
    }
    
    .product-thumbnails {
        display: flex;
        justify-content: center;
        
        border: #000;
    }
    
    .product-thumbnails img {
        width: 60px;
        height: 60px;
        margin: 5px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: border 0.3s ease;
    }
    
    .product-thumbnails img:hover {
        border: 2px solid yellow;
    }
    
    .inquiry-button {
        padding: 10px 20px;
        background-color: cyan;
        border: none;
        font-weight: bold;
        cursor: pointer;
        border-radius: 5px;
    }
    
    .inquiry-button:hover {
        background-color: cyan;
}
.inquiry-buttons {
background-color: cyan;
padding: 10px 20px;
border-radius: 5px;
border: none;
text-align: center;
font-weight: bold;
font-size: 20px;
align-items: center;
justify-content: center;
position: absolute;
left: 40%;
}
.imagess {
padding-left: 20%;
width: 80%;
max-height: 20%;
}

/*  table */
table {
width: 70%;
border-collapse: collapse;
margin: 20px 0;
font-size: 16px;
text-align: left;
margin-left: 15%;
}

th, td {
border: 1px solid #ddd;
padding: 8px;
}
th {
background-color: #f4a460;
color: white;
}
caption {
font-weight: bold;
margin-bottom: 10px;
text-align: left;
color: #f4a460;
font-size: larger;
}
.space
{
font-weight: bold;
margin-bottom: 10px;
margin-left: 5%;
color: #f4a460;
font-size: larger;
max-width: 70%;
}
.space ul li {
color: black;

}
.space p {
    color: #000;
}

/* styles.css */


.contact-form-container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}

h11 {
text-align: center;
color: #333;
}

p1 {
text-align: center;
color: #666;
}

form1 {
display: flex;
flex-direction: column;
}

label1 {
margin: 10px 0 5px;
color: #333;
}

input1, textarea1, button1 {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
width: 100%;
}

button1 {
background-color: #ffcc00;
color: #000;
border: none;
cursor: pointer;
font-weight: bold;
}

button1:hover {
background-color: #e6b800;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
  }
  
@media (max-width: 768px) {
.contact-form-container {
padding: 15px;
}
.product-section {
    flex-direction: column;
}
.product-image, .product-details {
    width: 100%;
}


.table-container {
    overflow-x: scroll;
}

.product-thumbnails {
    display: flex;
    justify-content: center;
    border: #000;
}
table {
    width: 70%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    margin-left: 5%;
    /* margin-left: 15%; */
    }
}




.features-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  
  
  .feature {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .feature:last-child {
    border-bottom: none;
  }
  
  .icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  
  .feature-text h2 {
    margin: 0;
    font-size: 18px;
    color: #222;
  }
  
  .feature-text p {
    margin: 5px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
  }
 /* Styling for the Functions Column with Two Rows */
/* Styling for the Functions Column with Two Columns */
.functionsum {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 10px; /* Space between items */
  }
  
  .functionsum div {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  
  .tick {
    display: inline-block;
    color: #00ff00; /* Green tick color */
    margin-right: 5px;
    font-size: 16px;
  }
  
  