:root{
  --orange:#ff7a00;
  --dark:#2f2f2f;
  --gray:#f2f2f2;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"ui-sans-serif","-apple-system","system-ui","Segoe UI","Helvetica","Apple Color Emoji","Arial","sans-serif","Segoe UI Emoji","Segoe UI Symbol";
  color:#333;
  background:#fff;
   overflow-x: hidden;
  margin: 0;   /* remove default browser margins */
  padding: 0;
}
img{
    object-fit: cover;
}

/* HEADER */
header{
  background-color: #1e1e1e;
  color:#fff;
  padding:15px 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
p{
    font-size: 16px;
    line-height: 1.80;
    text-align: justify;
}
.logo{
    width: 200px;
}
header h1{
  margin:0;
  font-size:24px;
}

header h1 span{
  color:var(--orange);
}

nav a{
  color:#fff;
  margin-left:25px;
  text-decoration:none;
  font-weight: 700;
  font-size: 17px;
}

nav a:hover{
  color:var(--orange);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: url('../download.png');
}

/* Video Full Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.hero-content h2 {
  font-size: 45px;
}

.hero-content span {
  display: block;
  font-size: 20px;
  margin-top: 10px;
}

.hero-content a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.hero-1{
  background:url("../contact-image-banner.jpeg") center/cover no-repeat;
  height:80vh;
  position:relative;
}

.hero-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  color:#fff;
  max-width:602px;
  z-index:1;
}

.hero-content h2{
  font-size:40px;
  margin-bottom:65px;
}

.hero-content h2 span{
  color:var(--orange);
}

.hero-content p{
  line-height:1.7;
  margin-bottom:25px;
}

.hero-content a{
  background:var(--orange);
  color:#fff;
  padding:12px 25px;
  text-decoration:none;
  border-radius:3px;
  font-weight:bold;
}

/* SECTION */
section{
  padding:50px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:32px;
}
.section-title-2 h1 span{
color:var(--orange);
}
.section-title-3 h1 span{
color:var(--orange);
}
.section-title-3{
    justify-content: center;
    display: grid;
}
.section-title-3 p{
    max-width: 800px;
}
.section-title h2 span{
  color:var(--orange);
}
.bold-1 b{
    font-size: 20px;
}
.section-title p{
  max-width:800px;
  margin:10px auto 0;
  color:#555;
  line-height:1.6;
}

/* ABOUT */
.about{
  display:flex;
  gap:40px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:6px;
  height: 400px;
}

.about h3{
  color:var(--orange);
  font-size: 30px;
}

.about p{
  line-height:1.7;
  color:#555;
  text-align: justify;
}

/* SERVICES */
.services{
  background:var(--gray);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:25px;
}

.service-box{
  background:#fff;
  padding:30px 20px;
  border-radius:6px;
  border-left:5px solid var(--orange);
}

.service-box h4{
  margin-top:0;
  font-size: 18px;
}

/* MACHINERY */
.machinery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(350px, 2fr));
  gap:25px;
}

.machine{
  border:1px solid #ddd;
  border-radius:6px;
  overflow:hidden;
  background:#fafafa;
  transition:0.3s;
}

.machine:hover{
  transform:translateY(-5px);
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.machine img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.machine div{
  padding:20px;
}

.machine h4{
  margin-top:0;
  color:var(--orange);
}

.machine p{
  font-size:14px;
  line-height:1.6;
}

/* WHY US */
.why{
  background:
  url("https://static.vecteezy.com/system/resources/thumbnails/074/222/391/small/large-format-industrial-printer-plotter-machine-production-printing-process-photo.jpg")
  center/cover no-repeat;
  color:#fff;
}

.why-grid{
  display:grid;
  gap:30px;
  margin-top:40px;
}

.why-box{
  border-left:4px solid var(--orange);
  padding-left:15px;
}

/* CONTACT */
.contact{
  background:var(--gray);
}

.contact-grid{
  display:grid;
  gap:40px;
  margin-bottom: 60px;
}

.contact input,
.contact textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #ccc;
}

.contact button{
  background:var(--orange);
  color:#fff;
  border:none;
  padding:12px 30px;
  cursor:pointer;
}

/* FOOTER */
footer{
  background:#1f1f1f;
  color:#aaa;
  text-align:center;
  padding:15px;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .about,
  .contact-grid{
    display: grid;
    grid-template-columns:1fr;
  }
}
.service-grid img{
    width: 337px;
    height: 210px;
    object-fit: cover;
    margin-bottom: 20px;
}
.div-1 div{
    width: 415px;
    height: auto;
}
.why-grid{
    display: flex;
    gap: 30px;
}
.div-1{
    display: grid;
    margin-bottom: 36px;
}
.div-1{
    display: flex;
    gap: 50px;
}
.why-choose-2 img{
    width: 690px;
    border-radius: 10px;
}
.why-choose-1{
    color: black;
}
.why-1{
    border: 2px solid;
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 5px;
}
.why-2{
    border: 2px solid;
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 5px;
}
.why-3{
    border: 2px solid;
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 5px;
}
.why-4{
    border: 2px solid;
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 5px;
}
/* About Section */
.banner{
  height:60vh;
  background:
  url("https://img.freepik.com/premium-photo/gears-various-sizes-colors-arranged-dark-surface-showcasing-industrial-design-elements-rusty-gear-adds-unique-contrast-overall-composition_1138521-19982.jpg?semt=ais_hybrid&w=740&q=80")
  center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content: center;
  color:#fff;
}
.banner h2{
    font-size:36px;
    position: relative;
    right: 490px;
}

.about-grid{
  display:flex;
  gap:40px;
  align-items:center;
}
.about-grid img{width:725px;border-radius:8px}

.stats{
  background:var(--gray);
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:25px;
}
.stat{
  background:#fff;
  padding:30px;
  text-align:center;
  border-left:5px solid var(--orange);
}
.stat h3{color:var(--orange);font-size:28px}

footer{
  background:var(--dark);
  color:#bbb;
  text-align:center;
  padding:30px;
}
.concept{
    display: flex;
    gap: 228px;
    align-items: center;
    margin-bottom: 50px;
}
.concept img{
    width: 700px;
    border-radius: 20px;
}
@media(max-width:768px){
    .concept{
        display: grid;
        gap: 20px;
    }
    .concept img{
    width: 100%;
    border-radius: 20px;
}
  .about-grid{grid-template-columns:1fr}
}
form{
    width: 600px;
  place-self: center;
  margin-top: -10px;
}
form h1{
    font-size: 45px;
}
.contact-1{
        display: flex;
        gap: 60px;
        justify-content: center;
}
.contact-1 a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.contact-1 div{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(206, 107, 27, 0.12) 0px -12px 30px, rgba(255, 136, 0, 0.12) 0px 4px 6px, rgba(255, 136, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 445px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-1 img{
    width: 80px;
}
footer a{
    text-decoration: none;
    color: white;
}
.about-grid span{
    color: #ff7a00;
}
.div-1 h3{
    color: #ff7a00;
}
.stats p{
    text-align: center;
}
@media (max-width: 767px){
    .hero-content h2 {
    font-size: 20px;
    margin-bottom: 35px;
}
.product-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(206, 107, 27, 0.12) 0px -12px 30px, rgba(255, 136, 0, 0.12) 0px 4px 6px, rgba(255, 136, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 100% !important;
    transition: 0.3s ease;
}
.about-grid img
 {
    width: 100%;
    border-radius: 8px;
}
.about-grid{
  display:grid;
  gap:40px;
  align-items:center;
}
.hero {
    height: 35vh;
}
nav a {
    color: #fff;
    margin-left: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}
.logo {
    width: 140px;
}
.products {
    width: 90%;
    margin: 28px auto;
    display: grid;
    gap: 30px;
}
header {
    background-color: #1e1e1e;
    color: #fff;
    padding: 15px 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-content a {
    padding: 7px 9px;
}
section {
    padding: 14px 5%;
}
h1{
    font-size: 25px !important;
}
h3{
    font-size: 20px !important;
}
h2{
    font-size: 22px !important;
}
.about img {
    width: 100%;
    border-radius: 6px;
    height: auto;
}
.service-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}
.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(336px, 2fr));
    gap: 25px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,fr));
    gap: 30px;
    margin-top: 40px;
}
.div-1 {
    display: grid;
    gap: 50px;
}
.div-1 div {
    width: 100%;
    height: auto;
}
.why-choose-2 img
 {
    width: 100%;
}
.why b{
    color: #ff7a00;
}
iframe{
    height: 200px !important;
}
.banner h2 {
    font-size: 36px;
    position: relative;
    right: 0px;
}
.banner {
    height: 25vh;
}
.hero-1 {
    height: 30vh;
}
.contact-1 div {
    width: 333px;
   
}
.contact-1 {
    display: grid;
    justify-content: start;
}
form {
    width: 100%;
}
form {
    margin-top: 29px;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height:20vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}
}

@media(max-width:767px) and (orientation: landscape) {

    .hero {
        height: 67vh;
    }
    .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(298px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    .banner h2 {
        font-size: 36px;
        position: relative;
        right: 134px;
    }
    .banner {
        height: 58vh;
    }
        .contact-1 div {
        width: 119%;
    }
    .hero-1 {
        height: 60vh;
    }
}
@media (min-width: 768px) and (max-width: 1390px) and (orientation: portrait){
    section {
    padding: 40px 4%;
}
.about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}
    form {
    width: 100%;
    place-self: center;
    margin-top: -10px;
}
.concept {
    display: grid !important;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}
.concept img {
    width: 100%;
    border-radius: 20px;
    height: 40vh;
    object-fit: fill;
}
.contact-1 div {
        width: 100% !important;
    }
    .contact-1 {
    display: grid !important;
}
.hero-1 {
    background: url(../factory.jpeg) center / cover no-repeat;
    height: 37vh;
    position: relative;
}
.banner {
    height: 33vh;
}
.banner h2 {
    font-size: 36px;
    position: relative;
    right: 84px;
}
.stats {
    background: var(--gray);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.hero {
    background: url(../image-1.jpg) center / cover no-repeat;
    height: 40vh;
    position: relative;
}
.service-grid img {
    width: 100%;
}
.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(295px, 2fr));
    gap: 25px;
}
.why-grid {
    display: grid;
    gap: 30px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(481px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(311px, 1fr));
    gap: 25px;
}
.why-choose-2 img {
    width: 100%;
    border-radius: 10px;
}
.about{
    display: grid;
}
}
@media (min-width: 768px) and (max-width: 1390px) and (orientation: landscape){
.why-grid {
    display: grid;
    gap: 30px;
}
    .banner h2 {
    font-size: 36px;
    position: relative;
    right: 159px;
}
section {
    padding: 40px 4%;
}
.about-grid {
    display: grid;
    grid-template-columns: 2fr;
    gap: 40px;
    align-items: center;
}
.about {
    display: grid;
    grid-template-columns: 2fr;
    gap: 40px;
    align-items: center;
}
.service-grid {
    display: grid;
            grid-template-columns: repeat(auto-fit, minmax(429px, 1fr));
    gap: 25px;
}
.service-grid img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    margin-bottom: 20px;
}
.why-grid {
    display: grid;
    gap: 30px;
}
.why-choose-2 img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.div-1 div {
    width: 100%;
    height: auto;
}
.concept{
    display: grid;
}
.concept img {
    width: 100%;
    border-radius: 20px;
}
.contact-1 {
    display: grid;
    gap: 60px;
    justify-content: center;
}
.contact-1 div {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(206, 107, 27, 0.12) 0px -12px 30px, rgba(255, 136, 0, 0.12) 0px 4px 6px, rgba(255, 136, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    width: 100%;
}

}
.image-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.image-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.image-track img {
  width: 250px;
  height: 180px;
  margin-right: 30px;
  border-radius: 10px;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .image-track img {
    width: 150px;
    height: 110px;
    margin-right: 15px;
  }
}
.products {
  width: 100%;
  display: flex;
  margin: 60px auto;
  gap: 30px;
}

/* 💻 Desktop - 3 Columns */
@media (min-width: 1025px) {
}

/* 📱 iPad / Tablet - 2 Columns */
@media (min-width: 769px) and (max-width: 1024px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Mobile - 1 Column */
@media (max-width: 768px) {
  .products {
   display: grid;
  }
}

.product-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
      box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(206, 107, 27, 0.12) 0px -12px 30px, rgba(255, 136, 0, 0.12) 0px 4px 6px, rgba(255, 136, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
width: 500px;
  transition: 0.3s ease;
}

.product-box:hover {
  transform: translateY(-10px);
}

.product-box img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Smaller image on mobile */
@media (max-width: 768px) {
  .product-box img {
    height: 180px;
  }
}
.product-box h3{
    color: #ff6600;
}