﻿.title_powder-coating-section {
    text-align: center;
    color: var(--text-color-313A48);
    margin-top: 40px;
}

.title_powder-coating-section span {
    position: relative;
}

.accordion-btn {
    background-color: #EAF2F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    border-radius: 2px 19px 0 0;
    box-shadow: 5px 0 8px #00000017;
    cursor: pointer;
    width: 100%;
    border: none;
    margin: 0;
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    background-color: #dfe9f3;
    transform: translateY(-1px);
    box-shadow: 5px 2px 12px #00000025;
}

.accordion-btn p {
    margin: 0;
    flex: 1;
    text-align: left;
}

.arow-accordion {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-checkbox:checked+.accordion-content {
    height: auto;
    padding: 29px 55px;
    visibility: visible;
    opacity: 1;
    margin-top: 10px;
}

.accordion-checkbox:checked~.accordion-btn .arow-accordion {
    transform: rotate(180deg);
}

.accordion-content {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    height: 0;
    margin-top: 0;
    display: block;
    padding: 0 55px;
    box-shadow: 5px 0 10px #00000025;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    background-color: #fff;
}

.reason-section,
.solution-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.reason-section h4,
.solution-section h4 {
    color: #495057;
    border-bottom: 2px solid #F8B300;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.content-html {
    color: var(--text-color-for-paragraph, #6c757d);
    line-height: 1.6;
}

.content-html ul {
    list-style: none;
    padding-left: 0;
    position: relative;
}

.content-html ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-color-for-paragraph, #6c757d);
}

.content-html ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #F8B300;
    border-radius: 50%;
}

.content-html ol {
    counter-reset: item;
    padding-left: 0;
}

.content-html ol li {
    display: block;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.content-html ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #F8B300;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.img-containers_powder-coating {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    min-height: 300px;
}

.img_powder-coating {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
}

.img_powder-coating img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease;
}


/* Breadcrumb styling */
.text-decoration-none {
    text-decoration: none !important;
}

.text-color-313A48 {
    color: #313A48 !important;
}

.text-color-dark {
    color: #000B1D !important;
}

.text-color-5597CD {
    color: #5597CD !important;
}

.fs-1-4-px {
    font-size: 14px !important;
}

.fs-1-6-px {
    font-size: 16px !important;
}

.fs-1-8-px {
    font-size: 18px !important;
}

.fs-2-0-px {
    font-size: 20px !important;
}

.mt-12-px {
    margin-top: 12px !important;
}

.mt-16-px {
    margin-top: 16px !important;
}

.mt-20-px {
    margin-top: 20px !important;
}

.gap-3 {
    gap: 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-content {
        padding: 0px !important;
    }

    .accordion-checkbox:checked+.accordion-content {
        padding: 20px 25px;
    }

    .accordion-btn {
        padding: 12px 20px;
    }

    .accordion-btn p {
        font-size: 16px;
    }

    .title_powder-coating-section {
        margin-top: 20px;
    }

    .img-containers_powder-coating {
        padding: 10px;
        gap: 10px;
    }

    .reason-section,
    .solution-section {
        padding: 15px;
    }
}

/* Alert styling */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* Image border styling */
.img-border-bottom-rite {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 0;
}

/* Image popup modal styles */
.img_powder-coating img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img_powder-coating img:hover {
    transform: scale(1.05);
}

/* Modal overlay */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.image-modal-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95%;
        max-height: 95%;
    }

    .image-modal-close {
        top: -30px;
        right: -30px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .image-modal-caption {
        bottom: -40px;
        font-size: 14px;
    }

}

.accordion-btn {
    background-color: #EAF2F9;
    display: flex;
    justify-content: space-between;
    padding: 16px 32px;
    border-radius: 2px 19px 0 0;
    box-shadow: 5px 0 8px #00000017;
    cursor: pointer;
}

.accordion-btn+input:checked+.accordion-content {
    height: auto;
    padding: 29px 55px;
    visibility: unset;
    opacity: 1;
}

.accordion-btn+input:checked .accordion-btn .arow-accordion {
    transform: rotate(180deg);
}


.accordion-content {
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out;
    height: 0;
    margin-top: 10px;
    display: block;
    padding: 0 55px;
    box-shadow: 5px 0 10px #00000025;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

.ol-content_accordion_li {
    margin: 42px;
    position: relative;
    list-style: none;
}

.ol-content_accordion .ol-content_accordion_li::after {
    position: absolute;
    top: 3px;
    left: -30px;
    content: "";
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../Images/texture/Polygon\ 1.png");
}

.ol-content_accordion_li__ul {
    list-style: none;
    position: relative;
    color: var(--text-color-for-paragraph);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding: 0 40px
}

.ol-content_accordion_li__ul::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #F8B300;
    border-radius: 5px;
}

.img-containers_powder-coating {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.img_powder-coating {
    padding: 0;
}

.img_powder-coating img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}