.page-banner{
    position: relative;
    background: url("assets/images/nc10.png") center center/cover no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.page-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(112, 112, 112, 0.45); /* Dark overlay */
}
.page-banner .container{
    position: relative;
    z-index: 2;
}
.page-banner h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-banner p{
    font-size: 16px;
    color: #fff;
}
/*====================================
    PRODUCT PAGE
====================================*/
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
.product-intro,
.products,
.services,
.materials,
.blinds-section,
.services-process,
.materials-section{
    padding:50px 0;
}
.product-intro{
    text-align:center;
}
:is(.product-intro,.products,.services,.materials) h2{
    position:relative;
    margin-bottom:12px;
    font:700 40px/1.2 'Cormorant Garamond',serif;
    color:#222;
}
:is(.product-intro,.products,.services,.materials) h2::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    margin:10px auto 0;
    background:#ec3aa1;
    border-radius:5px;
}
.product-intro p{
    max-width:800px;
    margin:15px auto 0;
    font-size:16px;
    line-height:1.7;
    color:#666;
}
/*====================================
    RESPONSIVE
====================================*/
@media (max-width:991px){

    .product-intro,
    .products,
    .services,
    .materials,
    .blinds-section,
    .services-process,
    .materials-section{
        padding:45px 0;
    }

    :is(.product-intro,.products,.services,.materials) h2{
        font-size:34px;
    }

}

@media (max-width:768px){

    .product-intro,
    .products,
    .services,
    .materials,
    .blinds-section,
    .services-process,
    .materials-section{
        padding:40px 0;
    }

    :is(.product-intro,.products,.services,.materials) h2{
        font-size:30px;
    }

    .product-intro p{
        font-size:15px;
        line-height:1.6;
    }
}

/*====================================
    PRODUCT GRID
====================================*/
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin-top:35px;
}

.product-card{
    overflow:hidden;
    background:#fff;
    border:1px solid #f3f3f3;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.product-card img{
    display:block;
    width:100%;
    height:230px;
    object-fit:cover;
    transition:transform .4s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-card h3{
    padding:18px 20px 8px;
    font:700 26px/1.2 'Cormorant Garamond',serif;
    color:#222;
}

.product-card p{
    margin:0;
    padding:0 20px 20px;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

/*====================================
    RESPONSIVE
====================================*/

@media (max-width:991px){

    .product-grid{
        gap:20px;
        margin-top:30px;
    }

    .product-card img{
        height:210px;
    }

    .product-card h3{
        font-size:24px;
    }

}

@media (max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:25px;
    }

    .product-card img{
        height:200px;
    }

    .product-card h3{
        padding:16px 18px 8px;
        font-size:22px;
    }

    .product-card p{
        padding:0 18px 18px;
        font-size:14px;
    }

}
/*====================================
    BLINDS & WINDOW SYSTEMS
====================================*/

.blinds-section{
    padding:50px 0;
    background:#fafafa;
}

.section-title{
    margin-bottom:30px;
    text-align:center;
}

.section-title h2{
    position:relative;
    margin-bottom:10px;
    font:700 40px/1.2 'Cormorant Garamond',serif;
    color:#222;
}

.section-title h2::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    margin:10px auto 0;
    background:#ec3aa1;
    border-radius:3px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

.blind-item{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:25px;
    margin-bottom:30px;
}

.blind-item:last-child{
    margin-bottom:0;
}

.blind-item.reverse{
    direction:rtl;
}

.blind-item.reverse>*{
    direction:ltr;
}

.blind-image{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.blind-image img{
    display:block;
    width:100%;
    height:220px;
    object-fit:cover;
    transition:transform .4s;
}

.blind-image:hover img{
    transform:scale(1.05);
}

.blind-content{
    padding:5px;
}

.blind-content h3{
    margin-bottom:10px;
    font:700 30px/1.2 'Cormorant Garamond',serif;
    color:#222;
}

.blind-content p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

/*====================================
    RESPONSIVE
====================================*/

@media (max-width:991px){

    .section-title h2{
        font-size:36px;
    }

    .blind-item{
        gap:20px;
    }

    .blind-content h3{
        font-size:26px;
    }

    .blind-image img{
        height:200px;
    }

}

@media (max-width:768px){

    .blinds-section{
        padding:40px 0;
    }

    .section-title{
        margin-bottom:25px;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:14px;
    }

    .blind-item,
    .blind-item.reverse{
        grid-template-columns:1fr;
        gap:15px;
        margin-bottom:25px;
        direction:ltr;
    }

    .blind-content{
        padding:0;
        text-align:center;
    }

    .blind-content h3{
        font-size:24px;
    }

    .blind-image img{
        height:200px;
    }

}

@media (max-width:576px){

    .section-title h2{
        font-size:28px;
    }

    .blind-content h3{
        font-size:22px;
    }

    .blind-image img{
        height:180px;
    }

}
/*====================================
      INTERIOR SERVICES
====================================*/

.services-process{
    padding:50px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:35px;
}

.process-item{
    position:relative;
    text-align:center;
    padding:25px 20px;
    background:#fff;
    border-radius:15px;
    border:1px solid #f2f2f2;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.process-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.process-item::after{
    content:"";
    position:absolute;
    top:35px;
    right:-20px;
    width:20px;
    height:2px;
    background:#ec3aa1;
}

.process-item:last-child::after{
    display:none;
}

.process-number{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#926CD1;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:600;
}

.process-item h3{
    font-family:'Cormorant Garamond', serif;
    font-size:24px;
    color:#222;
    margin-bottom:10px;
    line-height:1.2;
}

.process-item p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

/*====================================
    MATERIALS SECTION
====================================*/

.materials-section{
    padding:50px 0;
    background:#f8f8f8;
}

.material-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:35px;
}

.material-card{
    padding:30px 25px;
    text-align:center;
    background:#fff;
    border:1px solid #f2f2f2;
    border-radius:16px;
    transition:.3s;
}

.material-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.material-card.active{
    background:#926CD1;
    color:#fff;
}

.material-icon{
    display:flex;
    justify-content:center;
    align-items:center;
    width:75px;
    height:75px;
    margin:0 auto 20px;
    background:#fff0f8;
    border-radius:50%;
}

.material-card.active .material-icon{
    background:#fff;
}

.material-icon i{
    font-size:30px;
    color:#ec3aa1;
}

.material-card h3{
    margin-bottom:18px;
    font:700 26px/1.2 'Cormorant Garamond',serif;
}

.material-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.material-card li{
    padding:8px 0;
    font-size:15px;
    color:#666;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.material-card.active li{
    color:#fff;
    border-color:rgba(255,255,255,.25);
}

.material-card li:last-child{
    border-bottom:0;
}

/*====================================
    RESPONSIVE
====================================*/

@media (max-width:991px){

    .process-grid,
    .material-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-item::after{
        display:none;
    }

}

@media (max-width:768px){

    .services-process,
    .materials-section{
        padding:40px 0;
    }

    .process-grid,
    .material-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .process-item{
        padding:22px 18px;
    }

    .process-number{
        width:55px;
        height:55px;
        font-size:20px;
    }

    .process-item h3,
    .material-card h3{
        font-size:22px;
    }

    .material-card{
        padding:25px 20px;
    }

    .material-icon{
        width:65px;
        height:65px;
    }

    .material-icon i{
        font-size:26px;
    }

}