* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

body {
    scroll-behavior: smooth;
    font-family: 'Cambria', 'Cochin', 'Georgia', 'Times', 'Times New Roman', 'serif' !important;
}

/* Body section main */

/* fittings hover dropdown */











#products {
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.product-section1 {
    padding: 0;
    position: relative;
    margin: 0;
}

/* Product list navbar */

.product-item-details {
    position: relative;
}

.category {
    display: block;
    position: relative;
    padding: 10px;
    text-align: justify;
    background-color: #2185a0;
    margin-right: 5px;
    border: 1px solid white;
}

.category ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: justify;
    justify-content: space-around;
    margin-left: 15px;
}

.btn-nav {
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    background-color: #2185a0;
    border-radius: 10px;
}

.btn-nav:hover {
    background-color: #25a989;
    transform: scaleX(1);
    transition: all 1s easy-in-out;
    color: white;
    font-weight: bolder;
}

.categories-buttons button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.categories-buttons button.active {
    background-color: #0056b3;
}

/* --------------------------------- */

/* Left Side product contain */

/* Add this to your existing styles or style tag */

/* Add this to your existing styles or style tag */

#all-product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#product-details {
    width: 100%;
    max-width: 400px;
    /* Adjust the maximum width as needed */
    border: 1px solid #ccc;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin: 10px;
    display: none;
}

.product-card {
    width: 200px;
    margin: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    height: 310px;
    overflow: hidden;
}

.product-card-header {
    background-color: #2185a0;
    font-size: bold;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: relative;

}

.product-card-body {
    padding: 0px;
    position: relative;
    width: 100%;
    height: 65%;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    /* Adjust the maximum height as needed */
    object-fit: cover;
    object-position: center;
}

/* Media query for smaller screens */

@media (max-width: 768px) {
    .product-card {
        width: calc(100% - 20px);
        /* Adjust as needed, considering margin */
    }
}

.product-redirect-btn {
    text-align: center;
    border-radius: 1px solid red;
    position: relative;
    margin-top: 20px;
    text-decoration: none;
}

.btn-pro {
    display: block;
    padding: 10px;
    background-color: #2185a0;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.3s ease-in-out;
    align-items: center;
}

.btn-pro:hover {
    background-color: #25a989;
    transform: scaleX(1);
}

/***** right side product list *****/

.product-item-list {
    width: 100%;
}

.heading-product-list {
    position: relative;
    background-color: #2185a0;
    justify-content: center;
    margin: 0;
    text-transform: uppercase;
}

.heading-product-list h1 {
    text-align: center;
    line-height: normal;
    font-size: 30px;
    padding: 14px;
    color: white;
}

.cat-section {
    padding: 20px;
}

.category-list {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Style for the category header */

.category-header {
    background-color: #f9f9f9;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    border: 1px solid #ccc;
}

/* Style for the category content (product list) */

.category-content {
    display: none;
    padding: 10px;
}

/* Style for the product list items */

.product-item {
    margin-bottom: 5px;
}

/* Style for the collapsible icon */

.collapsible-icon {
    float: right;
}

/***** End right side product list *****/

/***** 3 Products showing deatails *****/

#pro-3 {
    width: 100%;
    position: relative;
    border-top: 2px solid black;
}

.pro-3-product {
    position: relative !important;
    background-color: rgb(237 237 237 / 50%);
    display: flex;
    justify-content: center;
    padding: 30px !important;
    border-radius: 20px !important;
}

.pro-3-contain {
    box-shadow: 0 0 10px rgba(43, 34, 34, 0.6) !important;
    border-radius: 10px;
}

.card-pro {
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    transition: box-shadow 0.3s ease-in-out;
    padding: 0;
    margin: 0;
}

.card-pro:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.img-pro {
    position: relative;
    overflow: hidden;
}

.img-pro img {
    width: 100%;
    height: auto;
    display: block;
}

.card-title {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: medium;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Responsive styles */

@media (max-width: 768px) {
    .card-pro {
        margin-bottom: 15px;
    }

    .view-btn1 {
        bottom: 5px;
        right: 5px;
        padding: 3px 6px;
    }
}

/***** End 3 Products showing deatails *****/

/* Contain page */

/* Heading section */
.custom-heading {
    background-color: #2185a0;
    text-align: left;
    color: white;
    margin-top: 10px !important;
    padding: 15px !important;
}

.custom-heading-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.custom-heading-content p {
    font-size: 1rem;
    color: white;
    border-top: 5px solid #25a989;

}

/* Introduction section */

.intro-container {
    padding: 0;
    margin-top: 10px;
    position: relative;
    background-color: #e9eef061;
    padding: 20px !important;

}

.product-image {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.item-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;

}


/* Center the text within the item-intro */

.item-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

/* Center the text inside the item-intro-text */

.item-intro-text {
    text-align: center;
}

.item-intro-text h2 {
    font-size: 32px;
    padding: 10px;
    position: relative;
}

.item-intro-text h2::before {
    content: '';
    position: absolute;
    width: 75%;
    bottom: 0;
    height: 5px;
    background-color: #25a989;
}

.item-intro-text p {
    font-size: 16px;
    padding: 10px;
    text-align: justify;
}

/* main contain (product details ) */

.main-container {

    margin-top: 10px;
    margin-bottom: 30px;
    background-color: #e9eef061;
    text-align: justify;

    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);    
    position: relative;
    color: white;
    cursor: pointer;  */
}

.section-item {
    margin-top: 10px;
    padding: 20px;
    transition: transform .4s ease-in-out;
    cursor: pointer;
}

.section-item h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 28px;
    position: relative;
    border-bottom: 2px solid #25a989;
}

/*
.item-design h2::before,
.item-type h2::before,
.item-Installation h2::before,
.item-Pressure-Ratings h2::before,
.item-Material-Selection h2::before,
.item-material h2::before,
.item-properties h2::before,
.item-finishing h2::before,
.item-benefits h2::before,
.item-applications h2::before,
.item-Quality h2::before,
.item-maintenance h2::before,
.item-safety h2::before,
.item-Load-Bearing-Capacity: h2::before,
.item-Properties h2::before,
.item-Testing h2::before,
.item-Use-Case h2::before,
.item-Advantages h2::before {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: #25a989;
}
*/
.section-item p {
    padding: 10px;

}

.section-item:hover {
    background-color: #2185a0;
    color: white;
    #transform: skew(0.5deg, 0.5deg) scale(1.1);

}

.section-item-type {
    margin-top: 10px;
    padding: 20px;
    transition: transform .4s ease-in-out;
    cursor: pointer;
}

.section-item-type h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 28px;
    position: relative;
    border-bottom: 2px solid #25a989;
}


.type {
    position: relative;
    padding: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.col-lg-6 {
    width: 100%;
    padding: 10px;
}

@media(min-width: 768px) {
    .col-lg-6 {
        width: 50%;
    }
}

.sub-type {
    background: #f9f9f9;
    padding: 20px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.sub-type h3 {
    color: #00539C;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    padding: 5px 0;
}

/* Main content sections */

.section-item ul {
    list-style-type: disc;
    margin-left: 20px;
}

.section-item ul li {

    line-height: 1.8;
}

.section-item ul li span {
    font-weight: bold;
}