*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
        --white: #ffffff;
    --off-white: #f4f2ef;
    --light-gray: #e8e8e4;
    --mid-gray: #a0a09a;
    --dark-gray: #2a2a28;
    --near-black: #0f0f0e;
    --orange: #d35400;
    --accent-light: #f0651c;
    --steel: #4a5568;
    --rule: #d0cfc9;
}
em{
    color:var(--orange);
}

/* =========================================
PREMIUM SERVICE CARD ANIMATION
========================================= */

/* initial state */
.service-card{
    transform:translateY(60px) scale(0.96);
    opacity:0;
    transition:all 0.7s cubic-bezier(.2,.65,.3,1);
    overflow:hidden;
    position:relative;
}

/* visible */
.service-card.show{
    transform:translateY(0) scale(1);
    opacity:1;
}

/* hover effect */
.service-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* glowing border animation */
.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid transparent;
    border-radius:6px;
    transition:all 0.4s ease;
}


/* IMAGE EFFECT */
.service-img{
    overflow:hidden;
}

.service-img img{
    transition:transform 0.6s ease;
}

.service-card:hover .service-img img{
    transform:scale(1.08);
}

/* TITLE ANIMATION */
.service-card h3{
    transition:all 0.4s ease;
}

.service-card:hover h3{
    color:var(--orange);
    transform:translateY(-2px);
}

/* TEXT FADE */
.service-card p{
    transition:opacity 0.4s ease;
}

.service-card:hover p{
    opacity:0.85;
}
/* =====================================
SERVICE KNOW MORE BUTTON
===================================== */

.service-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:12px;
    padding:14px 8px;
    border:2px solid var(--orange);
    color:var(--orange);
    text-decoration:none;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-family:'Barlow Condensed',sans-serif;
    transition:all 0.3s ease;
    position:relative;
    left:50%;
    transform:translateX(-50%);
}

.service-btn::after{
    content:"→";
    margin-left:8px;
    transition:transform 0.3s ease;
}

.service-btn:hover{
    background:var(--orange);
    color:#fff;
    box-shadow:0 10px 25px rgba(211,84,0,0.18);
}

.service-btn:hover::after{
    transform:translateX(4px);
}

/* mobile */
@media(max-width:768px){

.service-btn{
    width:100%;
    padding:14px 18px;
}

}

/* stagger animation */
.service-card:nth-child(1){ transition-delay:0.1s; }
.service-card:nth-child(2){ transition-delay:0.2s; }
.service-card:nth-child(3){ transition-delay:0.3s; }
.service-card:nth-child(4){ transition-delay:0.4s; }
.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)
}
html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
   
    line-height:1.6;
}



.printing-page section{
    padding:20px 0;
    background-color: var(--off-white);
}

h1,h2{
    font-weight:900;
    line-height:1.1;
    font-family: 'Barlow Condensed',sans-serif;
}

h2{
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--near-black);
    margin-bottom: 18px;
}

h3{
        font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--near-black);
    margin-bottom: 10px;
}
p{
    font-size:15px;
    color:#4f5a66;
}

.mini-title{
    font-size:7px;
    letter-spacing:3px;
    color:var(--orange);
    margin-bottom:12px;
    text-transform:uppercase;
    position:relative;
    padding-left:45px;
}

.mini-title:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:30px;
    height:1px;
    background:var(--orange);
}

.orange{
    color:var(--orange);
}


/* =====================================================
   HERO
===================================================== */

/* ===============================
GLOBAL FIX
=============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

/* Keep navbar safe */
header,
.header-main,
.navbar{
    position:relative;
    z-index:9999;
}

.printing-page .container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding-left:50px;
    padding-right:50px;
}



/* ===============================
HERO FIX
=============================== */

.printing-page .hero{
    background:var(--off-white);
    padding-top:75px 0 80px;
    overflow:visible;
}

.printing-page .hero-grid{
    display:grid;
    grid-template-columns:52% 48%;
    gap:60px;
    align-items:center;
    min-height:auto;
}

.printing-page .hero-left{
    padding:20px 0;
}

.printing-page .hero-right{
    width:100%;
    min-height:640px;
    position:relative;
    overflow:hidden;
    background-size:contain !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
}


/* ===============================
LAPTOP
=============================== */

@media(max-width:1366px){

.printing-page .container{
    padding:0 26px;
}

.printing-page .hero-grid{
    gap:40px;
}

.printing-page .hero-right{
    min-height:520px;
}

.printing-page section{
    padding:40px 0;
}

}


/* ===============================
TABLET
=============================== */

@media(max-width:1024px){

.printing-page .container{
    padding:0 22px;
}

.printing-page .hero-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.printing-page .hero-left{
    order:1;
}

.printing-page .hero-right{
    order:2;
    min-height:420px;
}

.printing-page section{
    padding:30px 0;
}

.printing-page.why-grid,
.printing-page.service-grid{
    grid-template-columns:repeat(2,1fr);
}

.printing-page.format-grid,
.printing-page.faq-grid{
    grid-template-columns:1fr;
}

}


/* ===============================
MOBILE
=============================== */

@media(max-width:768px){

.printing-page .container{
    padding:0 18px;
}

.printing-page section{
    padding:25px 0;
}

.printing-page .hero{
    padding-top:20px;
}

.printing-page .hero-grid{
    gap:20px;
}

.printing-page .hero-left h1{
    font-size:46px;
}

.printing-page .hero-right{
    min-height:300px;
}

.printing-page .hero-btns{
    flex-direction:column;
    gap:12px;
}

.printing-page .btn-fill,
.printing-page .btn-link{
    width:100%;
    text-align:center;
}

.printing-page.why-grid,
.printing-page.service-grid,
.printing-page.format-right{
    grid-template-columns:1fr;
}

.printing-page .stat-grid{
    grid-template-columns:1fr;
}

}


/* ===============================
SMALL MOBILE
=============================== */

@media(max-width:480px){

.printing-page .container{
    padding:0 15px;
}

.printing-page .hero-left h1{
    font-size:36px;
}

.printing-page .hero-right{
    min-height:240px;
}

.printing-page section{
    padding:25px 0;
}

}
.printing-page .hero{
    background:var(--off-white);
}

.printing-page .hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

/* LEFT SIDE */
.printing-page .hero-left{
    padding:30px 0;
}

.printing-page .hero-left h1{
    font-size:65px;
    font-weight:800;
    line-height:0.9;
    margin-bottom:24px;
    font-family:'Barlow Condensed',sans-serif;
}

.printing-page .hero-left h1 span{
    display:block;
}

.printing-page .hero-desc{
    font-size:16px;
    margin-bottom:28px;
}

.printing-page .hero-btns{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    align-items:center;
}

/* BUTTONS */
.printing-page .btn-fill{
    background:var(--orange);
    color:#fff;
    padding:14px 8px;
    text-decoration:none;
    font-weight:700;
    font-size:12px;
    letter-spacing:.18rem;
    font-family:'Barlow Condensed',sans-serif;
}
.printing-page .btn-fill:hover{
color:#111;
}

.printing-page .btn-link:hover{
    color: var(--orange);
}
.printing-page .btn-link{
    color:#111;
    text-decoration:none;
    font-weight:700;
    font-size:12px;
    padding:14px 0;
    border-bottom:2px solid #111;
    font-family:'Barlow Condensed',sans-serif;
    letter-spacing:.18rem;
}

/* RIGHT SIDE */
.printing-page .hero-right{
    width: auto;
    min-height:640px;
    position:relative;
    border-radius:0;
  
}

/* if no image available keep dark gradient fallback */
.printing-page .hero-right:before{
    content:"";
    position:absolute;
    inset:0;
}

/* EXPERIENCE BADGE */
.printing-page .hero-badge{
    position:absolute;
    left:0px;
    bottom:80px;
    background:var(--off-white);
    padding:18px 22px;
    border-left:4px solid var(--orange);
    z-index:2;
    min-width:180px;
}

.printing-page .hero-badge strong{
    display:block;
    font-size:34px;
    line-height:1;
    font-weight:900;
    color:#111;
}

.printing-page .hero-badge span{
    display:block;
    margin-top:6px;
    font-size:10px;
    letter-spacing:2px;
    color:#666;
}

/* =====================================================
   STATS
===================================================== */
.printing-page .stats{
    background:var(--orange);
    padding:0;
}

.printing-page .stat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.printing-page .stat-box{
    text-align:center;
    padding:28px 10px;
    border-right:1px solid rgba(255,255,255,.08);
}

.printing-page .stat-box:last-child{
    border-right:none;
}

.printing-page .stat-box h3{
    color: #fff;
    font-size:56px;
    font-weight: 900;
    font-family: 'Barlow Condensed',sans-serif;
}

.printing-page .stat-box p{
    font-size:10px;
    letter-spacing:3px;
    text-transform:uppercase;
    color: #fff;
}

/* =====================================================
   WHY
===================================================== */
.printing-page .why{
    background-color: var(--off-white);
    padding: 40px 0;
}

.printing-page .why-grid{
    margin-top:12px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.printing-page .why-card{
   
    padding:28px 10px;
    border:1px solid #e5e5e5;
    position:relative;
    min-height:300px;
}

.printing-page .why-icon {
    width: 100%;
    height: aut;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}


.printing-page .why-card h3{
    font-size:24px;
    margin:12px 0 12px;
    text-align: center;
}

.printing-page .why-card p{
    text-align: center;
}


/* =====================================================
   TECHNOLOGIES
===================================================== */

.printing-page .title-row{
    display:block;
}

.printing-page .title-row h2{
    margin-bottom:12px;
}

.printing-page .tech-right-text{
    text-align:left;
    font-size:15px;
    color:#4f5a66;
    line-height:1.7;
    margin-top:0;
}


/* =====================================
CUTTING EDGE TECHNOLOGIES RESPONSIVE FIX
===================================== */

/* Desktop improve */
.printing-page .tech-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    margin-top: 12px;
}

.printing-page .tech-card{
    display:grid;
    grid-template-columns:220px minmax(0,1fr);
    gap:22px;
    align-items:center;
    padding:24px;
    border:1px solid #e6e6e6;
    background:var(--off-white);
    height:100%;
}
.printing-page .tech-card:hover{
    border: #d35400 solid 1px;
    border-radius: 5px;
}

.printing-page .tech-img{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:6px;
}

.printing-page .tech-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.printing-page .tech-content{
    padding:0;
    min-width:0;
}

.printing-page .tech-content h3{
    font-size:24px;
    line-height:1.1;
    margin-bottom:12px;
}

.printing-page .tech-content h5{
    font-size: 16px;
    color: #d35400;
    margin-bottom: 3px;
}
.printing-page .tech-content li{
    font-size:14px;
    line-height:1.6;
}

/* Tablet */
@media(max-width:1024px){

.printing-page .tech-grid{
    grid-template-columns:1fr;
}

.printing-page .tech-card{
    grid-template-columns:200px 1fr;
}

}

/* Mobile */
@media(max-width:768px){

.printing-page .tech-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.printing-page .tech-card{
    grid-template-columns:1fr;
    padding:18px;
    gap:18px;
}

.printing-page .tech-img{
    height:220px;
}
.printing-page .tech-content h3{
    font-size:22px;
}

.printing-page .tech-content li{
    font-size:14px;
}

.printing-page .tech-content a{
    margin-top:10px;
    display:inline-block;
}

}

/* Small Mobile */
@media(max-width:480px){

.printing-page .tech-card{
    padding:16px;
}

.printing-page .tech-img{
    height:auto;
}

.printing-page .tech-content h3{
    font-size:20px;
}

.printing-page .tech-content li{
    font-size:13px;
    margin-bottom:10px;
}

.printing-page .tech-content a{
    font-size:10px;
}

}


/* =====================================================
   SERVICES
===================================================== */
.services{
    background-color: var(--off-white);
}

.service-grid{
    margin-top:12px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.service-card{
    padding:25px 17px;
    position:relative;
    min-height:290px;
    border: 1px solid #66666657 ;

}


.service-num{
    position:absolute;
    right:20px;
    bottom:20px;
    font-size:60px;
    font-weight:900;
}

.service-card h3{
    font-size:24px;
    margin-top: 18px;
    margin-bottom:10px;
     text-align:center;
}
/* paragraph */
.service-card p{
    text-align:center;
    max-width:95%;
    margin:0 auto;
    line-height:1.8;
}

/* ===============================
LEARN MORE BUTTON CSS
Use for .tech-content a
=============================== */

.printing-page .tech-content a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:16px;
    padding:0px 8px;
    background:transparent;
    color:var(--orange);
    border:2px solid var(--orange);
    text-decoration:none;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-family:'Barlow Condensed',sans-serif;
    border-radius:4px;
    transition:all 0.3s ease;
    cursor:pointer;
}

/* arrow */
.printing-page .tech-content a::after{
    content:"→";
    font-size:14px;
    transition:transform 0.3s ease;
}

/* hover */
.printing-page .tech-content a:hover{
    background:var(--orange);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(244,121,32,0.18);
}

.printing-page .tech-content a:hover::after{
    transform:translateX(4px);
}

/* mobile */
@media(max-width:768px){
.printing-page .tech-content a{
    width:100%;
    padding:12px 18px;
    font-size:11px;
}
}

.service-card:last-child .service-img{
    height:290px;
}

.service-card:last-child .service-img img{
    height:100%;
    object-fit:cover;
}

/* =====================================================
   FILE FORMATS
===================================================== */
.format-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:50px;
}

.format-right{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid #ddd;
    border-left:1px solid #ddd;
}

.format-box{
    border-right:1px solid #ddd;
    border-bottom:1px solid #ddd;
    padding:38px 20px;
    text-align:center;
    background: var(--off-white);
}

.format-box h3{
    font-size:28px;
    color:var(--orange);
}

.format-box p{
    margin-top:8px;
    font-size:11px;
    letter-spacing:2px;
}

/* =====================================================
PREMIUM INDUSTRIES SECTION
===================================================== */

.industries{
    background:var(--off-white);
    position:relative;
    overflow:hidden;
}

.industry-layout{
    margin-top:12px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.industry-column{
    background:#fff;
    border:1px solid #e7e7e7;
    padding:19px;
    transition:all 0.35s ease;
    position:relative;
}

.industry-column:hover{
    transform:translateY(-6px);
    border-color:var(--orange);
    box-shadow:0 20px 45px rgba(0,0,0,0.06);
}

.industry-head{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:12px;
}

.industry-head span{
    width:35px;
    height:35px;
    background:var(--orange);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    font-family:'Barlow Condensed',sans-serif;
}

.industry-head h3{
    font-size:32px;
    margin:0;
}

.industry-cards{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.industry-card{
    padding:6px 8px;
    border:1px solid #e4e4e4;
    background:#fafafa;
    font-size:15px;
    font-weight:600;
    color:#333;
    transition:all 0.3s ease;
    cursor:default;
}

.industry-card:hover{
    background:var(--orange);
    color:#fff;
    border-color:var(--orange);
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

.industry-layout{
    grid-template-columns:1fr;
}

.industry-column{
    padding:24px;
}

.industry-head{
    gap:14px;
    margin-bottom:22px;
}

.industry-head span{
    width:48px;
    height:48px;
    font-size:18px;
}

.industry-head h3{
    font-size:24px;
}

.industry-card{
    width:100%;
    text-align:center;
}

}



/* =========================
   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: #fff;
  color: #152515;
  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: var(--orange);
}

.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: rgba(18, 39, 5, 0.9);
  }

  .gallery-btn.prev {
    left: 10px;
  }

  .gallery-btn.next {
    right: 10px;
  }
}


/* =====================================================
   FAQ
===================================================== */
.faq{
    background-color: var(--off-white);
}
.faq-grid{
    display:grid;
    grid-template-columns:430px 1fr;
    gap:80px;
}

.quote-box{
    background:var(--orange);
    padding:12px 19px;
    margin-top:28px;
}

.quote-box h3{
    color:#fff;
    font-size:17px;
    margin-bottom:18px;
}

.quote-box a{
    display:inline-block;
    background:#fff;
    color:var(--orange);
    text-decoration:none;
    padding:5px 8px;
    font-weight:700;
    font-size:12px;
}
/* =====================================
FAQ QUESTIONS GRID (5 x 5 style)
===================================== */

.faq-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 22px;
    align-items:start;
}

/* each faq card */
.faq-item{
    background:var(--off-white);
    border:1px solid #e6e6e6;
    padding:18px 18px;
    border-radius:6px;
    position:relative;
    transition:all 0.3s ease;
    display:block;
}

/* hover */
.faq-item:hover{
    border-color:var(--orange);
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* question */
.printing-page .faq-question{
    font-weight:600;
    font-size:17px;
    line-height:1.4;
    padding-right:45px;
    cursor:pointer;
}

/* button */
.printing-page .faq-toggle{
    position:absolute;
    top:16px;
    right:16px;
    width:32px;
    height:32px;
    margin:0;
    float:none;
}

/* answer */
.faq-answer{
    display:none;
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid #eee;
    font-size:14px;
    line-height:1.7;
}

/* active */
.faq-item.active{
    border-color:var(--orange);
}

/* tablet */
@media(max-width:1024px){

.faq-right{
    grid-template-columns:1fr;
}

}

/* mobile */
@media(max-width:768px){

.faq-question{
    font-size:16px;
}

.faq-item{
    padding:16px;
}

}
/* =====================================================
   ADD / REPLACE RESPONSIVE CSS ONLY
   Put this at END of your current CSS file
===================================================== */

/* ---------- LARGE LAPTOP ---------- */
@media (max-width:1366px){

.printing-page .container{
    padding:0 24px;
}

.hero-grid{
    gap:40px;
}

.hero-left h1{
    font-size:72px;
}

.hero-right{
    min-height:520px;
}

.service-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* ---------- TABLET ---------- */
@media (max-width:1024px){

section{
    padding:60px 0;
}

.printing-page .container{
    padding:0 22px;
}

/* hero */
.hero-grid{
    grid-template-columns:1fr;
    height:auto;
    gap:30px;
}

.hero-left{
    order:1;
}

.hero-right{
    order:2;
    min-height:420px;
}

.hero-left h1{
    font-size:58px;
}

.hero-desc{
    max-width:100%;
}

/* grids */
.stat-grid,
.why-grid,
.service-grid,
.format-grid,
.faq-grid{
    grid-template-columns:1fr;
}

/* 2 columns for some sections */
.stat-grid{
    grid-template-columns:repeat(3,1fr);
}

.why-grid,
.service-grid{
    grid-template-columns:repeat(2,1fr);
}

.title-row{
    flex-direction:column;
    gap:20px;
}

.tech-right-text{
    text-align:left;
    max-width:100%;
}

.faq-grid{
    gap:40px;
}

}

/* ---------- MOBILE ---------- */
@media (max-width:768px){

.printing-page .section{
    padding:35px 0;
}

.printing-page .container{
    padding:0 16px;
}

.printing-page h2{
    font-size:30px;
    line-height:1;
}

.printing-page h3{
    font-size:20px;
}

.printing-page p{
    font-size:14px;
}

/* hero */
.printing-page .hero{
    padding-top:30px;
}

.printing-page  .hero-grid{
    gap:20px;
}

.printing-page .hero-left h1{
    font-size:46px;
    line-height:0.95;
}

.printing-page .hero-desc{
    font-size:15px;
    margin-bottom:22px;
}

.printing-page .hero-btns{
    flex-direction:column;
    width:100%;
    gap:12px;
}

.printing-page .btn-fill,
.printing-page .btn-link{
    width:100%;
    text-align:center;
}

.printing-page .hero-right{
    min-height:300px;
}

.printing-page .hero-badge{
    left:15px;
    bottom:15px;
    padding:0px 0px;
}

.printing-page .hero-badge strong{
    font-size:28px;
}

/* stats */
.printing-page .stat-grid{
    grid-template-columns:1fr;
}

.printing-page .stat-box{
    padding:20px 15px;
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.printing-page .stat-box:last-child{
    border-bottom:none;
}

.printing-page .stat-box h3{
    font-size:42px;
}

/* sections */
.printing-page .why-grid,
.printing-page .service-grid,
.printing-page .format-right{
    grid-template-columns:1fr;
}

.printing-page .why-card,
.printing-page .tech-card,
.printing-page .service-card{
    min-height:auto;
    padding:28px 22px;
}

.printing-page .big-num,
.printing-page .service-num{
    font-size:46px;
}

.printing-page .format-box{
    padding:28px 15px;
}

/* faq */
.printing-page .faq-grid{
    grid-template-columns:1fr;
    gap:28px;
}

.printing-page .faq-item{
    padding:18px 0;
}

.printing-page .faq-item span{
    font-size:15px;
    padding-right:10px;
}

.printing-page .faq-item button{
    min-width:30px;
    height:30px;
}
.printing-page .faq-question{
    font-size: 15px;
}

.printing-page .quote-box{
    padding:24px;
}

}

/* ---------- SMALL MOBILE ---------- */
@media (max-width:480px){

.printing-page .container{
    padding:0 14px;
}

.printing-page section{
    padding:42px 0;
}

.printing-page .hero-left h1{
    font-size:38px;
}

.printing-page h2{
    font-size:26px;
}

.printing-page h3{
    font-size:18px;
}

.printing-page .hero-desc,
.printing-page p{
    font-size:13px;
}

.printing-page .hero-right{
    min-height:240px;
}

.printing-page .hero-badge strong{
    font-size:22px;
}

.printing-page .hero-badge span{
    font-size:9px;
}

.printing-page .stat-box h3{
    font-size:34px;
}

.printing-page .big-num,
.printing-page .service-num{
    font-size:34px;
}

.printing-page .format-box h3{
    font-size:24px;
}

.printing-page .faq-item span{
    font-size:14px;
}

.printing-page .btn-fill,
.printing-page .btn-link{
    font-size:11px;
    padding:14px 18px;
}

}

/* ---------- EXTRA SMALL DEVICES ---------- */
@media (max-width:360px){

    .printing-page .hero-left h1{
    font-size:32px;
}

    .printing-page h2{
    font-size:22px;
}

    .printing-page .yystat-box h3{
    font-size:28px;
}

}


@media (max-width: 768px){

.printing-page .container{
    width: 92%;
}

.printing-page .hero-grid,
.printing-page .why-grid,
.printing-page .tech-grid,
.printing-page .service-grid,
.printing-page .format-grid,
.printing-page .faq-grid{
    grid-template-columns: 1fr;
}

.printing-page .hero-left,
.printing-page .hero-right{
    width:100%;
}

.printing-page .title-row{
    flex-direction:column;
    gap:20px;
}

.printing-page .tech-right-text{
    max-width:100%;
}

}
.printing-page p{
    line-height:1.8;
    letter-spacing:0.3px;
}
.printing-page .section-desc{
    line-height:1.9;
}
.printing-page h1,
.printing-page h2,
.printing-page h3{
    line-height:1.15;
    letter-spacing:0.5px;
}


.printing-page h2{
    margin-bottom:5px;
}

.printing-page h1{
    font-size: 65px;
    font-weight: 800;
}

.printing-page h2{
    font-size:56px;
    font-weight: 700;
}

.printing-page h3{
    font-size:1.4rem;
}

.printing-page p{
    font-size:1rem;
}

/* =========================================================
RESPONSIVE FIX ONLY
ADD THIS AT VERY END OF CSS
========================================================= */

/* =========================
LAPTOP
========================= */

@media (max-width:1366px){

.printing-page .hero-grid{
    grid-template-columns:55% 45%;
    gap:30px;
}

.printing-page .hero-right{
    min-height:540px;
    background-size:contain !important;
}

.printing-page .hero-left h1{
    font-size:72px;
}

.printing-page .service-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* =========================
TABLET
========================= */

@media (max-width:1024px){

.printing-page section{
    padding:60px 0;
}

.printing-page .container{
    padding:0 22px;
}

/* HERO */

.printing-page .hero-grid{
    grid-template-columns:1fr;
    gap:30px;
}

.printing-page .hero-left{
    order:1;
}

.printing-page .hero-right{
    order:2;
    min-height:500px;
    background-size:contain !important;
}

.printing-page .hero-left h1{
    font-size:64px;
}

/* GRIDS */

.printing-page .why-grid{
    grid-template-columns:repeat(2,1fr);
}

.printing-page .service-grid{
    grid-template-columns:repeat(2,1fr);
}

.printing-page .tech-grid,
.printing-page .format-grid,
.printing-page .faq-grid{
    grid-template-columns:1fr;
}

.printing-page .faq-right{
    grid-template-columns:1fr;
}

}

/* =========================
MOBILE
========================= */

@media (max-width:768px){

.printing-page{
    overflow-x:hidden;
}

.printing-page .container{
    width:100%;
    padding-left:16px;
    padding-right:16px;
}

.printing-page section{
    padding:50px 0;
}

/* HERO */

.printing-page .hero{
    padding-top:20px;
}

.printing-page .hero-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.printing-page .hero-left{
    padding:10px 0;
}

.printing-page .hero-left h1{
    font-size:48px;
    line-height:0.95;
}

.printing-page .hero-desc{
    font-size:15px;
    line-height:1.8;
}

.printing-page .hero-btns{
    flex-direction:column;
    width:100%;
    gap:14px;
}

.printing-page .btn-fill,
.printing-page .btn-link{
    width:100%;
    text-align:center;
}

.printing-page .hero-right{
    min-height:320px;
    background-size:cover !important;
    background-position:center center !important;
}

.printing-page .hero-badge{
    left:15px;
    bottom:15px;
    padding:16px 18px;
}

.printing-page .hero-badge strong{
    font-size:28px;
}

/* GRIDS */

.printing-page .stat-grid,
.printing-page .why-grid,
.printing-page .tech-grid,
.printing-page .service-grid,
.printing-page .format-grid,
.printing-page .faq-grid,
.printing-page .faq-right,
.printing-page .format-right{
    grid-template-columns:1fr;
}

.printing-page .stat-grid{
    grid-template-columns:repeat(3,1fr);
}

/* CARDS */

.printing-page .why-card,
.printing-page .tech-card,
.printing-page .service-card,
.printing-page .faq-item{
    min-height:auto;
    padding:22px;
}

.printing-page .tech-card{
    grid-template-columns:1fr;
}


.printing-page .tech-img{
    height:220px;
}

.printing-page .stat-box{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.printing-page .stat-box:last-child{
    border-bottom:none;
}

}

/* =========================
SMALL MOBILE
========================= */

@media (max-width:480px){

.printing-page .container{
    padding-left:14px;
    padding-right:14px;
}

.printing-page section{
    padding:42px 0;
}

.printing-page .hero-left h1{
    font-size:38px;
}

.printing-page h2{
    font-size:26px;
}

.printing-page h3{
    font-size:18px;
}

.printing-page p{
    font-size:13px;
}

.printing-page .hero-right{
    min-height:240px;
}

.printing-page .hero-badge{
    padding:14px 16px;
}

.printing-page .hero-badge strong{
    font-size:22px;
}

.printing-page .hero-badge span{
    font-size:9px;
}

.printing-page .btn-fill,
.printing-page .btn-link{
    font-size:11px;
    padding:14px 18px;
}

}

/* =========================
EXTRA SMALL
========================= */

@media (max-width:360px){

.printing-page .hero-left h1{
    font-size:32px;
}

.printing-page h2{
    font-size:22px;
}

.printing-page .hero-right{
    min-height:200px;
}

}

/* =========================================
SECTION SIDE SPACING FIX
========================================= */

@media(max-width:1024px){

.printing-page .container{
    padding-left:40px;
    padding-right:40px;
}

}

@media(max-width:768px){

.printing-page .container{
    padding-left:24px;
    padding-right:24px;
}

}

@media(max-width:480px){

.printing-page .container{
    padding-left:18px;
    padding-right:18px;
}

}

.printing-page h1 img{
    display: none;
}
/* =====================================
MOBILE HERO IMAGE AFTER H1
===================================== */

@media(max-width:768px){

.printing-page .hero-grid{
    display:flex;
    flex-direction:column;
}

.printing-page .hero-left{
    display:flex;
    flex-direction:column;
}

.printing-page .hero-right{
    order:2;
    width:100%;
    min-height:300px;
    margin-top:18px;
}

.printing-page .hero-desc{
    order:3;
}

.printing-page .hero-btns{
    order:4;
}

}


/* =====================================================
TESTIMONIAL CAROUSEL
===================================================== */

.testimonial-slider{
    background:#111 !important;
    padding:40px 0;
    overflow:hidden;
}


.testimonial-slider .mini-title{
    color:#d35400;
}

.testimonial-slider .mini-title:before{
    background:#d35400;
}

.testimonial-slider h2{
    
      color:#fff !important;
    text-align:left;
    margin-bottom:12px;
}

.testimonial-carousel{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.testimonial-wrapper{
    width:100%;
    max-width:950px;
    position:relative;
}
.testimonial-slide{
    display:none;
    text-align:center;
    animation:fadeSlide 0.5s ease;
      background:#1b1b1b;
    border:1px solid rgba(255,255,255,0.08);
    padding:25px 30px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-slide.active{
    display:block;
}

.testimonial-stars{
    font-size:24px;
    color:#ffd54a;
    margin-bottom:12px;
    letter-spacing:3px;
}

.testimonial-text{
    color:#d7d7d7 !important;
    font-size:15px !important;
    line-height:2 !important;
    margin-bottom:12px;
    max-width:950px;
    margin-left:auto;
    margin-right:auto;
}

.testimonial-slide h3{
    color:#ffeded;
    font-size:20px;
    margin-bottom:0;
}

/* BUTTONS */

.testimonial-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:65px;
    height:65px;
    border:2px solid rgba(255,255,255,0.7);
    border-radius:50%;
    background:transparent;
    color:#ffffff;
    font-size:38px;
    cursor:pointer;
    transition:all 0.3s ease;
    z-index:5;
    
}

.testimonial-btn:hover{
    background:#fff;
    color:#1787c8;
}

.testimonial-btn.prev{
    left:-20px;
}

.testimonial-btn.next{
    right:-20px;
}

/* ANIMATION */

@keyframes fadeSlide{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:768px){

.testimonial-slider{
    padding:60px 0;
}

.testimonial-text{
    font-size:15px !important;
    line-height:1.9 !important;
    padding:0 20px;
}

.testimonial-slide h3{
    font-size:24px;
}

.testimonial-btn{
    width:48px;
    height:48px;
    font-size:28px;
}

.testimonial-btn.prev{
    left:0;
}

.testimonial-btn.next{
    right:0;
}

}


.printing-page .why{
    background:#fff;
}

.services{
    background:#111 !important;
}

.services h2,
.services h3,
.services p{
    color:#fff !important;
}
.service-card{
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,0.08);
}
.service-card:hover{
    border-color:var(--orange);
}
.industries{
    background:#fff !important;
}
section{
    position:relative;
}