/* Add here all your CSS customizations */
p {
    text-align: justify !important;
    text-justify: inter-word;
    line-height: 1.9;
}


/* =====================================================
   PRODUCT CARD 
   ===================================================== */

.product-card {
    position: relative;
    border-radius: 5px !important;
    overflow: hidden;
    background: rgb(247, 247, 247);

    /* smooth shadow around all sides */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.085);

    max-width: 480px;
    margin-left: auto;
    margin-right: auto;

    transition: all .35s ease;
}

/* hover effect – lift */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

/* =====================================================
   4-SIDE RED FRAME 
   ===================================================== */

/* top & bottom lines */
.product-card::before,
.product-card::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    /* thin line */
    background: #d00000;
    opacity: 0.9;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform .45s ease;
}

.product-card::before {
    top: 12px;
}

.product-card::after {
    bottom: 12px;
}

/* left & right lines */
.product-card .frame-lines::before,
.product-card .frame-lines::after {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: #d00000;
    opacity: 0.9;

    transform: scaleY(0);
    transform-origin: center;
    transition: transform .45s ease .05s;
}

.product-card .frame-lines::before {
    left: 12px;
}

.product-card .frame-lines::after {
    right: 12px;
}

/* animate all 4 lines on hover */
.product-card:hover::before,
.product-card:hover::after {
    transform: scaleX(1);
}

.product-card:hover .frame-lines::before,
.product-card:hover .frame-lines::after {
    transform: scaleY(1);
}

/* =====================================================
   IMAGE
   ===================================================== */

.product-image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.product-image {
    display: block;
    max-height: 170px;
    width: auto;
    margin: 0 auto;
    transition: transform .45s ease;
}

.product-card:hover .product-image {
    transform: scale(1.07);
}

/* =====================================================
   TITLE
   ===================================================== */

.product-title {
    color: #E04622;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    opacity: .85;
}

/* =====================================================
   BODY SPACING
   ===================================================== */

.product-card .card-body {
    padding: 1.8rem 1.6rem;
}

/* =====================================================
   BUTTONS – Red 
   ===================================================== */

.product-card .btn {
    border-radius: 10px !important;
    padding: 6px 18px;
    transition: all .25s ease;
}

.product-card .btn:hover {
    transform: translateY(-2px);
}

/* FINAL RED BUTTON */
.product-card .btn-red {
    background: #E04622;
    color: #fff;

    border: 2px solid #E04622;
    border-radius: 5px !important;

    padding: 10px 26px;
    font-weight: 600;
    display: inline-block;
    text-align: center;

    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(208, 0, 0, 0.25);
}

.product-card .btn-red:hover {
    background: #b00000;
    border-color: #b00000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(208, 0, 0, 0.35);
}

.product-card .btn-red:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(208, 0, 0, 0.3);
}


/* =====================================================
   single product
   ===================================================== */

.single-product {
    direction: rtl;
}

.product-title {
    font-weight: 700;
    color: #222;
}

.product-description {
    line-height: 2;
    font-size: 16px;
    color: #444;
}

.product-image-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.product-actions .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
}

/* =====================================================
   blog
   ===================================================== */
/***************  BLOG ARCHIVE  ***************/


/* ===== Industrial Blog Style ===== */
body {
    background-color: #f8f9fa;
}

.blog-industrial-card {
    background: #fff;
    border: 1px solid #dedede;
    border-top: 4px solid #e60023;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-industrial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.blog-industrial-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #ddd;
}

.blog-industrial-meta {
    padding: 12px 18px 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.blog-industrial-meta i {
    color: #e60023;
    margin-left: 5px;
}

.blog-industrial-title a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-industrial-title a:hover {
    color: #e60023;
}

.blog-industrial-body {
    padding: 15px 18px 25px;
    flex: 1;
}

.blog-industrial-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin: 15px 0 22px;
}

.blog-industrial-btn {
    display: inline-block;
    background: #e60023;
    color: #fff;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.blog-industrial-btn:hover {
    background-color: #111;
}

/* Pagination */
.blog-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    color: #222;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: .3s;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .current {
    background-color: #e60023;
    color: #fff !important;
    border-color: #e60023;
}




/***************  SINGLE POST PAGE  ***************/
/* --- Hero Title --- */
.single-title {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.4;
    padding-bottom: 10px;
}

/* --- Featured Thumbnail (smaller) --- */
.single-thumb img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 380px;
    transition: .3s;
}

.single-thumb img:hover {
    transform: scale(1.02);
}

/* --- Article Content --- */
.single-content {
    line-height: 2;
    font-size: 15px;
    color: #333;
    font-weight: 400;
}

.single-content h2,
.single-content h3 {
    margin-top: 40px;
    font-weight: 500;
    color: #111;
}

/* --- CTA Professional Section --- */
.single-cta-box {
    text-align: center;
    margin-top: 40px;
}

.single-cta-btn {
    background: #e63946;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.single-cta-btn:hover {
    background: #c91c2b;
}

/* --- call Section --- */
.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.chat-icons {
    display: flex;
    gap: 10px;
}

.chat-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(212, 0, 0, 0.577);
    box-shadow: 0 2px 6px rgba(212, 0, 0, 0.15);

    transition: all .25s ease;
}

.chat-icon img {
    width: 24px;
    height: 24px;
    transition: transform .25s ease;
}

/* hover */
.chat-icon:hover {
    border-color: #d40000;
    box-shadow: 0 3px 8px rgba(212, 0, 0, 0.55),
        0 0 0 1px rgba(212, 0, 0, 0.25);
}


.chat-icon:hover img {
    transform: scale(1.08);
}