/* ================================
   SERVO MASTER SLIDER
================================ */

.servo-slider{
width:100%;
max-width:1320px;
height:700px;
margin:0px auto;
overflow:hidden;
position:relative;
background:#f3f3f3;
display:flex;
align-items:center;
margin-top: 90px;
}

/* SLIDER TRACK */

.slider-track{
display:flex;
width:100%;
height:100%;
transition:transform 0.8s ease;
}

/* EACH SLIDE */

.servo-slide{
min-width:100%;
display:flex;
align-items:center;
justify-content:center;
}

/* INNER CONTAINER */

.servo-container{
width:100%;
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
padding:60px;
}

/* LEFT CONTENT */

.servo-content{
width:50%;
}

.logo{
width:180px;
margin-bottom:20px;
}

.servo-title{
font-size:20px;
font-weight:900;
color:#444;
line-height:1.3;
margin-bottom:25px;

}

.servo-content p{
font-size:15px;
color:#555;
line-height:1.7;
margin-bottom:14px;
font-weight: 500;
}

/* RIGHT IMAGE */

.servo-image{
width:50%;
display:flex;
justify-content:center;
align-items:center;
}

.servo-image img{
width:100%;
max-width:520px;
height:auto;
object-fit:contain;
}

/* ARROWS */

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;
border-radius:50%;
background:#777;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
cursor:pointer;
z-index:10;
transition:0.3s;
}

.arrow-left{
left:25px;
}

.arrow-right{
right:25px;
}

.arrow:hover{
background:#333;
}

/* RESPONSIVE */

@media(max-width:1100px){

.servo-container{
padding:40px;
gap:40px;
}

.servo-title{
font-size:34px;
}

}

@media(max-width:900px){

.servo-container{
flex-direction:column;
text-align:center;
}

.servo-content{
width:100%;
}

.servo-image{
width:100%;
}

.servo-image img{
max-width:420px;
}

.servo-title{
font-size:30px;
}

}

@media(max-width:500px){

.servo-slider{
height:auto;
padding:40px 0;
}

.servo-title{
font-size:26px;
}

.servo-content p{
font-size:14px;
}

.logo{
width:140px;
}

}


/*------------------------ stats --------------------------------*/

.servo-stats{
width:100%;
background:#1874c1;
padding:60px 0;
}

.servo-stats-container{
max-width:1400px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.servo-stat{
flex:1;
text-align:center;
color:white;
position:relative;
}

.servo-stat h2{
font-size:64px;
font-weight:200;
letter-spacing:2px;
margin-bottom:10px;
}

.servo-stat p{
font-size:20px;
color:#00e0ff;
text-align: center !important;
}

/* vertical divider */

.servo-stat:not(:last-child)::after{
content:"";
position:absolute;
right:0;
top:15%;
height:70%;
width:2px;
background:#ffffff;
opacity:0.7;
}

.unit{
margin-left:5px;
font-size:60px;
}

.static{
margin-right:5px;
}

/* responsive */

@media(max-width:900px){

.servo-stats-container{
flex-direction:column;
gap:40px;
}

.servo-stat:not(:last-child)::after{
display:none;
}

}

/* BIG IMAGE SECTION */

.servo-big-image{
width:100%;
margin:0;
padding:0;
line-height:0;
}

.servo-img{
position:relative;
width:100%;
}

.servo-img img{
width:100%;
height:auto;
display:block;
object-fit:cover;
}

/* OVERLAY CONTENT */

.servo-overlay .servos-contents{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:#fff;
z-index:2;
}

/* DARK OVERLAY */

.servo-overlay::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
z-index:1;
}

/* LOGO */

.servos-contents .servo-logo{
    width: 180px !important;
    margin-bottom: 20px;
    display: inline-flex !important;
}

/* TEXT */

.servos-contents h2{
font-size:38px;
letter-spacing:2px;
margin-bottom:10px;
font-weight:700;
}

.servos-contents p{
font-size:20px;
line-height:1.6;
font-weight:500;
}
/*------------------- end of stats and image ------------------------------------------*/

/*--------------------------- two image slides --------------------------------------------*/ 

.stroke-slider{
width:100%;
padding:80px 0;
overflow:hidden;
position:relative;
}

/* background animation layer */

.stroke-slider::before{
content:"";
position:absolute;
top:0;
left:0;
width:0%;
height:100%;
background:#6e6e6e;
z-index:-1;
animation:slideBg 1.5s ease forwards;
}

/* animation */

@keyframes slideBg{
0%{
width:0%;
}
100%{
width:100%;
}
}
.stroke-wrapper{
max-width:1400px;
margin:auto;
overflow:hidden;
}

.stroke-track{
display:flex;
transition:transform .7s ease;
}

.stroke-slide{
min-width:100%;
}

.stroke-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
padding:0 40px;
}

/* TEXT */

.stroke-text{
width:40%;
color:white;
}

.stroke-text h2{
font-size:38px;
font-weight:300;
margin-bottom:25px;
letter-spacing:2px;
}

.stroke-text p{
font-size:16px;
color:#ddd;
margin-bottom:18px;
line-height:1.6;
}

/* IMAGE */

.stroke-image{
width:60%;
}

.stroke-image img{
width:100%;
display:block;
}

/* ARROWS */

.stroke-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;
background:#444;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-size:22px;
}

.stroke-arrow.left{
left:20px;
}

.stroke-arrow.right{
right:20px;
}

/* MOBILE */

@media(max-width:900px){

.stroke-container{
flex-direction:column;
text-align:center;
}

.stroke-text,
.stroke-image{
width:100%;
}

}



/*------------------------------------- end of two image slides ------------------------------------------*/  

/* SECTION */

.servo-compare{
width:100%;
background:#dcdcdc;
padding:80px 0;
}

/* CONTAINER */

.compare-container{
max-width:1400px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
position:relative;
}

/* BOX */

.compare-box{
width:45%;
text-align:center;
}

.compare-box img{
max-width:350px;
width:100%;
}

.compare-box h2{
margin-top:30px;
font-size:26px;
font-weight:300;
letter-spacing:1px;
color:#333;
}

.compare-box h2 b{
font-weight:700;
}

/* CENTER PLAY */

.compare-play{
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
}

.compare-play img{
width:140px;
cursor:pointer;
transition:.3s;
}

.compare-play img:hover{
transform:scale(1.1);
}

/* RESPONSIVE */

@media(max-width:900px){

.compare-container{
flex-direction:column;
gap:60px;
}

.compare-play{
position:static;
transform:none;
}

}



/*------------------- product slider ----------------------------------*/

/* SECTION */

.product-samples{
width:100%;
padding:40px 0;
background:#fff;
}

.samples-container{
max-width:1320px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
}

/* HEADING */

.samples-title{
width:30%;
}

.samples-title h2{
font-size:42px;
font-weight:900;
color:#333;
line-height:1.2;
}

/* SLIDER */

.samples-slider{
width:70%;
overflow:hidden;
position:relative;
display:flex;
align-items:center;
}

/* TRACK */

.samples-track{
display:flex;
transition:transform .6s ease;
}

/* SLIDE */

.samples-slide{
min-width:100%;
display:flex;
justify-content:center;
align-items:center;
}

/* IMAGE SIZE */

.samples-slide img{
width:400px;
height:400px;
object-fit:cover;
display:block;
}

/* ARROWS */

.samples-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;
background:#444;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-size:22px;
}

.samples-arrow.left{
left:15px;
}

.samples-arrow.right{
right:15px;
}

/* MOBILE */

@media(max-width:900px){

.samples-container{
flex-direction:column;
text-align:center;
}

.samples-title{
width:100%;
}

.samples-slider{
width:100%;
}

.samples-slide img{
width:300px;
height:300px;
}

}

.samples-track{
display:flex;
transition:transform .6s ease;
width:100%;
}

.samples-slide{
min-width:100%;
flex-shrink:0;
}
/*----------------- end of product ----------------------------*/



.product-wrapper {
    width: 100%;
    padding: 40px 20px;
    background: #f8f9fb;
    font-family: Arial, sans-serif;
}

.product-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

/* CONTAINER */
.table-container {
    overflow-x: auto;
}

/* TABLE */
.product-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* CELLS */
.product-table td {
    border: 1px solid #ddd;
    padding: 10px 8px;
    font-size: 13px;
    text-align: center;
    vertical-align: middle;   /* 🔥 FIX ALIGNMENT */
    line-height: 1.4;
    float: none;
}

/* HEADER ROW */
.product-table .header-row td {
    background: #f5f5f5;
    font-weight: bold;
    text-align: center;
}

/* LEFT COLUMN (LABELS) */
.product-table .left {
    text-align: left;
    padding-left: 12px;
    font-weight: 500;
}

/* HIGHLIGHT ROWS */
.product-table .highlight {
    background: #f9ab03 !important;
    font-weight: bold;
}

/* SECTION HEADINGS */
.product-table .section td {
    background: #eaeaea;
    font-weight: bold;
    text-align: left;
    padding: 12px;
    font-size: 14px;
}

/* NORMAL WHITE ROW */
.product-table .white {
    background: #ffffff;
}

/* NOTE SECTION */
.product-table .note {
    text-align: left;
    padding: 15px;
    line-height: 1.6;
    font-size: 13px;
    background: #fafafa;
}

/* ZEBRA STRIPES */
.product-table tr:nth-child(even) {
    background: #fafafa;
}

/* HOVER EFFECT */
.product-table tr:hover td {
    background: #fff8e6;
}





.machine-section{
    background:#e9e9e9;
    padding:50px 40px;
}

/* ===== CONTAINER ===== */
.machine-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* ===== LEFT IMAGE ===== */
.machine-image{
    flex:1.2;
}

.machine-image img{
    width:100%;
    height:auto;
    display:block;
}

/* ===== RIGHT FORM ===== */
.machine-form{
    flex:1;
}

/* INPUT FIELDS */
.machine-form input{
    width:100%;
    padding:14px 15px;
    margin-bottom:20px;
    border:1px solid #cfcfcf;
    background:#f5f5f5;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.machine-form input:focus{
    border-color:#333;
    background:#fff;
}

/* BUTTON */
.machine-form button{
    background:#333;
    color:#fff;
    border:none;
    padding:14px 25px;
    font-size:14px;
    cursor:pointer;
    text-transform:lowercase;
    transition:0.3s;
}

.machine-form button:hover{
    background:#000;
}

/* LINE */
.divider{
    width:100%;
    height:1px;
    background:#333;
    margin:30px 0;
}

/* SECOND BUTTON */
.secondary-btn{
    display:inline-block;
    padding:12px 25px;
    border:1px solid #333;
    text-decoration:none;
    color:#333;
    font-size:14px;
    transition:0.3s;
}

.secondary-btn:hover{
    background:#333;
    color:#fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .machine-container{
        flex-direction:column;
    }
}

@media (max-width:767px) {
    .servos-contents h2 {
    font-size: 10px;
    }
}