
/* Breadcrumb Links Color */

.paper-header .breadcrumb a {
    color: #ff7a00;
    /* ORANGE */
    font-weight: 500;
    transition: 0.3s;
}

/* Hover Effect */

.paper-header .breadcrumb a:hover {
    color: #ffffff;
}

/* Active Page (Sweet Boxes / Paper Boxes) */

.paper-header .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* Separator color */

.paper-header .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

/* PAPER HEADER SECTION */

.paper-header {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */

.paper-header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay */

.paper-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Content */

.paper-header-content {
    position: relative;
    z-index: 3;
}

/* Title underline */

.paper-header h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7a00;
    margin: 15px auto 0;
}

/* Breadcrumb Links Color */
.nonwoven-header .breadcrumb a {
    color: #ff7a00;
    font-weight: 500;
    transition: 0.3s;
}

/* Hover Effect */
.nonwoven-header .breadcrumb a:hover {
    color: #ffffff;
}

/* Active Page */
.nonwoven-header .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* Separator */
.nonwoven-header .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

/* HEADER SECTION */
.nonwoven-header {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.nonwoven-header-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay */
.nonwoven-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Content */
.nonwoven-header-content {
    position: relative;
    z-index: 3;
}

/* Title underline */
.nonwoven-header h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff7a00;
    margin: 15px auto 0;
}


/* =====================================================
   PRODUCT HERO SECTION
===================================================== */
/* ===== CATEGORY BUTTONS PREMIUM STYLE ===== */
.btn-outline-primary {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #0f2f5f;
    border: 2px solid transparent;
    border-radius: 50px;
    background: #fff;
    transition: all 0.35s ease;
    overflow: hidden;
    z-index: 1;
}

/* Gradient Border Effect */
.btn-outline-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #0f2f5f, #ff7a00);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Hover Effect */
.btn-outline-primary:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Fill Animation */
.btn-outline-primary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #0f2f5f, #ff7a00);
    transition: height 0.35s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn-outline-primary:hover::after {
    height: 100%;
}

/* Active Click Effect */
.btn-outline-primary:active {
    transform: scale(0.97);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Focus */
.btn-outline-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.3);
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
    .btn-outline-primary {
        padding: 10px 18px;
        font-size: 14px;
        margin: 5px 4px;
    }
}

.product-image-box {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    border-radius: 8px;
    transition: transform .5s ease;
    will-change: transform;
}

.product-image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
}

.product-image-box:hover img {
    transform: scale(1.05);
}

.product-image-box::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #ff7a00;
    opacity: 0.08;
    border-radius: 50%;
}

.product-title {
    font-size: 40px;
    font-weight: 800;
}

.product-title span {
    color: #ff7a00;
}

.product-desc {
    margin: 20px 0;
    color: #555;
}

.product-points {
    list-style: none;
    padding: 0;
}

.product-points li {
    margin-bottom: 8px;
}

.product-points i {
    color: #ff7a00;
    margin-right: 8px;
}


/* =====================================================
   INDUSTRIES SECTION
===================================================== */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.industry-grid .col {
    text-align: center;
}

.industry-grid i {
    font-size: 30px;
    color: #0b2c5f;
    margin-bottom: 8px;
}

/* =====================================================
   FEATURES / APPLICATIONS / BENEFITS TABS
===================================================== */

.fab-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: auto;
}

.fab-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    gap: 10px;
}

.fab-btn {
    border: none;
    background: #eee;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.fab-btn.active {
    background: #ff7a00;
    color: white;
}

.fab-content {
    display: none;
}

.fab-content.active {
    display: block;
}

/* LIST STYLE */

.fab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
    list-style: none;
    padding: 0;
}

.fab-list li {
    position: relative;
    padding-left: 25px;
    text-transform: capitalize;
    font-weight: 500;
}

/* BULLET ICONS */

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

.app-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

.benefit-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ff7a00;
}

/* FAB Section List Capitalization */


.fab-list li:hover {
    transform: translateX(5px);
    transition: 0.3s;
    color: #ff7a00;
}


/* =====================================================
   TECHNICAL SPECIFICATION TABLE
===================================================== */

.tech-section {
    background: #f8f9fb;
}

.tech-table-wrapper {
    margin-top: 40px;
    overflow-x: auto;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tech-table th {
    width: 35%;
    text-align: left;
    padding: 14px;
    background: #f3f4f7;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}

.tech-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.tech-table th,
.tech-table td {
    text-transform: capitalize;
}

.tech-table tr:hover {
    background: #fafafa;
}

/* =====================================================
   LONG DESCRIPTION SECTION
===================================================== */

.long-desc {
    background: #f9fafc;
}

.long-desc p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Internal Product Links */

.long-desc a {
    color: #0b2c5f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.long-desc a:hover {
    color: #ff7a00;
    border-bottom: 2px solid #ff7a00;
}

.desc-heading {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.desc-list {
    list-style: none;
    padding-left: 0;
}

.desc-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.desc-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #ff7a00;
    font-weight: bold;
}


/* PRODUCTS PACKED GRID */

.packing-grid {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.packing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
}

.packing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
}

.pack-item {
    background: #ffffff;
    padding: 18px;
    text-align: center;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.pack-item:hover {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-3px);
}

.process-heading {
    font-size: 20px;
    /* smaller than h3 */
    font-weight: 600;
    margin-top: 10px;
}

.process-list {
    padding-left: 22px;
    line-height: 1.7;
}

.process-list li {
    margin-bottom: 8px;
}

.moq span {
    color: #ff7a00;
    font-weight: 600;
}

/* =====================================================
   FAQ SECTION
===================================================== */
.text-center .section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin: 10px auto 0;
}

.faq-wrapper {
    max-width: 700px;
    margin: auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease;
}

.faq-question:hover {
    background: #f1f3f5;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #ffffff;
}

.faq-question.active {
    color: #ff7a00;
}



/* ==========================================
   PRODUCTS CATALOG SECTION
========================================== */

.products-catalog {
    background: #f8f9fa;
}

/* Main Title */

.catalog-title {
    font-size: 38px;
    font-weight: 800;
    color: #222;
}

/* Intro text */

.catalog-intro {
    max-width: 850px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Product Card */

.catalog-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Top Gradient Border */

.catalog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff7a00, #ffb347);
}


/* Image Box */

.catalog-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;

    height: 200px;
    width: 100%;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 🔥 fills box, crops extra */
    transition: 0.5s;
}

.catalog-card:hover img {
    transform: scale(1.07);
}

/* Product Title */

.catalog-title-small {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Description */

.catalog-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 12px;
}

/* Feature List */
.catalog-features {
    list-style: none;
    /* remove bullet */
    padding-left: 0;
    margin: 0;
}

.catalog-features li {
    list-style: none;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
}

.catalog-features li::marker {
    content: "";
}

.catalog-features i {
    color: #ff7a00;
    /* orange icon */
    margin-right: 8px;
    font-size: 14px;
}
