



/*==============================
 MANUFACTURING HERO
==============================*/

.manufacturing-hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background-color:#050505;
}

/* Background */

.manufacturing-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.manufacturing-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:heroZoom 12s ease-in-out infinite alternate;
    transform:scale(1.08);
}

/* Overlay */

.manufacturing-overlay{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(to right,
        rgba(5,5,5,.88) 15%,
        rgba(5,5,5,.55) 45%,
        rgba(5,5,5,.15) 100%),

        linear-gradient(to top,
        rgba(5,5,5,.75),
        rgba(5,5,5,.15),
        rgba(5,5,5,.45));
}

/* Content */

.manufacturing-content{
    position:relative;
    z-index:10;

    max-width:700px;

    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;

    padding-left:8%;
    padding-right:30px;
}

.manufacturing-label{

    display:inline-block;

    color:#B8D870;

    letter-spacing:4px;

    font-size:.82rem;

    text-transform:uppercase;

    margin-bottom:25px;

    font-weight:600;
}

.manufacturing-content h2{

    font-size:clamp(3rem,6vw,6rem);

    line-height:.95;

    color:#fff;

    font-weight:400;

    margin-bottom:28px;
}

.manufacturing-content p{

    color:#d0d0d0;

    font-size:1.1rem;

    line-height:1.9;

    max-width:560px;

    margin-bottom:45px;
}

/* Button */

.manufacturing-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    width:fit-content;

    text-decoration:none;

    color:#fff;

    border:1px solid rgba(184,216,112,.35);

    padding:16px 34px;

    border-radius:50px;

    transition:.35s;

    font-weight:500;

    backdrop-filter:blur(8px);

    background-color:rgba(255,255,255,.03);
}

.manufacturing-btn:hover{

    background-color:#B8D870;

    color:#111;

    transform:translateY(-4px);
}

.manufacturing-btn span{

    transition:.35s;
}

.manufacturing-btn:hover span{

    transform:translateX(6px);
}

/* Scroll */

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    z-index:10;
}

.scroll-indicator span{

    width:2px;

    height:60px;

    display:block;

    background-image:linear-gradient(
        transparent,
        #B8D870,
        transparent
    );

    animation:scrollLine 2s infinite;
}

/* Animations */

@keyframes heroZoom{

    from{

        transform:scale(1.08);
    }

    to{

        transform:scale(1.18);
    }
}

@keyframes scrollLine{

    0%{

        opacity:.2;

        transform:translateY(-12px);
    }

    50%{

        opacity:1;
    }

    100%{

        opacity:.2;

        transform:translateY(12px);
    }
}

/*==============================
 TABLET
==============================*/

@media(max-width:992px){

.manufacturing-content{

    padding-left:6%;
}

.manufacturing-content p{

    font-size:1rem;
}

}

/*==============================
 MOBILE
==============================*/

@media(max-width:768px){

.manufacturing-hero{

    height:90vh;
}

.manufacturing-content{

    align-items:flex-start;

    padding:0 30px;

    justify-content:center;
}

.manufacturing-content h2{

    line-height:1;
}

.manufacturing-content p{

    font-size:.95rem;

    line-height:1.7;
}

.manufacturing-btn{

    padding:14px 28px;
}

.scroll-indicator{

    display:none;
}

}

/*==============================
 SMALL MOBILE
==============================*/

@media(max-width:480px){

.manufacturing-content{

    padding:0 22px;
}

.manufacturing-content h2{

    font-size:2.6rem;
}

.manufacturing-content p{

    font-size:.92rem;
}

}


/*=============================
 BUILT WITH PRECISION
==============================*/

.precision-section{

    padding:140px 8%;
    background-image:linear-gradient(180deg,#ffffff,#f5f7f8);
}

.precision-container{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.2fr;

    gap:80px;

    align-items:start;
}

.section-label{

    display:inline-block;

    font-size:12px;

    letter-spacing:5px;

    color:#9DBF42;

    text-transform:uppercase;

    margin-bottom:25px;
}

.precision-title{

    font-size:clamp(3rem,6vw,5.8rem);

    font-weight:300;

    line-height:.95;

    color:#111;

    margin-bottom:35px;
}

.precision-text{

    max-width:480px;

    color:#666;

    font-size:18px;

    line-height:1.9;
}

/* Right Side */

.precision-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;
}

.feature-card{

    background-color:white;

    padding:40px;

    border-radius:24px;

    border:1px solid #ececec;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 15px 45px rgba(0,0,0,.04);
}

.feature-card:hover{

    transform:translateY(-12px);

    border-color:#B8D870;

    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.icon{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#eef7dc;

    color:#9DBF42;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:600;

    margin-bottom:28px;

    transition:.35s;
}

.feature-card:hover .icon{

    background:#B8D870;

    color:#111;

    transform:rotate(10deg) scale(1.08);
}

.feature-card h3{

    font-size:24px;

    color:#111;

    font-weight:500;

    margin-bottom:15px;
}

.feature-card p{

    color:#666;

    line-height:1.8;
}

/* Responsive */

@media(max-width:992px){

.precision-container{

    grid-template-columns:1fr;

    gap:60px;
}

.precision-right{

    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.precision-section{

    padding:90px 25px;
}

.precision-title{

    font-size:48px;
}

.precision-text{

    font-size:16px;
}

.feature-card{

    padding:30px;
}

}


/*==============================
INSIDE PROCESS
==============================*/

.inside-process{
    padding:140px 8%;
    background:#fff;
}

.inside-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.35fr 1fr;
    gap:80px;
    align-items:center;
}

/*==============================
IMAGE
==============================*/

.inside-image{
    overflow:hidden;
    border-radius:28px;
}

.inside-image img{
    width:100%;
    height:720px;
    object-fit:cover;
    display:block;
    transition:1.2s ease;
}

.inside-image:hover img{
    transform:scale(1.05);
}

/*==============================
CONTENT
==============================*/

.inside-label{
    display:inline-block;
    margin-bottom:20px;
    color:#9DBF42;
    font-size:12px;
    letter-spacing:5px;
    text-transform:uppercase;
}

.inside-content h2{
    font-size:clamp(3rem,5vw,5rem);
    line-height:.95;
    font-weight:300;
    color:#111;
    margin-bottom:30px;
}

.inside-content p{
    font-size:18px;
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
    max-width:480px;
}

.inside-list{
    list-style:none;
    padding:0;
    margin:0;
}

.inside-list li{
    position:relative;
    padding-left:34px;
    margin-bottom:24px;
    font-size:18px;
    color:#222;
    transition:.35s;
}

.inside-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#B8D870;
    box-shadow:0 0 15px rgba(184,216,112,.6);
}

.inside-list li:hover{
    transform:translateX(8px);
    color:#000;
}

/*==============================
LAPTOP
==============================*/

@media (max-width:1200px){

    .inside-container{
        gap:60px;
    }

    .inside-image img{
        height:620px;
    }

    .inside-content h2{
        font-size:clamp(2.8rem,5vw,4.5rem);
    }

}

/*==============================
TABLET
==============================*/

@media (max-width:992px){

    .inside-process{
        padding:100px 6%;
    }

    .inside-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .inside-image{
        order:1;
    }

    .inside-content{
        order:2;
    }

    .inside-image img{
        height:500px;
    }

    .inside-content p{
        max-width:100%;
    }

}

/*==============================
MOBILE
==============================*/

@media (max-width:768px){

    .inside-process{
        padding:80px 24px;
    }

    .inside-container{
        gap:40px;
    }

    .inside-image{
        border-radius:20px;
    }

    .inside-image img{
        height:340px;
    }

    .inside-content h2{
        font-size:2.5rem;
        line-height:1;
        margin-bottom:20px;
    }

    .inside-content p{
        font-size:16px;
        line-height:1.75;
        margin-bottom:30px;
    }

    .inside-list li{
        font-size:16px;
        margin-bottom:18px;
        padding-left:28px;
    }

}

/*==============================
SMALL MOBILE
==============================*/

@media (max-width:480px){

    .inside-process{
        padding:70px 20px;
    }

    .inside-image img{
        height:260px;
    }

    .inside-content h2{
        font-size:2rem;
    }

    .inside-content p{
        font-size:15px;
    }

    .inside-label{
        letter-spacing:3px;
    }

}


/*=================================
MANUFACTURING SHOWCASE
==================================*/

.manufacturing-showcase{

    padding:120px 0;

    background-color:#fff;
}

/* Image */

.showcase-image{

    position:relative;

    width:100%;

    height:100vh;

    /*overflow:hidden;*/
}

.showcase-image img{

    width:100%;

    height:100%;

    object-fit:fill;

    /*transform:scale(1.12);*/

    transition:transform 1.5s ease;
}

/* Overlay */

.showcase-overlay{

    position:absolute;

    inset:0;

    background-image:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.15),
        rgba(0,0,0,.2)
    );
}

/* Text */

.showcase-content{

    position:absolute;

    left:8%;

    bottom:10%;

    color:#fff;

    z-index:5;
}

.showcase-label{

    display:block;

    margin-bottom:20px;

    font-size:12px;

    letter-spacing:5px;

    text-transform:uppercase;

    color:#B8D870;
}

.showcase-content h2{

    font-size:clamp(4rem,7vw,7rem);

    line-height:.92;

    font-weight:300;

    margin:0;
}

/* Responsive */

@media(max-width:992px){

.showcase-image{

height:70vh;

}

}

@media(max-width:768px){

.showcase-image{

height:60vh;

}

.showcase-content{

left:25px;

bottom:35px;

}

.showcase-content h2{

font-size:52px;

}

}


/*=========================================
CERTIFICATION SECTION
=========================================*/

.certification-section{

    padding:140px 0;

    background:#fff;

    text-align:center;

    overflow:hidden;

}

/* Small Label */

.cert-label{

    display:inline-block;

    margin-bottom:18px;

    color:#B8D870;

    font-size:13px;

    font-weight:500;

    letter-spacing:5px;

    text-transform:uppercase;

}

/* Heading */

.certification-section h2{

    font-size:clamp(4rem,7vw,7rem);

    font-weight:300;

    line-height:.9;

    letter-spacing:-0.05em;

    color:#111;

    margin-bottom:28px;

}

/* Description */

.cert-desc{

    max-width:720px;

    margin:0 auto;

    color:#666;

    font-size:18px;

    line-height:1.9;

}


/*=========================================
MARQUEE
=========================================*/

.cert-marquee{

    width:100%;

    overflow:hidden;

    margin-top:90px;

    position:relative;

    padding:70px 0;

    mask-image:linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );

    -webkit-mask-image:linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* Moving Track */

.cert-track{

    display:flex;

    align-items:center;

    gap:120px;

    width:max-content;

    animation:marqueeMove 35s linear infinite;

}

.cert-track:hover{

    animation-play-state:paused;

}

/* Logo */

.cert-track img{

    width:150px;

    height:150px;

    filter:grayscale(100%);

    opacity:.8;

    transition:.4s ease;

    flex-shrink:0;

}

.cert-track img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}


/*=========================================
INDIVIDUAL LOGO SIZES
=========================================*/

.logo-iso{

    height:100px;

}

.logo-bis{

    height:70px;

}

.logo-jis{

    height:135px;

}

.logo-iec{

    height:95px;

}

.logo-factory{

    height:200px;

}




/*=========================================
ANIMATION
=========================================*/

@keyframes marqueeMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.cert-track{

gap:120px;

animation-duration:40s;

}

.logo-iso{

height:130px;

}

.logo-bis{

height:110px;

}

.logo-jis{

height:95px;

}

.logo-iec{

height:70px;

}

.logo-factory{

height:120px;

}

.logo-arai{

height:95px;

}

.logo-ce{

height:90px;

}

}

@media(max-width:768px){

.cert-track{

gap:70px;

}

.logo-iso{

height:90px;

}

.logo-bis{

height:80px;

}

.logo-jis{

height:70px;

}

.logo-iec{

height:50px;

}

.logo-factory{

height:85px;

}

.logo-arai{

height:70px;

}

.logo-ce{

height:65px;

}

}