/*=========================
GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

/*=====header====*/

nav {
    background-color: #ffffff !important;
}

.nav-link {
    font-weight: 600;
    margin: 0px 10px;
}


/* Fixed Header */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

/* Prevent page content from hiding behind navbar */
body{
    padding-top: 90px;
}

/* Logo */
.navbar-brand img{
    height: 60px;
}

/* Navigation Links */
.navbar-nav .nav-link{
    color: #222;
    font-weight: 500;
    margin: 0 12px;
    transition: .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color: #d40a61;
}

/* Mobile */
@media (max-width:991px){

    .navbar{
        padding: 10px 0;
    }

    .navbar-collapse{
        background:#fff;
        padding:20px;
        margin-top:10px;
        border-radius:10px;
        box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    body{
        padding-top:80px;
    }

}
.quote-btn{
    background:#d10072;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:40px;
    font-size:18px;
    cursor:pointer;
    font-weight:600;
}

.popup{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    z-index:9999;
}

.popup-content{
    background:#fff;
    width:90%;
    max-width:500px;
    margin:60px auto;
    padding:30px;
    border-radius:12px;
    position:relative;
}

.popup-content h2{
    text-align:center;
    margin-bottom:20px;
}

.popup-content input,
.popup-content textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
    box-sizing:border-box;
    font-size:15px;
}

.submit-btn{
    width:100%;
    padding:14px;
    background:#d10072;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
}

.close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}

/*=========================
HERO
==========================*/

.hero{

    padding-top:40px;

    background:linear-gradient(135deg,#f8f2ff,#ffffff);

}

.hero .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90vh;

}

.hero-left{

    width:52%;

}

.badge{

    display:inline-block;

    padding:10px 22px;

    background:#EFE5FB;

    color:#e40d7d;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-left h1{

    font-size:54px;

    line-height:78px;

    margin-bottom:25px;

}

.hero-left h1 span{

    color:#e40d7d;

}

.hero-left p{

    font-size:18px;

    color:#666;

    line-height:34px;

    margin-bottom:40px;

}

.hero-btn{

    display:flex;

    gap:20px;

}

.btn1{

    background:#e40d7d;

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

}

.btn2{

    border:2px solid #e40d7d;

    color:#e40d7d;

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin-top:45px;

    color:#444;

}

.hero-right{

    width:43%;

    position:relative;

}

.hero-right img{

    width:100%;

    animation:float 4s ease infinite;

}

.floating-card{

    position:absolute;

    left:-30px;

    bottom:20px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.floating-card h3{

    color:#e40d7d;

    font-size:38px;

}

.floating-card p{

    color:#666;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}


/*=========================
RESPONSIVE
==========================*/

@media (max-width:991px){

.header .container{
    height:80px;
}

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.quote-btn{
    display:none;
}

.menu-toggle{
    display:block;
    font-size:30px;
    color:#e40d7d;
    cursor:pointer;
    z-index:10001;
}

/* Overlay */

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Slide Menu */

.main-navbar{

    position:fixed;

    top:0;

    left:-320px;

    width:300px;

    height:100vh;

    background:#fff;

    overflow-y:auto;

    transition:.35s;

    z-index:9999;

    padding-top:80px;

    display:block;
}

.main-navbar.active{
    left:0;
}

.main-navbar ul{
    display:block;
}

.main-navbar ul li{
    width:100%;
}

.main-navbar ul li>a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 25px;
    border-bottom:1px solid #eee;
}

/* Mega Menu */

.mega-menu{

    position:static;

    width:100%;

    display:none;

    opacity:1;

    visibility:visible;

    transform:none;

    box-shadow:none;

    border-radius:0;

    padding:15px 20px;

    flex-direction:column;

}

.mega.active .mega-menu{
    display:flex;
}

.mega-banner{
    display:none;
}

/* Hero */

.hero .container{
    flex-direction:column;
    text-align:center;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-left h1{
    font-size:42px;
    line-height:55px;
}

.hero-btn{
    justify-content:center;
}

.hero-features{
    justify-content:center;
}

.floating-card{
    display:none;
}

}

.menu-toggle i{
    font-size:32px;
    color:#e40d7d;
    transition:0.3s ease;
}

/*====PRIVATE LABEL CATEGORIES===*/

/*=========================
PRIVATE LABEL CATEGORIES
==========================*/

.pl-categories{
    padding:100px 0;
    background:#fafafa;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    display:inline-block;
    padding:10px 24px;
    background:#F9E8F2;
    color:#e40d7d;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin:20px 0 15px;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:17px;
}

/*=========================
GRID
==========================*/

.category-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;

}

/*=========================
CARD
==========================*/

.category-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;
    flex-direction:column;

    height:100%;

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/*=========================
IMAGE
==========================*/

.category-card img{

    width:100%;
    height:240px;
    object-fit:cover;

}

/*=========================
CONTENT
==========================*/

.category-content{

    padding:30px;

    display:flex;
    flex-direction:column;

    flex:1;

}

.category-content h3{

    font-size:28px;
    color:#222;
    margin-bottom:20px;

}

.category-content ul{

    list-style:none;

    margin:0;
    padding:0;

}

.category-content ul li{

    position:relative;

    padding:10px 0 10px 28px;

    border-bottom:1px solid #f2f2f2;

    color:#555;

    font-size:15px;

}

.category-content ul li:last-child{

    border-bottom:none;

}

.category-content ul li::before{

    content:"✔";

    position:absolute;

    left:0;

    color:#e40d7d;

    font-weight:bold;

}

/*=========================
BUTTON
==========================*/

.cat-btn{

    margin-top:auto;

    display:block;

    width:100%;

    text-align:center;

    background:#e40d7d;

    color:#fff;

    padding:15px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.cat-btn:hover{

    background:#000000;
    color:#fff;

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.category-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.pl-categories{

    padding:70px 0;

}

.section-heading h2{

    font-size:32px;

}

.section-heading p{

    font-size:15px;
    line-height:26px;

}

.category-grid{

    grid-template-columns:1fr;

}

.category-card img{

    height:220px;

}

.category-content{

    padding:25px;

}

.category-content h3{

    font-size:24px;

}

}

/*=========================
WHY CHOOSE US
==========================*/

.why-us{
    padding:100px 0;
    background:#fff;
}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.why-card{

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #f2f2f2;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#F8EAF4;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    color:#e40d7d;

    transition:.35s;

}

.why-card:hover .icon{

    background:#e40d7d;
    color:#fff;

}

.why-card h3{

    font-size:24px;
    color:#222;
    margin-bottom:15px;

}

.why-card p{

    color:#666;
    line-height:28px;
    font-size:15px;

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-us{

    padding:70px 0;

}

.why-grid{

    grid-template-columns:1fr;

}

.why-card{

    padding:35px 25px;

}

.why-card h3{

    font-size:22px;

}

}
/*=========================
MANUFACTURING PROCESS
==========================*/

.process{

    padding:100px 0;

    background:#fafafa;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.process-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    position:relative;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.process-box:hover{

    transform:translateY(-10px);

}

.number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#e40d7d;

    color:#fff;

    font-size:28px;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

}

.process-box h3{

    font-size:24px;

    margin-bottom:15px;

}

.process-box p{

    color:#666;

    line-height:28px;

}

/* Responsive */

@media(max-width:991px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process{

padding:70px 0;

}

.process-grid{

grid-template-columns:1fr;

}

}

/*=========================
PACKAGING
==========================*/

.packaging{

    padding:100px 0;

    background:#ffffff;

}

.packaging-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:50px;

}

.package-card{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.package-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.package-card img{

    width:123px;

    height:123px;

    object-fit:contain;

    margin:0 auto 20px;

}

.package-card h3{

    font-size:20px;

    color:#222;

}

.packaging-btn{

    text-align:center;
    width: 30%;
    margin: auto;

}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.packaging-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.packaging{

padding:70px 0;

}

.packaging-grid{

grid-template-columns:1fr;

}

.package-card{

padding:30px;

}

}

/*=========================
CERTIFICATIONS
==========================*/

.certifications{
    padding:90px 0;
    background:#faf7fc;
    text-align:center;
}

.certifications h2{
    font-size:38px;
    margin:15px 0;
}

.certifications p{
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
    line-height:28px;
}

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.certificate-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.certificate-card:hover{
    transform:translateY(-8px);
}

.certificate-card img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin:0 auto 20px;
}

.certificate-card h3{
    font-size:22px;
    margin-bottom:12px;
}

.certificate-card p{
    color:#666;
    line-height:26px;
}

/* Responsive */

@media(max-width:991px){

.certificate-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.certificate-grid{
    grid-template-columns:1fr;
}

.certifications h2{
    font-size:30px;
}

}



/*=========================
FINAL CTA
==========================*/

.final-cta{

    padding:120px 0;

    background:#000000;

    text-align:center;

    color:#fff;

}

.cta-content{

    max-width:850px;

    margin:auto;

}

.cta-content span{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:20px;

}

.cta-content h2{

    font-size:52px;

    margin-bottom:20px;

    font-weight:700;

}

.cta-content p{

    font-size:18px;

    line-height:34px;

    color:#f3f3f3;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn1{

    background:#fff;

    color:#e40d7d;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.cta-btn1:hover{

    background:#222;

    color:#fff;

}

.cta-btn2{

    border:2px solid #fff;

    color:#fff;

    padding:18px 42px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.cta-btn2:hover{

    background:#fff;

    color:#e40d7d;

}

.cta-features{

    margin-top:45px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:30px;

}

.cta-features span{

    background:none;

    padding:0;

    font-size:16px;

}

.cta-features i{

    color:#fff;

    margin-right:8px;

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:768px){

.final-cta{

    padding:80px 20px;

}

.cta-content h2{

    font-size:36px;

}

.cta-content p{

    font-size:16px;

    line-height:28px;

}

.cta-buttons{

    flex-direction:column;

}

.cta-btn1,
.cta-btn2{

    width:100%;

}

.cta-features{

    gap:15px;

    flex-direction:column;

}

}

/*====about-us====*/

.about-us{
    padding:90px 0;
    background: linear-gradient(135deg, #f8f2ff, #ffffff);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content{
    flex:1;
}

.sub-title{
    color:#d10072;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    font-size:42px;
    margin:15px 0 25px;
    line-height:1.3;
    color:#222;
}

.about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
    font-size:16px;
}

.about-counter{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.counter-box{
    flex:1;
    text-align:center;
    background:#fff;
    padding:25px 15px;
    border-radius:12px;
    border:1px solid #eee;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.counter-box h3{
    font-size:36px;
    color:#d10072;
    margin-bottom:10px;
}

.counter-box p{
    margin:0;
    color:#444;
    font-weight:500;
}

@media(max-width:991px){

.about-wrapper{
    flex-direction:column;
}

.about-content h2{
    font-size:32px;
}

.about-counter{
    flex-wrap:wrap;
}

.counter-box{
    flex:0 0 48%;
}

}

@media(max-width:576px){

.about-counter{
    flex-direction:column;
}

.counter-box{
    width:100%;
}

.about-content h2{
    font-size:28px;
}

}

.contact-section{
max-width:1100px;
margin:60px auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
padding:20px;
}

.contact-info{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-info h2{
margin-bottom:15px;
}

.contact-info p{
line-height:28px;
color:#555;
}

.contact-form{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
font-size:15px;
}

.contact-form textarea{
height:140px;
resize:none;
}

.contact-form button{
background:#000;
color:#fff;
padding:14px 35px;
border:none;
cursor:pointer;
border-radius:5px;
font-size:16px;
}

.contact-form button:hover{
background:#d40a61;
}

.success{
background:#d4edda;
padding:12px;
margin-bottom:20px;
color:#155724;
border-radius:5px;
}

.error{
background:#f8d7da;
padding:12px;
margin-bottom:20px;
color:#721c24;
border-radius:5px;
}

@media(max-width:768px){

.contact-section{
grid-template-columns:1fr;
}

}

/*=========================
    COMMON
=========================*/

.packaging-banner,
.packaging-about,
.package-details,
.branding,
.process,
.faq{
    padding:90px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#d40a61;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:42px;
    color:#222;
    margin:15px 0;
    font-weight:700;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:17px;
}

/*=========================
    HERO
=========================*/

.packaging-banner{
    background:#f7f7f7;
}

.banner-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.banner-content h1{
    font-size:55px;
    margin-bottom:25px;
    color:#222;
    font-weight:700;
}

.banner-content p{
    font-size:18px;
    line-height:32px;
    color:#666;
}

/*=========================
    ABOUT
=========================*/

.packaging-about img{
    border-radius:15px;
    width:100%;
}

.packaging-about span{
    color:#d40a61;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.packaging-about h2{
    font-size:38px;
    margin:15px 0 25px;
}

.packaging-about p{
    color:#666;
    line-height:30px;
    margin-bottom:18px;
}

.packaging-about ul{
    list-style:none;
    padding:0;
}

.packaging-about ul li{
    margin-bottom:12px;
    color:#444;
    font-weight:500;
}

/*=========================
    PACKAGE DETAILS
=========================*/

.detail-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.detail-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:35px;
    transition:.35s;
}

.detail-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-color:#d40a61;
}

.detail-box h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.detail-box p{
    color:#666;
    line-height:30px;
}

/*=========================
    BRANDING
=========================*/

.branding{
    background:#fafafa;
}

.branding p{
    max-width:900px;
    margin:0 auto 40px;
    text-align:center;
    line-height:32px;
    color:#666;
}

.branding-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.branding-list div{
    background:#fff;
    padding:20px;
    border-radius:10px;
    text-align:center;
    font-weight:600;
    border:1px solid #eee;
    transition:.3s;
}

.branding-list div:hover{
    background:#d40a61;
    color:#fff;
}

/*=========================
    PROCESS
=========================*/

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.process-grid div{
    text-align:center;
    background:#fff;
    padding:35px 25px;
    border-radius:12px;
    border:1px solid #eee;
    transition:.3s;
}

.process-grid div:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transform:translateY(-8px);
}

.process-grid h3{
    width:65px;
    height:65px;
    background:#d40a61;
    color:#fff;
    border-radius:50%;
    margin:auto auto 20px;
    line-height:65px;
    font-size:24px;
}

.process-grid h4{
    margin-bottom:12px;
    color:#222;
}

.process-grid p{
    color:#666;
    line-height:28px;
}

/*=========================
    FAQ
=========================*/

.faq{
    background:#fafafa;
}

.faq h2{
    text-align:center;
    margin-bottom:50px;
    font-size:42px;
}

.faq-item{
    background:#fff;
    padding:30px;
    margin-bottom:20px;
    border-radius:10px;
    border-left:5px solid #d40a61;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.faq-item h4{
    margin-bottom:15px;
    color:#222;
}

.faq-item p{
    color:#666;
    line-height:30px;
}

/*=========================
    RESPONSIVE
=========================*/

@media(max-width:992px){

.banner-content h1{
    font-size:42px;
}

.detail-grid{
    grid-template-columns:1fr;
}

.branding-list{
    grid-template-columns:repeat(2,1fr);
}

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
    font-size:34px;
}

}

@media(max-width:768px){

.packaging-banner,
.packaging-about,
.package-details,
.branding,
.process,
.faq{
    padding:70px 0;
}

.banner-content h1{
    font-size:34px;
}

.section-heading h2{
    font-size:30px;
}

.branding-list,
.process-grid{
    grid-template-columns:1fr;
}

.packaging-about .row{
    row-gap:40px;
}

}

@media(max-width:576px){

.banner-content h1{
    font-size:28px;
}

.banner-content p,
.section-heading p,
.packaging-about p,
.detail-box p,
.process-grid p,
.faq-item p{
    font-size:15px;
    line-height:28px;
}

.section-heading h2{
    font-size:26px;
}

.detail-box{
    padding:25px;
}

}

.manufacturing-banner{
    padding:120px 0;
    background:#f8f8f8;
    text-align:center;
}

.banner-content span{
    color:#d40a61;
    font-weight:600;
    letter-spacing:2px;
}

.banner-content h1{
    font-size:52px;
    margin:20px 0;
    color:#222;
}

.banner-content p{
    max-width:800px;
    margin:auto;
    line-height:30px;
    color:#666;
}

/* About */

.manufacturing-about{
    padding:90px 0;
}

.manufacturing-about img{
    width:100%;
    border-radius:15px;
}

.manufacturing-about span{
    color:#d40a61;
    font-weight:600;
}

.manufacturing-about h2{
    margin:15px 0 20px;
    font-size:40px;
}

.manufacturing-about p{
    color:#666;
    line-height:30px;
}

.facility-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.facility-list div{
    background:#fafafa;
    padding:15px;
    border-radius:8px;
    font-weight:500;
}

/* Process */

.manufacturing-process{
    padding:90px 0;
    background:#fafafa;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.process-box:hover{
    transform:translateY(-8px);
}

.process-box h3{
    width:65px;
    height:65px;
    background:#d40a61;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.process-box h4{
    margin-bottom:15px;
}

.process-box p{
    color:#666;
    line-height:28px;
}

/* Why Choose */

.why-manufacturing{
    padding:90px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    padding:35px;
    border:1px solid #eee;
    border-radius:12px;
    transition:.3s;
}

.why-card:hover{
    border-color:#d40a61;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:28px;
}

/* Responsive */

@media(max-width:991px){

.process-grid,
.why-grid{
grid-template-columns:repeat(2,1fr);
}

.banner-content h1{
font-size:40px;
}

}

@media(max-width:767px){

.process-grid,
.why-grid,
.facility-list{
grid-template-columns:1fr;
}

.banner-content h1{
font-size:30px;
}

.manufacturing-about,
.manufacturing-process,
.why-manufacturing{
padding:70px 0;
}

}

/*=====================================
        CATEGORY SECTION
======================================*/

.category-item{
    padding:60px 0;
}

.category-item .category-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.category-item .category-wrapper:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.category-item .reverse{
    flex-direction:row-reverse;
}

.category-item .category-image{
    width:45%;
    overflow:hidden;
}

.category-item .category-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.category-item .category-wrapper:hover .category-image img{
    transform:scale(1.08);
}

.category-item .category-content{
    width:55%;
    padding:50px;
}

.category-item .category-content span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:65px;
    height:65px;
    background:#d40a61;
    color:#fff;
    border-radius:50%;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.category-item .category-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#222;
}

.category-item .category-content p{
    color:#666;
    line-height:30px;
    margin-bottom:25px;
}

.category-item .category-content ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:0;
    list-style:none;
}

.category-item .category-content ul li{
    background:#fff3f8;
    border-left:4px solid #d40a61;
    padding:14px 18px;
    border-radius:8px;
    font-weight:500;
    transition:.3s;
}

.category-item .category-content ul li:hover{
    background:#d40a61;
    color:#fff;
    transform:translateX(6px);
}


/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.category-item .category-wrapper,
.category-item .reverse{
    flex-direction:column;
}

.category-item .category-image,
.category-item .category-content{
    width:100%;
}

.category-item .category-content{
    padding:35px;
}

.category-item .category-content h2{
    font-size:34px;
}

}

@media(max-width:768px){

.category-item .category-content{
    padding:25px;
}

.category-item .category-content ul{
    grid-template-columns:1fr;
}

.category-item .category-image img{
    height:280px;
}

}

.category-hero{
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
                url('./assets/banner-image.png') center/cover no-repeat;
    padding: 140px 0;
    text-align: center;
    color: #fff;
}

.category-hero span{
    display:inline-block;
    color:#ffb3d1;
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:15px;
}

.category-hero h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:25px;
}

.category-hero p{
    max-width:850px;
    margin:auto;
    font-size:18px;
    line-height:32px;
    color:#eee;
}