.banner-section {
    height: 30vh;
    background-image: url('images/blogbanner.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-section h2 {
    color: #000;
    font-size: 50px;
    font-weight: 700;
}
.products{
    padding: 50px 0px;
}
/* Basic Styling */
.product-specification {
    display: flex;
    gap: 20px;
    padding: 20px; /* Add padding around the product specification section */
    box-sizing: border-box; /* Ensure padding is included in the element's total width */
}

.product-image img {
    width: 100%;
    max-width: 600px;  /* You can adjust this value based on your image size */
    height: auto;
    margin-bottom: 20px;
}

.product-image h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}

.product-image p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
    justify-content: left;
    font-style: normal;
}

.product-image h4 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    text-align: left;
}

.product-image ul {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    list-style-type: disc;
    padding-left: 0px;
    list-style-position: inside;
    text-align: left;
    justify-content: left;
}

/* Table Styling */
.product-table {
    width: 100%;
    overflow-x: auto; /* Enable horizontal scroll */
    padding: 10px; /* Optional: Add padding to the table section */
}

.product-table table {
    /* width: 100%; */
    border-collapse: collapse;
}

.product-table th, .product-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.product-table th {
    background-color: #f2f2f2;
}
.view-more {
    margin-top: 20px;
    text-align: left;
}

.view-more button {
    padding: 15px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  max-width: 180px;
  display: inline-block;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.view-more button:hover {
    background-color: #666666; /* Darker shade on hover */
}

@media (min-width: 768px) {
    .product-specification {
        flex-direction: row; /* Image on left, table on right */
    }
    .product-image {
        width: 40%; /* Adjust image width */
        height: auto;
    }
    .product-table {
        width: 50%; /* Adjust table width */
        height: auto;
    }
}

/* Media Query for Mobile View */
@media (max-width: 900px) {
    .mobile-section {
        height: 150px; /* Adjust the height as needed */
        background-image: url('images/blogbannermbl.jpg');
        background-size: cover;
        background-position: center;
        background-color: #ffcc00;
        display: flex; /* Use flexbox for centering */
        align-items: center; /* Center vertically */
        justify-content: center; /* Center horizontally */
        text-align: center;
    }
    
    .mobile-section h2 {
        color: #000;
        font-family: "Poppins", sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin: 0; /* Remove default margin */
    }

    .banner-section {
        display: none;
    }
    .product-specification {
        flex-direction: column; /* Image on top, table on bottom */
    }
    .product-image {
        width: 100%; /* Image takes full width */
        text-align: center;
        height: auto;
    }
    .product-table {
        overflow-x: auto; /* Enable horizontal scroll for table */
    }
    .product-table table {
        min-width: 600px; /* Ensure table has minimum width to be scrollable */
    }
}

/* Custom Scrollbar */
.product-table::-webkit-scrollbar {
    height: 8px; /* Height of the horizontal scrollbar */
}

.product-table::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Background of the scrollbar track */
}

.product-table::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded corners */
}

.product-table::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color when hovering */
}

.product-table {
    scrollbar-width: thin; /* Firefox scrollbar width */
    scrollbar-color: #888 #f1f1f1; /* Thumb and track colors for Firefox */
}