
.hero{
min-height:100vh;
display:flex;
align-items:center;
position:relative;
background:#f2dfc4;
overflow:hidden;
padding: 90px 0 10px 0 !important;
}

.header-main,
.navbar {
  background: #fff !important
}

.header-main a,
.navbar a,
header a {
  color: #0b1b2b !important
}

header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

/* left angled white panel */

.hero::before{
content:"";
position:absolute;
left:0;
top:0;
width:65%;
height:100%;
background:#f3f1ee;
clip-path:polygon(0 0,85% 0,70% 100%,0% 100%);
z-index:0;
}


/* container */

.hero-container{
position:relative;
z-index:2;
width:100%;
padding:0 80px;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
}

.hero-left{
max-width:520px;
}

/* tag */

.hero-tag{
display:inline-block;
background:#ead7c2;
color:#8c4a15;
font-size:11px;
letter-spacing:2px;
padding:7px 14px;
margin-bottom:28px;
}


/* title */

.hero-title{
font-size:65px;
line-height:1.05;
color:#2b1305;
font-weight:800;
font-family: 'Barlow Condensed', sans-serif;
}

.hero-title span{
display:block;
font-size:65px;
color:#c2773f;
margin-top:12px;
}


/* description */

.hero-desc{
margin-top:28px;
font-size:16px;
line-height:1.8;
color:#6d5442;
max-width:460px;
}

.hero-points{
  margin-top:18px;
  padding:0;
  list-style:none;
}

.hero-points li{
  font-size:15px;
  color:#4a2a16;
  margin-bottom:10px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:10px;
}

.hero-points li::before{
  content:"*";
  color:#c07840;
  font-weight:bold;
  font-size:16px;
}



/* buttons */

.hero-buttons{
margin-top:28px;
display:flex;
gap:20px;
}

.btn-primary{
background:#3b1f0e;
color:#fff;
padding:12px 8px;
font-size:11px;
letter-spacing:1px;
text-decoration:none;
}
.btn-primary:hover{
background-color: #8b4513;
transform: translateY(3px);
color: white;
}

.btn-outline{
border:1px solid #3b1f0e;
padding:12px 8px;
font-size:11px;
letter-spacing:1px;
text-decoration:none;
color:#3b1f0e;
}
.btn-outline:hover{
    background-color: #3b1f0e;
    color: white;
}


/* stats */

.hero-stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:60px;
border-top:1px solid #dbcfc3;
padding-top:24px;
max-width:520px;
}

.stat h3{
font-size:30px;
color:#3b1f0e;
}

.stat p{
font-size:12px;
color:#8d7663;
margin-top:6px;
}


/* right printer area */

.hero-right{
display:flex;
flex-direction:column;
align-items:center;

}

.printer-box{
background:#efedea;
border:1px solid #d8cfc6;
padding:40px;
box-shadow:0 6px 0 #5b2d12;
}

.printer-box img{
width:360px;
height: auto;
}


/* feature tags */

.printer-features{
  margin-top:22px;
  display:flex;
  flex-wrap:nowrap;
  gap:12px;
  justify-content:center;
  align-items:center;
  overflow-x:auto;
  scrollbar-width:none;
}

.printer-features::-webkit-scrollbar{
  display:none;
}

.printer-features span{
  white-space:nowrap;
}

.printer-features span{
background:#f6f1eb;
border:1px solid #e3d6c8;
padding:8px 14px;
font-size:12px;
color:#7b4a25;
}


/* mobile */

@media(max-width:900px){

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-title{
font-size:52px;
}

.hero-title span{
font-size:32px;
}

.hero-buttons{
justify-content:center;
}

.hero-stats{
grid-template-columns:1fr 1fr;
}

.printer-box img{
width:260px;
height: auto;
}

}

/* ticker container */

.ticker-wrap{
width:100%;
overflow:hidden;
background:#3b1f0e;
border-top:1px solid rgba(255,255,255,0.1);
border-bottom:1px solid rgba(255,255,255,0.1);
}


/* scrolling track */

.ticker-track{
display:flex;
align-items:center;
width:max-content;
animation:tickerScroll 28s linear infinite;
}


/* ticker item */

.ticker-item{
display:flex;
align-items:center;
white-space:nowrap;
padding:14px 30px;
font-size:12px;
letter-spacing:0.18em;
text-transform:uppercase;
color:rgba(255,255,255,0.85);
font-weight:500;
}


/* separator dot */

.ticker-sep{
display:inline-block;
width:5px;
height:5px;
border-radius:50%;
background:#c07840;
margin-left:20px;
}


/* animation */

@keyframes tickerScroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* responsive */

@media (max-width:900px){

.ticker-item{
padding:12px 18px;
font-size:11px;
}

}
.overview{
padding:40px 0;
background:#ffffff;
border-bottom: 1px solid #e4ead9;
}

.overview-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
padding:0 40px;
}



/* left side */

.overview-label{
font-size:12px;
letter-spacing:0.2em;
color:#c07840;
margin-bottom:20px;
display:flex;
align-items:center;
gap:10px;
}

.overview-label span{
width:30px;
height:2px;
background:#c07840;
display:block;
}

.overview-title{
font-size:56px;
line-height:1.1;
color:#2b1204;
margin-bottom:20px;
font-family:'Barlow Condensed', sans-serif;
font-weight: 700;

}

.overview-title em{
color:#c07840;
}

.overview-left p{
font-size:16px;
line-height:1.8;
color:#5b4637;
margin-bottom:22px;
max-width:520px;
}

.list {
      font-size: 16px;
    line-height: 1.8;
    color: #5b4637;
    margin-bottom: 22px;
    max-width: 520px;
}


/* quote */

.overview-quote{
margin-top:30px;
background:#e8ded2;
padding:28px 30px;
font-size:20px;
border-left:4px solid #c07840;
color:#2b1204;
font-family: 'Barlow Condensed', sans-serif;
}



/* feature cards */

.overview-right{
display:flex;
flex-direction:column;
gap:24px;
}

.feature-card{
display:flex;
gap:20px;
background:#f1ece6;
padding:24px;
border:1px solid #e0d6cb;
}
.feature-card:hover{
    border: #c8722a 1px solid;
     transform: translateX(6px); box-shadow: var(--shadow); 
}

.feature-icon{
width:70px;
height:50px;
background:#e4d7c8;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
color:#7a4c28;
}

.feature-card h4{
font-size:16px;
margin-bottom:6px;
color:#2b1204;
}

.feature-card p{
font-size:14px;
line-height:1.6;
color:#6b5544;
}



/* responsive */

@media(max-width:900px){

.overview-container{
grid-template-columns:1fr;
gap:50px;
}

.overview-title{
font-size:40px;
}

}

.specs{
background:#2b1202;
padding:40px 0;
color:#fff;
}

.specs-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:100px;
padding:0 40px;
}


/* label */

.specs-label{
font-size:12px;
letter-spacing:0.2em;
color:#c98a46;
margin-bottom:20px;
display:flex;
align-items:center;
gap:10px;
}

.specs-label span{
width:30px;
height:2px;
background:#c98a46;
}


/* title */

.specs-title{
font-size:56px;
line-height:1.1;
margin-bottom:20px;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
}

.specs-title em{
color:#e8a95d;
}


/* description */

.specs-desc{
font-size:16px;
line-height:1.8;
color:#e2d5c6;
max-width:420px;
margin-bottom:40px;
}


/* sse badge */

.sse-badge{
display:inline-flex;
align-items:center;
gap:14px;
border:1px solid rgba(255,255,255,0.25);
padding:16px 22px;
}

.sse-badge strong{
font-size:24px;
color:#e8a95d;
}

.sse-badge span{
font-size:12px;
letter-spacing:0.08em;
text-transform:uppercase;
color:#f0e4d8;
}


/* specification rows */

.specs-right{
display:flex;
flex-direction:column;
}

.spec-row{
display:flex;
justify-content:space-between;
padding:16px 0;
border-bottom:1px solid rgba(255,255,255,0.15);
}

.spec-row:hover{
     background: rgba(255,255,255,0.04); 
}

.spec-row span{
font-size:12px;
letter-spacing:0.15em;
color:#c6b4a3;
}

.spec-row strong{
font-size:14px;
color:#ffffff;
}

/* =====================================================
DOWNLOAD BROCHURE BUTTON ONLY
===================================================== */

.brochure-btn-wrap{
    text-align:center;
    margin:-5px 0 20px !important;
}

.download-brochure-btn{
    display:inline-block;
    background:#3b1f0e;
    color:#fff;
    text-decoration:none;
    padding:8px 10px;
    font-size:12px;
    letter-spacing:1.5px;
    font-weight:700;
    transition:0.3s ease;
}

.download-brochure-btn:hover{
    background:#8b4513;
    color:#fff;
    transform:translateY(-3px);
}

/* Mobile */

@media(max-width:768px){

.download-brochure-btn{
    width:100%;
    max-width:320px;
    text-align:center;
}

}

.brochure-btn-wrap{
   text-align:center;
   margin:35px 0 35px;
}

/* responsive */

@media(max-width:900px){

.specs-container{
grid-template-columns:1fr;
gap:60px;
}

.specs-title{
font-size:40px;
}

.spec-row{
flex-direction:column;
gap:6px;
}

}



/* =========================
SPECIFICATIONS
========================= */

.specs{
background:#ffffff;
padding:40px 0;
}

.section-inner{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* header */

.specs-header{
margin-bottom:20px;
}

.specs-title{
    font-size: 56px;
    line-height: 1.1;
    color: #2b1204;
    margin-bottom: 20px;
    font-family: 'Barlow Condensed', sans-serif;
}

.section-heading p{
font-size:15px;
color:#666;
line-height:1.7;
max-width:720px;
margin:0;
}

.section-label{
display:flex;
align-items:center;
gap:10px;
font-size:12px;
letter-spacing:2px;
color:#c07840;
margin-bottom:10px;
text-transform:uppercase;
}


.section-label::before{
content:"";
width:40px;
height:2px;
background:#c07840;
display:block;
}
.specs-p{
      font-size: 16px;
    line-height: 1.8;
    color: #5b4637;
    margin-bottom: 20px;
    max-width: 520px;
}

/* tabs */

.tab-nav{
display:flex;
gap:35px;
border-bottom:1px solid #e5e5e5;
margin-bottom:20px;
flex-wrap:wrap;
}

.tab-btn{
background:none;
border:none;
font-size:13px;
letter-spacing:2px;
padding-bottom:10px;
font-weight:500;
cursor:pointer;
color:#2b1204;
font-family:'Barlow Condensed', sans-serif;
text-transform:uppercase;
}

.tab-btn.active{
color:#2b1204;
border-bottom:2px solid #c6921b;
}

/* content */

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

.spec-highlight{
padding:14px 12px;
margin-bottom:10px;
border-radius:8px;
}

.spec-highlight .spec-key{
color:#8b4513;
font-weight:700;
text-transform:uppercase;
font-size:12px;
letter-spacing:1px;
}

.spec-highlight .spec-val{
color:#2b1204;
font-size:15px;
font-weight:700;
}

.spec-highlight:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.06);
}
/* grid */

.specs-grid{
display:grid;
grid-template-columns:1fr 1fr;
border:1px solid #e4ead9;
}

.specs-group{
padding:35px;
border-bottom:1px solid #e4ead9;
}

.specs-group:nth-last-child(-n+2){
border-bottom:none;
}

.specs-group-title{
background:#2b1204;
color:rgb(255, 255, 255);
padding:12px 16px;
font-size:13px;
letter-spacing:2px;
margin-bottom:20px;
font-family:'Barlow Condensed', sans-serif;
text-transform:uppercase;
}

.spec-row{
display:flex;
justify-content:space-between;
gap:20px;
border-bottom:1px solid #e4ead9;
padding:12px 0;
font-size:14px;
}

.spec-row:last-child{
border-bottom:none;
}

.spec-key{
color:#777;
width:48%;
}

.spec-val{
color:#2b1204;
font-weight:500;
width:52%;
text-align:right;
}

/* mobile */

@media (max-width:768px){

.specs{
padding:60px 0;
}

.section-heading h2{
font-size:34px;
}

.tab-nav{
gap:20px;
}

.specs-grid{
grid-template-columns:1fr;
}

.specs-group{
padding:20px;
border-bottom:1px solid #e4ead9 !important;
}

.specs-group:last-child{
border-bottom:none !important;
}

.spec-row{
flex-direction:column;
gap:6px;
}

.spec-key,
.spec-val{
width:100%;
text-align:left;
}

}

/* process */ 

.process{
padding:40px 0;
background:var(--off-white);
text-align:center;
background:#faf8f5;
}
.process h2{
font-family:'Barlow Condensed', sans-serif;
font-weight: 700;
}

.process-header h2{
font-size:56px;
margin-bottom:20px;
font-weight: 700;
}

.process-header span{
color:#c07840;
}

.process-label{
font-size:12px;
letter-spacing:0.2em;
color:#c07840;
margin-bottom:20px;
}

.process-line-wrapper{
position:relative;
display:flex;
justify-content:space-between;
max-width:1300px;
margin:auto;
}

.process-line{
position:absolute;
top:35px;
left:0;
right:0;
height:2px;
background:#d9c8b5;
z-index:1;
}

.process-progress{
position:absolute;
top:35px;
left:0;
height:2px;
background:#c07840;
width:0%;
z-index:2;
transition:width 0.3s ease;
}

.process-step{
width:18%;
position:relative;
z-index:3;
}

.circle{
width:70px;
height:70px;
border-radius:50%;
border:2px solid #c07840;
background:#f3f0ec;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:22px;
margin:auto;
margin-bottom:20px;
transition:all 0.4s ease;
font-family:'Barlow Condensed', sans-serif;

}

.process-step.active .circle{
background:#ffffff;
color:#2b1204;
transform:translateY(-6px);
}

.process-step.active .circle:hover{
    background-color: #c07840 ;
}

.process-step h4{
margin-bottom:8px;
font-size:20px;
font-family:'Barlow Condensed', sans-serif;

}

.process-step p{
font-size:13px;
color:#6c5a49;
line-height:1.6;
}

.industries{
padding:40px 0;
}

.industries-container{
max-width:1200px;
margin:auto;
padding:0 40px;
}

/* header */

.industries-header{
display:flex;
justify-content:space-between;
align-items:flex-start;
margin-bottom:20px;
}

.label{
font-size:12px;
letter-spacing:0.2em;
color:#c07840;
display:block;
margin-bottom:12px;
}

.industries-title h2{
font-size:56px;
color:#2d1204;
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
}


.industries-title em{
color:#c07840;
}

.industries-desc{
color:#6c5a49;
line-height:1.7;
font-size:16px;
}


/* grid */

.industries-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:0;
border:1px solid #e0d7ce;
}


/* cards */

.industry-card{
padding:45px;
background:#faf8f5;
border-right:1px solid #e0d7ce;
border-bottom:1px solid #e0d7ce;

transition:all .35s ease;
position:relative;
}

.industry-card:nth-child(3n){
border-right:none;
}

.industry-card:nth-last-child(-n+3){
border-bottom:none;
}

/* number */

.industry-num{
font-size:40px;
font-weight:700;
color:#e0c19c;
display:block;
margin-bottom:20px;
font-family:"Bebas Neue",sans-serif;
}

/* title */

.industry-card h3{
font-size:20px;
margin-bottom:10px;
color:#2d1204;
font-family: 'Barlow Condensed', sans-serif;
}

/* text */

.industry-card p{
font-size:14px;
line-height:1.7;
color:#6c5a49;
}


/* hover */

.industry-card:hover{

background:#f8f4ef;

transform:translateY(-4px);
border-bottom: #c8722a 3px solid;
box-shadow:0 6px 18px rgba(0,0,0,0.05);
border-top: #e8c08a 3px solid; transform: translateY(-4px);

}

.industry-card:hover .industry-num{
color:#c07840;
}


/* responsive */

@media(max-width:900px){

.industries-header{
flex-direction:column;
gap:20px;
}

.industries-grid{
grid-template-columns:1fr;
}

.industry-card{
border-right:none;
}

}

.why-garuda{
padding:40px 0;
background:#f5ede0;;
}

.why-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
padding:0 40px;
}

.why-list{
  font-size:15px;
line-height:1.8;
color:#6c5a49;
list-style-type: disc;
}

/* left cards */

.why-cards{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.why-card{
background:#ffffff;
padding:30px;
border:1px solid #e2d6c8;
transition:all .3s ease;
}

.why-card:hover{
transform:translateY(-5px);
box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.why-garuda-icon{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#e6d8c8;
margin-bottom:15px;
font-size:18px;
color: #4a2008;
}

.why-card h3{
font-size:18px;
margin-bottom:10px;
color:#2b1204;
font-family:'Barlow Condensed', sans-serif;

}

.why-card p{
font-size:14px;
line-height:1.6;
color:#6c5a49;
}


/* right content */

.why-label{
font-size:12px;
letter-spacing:.2em;
color:#c07840;
margin-bottom:15px;
}

.why-content h2{
font-size:56px;
line-height:1.2;
margin-bottom:20px;
color:#2d1204;
font-family:'Barlow Condensed', sans-serif;
font-weight: 700;

}

.why-content h2 span{
color:#c07840;
}

.why-content p{
font-size:15px;
line-height:1.8;
color:#5f4b3b;
margin-bottom:18px;
}


/* tags */

.trust-tags{
margin-top:25px;
display:flex;
flex-wrap:wrap;
gap:12px;
}

.trust-tags span{
padding:8px 16px;
background:#ffffff;
border:1px solid #e0d6c8;
font-size:13px;
font-weight: 600px;
}


/* responsive */

@media(max-width:900px){

.why-container{
grid-template-columns:1fr;
gap:60px;
}

.why-content h2{
font-size:38px;
}

}


@media(max-width:768px){

.hero-points{
  text-align:left;
  max-width:320px;
  margin:18px auto 0;
}

.hero-points li{
  font-size:14px;
}

}

/* ----------------------------- */
/* LARGE DESKTOP */
/* ----------------------------- */

@media (max-width:1400px){

.hero-title{
font-size:70px;
}

.overview-title,
.specs-title{
font-size:48px;
}

.process-header h2{
font-size:48px;
}

.industries-title h2{
font-size:48px;
}

.why-content h2{
font-size:46px;
}

}


/* ----------------------------- */
/* LAPTOP */
/* ----------------------------- */

@media (max-width:1200px){

.hero-container{
padding:0 40px;
gap:60px;
}

.printer-box img{
width:320px;
height: auto;
}

.process-line-wrapper{
max-width:900px;
}

.process-step{
width:20%;
}

.industries-grid{
grid-template-columns:repeat(2,1fr);
}

.industry-card:nth-child(2n){
border-right:none;
}

.industry-card:nth-last-child(-n+2){
border-bottom:none;
}

}


/* ----------------------------- */
/* TABLET LANDSCAPE */
/* ----------------------------- */

@media (max-width:1024px){

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero::before{
display:none;
}

.hero-buttons{
justify-content:center;
}

.hero-stats{
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.printer-box{
margin-top:40px;
}

.overview-container{
grid-template-columns:1fr;
gap:60px;
}

.specs-container{
grid-template-columns:1fr;
gap:60px;
}

.industries-header{
flex-direction:column;
gap:30px;
}

.why-container{
grid-template-columns:1fr;
}

}


/* ----------------------------- */
/* TABLET */
/* ----------------------------- */

@media (max-width:768px){

.hero{
padding:80px 0;
}

.hero-title{
font-size:48px;
}

.hero-title span{
font-size:28px;
}

.hero-desc{
margin:auto;
}

.hero-stats{
grid-template-columns:1fr 1fr;
}

.process-line-wrapper{
flex-direction:column;
gap:40px;
}

.process-line,
.process-progress{
display:none;
}

.process-step{
width:100%;
max-width:400px;
margin:auto;
}

.circle{
margin-bottom:15px;
}

.industries-grid{
grid-template-columns:1fr;
}

.why-cards{
grid-template-columns:1fr;
}

}


/* ----------------------------- */
/* MOBILE */
/* ----------------------------- */

@media (max-width:480px){

.hero-container{
padding:0 20px;
}

.hero-title{
font-size:38px;
}

.hero-title span{
font-size:24px;
}

.hero-desc{
font-size:14px;
}

.hero-buttons{
flex-direction:column;
gap:12px;
}

.hero-stats{
grid-template-columns:1fr;
text-align:center;
}

.printer-box img{
width:220px;
height: auto ;
}

.overview-title{
font-size:32px;
}

.specs-title{
font-size:32px;
}

.process-header h2{
font-size:32px;
}

.industries-title h2{
font-size:32px;
}

.why-content h2{
font-size:30px;
}

.industry-card{
padding:30px;
}

}
/* =========================
   GALLERY WRAPPER (SIDE SPACE)
========================= */
.gallery-wrapper {
  position: relative;
  padding: 0 60px;
  /* desktop spacing */
}

/* =========================
   TRACK (SCROLL AREA)
========================= */
.gallery-track {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

/* =========================
   ROW
========================= */
.gallery-row {
  display: flex;
  gap: 24px;
}

/* =========================
   IMAGES (DESKTOP)
========================= */
.gallery-row img {
  width: 320px;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

.gallery-row {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}
/* =========================
   BUTTONS
========================= */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background:white;
  color: #3b1f0e;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-weight: 500;

}

.gallery-btn.prev {
  left: 10px;
}

.gallery-btn.next {
  right: 10px;
}

.gallery-btn:hover {
  background:#8b4513;
  color: white;
}

.gallery-btn {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {

  .gallery-wrapper {
    padding: 0 40px;
  }

  .gallery-row img {
    width: 260px;
    height: 300px;
  }

  .gallery-btn {
    width: 38px;
    height: 38px;
  }
}


/* =========================
   SMALL MOBILE (≤ 480px)
========================= */
@media (max-width: 480px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-row img {
    width: 180px;
    height: 240px;
  }

  /* cleaner UI */
  .gallery-btn {
    display: flex;
  }
}

.feat-card {
  min-height: 220px;
}

.gallery-track {
  align-items: stretch;
  /* instead of center */
}

.gallery-row img {
  height: 300px;
}

.gallery-track {
  scroll-snap-type: x mandatory;
}

.gallery-row img {
  scroll-snap-align: start;
}



@media (max-width: 480px) {

  .gallery-row img {
    height: 100%;
  }

  .gallery-btn.prev {
    left: 8px;
  }

  .gallery-btn.next {
    right: 8px;
  }
}

@media (max-width: 768px) {

  .gallery-wrapper {
    padding: 0 16px;
  }

  .gallery-track {
    overflow: hidden;
    position: relative;
  }

  .gallery-row {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
  }

  .gallery-row img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    flex-shrink: 0;
  }

  .gallery-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
    background: white;
    color:#3b1f0e ;
  }

  .gallery-btn.prev {
    left: 10px;
  }

  .gallery-btn.next {
    right: 10px;
  }
}

/* =====================================
FINAL RESPONSIVE FIX - CHOCOLATE PAGE
Paste at bottom of CSS file
===================================== */

/* header height adjustment */
:root{
  --header-height: 90px;
}

/* smooth page */
html,body{
  overflow-x:hidden;
}

/* -------------------------
HERO FIX
------------------------- */
.hero{
  min-height: calc(100vh - var(--header-height));
  padding-bottom: 60px;
  align-items: center;
}

.hero-container{
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: 60px;
}

.hero-left,
.hero-right{
  width:100%;
}

.hero-right img{
  max-width:100%;
  height:auto;
  display:block;
}

/* prevent top move issue on large desktop */
@media (min-width:1400px){
  .hero{
    min-height: 860px;
    padding-top: 110px;
  }

  .hero-container{
    padding-left:80px;
    padding-right:80px;
  }
}

/* -------------------------
LAPTOP
------------------------- */
@media (max-width:1200px){

  .hero-title{
    font-size:64px;
  }

  .hero-title span{
    font-size:38px;
  }

  .hero-container{
    gap:40px;
    padding:0 40px;
  }

  .overview-container,
  .industries-container,
  .why-container{
    padding:0 30px;
  }
}

/* -------------------------
TABLET
------------------------- */
@media (max-width:992px){

  .hero{
    min-height:auto;
    padding-top:120px;
    padding-bottom:70px;
  }

  .hero-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:40px;
  }

  .hero::before{
    display:none;
  }

  .hero-left{
    max-width:100%;
  }

  .hero-desc{
    margin:20px auto 0;
  }

  .hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero-stats{
    max-width:100%;
    justify-content:center;
  }

  .printer-features{
    justify-content:center;
  }

  .overview-container,
  .why-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .industries-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* -------------------------
MOBILE
------------------------- */
@media (max-width:768px){

  :root{
    --header-height: 75px;
  }

  .hero{
    padding-top:95px;
    padding-bottom:50px;
  }

  .hero-container{
    padding:0 20px;
    gap:30px;
  }

  .hero-title{
    font-size:42px;
    line-height:1.15;
  }

  .hero-title span{
    font-size:26px;
    margin-top:8px;
  }

  .hero-desc{
    font-size:15px;
    line-height:1.7;
  }

  .hero-buttons{
    flex-direction:column;
    gap:12px;
  }

  .hero-buttons a{
    width:100%;
    text-align:center;
  }

  .hero-stats{
    grid-template-columns:1fr;
    gap:18px;
    text-align:center;
  }

  .printer-features{
    grid-template-columns:1fr;
    width:100%;
  }

  .overview,
  .specs,
  .process,
  .industries,
  .why-garuda{
    padding:40px 0;
  }

  .overview-title,
  .specs-title,
  .process-header h2,
  .industries-title h2,
  .why-content h2{
    font-size:34px;
    line-height:1.2;
  }

  .industries-grid{
    grid-template-columns:1fr;
  }

  .why-cards{
    grid-template-columns:1fr;
  }
}

/* -------------------------
SMALL MOBILE
------------------------- */
@media (max-width:480px){

  .hero{
    padding-top:85px;
  }

  .hero-title{
    font-size:34px;
  }

  .hero-title span{
    font-size:22px;
  }

  .hero-desc{
    font-size:14px;
  }

  .printer-box img,
  .hero-right img{
    max-width:240px;
    margin:auto;
  }

  .section-inner,
  .overview-container,
  .industries-container,
  .why-container{
    padding-left:16px;
    padding-right:16px;
  }
}


/* =====================================
HERO SECTION RESPONSIVE FIX ONLY
Paste at bottom of CSS
===================================== */

html,body{
overflow-x:hidden;
}

/* HERO MAIN */
.hero{
min-height:auto;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
}

.hero-container{
width:100%;
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
padding:0 40px;
box-sizing:border-box;
}

.hero-left,
.hero-right{
width:100%;
}

.hero-right img,
.printer-box img{
max-width:100%;
height:auto;
display:block;
margin:auto;
}

.hero-title{
font-size:65px;
line-height:1.1;
}

.hero-title span{
font-size:65px;
display:block;
margin-top:10px;
}

.hero-desc{
max-width:520px;
}

/* LARGE DESKTOP */
@media (min-width:1400px){

.hero{
padding-top:140px;
}

}

/* LAPTOP */
@media (max-width:1200px){

.hero-container{
gap:40px;
padding:0 30px;
}

.hero-title{
font-size:58px;
}

.hero-title span{
font-size:34px;
}

}

/* TABLET */
@media (max-width:992px){

.hero::before{
display:none;
}

.hero{
padding:110px 0 60px;
}

.hero-container{
grid-template-columns:1fr;
text-align:center;
gap:35px;
}

.hero-left,
.hero-right{
max-width:100%;
}

.hero-desc{
margin:20px auto 0;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
gap:12px;
}

.hero-stats{
grid-template-columns:repeat(2,1fr);
gap:20px;
max-width:100%;
}

.printer-features{
justify-content:center;
flex-wrap:wrap;
}

}

/* MOBILE */
@media (max-width:768px){

.hero{
padding:95px 0 50px;
}

.hero-container{
padding:0 20px;
gap:1px;
}

.hero-title{
font-size:42px;
line-height:1.15;
}

.hero-title span{
font-size:24px;
margin-top:8px;
}

.hero-desc{
font-size:15px;
line-height:1.7;
}

.hero-buttons{
flex-direction:column;
gap:12px;
}

.hero-buttons a{
width:100%;
text-align:center;
}

.hero-stats{
grid-template-columns:repeat(3,1fr);
text-align:center;
border-bottom: #8d766371 1px solid;
}

.printer-box{
padding:20px;
}

.printer-box img{
width:240px;
}

}

/* SMALL MOBILE */
@media (max-width:480px){

.hero{
padding:85px 0 40px;
}

.hero-container{
padding:0 15px;
}

.hero-title{
font-size:34px;
}

.hero-title span{
font-size:20px;
}

.hero-desc{
font-size:14px;
}

.printer-box img{
width:210px;
}

}

@media (max-width: 768px) {
  /* 1. Make the parent a column */
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
  }

  /* 2. CRITICAL: Allow children of .hero-left to be ordered 
     alongside .hero-right */
  .hero-left {
    display: contents !important; 
  }

  
.hero-right img,
.printer-box img{
  height: 450px;
  width: 100%;
  border-radius: 15px;
}
.hero-tag{
  font-size: 9px;
}
  /* 3. Assign the new order */
  .hero-tag     { order: 1 !important;
  margin-bottom: unset; }
  .hero-title   { order: 2 !important; }
  .hero-right   { order: 3 !important; margin: 20px 0 !important; } /* The Image */
  .hero-stats   { order: 4 !important;
  margin: auto; }
  .hero-desc    { order: 5 !important; }
  .hero-buttons { order: 6 !important; }

  /* 4. Mobile Button Styling */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
  }
  
  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}

section{
padding:40px 0;
}

.container{
padding-left:20px;
padding-right:20px;
}
@media(max-width:768px){
section{
padding:50px 0;
}
.hero-points { order: 4 !important;
}}