
/* Image section */
/* General styles for the services section */
.services-section {
    padding: 1px 0;
    background-color: #f9f9f9;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.services-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
    color: #555;
    margin-bottom: 20px;
}

.image-gallery {
    display: flex;
    justify-content: space-between;
}

.image-gallery img {
    max-width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
    }

    .image-gallery img {
        margin-bottom: 20px;
    }
}


/* Capex Product section */
.capex-product h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: left;
    color: #800000;
    border-bottom: 4px solid #800000;
    display: inline-block;
}

.product-list {
    list-style-type: disc;
    padding-left: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.product-list li {
    margin-bottom: 10px;
}
/* Continuous Color Coating Lines Section */
.coating-lines {
    background-color: #fff;  /* White background */
    padding: 60px 0;         /* Top and bottom padding */
}

/* Heading with underline */
.coating-lines h3 {
    font-size: 24px;    /* Heading size */
    font-weight: 600;   /* Bold heading */
    color: #333;        /* Dark heading color */
    text-align: left;   /* Align the heading to the left */
    position: relative; /* To position the underline */
    margin-bottom: 10px; /* Space below the heading */
}

/* Underline below the heading */
.heading-underline {
    width: 378px;       /* Adjust the width to match the heading */
    height: 4px;        /* Line thickness */
    background-color: #84181C;
    /* Line color (blue) */
    margin-bottom: 20px; /* Space below the underline */
}

/* Left-side paragraph text */
.content-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    margin-right: 20px;
}

/* Right-side image */
.coating-lines img {
    max-width: 736px;
    height: 336px;
    display: block;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading-underline {
        width: 100%;  /* Make the underline full-width for mobile */
    }

    .content-text {
        padding: 0 15px;  /* Add padding to the text for better mobile layout */
    }

    .coating-lines img {
        margin-top: 20px;
        width: 100%;  /* Make the image responsive */
        height: auto; /* Keep aspect ratio */
    }
}



/* Features & Advantages Section */
.features-advantages {
    background-color: #fff;
    padding: 60px 0;
}

/* Heading with underline */
.features-advantages h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: left;
    margin-bottom: 10px;
}

.heading-underline {
    width: 280px;
    height: 4px;
    background-color: #800000; /* Dark red underline */
    margin-bottom: 20px;
}

/* Left-side Features list */
.features-list, .coating-reference {
    list-style: none;
    padding-left: 0;
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list li, .coating-reference li {
    margin-bottom: 10px;
}

/* Diagram image on the right */
.features-advantages img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-advantages .row {
        flex-direction: column;
    }

    .features-advantages img {
        margin-top: 20px;
        width: 100%;
    }

    .heading-underline {
        width: 100%; /* Full-width underline for mobile */
    }
}


/* Capex Product Section */
.capex-product {
    background-color: #fff;
    padding: 60px 0;
}

.capex-product h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.heading-underline {
    width: 240px;
    height: 4px;
    background-color: #800000; /* Dark red underline */
    margin-bottom: 20px;
}

/* Product Requirement List */
.product-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.product-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.product-list li::before {
    content: '\2022'; /* Bullet point */
    position: absolute;
    left: 0;
    color: #800000; /* Bullet color */
    font-size: 20px;
    line-height: 1;
}
.coater-card {
    background-color: #fff;
    border: 1px solid #e3e3e3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.coater-card:hover {
    transform: scale(1.05);
}

.coater-img {
    max-width: 160px;
    margin-right: 15px;
}

.coater-info {
    flex-grow: 1;
}

.coater-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #800000;
    margin-bottom: 10px;
}

.coater-card p {
    font-size: 14px;
    color: #555;
    text-align: left;
    line-height: 22px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .coater-card {
        flex-direction: column;
        text-align: center;
    }

    .coater-img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}