    :root {
      --red: #c0392b;
      --dark: #111418;
      --lightgray: #f4f4f4;
      --text: #333;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family:'Poppins', sans-serif; color: var(--text); overflow-x: hidden; }
    h1,h2,h3,h4,h5,h6 { font-family:'Poppins', sans-serif; }

    /* =============================================
       OFFCANVAS — FIXED
    ============================================= */
    /* Remove Bootstrap's built-in transform so we can animate ourselves */
    .offcanvas.offcanvas-start {
      width: 300px !important;
      background: var(--dark);
      color: #fff;
      /* override Bootstrap default hide */
      transform: translateX(-100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0.35s;
      visibility: hidden;
    }
    .offcanvas.offcanvas-start.show {
      transform: translateX(0);
      visibility: visible;
    }
    .offcanvas-header {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: space-between;
    }
    .offcanvas-title {
      font-family:'Poppins', sans-serif;
      font-size: 1.3rem; font-weight: 700;
      color: #fff; letter-spacing: 1px;
    }
    /* White × close button */
    .offcanvas .btn-close {
      filter: invert(1) brightness(2);
      opacity: 0.8;
    }
    .offcanvas .btn-close:hover { opacity: 1; }

    .offcanvas-body { padding: 0; }
    .offcanvas-nav a {
      display: flex; align-items: center; gap: 12px;
      padding: 15px 22px;
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-family:'Poppins', sans-serif;
      font-size: 1.05rem; font-weight: 600; letter-spacing: 1px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: all 0.2s ease;
    }
    .offcanvas-nav a i { color: var(--red); width: 18px; text-align: center; }
    .offcanvas-nav a:hover {
      color: #fff;
      padding-left: 30px;
      background: rgba(255,255,255,0.05);
    }
    .offcanvas-contact-box {
      margin: 20px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      padding: 16px;
    }
    .offcanvas-contact-box p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 8px;
      display: flex; gap: 8px; align-items: center;
    }
    .offcanvas-contact-box p i { color: var(--red); }

    /* Custom backdrop for offcanvas */
    #navBackdrop {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 1039;
      opacity: 0;
      transition: opacity 0.3s;
    }
    #navBackdrop.show { display: block; opacity: 1; }

    /* =============================================
       NAVBAR
    ============================================= */
    .navbar {
      background: #fff;
      border-bottom: 2px solid #eee;
      padding: 1px 0;
      position: sticky; top: 0; z-index: 1040;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    .navbar-brand .brand-name {
      font-family:'Poppins', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--red); letter-spacing: 1px;
    }
    .navbar-brand .brand-tag {
      font-size: 0.7rem; color: #777;
      font-style: italic;
    }
    .nav-link {
      font-family:'Poppins', sans-serif;
      font-weight: 600; font-size: 0.95rem;
      letter-spacing: 1px; color: #333 !important;
      padding: 8px 14px !important;
      transition: color .2s;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 14px; right: 14px;
      height: 2px; background: var(--red);
      transform: scaleX(0);
      transition: transform 0.2s;
    }
    .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
    .nav-link:hover, .nav-link.active { color: var(--red) !important; }

    /* Hamburger button */
    #hamburgerBtn {
      background: none; border: none; cursor: pointer;
      display: flex; flex-direction: column; justify-content: center;
      gap: 5px; padding: 6px; width: 38px; height: 38px;
    }
    #hamburgerBtn span {
      display: block; height: 2px; background: #333;
      border-radius: 2px; transition: all 0.3s;
    }

    /* =============================================
       HERO CAROUSEL
    ============================================= */
    #heroCarousel { position: relative; }
    .carousel-item { height: 450px; position: relative; overflow: hidden; }
    .carousel-item > img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.4);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: flex-end;
      padding-right: 60px;
    }
    .hero-content { max-width: 520px; }
    .hero-content h1 {
      font-size: 35px; font-weight: 700;
      color: #fff; line-height: 1.15;
      text-transform: uppercase; letter-spacing: 1px;
    }
    .hero-content h1 span { color: var(--red); display: block; }
    .hero-content .quote {
      font-size: 0.88rem; color: rgba(255,255,255,0.72);
      font-style: italic; margin: 18px 0 12px;
      border-left: 3px solid var(--red); padding-left: 14px;
    }
    .hero-content p { color: rgba(255,255,255,0.82); font-size: 0.9rem; line-height: 1.65; }
    .btn-red {
      display: inline-flex; align-items: center; gap: 10px;
      margin-top: 22px; background: var(--red); color: #fff;
      font-family:'Poppins', sans-serif;
      font-weight: 700; font-size: 0.95rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 12px 28px; border: none; text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .btn-red:hover { background: #a93226; color: #fff; transform: translateX(3px); }
    .carousel-control-prev, .carousel-control-next {
      width: 46px; height: 46px;
      background: var(--red); top: 50%; transform: translateY(-50%);
      border-radius: 0; opacity: 1;
    }
    .carousel-control-prev { left: 20px; }
    .carousel-control-next { right: 20px; }

    /* =============================================
       FEATURES BAR
    ============================================= */
    .features-bar { background: #fff; padding: 40px 0; border-bottom: 1px solid #eee; }
    .feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 10px 16px; }
    .feature-icon { width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; }
    .feature-icon i { font-size: 1.9rem; color: var(--red); }
    .feature-item h5 {
      font-family:'Poppins', sans-serif; font-weight: 700;
      font-size: 1rem; text-transform: uppercase;
      letter-spacing: 0.5px; margin-bottom: 4px;
    }
    .feature-item p { font-size: 0.82rem; color: #666; line-height: 1.5; }

    /* =============================================
       ABOUT
    ============================================= */
    #about { padding: 70px 0; background: #fff; }
    .about-label {
      font-family:'Poppins', sans-serif; font-weight: 700;
      font-size: 0.85rem; color: var(--red);
      letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px;
    }
    .about-title { font-size: 1.9rem; font-weight: 700; color: #111; margin-bottom: 18px; }
    .about-text { font-size: 0.88rem; color: #555; line-height: 1.9; margin-bottom: 12px; }
    .about-img { width: 100%; height: 360px; object-fit: cover; border: 4px solid #eee; }

    /* =============================================
       VISION / MISSION / QUALITY
    ============================================= */
    .vmq-bar { background: var(--dark); padding: 50px 0; }
    .vmq-item { padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.08); }
    .vmq-item:last-child { border-right: none; }
    .vmq-icon {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--red); display: flex;
      align-items: center; justify-content: center; margin-bottom: 14px;
    }
    .vmq-icon i { color: #fff; font-size: 1.3rem; }
    .vmq-item h5 {
      font-family:'Poppins', sans-serif; font-weight: 700;
      font-size: 1.05rem; color: #fff;
      text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
    }
    .vmq-item p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

    /* =============================================
       INFRASTRUCTURE
    ============================================= */
   /* ======================================================
   INFRASTRUCTURE SECTION
====================================================== */
#infrastructure{
  padding:60px 0 40px;
  background:var(--lightgray);
  overflow:hidden;
}

/* ======================================================
   COMMON TITLES
====================================================== */
.section-title{
  font-family:'Poppins', sans-serif;
  font-size:2rem;
  font-weight:700;
  text-transform:uppercase;
  color:var(--dark);
  text-align:center;
  margin-bottom:8px;
  letter-spacing:1px;
}

.section-divider{
  width:55px;
  height:3px;
  background:var(--red);
  margin:0 auto 40px;
}

/* ======================================================
   STAT CARDS
====================================================== */
.stat-card{
  background:#ffffff;
  padding:28px 16px;
  text-align:center;
  border-top:4px solid var(--red);
  box-shadow:0 2px 14px rgba(0,0,0,0.06);
  transition:0.3s ease;
  height:100%;
}

.stat-card:hover{
  transform:translateY(-5px);
}

.stat-card i{
  font-size:2rem;
  color:var(--red);
  margin-bottom:10px;
  display:block;
}

.stat-num,
.stat-num-iso{
  font-family:'Poppins', sans-serif;
  font-size:2.2rem;
  font-weight:700;
  color:var(--dark);
  line-height:1.2;
}

.stat-label{
  font-size:0.82rem;
  color:var(--text);
  margin-top:5px;
  line-height:1.5;
}

/* ======================================================
   MACHINERY SECTION
====================================================== */
.machinery-wrap{
  position:relative;
  padding:0 40px;
}

/* Remove extra carousel spacing */
#machineryCarousel{
  margin-bottom:0 !important;
}

#machineryCarousel .carousel-inner{
  padding-bottom:0;
}

#machineryCarousel .carousel-item{
  margin-bottom:0;
  padding-bottom:0;
}

/* ======================================================
   MACHINERY CARD
====================================================== */
.machinery-card{
  background:#ffffff;
  box-shadow:0 2px 12px rgba(0,0,0,0.08);
  overflow:hidden;
  transition:0.3s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

.machinery-card:hover{
  transform:translateY(-5px);
}

.machinery-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.machinery-card-body{
  padding:14px 16px;
  flex-grow:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:90px;
}

.machinery-card-body h6{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:0.5px;
  margin:0;
  line-height:1.5;
  color:var(--dark);
}

/* ======================================================
   CAROUSEL BUTTONS
====================================================== */
#machineryCarousel .carousel-control-prev,
#machineryCarousel .carousel-control-next{
  width:42px;
  height:42px;
  top:45%;
  opacity:1;
  background:var(--red);
  border-radius:0;
}

#machineryCarousel .carousel-control-prev{
  left:-5px;
}

#machineryCarousel .carousel-control-next{
  right:-5px;
}

#machineryCarousel .carousel-control-prev i,
#machineryCarousel .carousel-control-next i{
  font-size:0.9rem;
  color:#ffffff;
}

/* ======================================================
   TABLET RESPONSIVE
====================================================== */
@media (max-width:991px){

  .section-title{
    font-size:1.8rem;
  }

  .machinery-card img{
    height:180px;
  }

  .machinery-card-body{
    min-height:80px;
  }

  .machinery-card-body h6{
    font-size:0.82rem;
  }
}

/* ======================================================
   MOBILE RESPONSIVE
====================================================== */
@media (max-width:768px){

  #infrastructure{
    padding:50px 0 30px;
  }

  .section-title{
    font-size:1.45rem;
  }

  .section-divider{
    margin-bottom:30px;
  }

  .stat-card{
    padding:22px 12px;
  }

  .stat-card i{
    font-size:1.6rem;
  }

  .stat-num,
  .stat-num-iso{
    font-size:1.6rem;
  }

  .stat-label{
    font-size:0.75rem;
  }

  .machinery-wrap{
    padding:0 24px;
  }

  .machinery-card img{
    height:150px;
  }

  .machinery-card-body{
    min-height:70px;
    padding:12px;
  }

  .machinery-card-body h6{
    font-size:0.72rem;
    line-height:1.4;
  }

  #machineryCarousel .carousel-control-prev,
  #machineryCarousel .carousel-control-next{
    width:34px;
    height:34px;
  }

  #machineryCarousel .carousel-control-prev{
    left:-2px;
  }

  #machineryCarousel .carousel-control-next{
    right:-2px;
  }
}

/* ======================================================
   SMALL MOBILE
====================================================== */
@media (max-width:576px){

  .section-title{
    font-size:1.3rem;
  }

  .stat-num,
  .stat-num-iso{
    font-size:1.4rem;
  }

  .machinery-card img{
    height:130px;
  }

  .machinery-card-body{
    min-height:65px;
  }

  .machinery-card-body h6{
    font-size:0.65rem;
    letter-spacing:0;
  }
}

    /* =============================================
       PRODUCTS
    ============================================= */
    #products { padding: 70px 0; background: #fff; }
    .product-card {
      border: 1px solid #e5e5e5; overflow: hidden;
      transition: box-shadow .25s, transform .25s;
    }
    .product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-4px); }
    .product-card img { width: 100%; height: 155px; object-fit: cover; }

    /* =============================================
       CUSTOMERS
    ============================================= */
    .customers-bar {
  background: var(--lightgray);
  padding: 65px 0;
}

.customer-logo {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.customer-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.customer-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

    /* =============================================
       CONTACT — FULLY REBUILT
    ============================================= */
    #contact { padding: 70px 0; background: #fff; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    @media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }

    /* Left column: two stacked info cards */
    .contact-info-card {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-left: 4px solid var(--red);
      border-radius: 4px;
      padding: 22px 20px;
      display: flex; align-items: flex-start; gap: 16px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: box-shadow .2s;
    }
    .contact-info-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
    .contact-card-icon {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--red); color: #fff; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.05rem;
    }
    .contact-info-card h6 {
      font-family:'Poppins', sans-serif;
      font-weight: 700; font-size: 0.85rem;
      text-transform: uppercase; letter-spacing: 1.5px;
      color: var(--red); margin-bottom: 6px;
    }
    .contact-info-card p, .contact-info-card a {
      font-size: 0.87rem; color: #444;
      text-decoration: none; line-height: 1.7; display: block;
    }
    .contact-info-card a:hover { color: var(--red); }

    /* Right column: address card */
    .contact-address-card {
      background: var(--dark);
      border-radius: 4px;
      padding: 28px 26px;
      display: flex; flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
      grid-row: span 2;
    }
    .contact-address-card h6 {
      font-family:'Poppins', sans-serif;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--red); margin-bottom: 8px;
    }
    .contact-address-card p {
      font-size: 0.87rem; color: rgba(255,255,255,0.75);
      line-height: 1.8;
    }
    .contact-address-card .gstin {
      margin-top: 14px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.5px;
    }
    .contact-address-card .maps-link {
      margin-top: 20px; display: inline-flex;
      align-items: center; gap: 8px;
      background: var(--red); color: #fff;
      padding: 9px 18px; text-decoration: none;
      font-family:'Poppins', sans-serif;
      font-weight: 700; font-size: 0.85rem;
      letter-spacing: 1px; text-transform: uppercase;
      transition: background .2s;
    }
    .contact-address-card .maps-link:hover { background: #a93226; }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 50px 0 20px;
}

.footer-brand .brand-name {
  color: var(--red);
  font-family:'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-brand .brand-tag {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-style: italic;
}

.footer-brand .brand-quote{
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 10px;
}

.footer-social a{
  display: inline-flex;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-right: 6px;
  transition: all .2s;
}

.footer-social a:hover{
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* FOOTER HEADING */
.footer-heading{
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  padding-bottom: 4px;
  text-align: center;
}

/* FOOTER LINKS */
.footer-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: 0.3s ease;
  line-height: 1.6;
}

.footer-links a:hover{
  color: var(--red);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span{
  color: rgba(255,255,255,0.38);
}

.footer-bottom .passion i{
  color: var(--red);
}

/* =========================
   TABLET & LAPTOP VIEW
========================= */
@media (min-width: 768px){

  .footer-heading{
    text-align: center;
    display: block;
  }

  .footer-links a{
    justify-content: center;
    text-align: center;
  }
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 767px){

  .footer-heading{
    text-align: left;
    display: inline-block;
  }

  .footer-links a{
    justify-content: flex-start;
    text-align: left;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
}

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 991px) {
      .hero-overlay { padding-right: 20px; }
    }
    @media (max-width: 767px) {
      .carousel-item { height: 430px; }
      .hero-overlay { padding: 20px; justify-content: center; }
      .hero-content h1 { font-size: 1.8rem; }
      .vmq-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
      .stat-num-iso{font-size: 23px;}
    }

    .contact-detail-text{
        color: rgba(255,255,255,0.38);
        text-decoration: none;
    }

    .custom-v{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: rgba(255,255,255,0.38);
    font-size: 20px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    transition: 0.3s ease;
}

.custom-v:hover{
    transform: scale(1.1);
}

.seyfert{
    color: rgba(255,255,255,0.38);
    text-decoration: none;
}

.whatsapp-btn{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  z-index: 999;
  box-shadow: 0 5px 18px rgba(0,0,0,.25);
  text-decoration: none;
}

/* Call Button */
.call-btn{
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 5px 18px rgba(0,0,0,.25);
  text-decoration: none;
}

/* Hover Effect */
.whatsapp-btn:hover,
.call-btn:hover{
  transform: scale(1.08);
  transition: 0.3s ease;
  color: #fff;
}