@font-face {
    font-family: 'Yekan';
    src: url('../fonts/B_Yekan/Yekan.ttf');
}

@font-face {
    font-family: 'IranYekan';
    src: url('../fonts/IranYekan/IRANYekanXFaNum-Medium.woff2');
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir/Vazirmatn-Medium.woff2');
}

@font-face {
    font-family: 'Vazir Light';
    src: url('../fonts/Vazir/Vazirmatn-Light.woff2');
}

:root {
    --primary-color: #ffe100;
    --dark-color: #1a1a1a;
    --light-gray: #f8f9fa;
    --border-color: #eee;
    --text-main: #333;
    --text-muted: #666;
    --transition: all 0.3s ease;
    --gap-size: 12px;
    --border-rad: 12px;
    --primary-yellow: #eab308;
    --dark-text: #1f2937;
    --bg-body: #faf9f6;
    --bg-card: #ffffff;
    --input-bg: #f1f5f9;
    --input-border: #e2e8f0;
    --transition-speed: 0.3s;
}

* {
    font-family: 'IranYekan', sans-serif;
}

body {
    padding-top: 9.3rem;
}

.mobile-nav-container {
    padding: 15px 15px;
}

.mobile-nav-bars {
    font-size: 22px;
}

.mobile-menu-trigger {
    color: #383838;
    border: none;
    border-radius: 8px;
    background-color: transparent;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .mobile-menu-trigger:active {
        transform: scale(0.95);
    }

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 2001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

    .mobile-sidebar.open {
        right: 0;
    }

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

    .mobile-overlay.show {
        display: block;
        opacity: 1;
    }

.mobile-sidebar-header {
    background-color: #ffe100;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

    .mobile-sidebar-header .h5 {
        margin: 0;
        font-weight: bold;
        color: #333;
        font-size: 1.1rem;
    }

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.sidebar-search-container {
    padding: 15px 20px;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.sidebar-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sidebar-search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #f3f3f3;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

    .sidebar-search-input:focus {
        border-color: #ffe100;
        background-color: #fff;
        box-shadow: 0 0 0 3px rgba(255, 225, 0, 0.2);
    }

.sidebar-search-icon {
    position: absolute;
    right: 15px;
    color: #888;
    font-size: 0.9rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #333;
    text-decoration: none !important;
    font-weight: 500;
    width: 100%;
    background: none;
    border: none;
    text-align: right;
    transition: background 0.2s;
}

    .mobile-nav-link:hover {
        background-color: #fcfcfc;
    }

    .mobile-nav-link i.fa-chevron-down {
        transition: transform 0.3s;
        color: #999;
    }

.mobile-sub-menu {
    background-color: #fdfdfd;
    display: none;
    padding: 5px 0;
    list-style: none;
    border-top: 1px solid #f9f9f9;
}

    .mobile-sub-menu li a {
        display: block;
        padding: 12px 45px 12px 20px;
        color: #666;
        text-decoration: none !important;
        font-size: 0.9rem;
        position: relative;
    }

        .mobile-sub-menu li a::before {
            content: "";
            position: absolute;
            right: 25px;
            top: 50%;
            width: 6px;
            height: 6px;
            background-color: #ddd;
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .mobile-sub-menu li a:hover {
            color: #333;
            background-color: #f5f5f5;
        }

.desktop-navbar {
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    margin-bottom: 0px;
    z-index: 999;
    background-color: white;
}

.top-desk-nav {
    padding: 20px 45px;
    border-bottom: 1px solid #ebebeb;
}

.desk-nav-logo {
    max-width: 185px;
    width: 100%;
}

.search-component-wrapper {
    display: flex;
    align-items: center;
    max-width: 700px;
    width: 100%;
    direction: ltr;
}

.user-icon {
    font-size: 23px;
    color: #6c757d;
}

.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    height: 75px;
    background-color: rgba(56, 56, 56, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-decoration: none !important;
    font-size: .9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
    position: relative;
    height: 100%;
    border: none;
    background: none;
}

    .bottom-nav-item i {
        font-size: 1.4rem;
        margin-bottom: 4px;
        transition: all 0.4s ease;
        z-index: 2;
    }

    .bottom-nav-item span {
        font-weight: 500;
        transition: all 0.4s ease;
        z-index: 2;
    }

    .bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
        width: 50px;
        height: 50px;
        background: radial-gradient(circle, rgba(255, 225, 0, 0.2) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }

    .bottom-nav-item.active {
        color: #ffe100;
    }

        .bottom-nav-item.active i {
            transform: translateY(-8px) scale(1.15);
            text-shadow: 0 0 15px rgba(255, 225, 0, 0.5);
        }

        .bottom-nav-item.active span {
            transform: translateY(-2px);
            opacity: 1;
        }

    .bottom-nav-item:active i {
        transform: scale(0.9);
    }

@media (min-width: 992px) {
    .bottom-nav {
        display: none;
    }
}

.btn-contact {
    background-color: #ffde00;
    color: #333;
    border: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s;
}

    .btn-contact:hover {
        background-color: #e6c600;
        color: #333;
    }

.form-control-search {
    background-color: #fff9e0;
    border-color: #ced4da;
    text-align: right;
    direction: rtl;
}

    .form-control-search::placeholder {
        color: #888;
        font-size: 15px;
    }

    .form-control-search:focus {
        background-color: #fff9e0;
        border-color: none;
        box-shadow: none;
    }

.custom-navbar {
    background-color: #ffffff;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
    padding: 15px 45px;
    transition: all 0.3s ease;
}

.category-btn {
    background-color: #383838;
    color: #ffe100;
    border: none;
    font-size: 14px;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
    z-index: 1001;
}

    .category-btn:hover {
        background-color: #2b2b2b;
        color: #ffeb3b;
    }

    .category-btn .icon-menu {
        font-size: 1rem;
    }

    .category-btn .arrow-icon {
        font-size: 0.8rem;
    }

.mega-menu-wrapper {
    position: relative;
    display: inline-block;
}

.mega-menu-container {
    position: absolute;
    top: 120%;
    right: 0;
    width: 1200px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #ddd;
}

    .mega-menu-container.show {
        display: flex;
    }

.sidebar-menu {
    background-color: #ffe100;
    width: 250px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-shrink: 0;
}

.sidebar-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-weight: 500;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .sidebar-item i {
        font-size: 1.2rem;
        margin-left: 10px;
    }

    .sidebar-item:hover {
        background-color: #e6cb00;
    }

    .sidebar-item.active {
        background-color: #383838;
        color: #fff;
        position: relative;
    }

        .sidebar-item.active::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            border-width: 10px;
            border-style: solid;
            border-color: transparent transparent transparent #383838;
        }

.content-area {
    flex-grow: 1;
    background-color: #fff;
    padding: 30px;
    min-height: 450px;
}

.sub-menu-group {
    display: none;
}

    .sub-menu-group.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }

.sub-category-title {
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
    display: block;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.sub-menu-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .sub-menu-list li {
        margin-bottom: 10px;
    }

        .sub-menu-list li a {
            text-decoration: none;
            color: #666;
            font-size: 0.95rem;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }

            .sub-menu-list li a::before {
                content: "›";
                margin-left: 5px;
                font-size: 1.2rem;
                line-height: 1;
                color: #999;
            }

            .sub-menu-list li a:hover {
                color: #e6cb00;
                padding-right: 5px;
            }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.icon-custom {
    width: 24px;
    text-align: center;
    display: inline-block;
}


.nav-link {
    color: #3d3c3a !important;
    font-size: 13px;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #b2a20f !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        right: 0;
        background-color: #b2a20f;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

.btn-catalog {
    background-color: #f6dd05;
    color: #3d3c3a;
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 12px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(246, 221, 5, 0.3);
}

    .btn-catalog:hover {
        background-color: #e5cd04;
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(246, 221, 5, 0.4);
    }

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

.social-icon {
    color: #3d3c3a;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-3px) rotate(10deg);
    }

    .social-icon.whatsapp:hover {
        color: #25D366;
    }

    .social-icon.instagram:hover {
        color: #E1306C;
    }

    .social-icon.telegram:hover {
        color: #0088cc;
    }

.features-section {
    padding: 80px 0;
    background-color: transparent;
    margin-top: -120px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #343a40;
}

.feature-card-wrapper {
    z-index: 100;
}

.feature-card {
    background-color: #ffffff;
    height: 200px;
    border: none;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        border-top-color: #ffc107;
    }

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: #fff8e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.features-icon {
    width: 55px;
}

.icon-circle i {
    font-size: 35px;
    color: #ffc107;
}

.feature-card:hover .icon-circle {
    background-color: #ffc107;
}

    .feature-card:hover .icon-circle i {
        color: #ffffff;
    }

.feature-card-title {
    font-size: 1rem;
    color: #495057;
}

.contact-section {
    background-color: #f9df04;
}

.contact-header {
    font-size: 35px;
    font-weight: 900;
    word-spacing: -5px;
    color: #3d3d3d;
    padding-bottom: 20px;
    border-bottom: 1px solid;
}

.contact-par {
    font-size: 19px;
    font-weight: 500;
    color: #3d3d3d;
    padding-top: 20px;
    margin-bottom: 45px;
}

.contact-img {
    margin-top: -50px;
}

.contact-phone-box {
    background-color: #3d3d3d;
    color: white;
    padding: 10px 70px;
    font-size: 28px;
    font-weight: 900;
    border-radius: 17px;
}

.price-container {
    background-color: #3d3d3d;
    border-radius: 15px;
    padding: 15px 15px 15px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.nav-tabs {
    border-bottom: none;
    padding-right: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .nav-tabs::-webkit-scrollbar {
        display: none;
    }

.nav-item {
    white-space: nowrap;
}

.nav-btn {
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 10px 10px 0 0;
    margin-left: 5px;
    margin-right: 0px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.85rem;
}

    .nav-btn i {
        font-size: 0.8em;
        color: #666;
    }

    .nav-btn.active {
        background-color: #f9df04 !important;
        color: #000 !important;
    }

        .nav-btn.active i {
            color: #000;
        }

    .nav-btn:hover:not(.active) {
        background-color: #e9ecef;
    }

.table-container {
    background-color: #fff;
    border-radius: 10px 0px 10px 10px;
    overflow: hidden;
}



.custom-table {
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

    .custom-table thead th {
        background-color: #f9df04;
        color: #000;
        border: none;
        padding: 15px;
        font-weight: bold;
    }

    .custom-table tbody tr {
        border-bottom: 1px solid #eee;
    }

    .custom-table tbody td {
        padding: 12px;
        font-size: 0.9rem;
        color: #444;
    }

    .custom-table tbody tr:nth-of-type(odd) {
        background-color: #f8f9fa;
    }

    .custom-table tbody tr:nth-of-type(even) {
        background-color: #fff;
    }

.col-name {
    min-width: 250px;
    text-align: right !important;
    padding-right: 20px !important;
}

.col-price {
    font-weight: bold;
    color: #333;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    color: #3D3D3D;
    margin: 0;
    white-space: nowrap;
}

.weblogs-title {
    font-size: 20px;
    font-weight: bold;
    color: #3D3D3D;
    margin: 0;
    white-space: nowrap;
}

.highlight {
    color: #F9DF04;
}

.header-line {
    flex-grow: 1;
    height: 1px;
    background-color: #B7B7B7;
}

.fac-carousel-text {
    padding: 10px;
    font-size: 15px;
}

.fac-item {
    border-radius: 20px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.23);
    transition: all 200ms linear;
}

    .fac-item:hover {
        background-color: #e5cd04;
        color: black;
    }

.factory-carousel .item {
    padding: 10px;
    transition: all 100ms linear;
}

    .factory-carousel .item:hover {
        transform: translateY(-2px);
    }

.aboutUs-par {
    color: #7a7a7a;
    font-weight: normal;
    line-height: 30px;
    font-size: 15px;
    text-align: justify;
}

.aboutUs-vid {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.aboutUs-btn {
    background-color: #F9DF04;
    color: #3D3D3D;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 10px 10px 10px 10px;
    transition: all 250ms linear;
}

.gallery-btn {
    background-color: #3D3D3D;
    color: #F9DF04;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 10px 10px 10px 10px;
    transition: all 200ms linear;
}

.aboutUs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 3px 10px gray;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 3px 10px gray;
}

.aboutusPage-btn {
    background-color: #F9DF04;
    color: #3D3D3D;
    font-size: 17px;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 10px 10px 10px 10px;
    transition: all 250ms linear;
}

.galleryPage-btn {
    background-color: #3D3D3D;
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 10px 10px 10px 10px;
    transition: all 200ms linear;
}

.aboutusPage-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 3px 10px gray;
}

.galleryPage-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 3px 10px gray;
}


.order-steps-section {
    padding: 80px 0;
    position: relative;
}

.steps-container {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 50px 20px 30px;
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #343a40;
    color: #ffc107;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
}

.step-item {
    text-align: center;
    margin-bottom: 30px;
}

    .step-item i {
        font-size: 3rem;
        color: #ffc107;
        margin-bottom: 15px;
    }

    .step-item p {
        font-size: 1rem;
        font-weight: 500;
        color: #495057;
    }

.step-icon {
    max-width: 50px;
    padding-bottom: 15px;
}


.step-header-title {
    font-size: 15px;
    font-weight: 700;
    color: #3d3d3d;
}

.contact-card {
    max-width: 400px;
    min-height: 300px;
    width: 100%;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .contact-card .card-header {
        background-color: #3d3d3d;
        color: white;
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: none;
    }

.card-header h5 {
    font-size: 16px;
}

.contact-card .profile-img {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    object-fit: cover;
}

.contact-card .card-body {
    padding: 1rem 1.5rem;
    color: #333;
}

.contact-card .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

    .contact-card .info-row .label {
        color: #555;
        font-weight: 500;
        font-size: 15px;
    }

    .contact-card .info-row .value {
        font-weight: bold;
        direction: ltr;
        font-size: 16px;
        text-align: left;
    }

.contact-card .multi-value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card hr {
    margin: 0.5rem 0;
    border-top: 1px solid #969696;
}

.news-header {
    font-size: 32px;
    font-weight: 900;
    color: #F9DF04;
}

.news-par {
    font-size: 19px;
    font-weight: 400;
    color: white;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F9DF04;
    color: #3D3D3D;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    border: none;
    cursor: pointer;
    max-width: 175px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #F9DF04;
}

    .view-all-btn:hover {
        background-color: #d7c204;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px #d7c204;
    }

    .view-all-btn i {
        font-size: 15px;
    }

.e-far-bookmark {
    font: 15px !important;
}

.news-section-wrapper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .8)), url("../../Media/Banners/Rectangle-32.png");
    background-size: cover;
}

.news-card {
    max-width: 400px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .news-card .news-header-title {
        font-size: 13px;
        font-weight: 700;
        color: #3d3d3d;
    }

    .news-card .achievments-header-title {
        font-size: 13px !important;
        font-weight: 700;
        color: #3d3d3d;
    }

    .news-card .list-group-item {
        border: none;
        padding: 1rem 1.25rem;
        transition: background-color 0.3s;
    }

        .news-card .list-group-item:hover {
            background-color: #f8f9fa;
        }

.news-link {
    text-decoration: none;
    color: inherit;
}

.news-title {
    font-size: .85rem;
    font-weight: 400;
    color: #54595f;
    margin-bottom: 0.5rem;
}

.news-meta {
    font-size: 0.8rem;
    color: #6c757d;
}

.news-img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 1rem;
}

.news-card .card-footer {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.news-footer-link {
    text-decoration: none;
    color: #3D3D3D;
    font-weight: 700;
    transition: color 0.3s;
    font-size: 14px;
}


    .news-footer-link .bi {
        vertical-align: middle;
        transition: transform 0.3s;
    }

    .news-footer-link:hover .bi {
        transform: translateX(-5px);
    }

.last-news {
    border-bottom: 1px solid lightgray;
}

.footer-area {
    background-color: #F6F6F6;
    color: #333;
    padding-top: 40px;
}

.footer-top {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 30px;
}


.footer-widget .h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
    position: relative;
}

.company-desc {
    text-align: justify;
    line-height: 1.8;
    font-size: 0.9rem;
    color: #555;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        text-decoration: none;
        color: #555;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

        .footer-links a:hover {
            color: #000;
            padding-right: 5px;
        }

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

.contact-info strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.enamad-logo {
    margin-top: 15px;
    max-width: 100px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s;
}

    .enamad-logo:hover {
        opacity: 1;
    }

.brand-logo {
    max-width: 60px;
    float: right;
    margin-right: 10px;
}

.copyright-area {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.85rem;
}

    .copyright-area a {
        color: #ffc107;
        text-decoration: none;
    }

.footer-links a:hover {
    color: #b2a20f !important;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: #b2a20f;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.aboutus-page-header {
    font-size: 32px;
    font-weight: 900;
    color: #3D3D3D;
    padding-bottom: 15px;
    border-bottom: 1px solid gray;
}

.aboutus-page-par {
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
    color: #3D3D3D;
}

.aboutusPage-img {
    height: 450px;
    width: 350px;
}

.clients-header {
    font-size: 20px;
    font-weight: bolder !important;
    color: #3D3D3D;
}

.clients-wrapper {
    margin-top: 75px;
}

.title-with-lines {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-align: center;
    color: #3D3D3D;
    margin: 30px 0;
    font-weight: bold;
}

    .title-with-lines::before,
    .title-with-lines::after {
        content: '';
        flex: 1;
        border-bottom: 2px solid #ddd;
    }

    .title-with-lines:not(:empty)::before {
        margin-left: .75em;
    }

    .title-with-lines:not(:empty)::after {
        margin-right: .75em;
    }

.logo-item {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.4s ease;
    filter: grayscale(100%);
    opacity: 0.6;
    cursor: pointer;
}

    .logo-item:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
        border-color: #ffe100;
        box-shadow: 0 15px 30px rgba(255, 225, 0, 0.15);
    }

    .logo-item img {
        width: 110px;
        object-fit: contain;
    }

.achievments-par {
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
    color: #3D3D3D;
}



/* Contact Us Page Styling */
.contactpage-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
}

.contactus-form,
.form-select {
    background-color: #f8f8f3 !important;
    border: 1px solid #383838 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    color: #333 !important;
    transition: all 0.2s !important;
}

    .form-control:focus,
    .form-select:focus {
        background-color: white !important;
        border-color: #284498 !important;
        box-shadow: 2px 3px 20px #DCDCDC !important;
        outline: 0;
    }

.form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-custom-primary {
    background-color: #383838 !important;
    border-color: #3c3c3c !important;
    color: #f6dd05 !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    transition: background-color 0.3s, transform 0.1s !important;
    width: 100% !important;
}

    .btn-custom-primary:hover {
        background-color: #313131 !important;
        border-color: #333232 !important;
        color: white !important;
    }

.fa-paper-plane {
    position: relative;
    top: 3px;
    left: 3px;
}

.info-block {
    background-color: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: right;
}

.info-block-header {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.info-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.info-panel {
    padding-left: 0;
    padding-right: 0;
}



.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-box {
    background-color: #f8f8f3;
    border: 1px solid #e1e8f0;
    padding: 7px;
    border-radius: 8px;
    max-width: 450px;
    margin: auto;
    width: 100%;
    height: auto;
}

    .contact-box h5 {
        color: #284498;
        font-weight: bold;
        margin-bottom: 15px;
    }

.contact-box-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

    .contact-box-item:last-child {
        border-bottom: none;
    }

    .contact-box-item .label {
        color: #777777;
        font-weight: 500;
    }

    .contact-box-item .value {
        color: #333;
        direction: ltr;
        font-size: 1.05rem;
    }

    .contact-box-item .icon {
        color: #b2a20f;
        font-size: 1.2rem;
    }

.icon-box {
    background-color: #F6F6F6;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-box-address .address-text {
    line-height: 1.8;
    text-align: justify;
}

.contact-box-address {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-header-form {
    color: #3D3D3D;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header-info {
    color: #3D3D3D;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
    margin-bottom: 50px;
}

    .map-container iframe {
        width: 100%;
        height: 450px;
        border: 0;
        display: block;
    }

.price-table-wrapper {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.table-header-dark {
    background-color: var(--dark-color);
    color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

    .table-header-dark .breadcrumb-custom {
        color: #ccc;
        font-size: 12px;
    }

        .table-header-dark .breadcrumb-custom span {
            color: #fff;
            font-weight: bold;
        }

.price-table {
    width: 100%;
    border-collapse: collapse;
}

    .price-table thead tr {
        background-color: var(--primary-color);
    }

    .price-table th {
        padding: 15px 25px;
        text-align: right;
        color: var(--dark-color);
        font-weight: 800;
        border: none;
    }

    .price-table td {
        padding: 12px 25px;
        border-bottom: 1px solid #eee;
        color: #444;
        font-size: 0.95rem;
        transition: background 0.2s;
    }

    .price-table tbody tr:nth-child(even) {
        background-color: #fafafa;
    }

    .price-table tbody tr:hover td {
        background-color: #fffde7;
    }

.price-value {
    font-weight: bold;
    color: #000;
}

.unit {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-right: 5px;
}

.responsive-table-container {
    width: 100%;
    overflow-x: auto;
}

.calc-wrapper {
    max-width: 400px;
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.calc-wrapper2 {
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.calc-header {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
}

.calc-body {
    padding: 30px;
}

.calc-form-group {
    margin-bottom: 25px;
}

    .calc-form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

.calc-input {
    width: 100%;
    padding: 12px 15px;
    text-align: right;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #444;
    transition: all 0.3s;
}

    .calc-input:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255, 225, 0, 0.1);
    }

    .calc-input::placeholder {
        color: #bbb;
    }

.calc-btn {
    width: 100%;
    background-color: var(--dark-color);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

    .calc-btn:hover {
        background-color: #222;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.result-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    display: none;
    border: 1px dashed #ddd;
}

.tool-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    width: 400px;
    margin: auto;
}

.tool-header {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
}

.tool-body {
    padding: 30px;
}

.form-label-custom {
    display: block;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: 1rem;
    text-align: left;
}

.custom-select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 15px;
    background-color: #fff;
    color: #777;
    font-size: 0.95rem;
    appearance: none;
    background-position: left 15px center;
    background-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: right;
}

    .custom-select:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(255, 225, 0, 0.1);
    }

.custom-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #eee;
    border-radius: 15px;
    font-size: 0.95rem;
    color: #444;
    transition: all 0.3s;
}

    .custom-input::placeholder {
        color: #bbb;
    }

.mobile-filter-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 10px;
    border-radius: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 11px;
}

.mobile-filter-btn2 {
    background-color: var(--dark-color);
    color: var(--primary-color);
    border: none;
    padding: 10px;
    border-radius: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 11px;
}

.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 2001;
    border-radius: 25px 25px 0 0;
    padding: 25px;
    transition: all 250ms linear;
    max-height: 80vh;
    overflow-y: auto;
}

    .bottom-sheet.active {
        bottom: 0;
    }

.bottom-sheet-overlay.active {
    display: block;
    opacity: 1;
}

.sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.close-sheet {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.sheet-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 12px;
    appearance: none;
    font-size: 0.95rem;
}

.title-with-lines {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--dark-color);
    margin: 50px 0 30px;
    font-weight: bold;
}

.factories-banner-wrapper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .6)), url("../../Media/Banners/16x9-steel-production-metallurgical-plant-SHS-292901249.1280.webp");
    background-size: auto;
    width: 100%;
    height: 245px;
    border-radius: 20px;
}

.factories-banner-header {
    font-size: 50px;
    font-weight: 900;
    color: var(--primary-color);
}

.factories-banner-par {
    color: white;
    font-size: 17px;
    font-weight: 600;
}

.factories-banner-content {
    height: 100%;
}

.factory-card {
    background: #fff;
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 250ms linear;
    cursor: pointer;
    border: 1px solid lightgray;
    text-decoration: none;
    display: block;
}

    .factory-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

.fac-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    background-color: #fff;
}

.factory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: all 250ms linear;
    display: block;
}

.factory-card:hover .factory-image {
    transform: scale(1.03);
}

.factory-info {
    padding: 0 20px 25px;
    text-align: center;
}

.factory-title {
    margin: 0;
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.6;
}

.factory-badge {
    display: inline-block;
    margin-bottom: 12px;
    background: #f1f3f5;
    color: #495057;
    font-size: 0.7rem;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: -0.2px;
}

.description-container {
    width: 100%;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    position: relative;
    padding: 40px 25px 20px;
    margin-top: 20px;
}

.description-header {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--primary-color);
    padding: 8px 30px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.description-content {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.8;
    text-align: justify;
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

    .description-content.collapsed::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(transparent, #f8f9fa);
    }

    .description-content.expanded {
        max-height: 2000px;
    }

.read-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px auto 0;
    background: none;
    border: none;
    color: #888;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s;
}

    .read-more-btn:hover {
        color: var(--dark-color);
    }

    .read-more-btn i {
        transition: transform 0.3s;
    }

    .read-more-btn.active i {
        transform: rotate(180deg);
    }




.blog-section-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.header-line2 {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--border-color), transparent);
    margin-right: 20px;
}

.header-title2 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark-text);
    margin: 0;
    white-space: nowrap;
}

    .header-title2 .text-yellow {
        color: var(--primary-yellow);
    }

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px;
    border-radius: 16px;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    background-color: transparent;
    border: 1px solid transparent;
}

    .blog-item:hover {
        background-color: var(--bg-card);
        border-color: var(--border-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transform: translateX(-5px);
    }

.blog-image-box {
    width: 160px;
    min-width: 160px;
    height: 105px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

    .blog-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.blog-item:hover .blog-image-box img {
    transform: scale(1.1);
}

.blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.blog-title {
    font-size: .8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.6;
    transition: color var(--transition-speed) ease;
}

.blog-item:hover .blog-title {
    color: var(--primary-yellow);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

    .blog-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .blog-meta i {
        font-size: 0.9rem;
        opacity: 0.8;
    }

.blog-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.article-main-title {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 6px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta-info {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

    .article-meta-info span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

.hero-article-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.inner-content-img {
    display: block;
    width: 100%;
    max-width: 700px;
    height: 350px;
    object-fit: cover;
    margin: 40px auto;
    border-radius: 20px;
    border: 8px solid var(--light-gray);
}

.body-text-area {
    text-align: justify;
    margin-bottom: 40px;
}

    .body-text-area p {
        margin-bottom: 20px;
    }

    .body-text-area ul {
        padding-right: 20px;
        margin-bottom: 25px;
    }

        .body-text-area ul li {
            margin-bottom: 12px;
            position: relative;
            list-style: none;
        }

            .body-text-area ul li::before {
                content: "\f058";
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                color: var(--primary-color);
                position: absolute;
                right: -25px;
                top: 2px;
            }

.data-grid-container {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.article-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 500px;
}

    .article-spec-table .table-header-cell {
        background-color: var(--dark-color);
        color: var(--primary-color);
        padding: 15px;
        text-align: center;
        font-weight: 800;
    }

    .article-spec-table .table-body-cell {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.9rem;
    }

    .article-spec-table .table-row:last-child .table-body-cell {
        border-bottom: none;
    }

    .article-spec-table .table-row:nth-child(even) {
        background-color: #fafafa;
    }

.feedback-area {
    background-color: var(--light-gray);
    padding: 35px;
    border-radius: 24px;
    margin-top: 60px;
}

.feedback-heading {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .feedback-heading::after {
        content: "";
        flex-grow: 1;
        height: 2px;
        background: #e0e0e0;
    }

.form-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .field-wrapper label {
        font-size: 0.85rem;
        font-weight: bold;
        color: var(--text-muted);
    }

    .field-wrapper input,
    .field-wrapper textarea {
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 12px;
        outline: none;
        transition: var(--transition);
    }

        .field-wrapper input:focus,
        .field-wrapper textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 225, 0, 0.1);
        }

.col-span-full {
    grid-column: span 2;
}

.action-btn-primary {
    background-color: var(--dark-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
}

    .action-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.more-articles-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px dashed var(--border-color);
}

.more-articles-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.header-pill-yellow {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cards-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.article-card-item {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

    .article-card-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.card-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

    .card-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-content-box {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

.card-item-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-read-more-link {
    display: inline-block;
    color: #bbb;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    font-weight: bold;
}

.article-card-item:hover .card-read-more-link {
    color: var(--dark-color);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-grid {
    column-count: 6;
    column-gap: var(--gap-size);
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: var(--gap-size);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-rad);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .masonry-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .masonry-item img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: var(--border-rad);
        object-fit: cover;
        filter: brightness(0.95);
        transition: filter 0.3s ease;
    }

    .masonry-item:hover img {
        filter: brightness(1.05);
    }

.warehouse-banner-wrapper {
    width: 100%;
    height: 50vh;
    background-image: url("../../Media/Banners/warehouse-back-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-boxes-container {
    margin-top: -40px;
    ;
}

.hero-overlay-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 70px;
}

.action-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

    .action-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }

    .action-box svg {
        font-size: 1.8rem;
        color: #444;
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }

    .action-box span {
        font-size: 1.15rem;
        font-weight: 700;
        color: #333;
    }

    .action-box:hover svg {
        color: var(--primary-color);
    }

.gallery-vid {
    width: 100%;
    height: 100%;
}

.weblogs-page-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3D3D3D;
}


.latest-news-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.latest-news-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

    .latest-news-card:hover {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-5px);
    }

.latest-news-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.latest-news-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.latest-news-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.latest-news-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.latest-news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.latest-news-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.latest-news-card:hover .latest-news-read-more {
    color: var(--primary-yellow);
}


.login-container {
    width: 100%;
    max-width: 420px;
    background-color: var(--white-card);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.logo-area {
    margin-bottom: 25px;
}

    .logo-area i {
        font-size: 3.5rem;
        color: var(--primary-yellow);
        filter: drop-shadow(0 4px 6px rgba(234, 179, 8, 0.2));
    }

.login-header h1 {
    color: var(--text-dark);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 22px;
    text-align: right;
    position: relative;
}

    .form-group label {
        display: block;
        color: var(--text-dark);
        font-size: 0.88rem;
        font-weight: 600;
        margin-bottom: 10px;
        margin-right: 5px;
    }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-wrapper svg {
        position: absolute;
        right: 18px;
        color: var(--text-gray);
        font-size: 1.1rem;
    }

    .input-wrapper input {
        width: 100%;
        padding: 15px 48px 15px 15px;
        background-color: var(--input-bg);
        border: 2px solid transparent;
        border-radius: 14px;
        color: var(--text-dark);
        font-family: 'Vazirmatn', sans-serif;
        font-size: 1rem;
        transition: all var(--transition);
    }

        .input-wrapper input:focus {
            outline: none;
            border-color: var(--primary-yellow);
            background-color: var(--white-card);
            box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.1);
        }

.toggle-password {
    position: absolute;
    left: 18px;
    right: auto !important;
    cursor: pointer;
    transition: var(--transition);
}

    .toggle-password:hover {
        color: var(--primary-yellow);
    }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-size: 0.88rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    cursor: pointer;
    font-weight: 500;
}

    .remember-me input {
        accent-color: var(--primary-yellow);
        width: 18px;
        height: 18px;
        cursor: pointer;
    }

.forgot-pass {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

    .forgot-pass:hover {
        color: var(--primary-hover);
        text-decoration: underline;
    }

.login-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-yellow);
    border: none;
    border-radius: 14px;
    color: #000;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 250ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgba(234, 179, 8, 0.3);
}

    .login-btn:hover {
        background-color: var(--primary-hover);
        transform: translateY(-3px);
        box-shadow: 0 15px 20px -3px rgba(234, 179, 8, 0.4);
    }

    .login-btn:active {
        transform: translateY(-1px);
    }

.register-link {
    margin-top: 30px;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

    .register-link a {
        color: var(--primary-yellow);
        text-decoration: none;
        font-weight: 800;
        margin-right: 5px;
    }

        .register-link a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }


/* Metal Page Styles */

.product-nav {
    width: 100%;
}

.product-nav-content {
    background-color: #eeeeee;
    width: 100%;
    height: 100px;
    border-radius: 15px;
}

.product-nav-right {
    height: 100%;
    border-radius: 15px;
}

.product-nav-bBox {
    background: #3d3d3d;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

    .product-nav-bBox .product-icon {
        width: 40%;
    }

.product-nav-details {
    padding: 10px;
}

    .product-nav-details h5 {
        margin-top: 15px;
        font-weight: 700;
        font-size: 18px;
    }

    .product-nav-details p {
        font-weight: 400;
        font-size: 13apx;
        color: #6f6f6f;
    }

.update-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    flex: 1;
}

.update-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #5b6e8c;
    margin-bottom: 2px;
}

.date-value {
    font-size: 15px;
    font-weight: 600;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    color: #0f172a;
    background: transparent;
    display: inline-block;
    padding: 0.15rem 0.3rem;
    border-radius: 12px;
    letter-spacing: 0.3px;
    direction: ltr;
    display: inline-block;
}

.update-card:hover {
    box-shadow: 0 16px 28px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
    background: transparent;
    transition: all 0.25s;
}

.update-text .label,
.update-text .date-value {
    text-align: right;
}

.small-note {
    font-size: 0.6rem;
    color: #94a3b8;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card {
    max-width: 450px;
    width: 100%;
    position: sticky;
    top: 10rem;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(230, 170, 30, 0.25);
    transition: transform 0.25s ease, box-shadow 0.3s;
    overflow: hidden;
    margin: auto;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.25);
    }

.brand-header {
    background-color: #e6b422;
    padding: 0.7rem 1.5rem;
    border-bottom: none;
}

    .brand-header h3 {
        margin: 0;
        font-weight: 800;
        font-size: 1.25rem;
        letter-spacing: -0.3px;
        color: #1a1a1a;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

.card-body-custom {
    padding: 1.5rem 1.5rem 1.8rem 1.5rem;
}

.product-image {
    text-align: center;
    margin-bottom: 1rem;
}

    .product-image img {
        max-width: 300px;
        object-fit: contain;
        border-radius: 18px;
        background: rgba(230, 180, 40, 0.15);
        padding: 8px;
        transition: 0.2s;
    }

.product-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e6b422;
    margin-bottom: 0.2rem;
    line-height: 1.3;
    text-align: center;
}

.product-sub {
    color: #b0b0b0;
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.price-wrapper {
    background: rgba(230, 180, 40, 0.08);
    border-radius: 1rem;
    padding: 0.7rem 1rem;
    margin: 0.8rem 0 0.5rem 0;
    border: 1px solid rgba(230, 180, 40, 0.3);
    text-align: center;
}

.price-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #e6b422;
    background: rgba(230, 180, 40, 0.15);
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    margin-bottom: 6px;
}

.price-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #c9980b;
    line-height: 1;
}

    .price-number small {
        font-size: 1rem;
        font-weight: 500;
        color: #c9980b;
    }

.unit-text-minimal {
    color: #e6b422;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 4px;
}

.vat-mini {
    font-size: 0.65rem;
    color: #aaa;
    margin-top: 6px;
    display: inline-block;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2e2e2e;
    border-radius: 3rem;
    padding: 0.4rem 0.8rem 0.4rem 0.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(230, 180, 40, 0.4);
    gap: 0.5rem;
    flex-wrap: wrap;
}

.phone-number {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    direction: ltr;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: #1e1e1e;
    padding: 0.3rem 0.9rem;
    border-radius: 2.5rem;
}

.btn-call {
    background-color: #e6b422;
    border: none;
    padding: 0.4rem 1.1rem;
    border-radius: 2.5rem;
    font-weight: 700;
    font-size: 12px;
    color: #1a1a1a;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

    .btn-call:hover {
        background-color: #d4a017;
        transform: scale(0.97);
        color: #000;
    }

.copy-btn {
    background: transparent;
    border: 1px solid #e6b422;
    color: #e6b422;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    font-size: 12px;
    font-weight: 600;
    transition: 0.2s;
}

    .copy-btn:hover {
        background: #e6b422;
        color: #1a1a1a;
    }

.spec-card {
    width: 100%;
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease;
    overflow: hidden;
}

    .spec-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 40px -14px rgba(0, 0, 0, 0.12);
    }

.card-header-gold {
    background-color: #e6b422;
    padding: 0.9rem 1.8rem;
    border-bottom: none;
}

    .card-header-gold h2 {
        margin: 0;
        font-weight: 800;
        font-size: 1.5rem;
        color: #1e1a0c;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
    }

    .card-header-gold i {
        font-size: 1.5rem;
        color: #1e1a0c;
    }

.card-body-spec {
    padding: 1.5rem 1.8rem 2rem 1.8rem;
    background: #ffffff;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    color: #2c2c2c;
    font-size: 0.95rem;
}

    .spec-table tr {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        transition: background 0.2s;
    }

        .spec-table tr:hover {
            background: rgba(230, 180, 34, 0.05);
        }

    .spec-table th,
    .spec-table td {
        padding: 1rem 0.5rem;
        vertical-align: middle;
    }

    .spec-table th {
        font-weight: 800;
        width: 38%;
        color: #b87c00;
        font-size: 1rem;
        letter-spacing: -0.2px;
    }

    .spec-table td {
        font-weight: 500;
        color: #2c2c2c;
        word-break: break-word;
    }

.attr-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    margin-left: 10px;
    color: #b87c00;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .card-body-spec {
        padding: 1.2rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 0.75rem 0.3rem;
        font-size: 0.85rem;
    }

    .spec-table th {
        width: 42%;
    }

    .attr-icon {
        width: 24px;
        margin-left: 6px;
    }
}

.card-footer-muted {
    background: #f8f6f2;
    padding: 0.7rem;
    text-align: center;
    font-size: 0.7rem;
    color: #5a5a5a;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
}

.spec-table {
    min-width: 280px;
}


/* Factory Page Styles */
.factory-banner-wrapper {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .6)), url("../../Media/Banners/کارخانه-فولاد-خراسان-نیشابور-600x238.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 220px;
    border-radius: 20px;
}

.factory-banner-header {
    font-size: 50px;
    font-weight: 900;
    color: var(--primary-color);
}

.factory-banner-par {
    color: white;
    font-size: 17px;
    font-weight: 600;
}

.factory-banner-content {
    height: 100%;
}

.main-factory-container {
    max-width: 1500px;
    width: 100%;
    margin: auto;
}

.coming-soon-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #f9df04;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

    .coming-soon-card::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: rgba(249, 223, 4, 0.15);
        border-radius: 50%;
        z-index: 0;
        opacity: 0.8;
    }

.card-content {
    position: relative;
    z-index: 1;
}

.icon-header {
    width: 70px;
    height: 70px;
    background: #2b2b2b;
    color: #f9df04;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 15px rgba(43, 43, 43, 0.2);
}

.coming-soon-card:hover .icon-header {
    transform: rotate(0deg) scale(1.05);
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-size: 25px;
}

    .text-highlight::after {
        content: '';
        position: absolute;
        bottom: 4px;
        right: 0;
        width: 100%;
        height: 10px;
        background-color: #f9df04;
        z-index: -1;
        opacity: 0.6;
        border-radius: 4px;
    }

.subtitle {
    color: #2b2b2b;
    font-size: 1.05rem;
    line-height: 1.8;
}

.feature-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

    .feature-box:hover {
        border-color: #f9df04;
        box-shadow: 0 10px 20px rgba(249, 223, 4, 0.15);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 24px;
    color: #2b2b2b;
    background: #f9df04;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(249, 223, 4, 0.3);
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2b2b2b;
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #f9df04;
    border-radius: 50%;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 223, 4, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 223, 4, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 223, 4, 0);
    }
}

.footer-text {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    border-right: 4px solid #f9df04;
    font-size: 0.95rem;
    line-height: 1.7;
}

.thank-you {
    font-weight: 800;
    color: #2b2b2b;
    font-size: 1.1rem;
}


/* Comments Box Styles */

.comment-box-wrapper {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.comments-card {
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    overflow: hidden;
    border: 1px solid rgba(56, 56, 56, 0.08);
}

.comments-header {
    background: white;
    border-bottom: 3px solid #f6dd05;
    padding: 1.5rem 2rem;
}

    .comments-header h2 {
        font-size: 1.85rem;
        font-weight: 700;
        color: #383838;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: space-between;
    }

        .comments-header h2 i {
            color: #f6dd05;
            font-size: 1.9rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

.badge-count {
    background-color: #f6dd05;
    color: #383838;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 40px;
    font-size: 0.85rem;
    margin-right: 12px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.comments-list {
    padding: 1.5rem 2rem 2rem 2rem;
    max-height: 600px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.comment-item {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.2s;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

    .comment-item:hover {
        border-color: #f6dd0580;
        box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.12);
        background-color: #fefef7;
    }

.comment-avatar {
    width: 52px;
    height: 52px;
    background: #f6dd0520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383838;
    transition: 0.2s;
}

    .comment-avatar i {
        font-size: 2rem;
        color: #f6dd05;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    }

.comment-content {
    flex: 1;
}

.comment-name {
    font-weight: 700;
    color: #383838;
    font-size: 1rem;
    letter-spacing: -0.2px;
}

.comment-date {
    font-size: 0.7rem;
    color: #7c7c7c;
    background: #f8f8f8;
    padding: 0.2rem 0.65rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.comment-text {
    color: #2b2b2b;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-top: 8px;
    margin-bottom: 12px;
    background: #fafafc;
    padding: 10px 14px;
    border-radius: 1rem;
    border-right: 3px solid #f6dd05;
}

.action-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

.action-btn {
    background: transparent;
    border: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    transition: 0.2s;
    color: #5a5a5a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

    .action-btn i {
        font-size: 0.9rem;
    }

.like-btn {
    color: #383838;
}

    .like-btn:hover {
        background: #f6dd0520;
        color: #d4a600;
    }

.reply-btn:hover {
    background: #eef2ff;
    color: #383838;
}

.delete-btn:hover {
    background: #ffebee;
    color: #d32f2f;
}

.comments-list::-webkit-scrollbar {
    width: 5px;
}

.comments-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: #f6dd05;
    border-radius: 10px;
}

.fade-out {
    animation: fadeOut 0.25s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-10px);
    }
}



@media (max-width: 1200px) {
    .masonry-grid {
        column-count: 5;
    }
}

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 4;
    }

    .product-nav-content {
        text-align: center;
        height: auto;
        flex-direction: column;
        padding-bottom: 10px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .features-section {
        margin-top: 15px;
        padding: 0;
    }

    .latest-news-navigation {
        grid-template-columns: 1fr;
    }

    .feature-card {
        height: 130px !important;
        padding: 20px;
    }

    .social-icons {
        margin-right: 0;
    }

    .contact-img {
        width: 175px;
        margin-top: 10px;
    }

    .contact-img-container {
        justify-content: center;
    }

    .contact-content {
        text-align: center;
    }

    .contact-phone-box {
        font-size: 20px;
    }

    .aboutUs-btns-container {
        flex-direction: column;
        text-align: center;
    }

    .view-all-btn {
        margin: auto;
    }

    .news-header,
    .news-par {
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-widget {
        margin-bottom: 30px;
        text-align: center;
    }

    .brand-logo {
        float: none;
        display: block;
        margin: 0 auto 10px auto;
    }

    .copyright-area .row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .text-md-end {
        text-align: center !important;
    }

    .table-container {
        border-radius: 0 0 10px 10px;
    }

    .title-with-lines {
        font-size: 13px;
    }

    .factories-banner-wrapper {
        height: 200px;
    }

    .factories-banner-header {
        font-size: 22px;
    }

    .factories-banner-par {
        font-size: 15px;
    }

    .hero-article-img {
        height: 300px;
    }

    .inner-content-img {
        height: 250px;
    }

    .article-main-title {
        font-size: .9rem;
    }

    .form-layout-grid {
        grid-template-columns: 1fr;
    }

    .col-span-full {
        grid-column: span 1;
    }

    .action-btn-primary {
        width: 100%;
    }

    .masonry-grid {
        column-count: 3;
    }

    .header-title {
        font-size: 1.2rem;
    }

    .hero-overlay-boxes {
        gap: 15px;
        margin-top: 25px;
    }

    .action-box {
        width: 130px;
        padding: 25px 15px;
        border-radius: 16px;
    }

        .action-box svg {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .action-box span {
            font-size: .8rem;
        }

    .blog-section-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .blog-item {
        gap: 15px;
        padding: 10px;
    }

    .blog-image-box {
        width: 120px;
        min-width: 120px;
        height: 85px;
    }

    .blog-title {
        font-size: 0.85rem;
    }

    .header-title2 {
        font-size: 1rem;
    }

    .weblogs-page-header {
        font-size: 1.5rem;
        font-weight: 700;
        color: #3D3D3D;
    }

    .article-meta-info span {
        font-size: .8rem;
    }

    .article-meta-info {
        justify-content: center;
    }

    .products-counts {
        font-size: 12px;
    }

    .price-table td {
        font-size: 13px;
    }

    .price-table th {
        font-size: 14px;
    }

    .map-container {
        height: 200px;
    }

    .product-nav-content {
        text-align: center;
        height: auto;
        flex-direction: column;
        padding-bottom: 10px;
    }

    .product-nav-details h5 {
        font-size: 16px;
    }

    .product-nav-details p {
        font-size: 11px;
    }

    .product-image img {
        width: 350px;
    }

    .product-card {
        margin-bottom: 50px;
    }

    .card-header-gold h2 {
        font-size: .9rem;
    }

    .factory-banner-wrapper {
        height: 145px;
    }

    .factory-banner-header {
        font-size: 22px;
    }

    .factory-banner-par {
        font-size: 12px;
    }

    .main-factory-container {
        padding: 5px;
    }

    .coming-soon-card {
        padding: 25px;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    .text-highlight::after {
        display: none;
    }

    .text-highlight {
        font-size: 20px;
    }


    .comments-header,
    .comments-list {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .comment-avatar {
        width: 44px;
        height: 44px;
    }

        .comment-avatar i {
            font-size: 1.7rem;
        }

    .action-btn {
        padding: 0.25rem 0.7rem;
        font-size: 0.75rem;
    }

    .comment-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .masonry-grid {
        column-count: 2;
    }

    :root {
        --gap-size: 8px;
    }

    .warehouse-banner-wrapper {
        height: 30vh;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .price-number {
        font-size: 2.2rem;
    }

        .price-number small {
            font-size: 0.9rem;
        }

    .card-body-custom {
        padding: 1.2rem;
    }

    .phone-number {
        font-size: 0.9rem;
        padding: 0.2rem 0.7rem;
    }

    .contact-button {
        justify-content: center;
    }

    .login-container {
        padding: 40px 25px;
        border-radius: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: none;
        box-shadow: none;
        border: none;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        background-color: #fff8e1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

    .features-icon {
        width: 35px;
    }

    .feature-card-title {
        font-size: 12px;
    }

    .action-buttons {
        gap: 0.4rem;
    }

    .action-btn span {
        display: none;
    }

    .action-btn i {
        margin: 0;
        font-size: 1rem;
    }

    .action-btn {
        padding: 0.4rem 0.65rem;
    }

    .comments-card {
        height: 420px;
    }

    .comments-list {
        height: 320px;
    }

    .comments-header h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 2;
    }

    .blog-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

        .blog-item:hover {
            transform: translateY(-3px);
        }

    .blog-image-box {
        width: 100%;
        height: 180px;
    }

    .blog-meta {
        width: 100%;
        justify-content: flex-start;
        border-top: 1px dashed var(--border-color);
        padding-top: 10px;
        margin-top: 5px;
    }
}

@media (max-width: 380px) {
    .price-number {
        font-size: 1.9rem;
    }
}
