/* Common Css */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	text-decoration:none;
/* 	list-style:none; */
    font-family: "Poppins" !important;
}
html, body {
  overflow-x: hidden !important;
}
body .sticky-nav {
	position: fixed;
	top: -500px;
	left: 0px;
	right: 0px;
	z-index: 12;
	box-shadow: 0 4px 4px 0 rgba(23,23,23,.06);
	background: #fff;
	transition: 0.3s all ease-in-out;
	z-index: 99;
}
.reveal{
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: 1s all ease;
  }
.reveal.active{
    transform: translateY(0);
    opacity: 1;
  }
 /* Top Bar */
.top-bar {
    padding: 15px 0px;
  }

.contact-info {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-item img {
  object-fit: contain;
}
/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: white;
  padding: 15px 40px;
  flex-wrap: wrap;
}
.navbar-header {
  display: none; /* hidden by default, shown in small screens */
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.navbar-btn{
	display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 85px;
	gap: 0px !important;
}
.nav-links {
  text-transform: uppercase;
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}
.enquiry-btn , .enquiry-btn-1 {
background-color: black;
  color: white;
  padding: 7px 12px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid white;
  transition: background-color 0.3s;
}
.enquiry-btn-1:hover{
	color: #fff;
  background-color:#e33019;
}
.enquiry-btn:hover {
	color: #fff;
  background-color:#e33019;
}
/* Hamburger Icon */
.nav-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
.bottom-sidebar-wrap{
	padding: 2px 0px;
    margin: 0 !important;
    background-color: #383838 !important;
}
.wp-block-button__link {
    color: #fff !important;
    background-color: #222 !important;
    border-radius: 5px !important;
    box-shadow: none;
    border-color:#fff;
    text-decoration: none;
    padding: 10px 30px;
    font-size: 16px;
	border: 2px solid;
}
.wp-block-button__link : hover{
	color: #e33019 !important;
  background-color: #fff !important;
}
.bottom-sidebar-wrap-last {
	background-color: #ffffff !important;
}
.logo-heder-2 {
	width:50%;
}
.logo-heder-3 {
		width:50%
}
/*   =====================  Home Page css =============================== */
/* ========= Container ========== */
/* .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0px;
} */
/* ========= Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #1a1919;
}
h1 {
  font-size: 45px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
  color: #f68f34;
}
h5 {
 font-size: 18px;
/*     float: left; */
    padding-top: 5px;
}
p {
  font-size: 15px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0px;
}
/* ========= Links ========== */
a {
  color: #e33019;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #000;
  text-decoration: none;
}
/* ========= Buttons ========== */
.btn:hover {
  background-color: #e33019;
  color: #fff;
}
/* ===== SLIDER BASE ===== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides-wrapper {
  width: 100%;
  overflow: hidden;
}

/* ===== SLIDE ===== */
.slide {
  position: relative;
  width: 100%;
  height: 625px;
  display: none;
  overflow: hidden;
}

.slide.active {
  display: block;
}

/* Background image */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Video */
.slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ===== OVERLAY ===== */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(80, 77, 77, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ===== CONTENT ===== */
.content {
  color: #fff;
  text-align: center;
  padding: 25px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== TYPOGRAPHY ===== */
.subheading {
  color: #ffcc00;
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 600;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
color:#fff
}

/* ===== BUTTON ===== */
.btn {
  margin-top: 20px;
  font-size: 15px;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #fff;
  transition: 0.3s;
}

.btn:hover {
  background: #e33019;
  color: #fff;
  border-color: #fff;
}

/* ===== ARROWS ===== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 22px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ===== DOTS ===== */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.dot.active {
  background: #ffcc00;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .slide { height: 400px; }
  .content h1 { font-size: 36px; }
  .subheading { font-size: 20px; }
}

@media (max-width: 576px) {
  .slide {
    height: 320px;
    min-height: 300px;
  }

  .content h1 { font-size: 26px; }
  .subheading { font-size: 16px; }

  .btn {
    font-size: 14px;
    padding: 8px 18px;
  }

  .slider-arrow {
    font-size: 16px;
    padding: 6px 10px;
  }

  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
}


.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
#foundry-form {
  padding: 100px 0;
  background-color: #fff;
}
#form{
 padding: 100px 0;
  background-color: white;	
}
#slider{
  padding: 100px 0;
  background-color: #f9f9f9;
}
#company-section{
  padding: 100px 0;
  background-color: #f9f9f9;
}
#product-image{
  padding: 100px 0;
  background-color: #f9f9f9;
}
#industrial-systems{
 padding: 100px 0;
  background-color: #f9f9f9;	
}
#our-product{
	 padding: 100px 0;
  background-color: #fff;	
}
#applications-section{
  padding: 100px 0;
  background-color: white;
}
 .company-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background-color: #f9f9f9;
    }
.company-text {
      flex: 1;
      min-width: 300px;
      padding-right: 30px;
    }
    .company-text h2 {
      margin-bottom: 20px;
    }
    .company-text p {
      margin-bottom: 20px;
    }
    .company-text b {
      font-weight: 600;
    }

    .company-image {
      flex: 1;
      min-width: 300px;
    }

    .company-image img {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }
.form-h2{
/* 	margin-left: 35px; */
	padding-bottom: 10px;
	text-align: left;
}
#slider-container {
      margin: auto;
      position: relative;
      overflow: hidden;
      background: #f9f9f9;
    }

    .slider-header {
      font-size: 32px;
      margin-bottom: 36px;
      font-weight: bold;
    }

    .slider-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .slide {
      min-width: 300px;
      margin-right: 20px;
      background: #f9f9f9;
/*       box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    }

    .slide img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }


    .applications-section h2 {
      margin-bottom: 20px;
    }

    .caption {
      padding: 10px;
      font-size: 16px;
    }

    .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      background: rgba(0,0,0,0.3);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 10;
    }

    .nav-button:hover {
      background: rgba(0,0,0,0.6);
    }

    .prev-btn {
      left: 0;
    }

    .next-btn {
      right: 0;
    }
.row-wrapper {
  width: 100%;
  overflow: hidden;
}

/* .left-section,
.right-section {
  float: left;
  width: 48%;
  box-sizing: border-box;
  margin-right: 4%;
}
.right-section {
  margin-right: 0;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
}
.left-section h4 {
  color: #f68f34;
  margin-bottom: 10px;
}
.left-section h2 {
  color: #070606;
  margin-bottom: 15px;
}
.left-section p {
  margin-top: 15px;
  color: #363333;
  max-width: 572px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.features {
  overflow: hidden;
  margin-bottom: 30px;
}
.feature {
  float: left;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.feature:nth-child(2n) {
  margin-right: 0;
}
.feature-icon {
  gap: 19px;
    display: flex !important;
    justify-content: left;
    align-items: center;
}
.feature-icon img {
    height: 30px;
    object-fit: contain;
}
.text-content {
  overflow: hidden;
}
.text-content h5 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #070606;
}
.text-content p {
 
  color: #363333;
}
.image {
    border-radius: 10px;
    width: 100%;
    height: 322px;
    display: block;
    margin-top: -45px;
}
.right-section h3 {
  text-align: center;
  color: #070606;
  margin-bottom: 20px;
} */
/* #form{
	background-color: white;
	padding: 50px 0px;
} */
.form{
	width: 100%;
}

.input{
	  width: 100%;
      padding: 20px;
      font-size: 14px;
}
.input placeholder{
	color: black;
}
    input, textarea, select {
      
      border: none;
      background-color: #f5f5f5;
      box-sizing: border-box;
    }

    .form-group {
      flex: 1 1 calc(50% - 10px) !important;
		color:black;
    }

    .form-group-full {
      flex: 1 1 100% !important;
    }

    textarea {
		padding: 20px;
      height: 150px;
      resize: vertical;
    }
/* form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
form textarea {
  height: 100px;
  resize: vertical;
} */
/* .btn-submit {
  background-color: #ed3e1c !important;
  color: #fff;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}
.services-section {
  background-color: #1a1a1a;
  padding: 60px 0px;
  overflow: hidden; 
} */
/* .services-contain {
  overflow: hidden; 
} */
/* Left side: text */
/* .services-text {
    float: left;
    width: 40%;
    color: #fbfbfb;
    box-sizing: border-box;
}
.services-text h4 {
    font-size: 24px;
    line-height: 43px;
    color: #ed3e1c;
    margin-bottom: 10px;
}
.services-text h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 15px;
}
.services-text p {
    color: #ccc;
} */
/* Right side: cards */
/* .service-cards {
    float: left;
    width: 53%;
    margin-left: 50px;
    box-sizing: border-box;
} */
/* .service-card {
  background: #ffffff;
  color: #000000;
  min-height: 356px;	
  margin-right: 3%;
  margin-bottom: 20px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  float: left;
} */
/* .service-card:nth-child(2n) {
  margin-right: 0;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.card-content {
  padding: 13px ;
}
.card-content h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-content p {
  padding-bottom: 10px;
  display: inline-block;
  font-size: 14px;
  color: #333;
}
.card-content a {
    font-size: 16px;
    line-height: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px;
    color: #e33019;
    font-weight: bold;
    text-decoration: none;
} */
  .systems-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .systems-card {
      flex: 1 1 calc(33.333% - 20px);
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
    }

    .systems-card img {
    width: 100%;
    height: 250px;
    display: block;
}
    .caption {
      padding: 10px;
      font-size: 14px;
      font-weight: 500;
    }
#features-section {
  background: #f4f4f4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0;
}
.features-wrapper {
  overflow: hidden; 
}
.feature-card {
  width: 30%;
  margin: 1.5%;
  float: left;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: left;
}
.icon-features{
	display: flex;
	align-items: center;
}
.icon-features img {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
  float: left;
  margin-right: 10px;
}
.icon-features h3 {
  color: #1a1919;
  font-weight: 700;
  margin-bottom: 10px;
  overflow: hidden; /* Clear float next to img */
}
#footer-spasing {
  margin: 35px 0px;
}
.feature-card p {
  color: #1a1919;
  line-height: 1.4;
  margin: 10px 0;
}
.feature-card a {
  color: red;
  font-weight: bold;
  text-decoration: none;
}
.divider {
  width: 1px;
  background-color: #fff;
  height: 100%;
  float: left;
  margin: 0 20px;
  opacity: 0.8;
}
.download-btn {
  display: inline-block;
  background-color: #e33019;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  margin-top: 10px;
  text-decoration: none;
  width: auto;
}

.bottom-sidebar-wrap-2{
  background-color: white;
}
/* ===================== product page css ======================== */
#products {
  padding: 50px 0;
  background-color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.product-item {
  text-align: center;
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-item img:hover {
  transform: scale(1.03);
}

.product-item h3 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}
.container:before,
.container:after {
  content: none !important;
  display: initial !important;
}
 .product-highlight {
  padding: 100px 0;
  background-color: #f9f9f9;
}


	  #product-details{
		  padding: 100px 0;
		    background-color: #fff;
		  
	  }
.product-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.product-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.product-text .logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.product-text h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.product-text p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f0f0f0;
  padding: 12px 20px;
  text-decoration: none;
  color: black;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #e0e0e0;
}

.product-image {
  flex: 1;
  min-width: 300px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}


.product-details h2 {
  font-size: 28px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.accordion-item {
  border-top: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-body {
  padding: 0 15px 15px 15px;
  font-size: 15px;
  line-height: 1.6;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-item.active .accordion-header .arrow {
  transform: rotate(180deg);
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 16px;
  color: #888; /* Matches gray tone */
}

.accordion-item.active .arrow {
  transform: rotate(180deg); /* Rotate on open */
}
/* ===============  contact Us CSS ========================== */
h1 {
  margin: 0px !important;
}
.main-secsen-bagraund-2 {
  padding: 135px 0px; 
}
.contact-section {
  background: #f9f9f9;
  padding: 50px 0;
}
.custom-container {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}
.header {
  text-align: center;
  margin-bottom: 40px;
}
.title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 2rem;
}
.description {
  font-size: 1.1rem;
  color: #555;
}
.cards {
  width: 100%;
}
.contact-card {
	height:200px;
  width: 30%;
  margin: 1.66%;
  float: left;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.icon-wrapper {
  width: 80px;
  margin: 0px auto 0px auto;
}
.icon-img {
  width: 40px;
  height: 40px;
}
.contact-card h5 {
  font-weight: bold;
  margin: 10px 0;
}

.contact-card a {
  text-decoration: none;
  color: #333;
}
.contact-form-section {
  background-color: white;
/*   padding: 50px 0px; */
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
}
.form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
}
.form-heading {
    text-align: center;
    font-size: 35px;
    color: #222;
    margin-bottom: 25px;
}
/* Input Rows */
.cf7-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px;
  margin-bottom: 15px;
}
/* Inputs */
.cf7-input {
  flex: 1;
  min-width: calc(50% - 7.5px);
  padding: 12px 15px;
  background-color: #eef0ff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  color: #2c2c2c;
  box-sizing: border-box;
}
.cf7-full-input {
  width: 100%;
  padding: 12px 15px;
  background-color: #eef0ff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 15px;
}
/* Textarea */
.cf7-textarea {
  width: 50%;
  padding: 12px 15px;
  background-color: #dfe4ff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  color: #2c2c2c;
  min-height: 120px;
  resize: vertical;
  margin-bottom: 15px;
}
/* Submit Button */
.cf7-submit-button {
  background-color: #1f45d4;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cf7-submit-button:hover {
  background-color: #1433a5;
}
/* Success Message */
.cf7-success-message {
  color: #44b89d;
  font-size: 14px;
  margin-top: 15px;
}

.nav-2 {
	width:22%;
}
.dropdown-toggle::after {
  color: black;
}
.navbar-btn-2 {
	margin-right: 0px !important;
	margin: 0px auto;
}
#footer-spasing-3 {
	margin: 15px 0px;
}
#footer-spasing-2 {
 padding: 33px 0px;
}
/* Responsive styling */
@media (max-width: 1450px){
.navigation {
  gap: 10px;
}
}

@media (max-width: 1200px){
.navbar-btn-2 .navigation li a {
  font-size: 12px !important;
}	
}

@media (max-width: 1024px) {
	
	.navbar-btn-2 {
	justify-content: end !important;
	width:50%
}
.nav-2 {
	width:50%;
	padding-bottom:10px;
}
	
	.logo-heder-3 {
		display:none;
	}
	.logo-heder-2 {
	width:100%;
		text-align:center;
}
	.small-sidebar-close{
		display: none !important;
	}
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
  }
  .navbar-header {
    display: none;
    margin-bottom: 10px;
  }
  .nav-links {
    flex-direction: column;
    gap: 15px;
    display: none;
    width: 100%;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .content {
     padding: 20px;
    }
    .content h1 {
     font-size: 28px;
    }
  .enquiry-btn {
	display: none;
    margin-top: 0;
  }
  .menu-icon-nav{
	height: 25px !important;
}
	.company-section {
    flex-direction: column-reverse;
  }
	.company-image{
		margin-bottom: 20px ;
	}

/* .left-section,
  .right-section {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .feature {
    width: 48%;
  }
.services-text {
    width: 35%;
    margin-right: 20px;
    }
.service-cards {
    width: 62%;
  }
	.services-text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  } 
  .service-card:nth-child(2n) {
    margin-right: 0;
  } */
   .feature-card {
    width: 45%;
    margin: 2.5%;
  }
	.wp-block-button__link {
    padding: 7px 8px;
   
}
  .footer-container {
    justify-content: space-between;
    gap: 30px;
  }
  .footer-bottom-container {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
  }
  .footer-social p {
    font-size: 11px;
  }
 .contact-card {
        width: 45%;
        margin: 2.5%;
      }
	
}
@media (max-width: 768px) {
  
   .feature {
    width: 100%;
    float: none;
    margin-right: 0;
  }
	.feature-card {
    width: 80% !important;
    height: auto;
    margin: 10px auto !important;
}
/*   .left-section p,
  .text-content p {
    font-size: 15px;
  }
  .text-content h5 {
    font-size: 17px;
  }
 .services-section {
    padding: 40px 5%;
  } */
/*   .services-text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  } */
/*   .services-text p {
    max-width: 100% !important;
}
  .service-cards {
    width: 100%;
  }
  .service-card {
    width: 100%;
    margin-right: 0;
  } */
  .company-text h2 {
    font-size: 26px;
  }

  .company-text,
  .company-image {
    padding: 0;
  }
 .feature-card {
    width: 100%;
    margin: 10px 0;
  }
	
	
	 .product-content {
    flex-direction: column;
  }

  .product-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .footer-container {
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-section{
    height: 258px;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }
  .divider {
    display: none;
  }
  .download-btn {
    width: 100%;
    text-align: center;
  }
  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo img {
    height: 40px;
  }
  .footer-links {
    margin: 10px 0;
    font-size: 13px;
  }
  .footer-social {
    text-align: center;
  }
  .footer-social img {
    width: 30px;
    height: 30px;
  }
  .footer-social p {
    font-size: 10px;
  }
 .contact-card {
    width: 100%;
    margin: 10px 0;
    float: none;
  }
	.form-group {
    flex: 1 1 100%;
  }

  .form-h2 h2 {
    font-size: 28px;
    text-align: center;
  }

  #form-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
	
	 .cf7-input-wrapper > * {
    flex: 1 1 100%;
  }

  .btn-submit-1 {
    font-size: 18px !important;
    padding: 12px 24px;
  }

  .contact-us-form input,
  .contact-us-form textarea {
    font-size: 15px;
  }
	 .systems-card {
        flex: 1 1 100%;
      }
}

@media (max-width: 480px) {
	    .content h1 {
        font-size: 25px;
    }
  .info-item {
    display: none;
  }
  .nav-links li a {
    font-size: 14px;
  }
/* 	.right-section {
    padding: 20px;
  }
  .form-all {
    margin: 0;
  }
  .left-section h2 {
    font-size: 24px;
  }
  .btn-submit {
    font-size: 14px;
  }
  .services-section {
    padding: 30px 5%;
  }
  .services-text h2 {
    font-size: 22px;
  }
  .services-text p {
    font-size: 12px;
    max-width: 280px;
  }
  .service-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .card-content h5 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 12px;
  } */
  .feature-card {
    width: 100%;
  }
  .footer-section {
    padding: 20px 15px;
    height: auto;
  }
  .footer-left p,
  .footer-right p {
    font-size: 16px;
    line-height: 24px;
  }
  .download-btn {
    font-size: 16px;
    padding: 8px;
  }
  .footer-social img {
    width: 28px;
    height: 28px;
  }
  .footer-social p {
    font-size: 9px;
    line-height: 16px;
  }
   .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .footer-links a {
    display: inline-block;
  }
  .footer-links a::after {
    content: '';
  }
  .footer-links a + a::before {
    content: none;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-links .separator {
    display: none;
  }
	
	 .description {
        font-size: 1rem;
      }

      .contact-card {
        padding: 15px;
      }

      .icon-wrapper {
        width: 60px;
        height: 60px;
      }

      .icon-img {
        width: 30px;
        height: 30px;
      }
	
	
	.btn-submit-1 {
    font-size: 16px !important;
    padding: 10px 20px;
  }

  .contact-us-form input,
  .contact-us-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .cf7-input-wrapper {
    gap: 15px;
  }
	.subscribe-form button {
  width: max-content;
    font-size: 10px !important;
}
	
	.subscribe-form input[type="email"] {
    margin-bottom: 30px;
}
}

@media (max-width: 320px) {
	.navbar-header{
		display: none;
	}
  .top-bar,
  .navbar {
    padding: 10px;
  }

  .nav-links {
    gap: 8px;
  }
  .nav-links li a {
    font-size: 13px;
  }
	 .content {
        padding: 10px;
    }
    .subheading {
        font-size: 14px;
    }
    .btn {
        font-size: 12px;
        padding: 5px 10px;
    }
  .enquiry-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
/* .left-section h2 {
    font-size: 20px;
  }
 */
  .feature-icon {
    width: 24px;
    height: 24px;
  }

  .text-content h5 {
    font-size: 15px;
  }

  .text-content p {
    font-size: 13px;
  }

  .btn-submit {
    padding: 8px;
    font-size: 13px;
  }
/*    .services-section {
    padding: 40px 5%;
  }
  
  .services-text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
.services-text p {
    color: #ccc;
    max-width: 100% !important;
}
  .service-cards {
    width: 100%;
  }
  .service-card {
    width: 100%;
    margin-right: 0;
  } */
   .feature-card {
    width: 100%;
    padding: 15px;
  }
  .footer-left h4 {
    font-size: 12px;
  }
  .footer-left p,
  .footer-right p {
    font-size: 14px;
    line-height: 22px;
  }
  .download-btn {
    font-size: 14px;
    padding: 6px;
  }
  .footer-bottom {
    padding: 15px 5px;
  }
  .footer-links {
    font-size: 12px;
  }
  .footer-social img {
    width: 24px;
    height: 24px;
  }
  .footer-social p {
    font-size: 8px;
    line-height: 14px;
  }
  .title {
     font-size: 1.3rem;
  }
      .description {
        font-size: 0.95rem;
      }
      .contact-card {
        padding: 10px;
      }
      .icon-wrapper {
        width: 50px;
        height: 50px;
      }
      .icon-img {
        width: 25px;
        height: 25px;
      }
	
	
	 .btn-submit-1 {
    font-size: 15px !important;
    padding: 8px 16px;
  }

  .contact-us-form input,
  .contact-us-form textarea {
    font-size: 13px;
    padding: 10px;
  }

  .wpcf7-response-output {
    font-size: 0.8rem;
  }
}






.cf7-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.cf7-input-wrapper > * {
  flex: 1 1 calc(50% - 10px);
  min-width: 200px;
}

.contact-us-form input[type="text"],
.contact-us-form input[type="email"],
.contact-us-form input[type="tel"],
.contact-us-form textarea {
  width: 100%;
  height: 61px;
  padding: 14px 16px;
  border: none;
  background-color: #e9ecef;
/*   border-radius: 10px; */
  font-size: 16px;
  color: #000;
}

.contact-us-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 20px;
}

.btn-submit-1 {
  height: 61px;	
  display: inline-block;
  padding: 14px 30px;
  background-color: #e33019 !important;
  color: white;
  border: none;
/*   border-radius: 30px !important; */
  font-size: 20px !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #002dcc;
}

.wpcf7-response-output {
  color: #4caf50;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.wpcf7-form-control .wpcf7-submit{
	font-size: 20px !important;
}



.advantages-box{
	box-shadow: none !important;
	background-color: black !important;
}
.advantages-h4, .disadvantages-h4{
	color: white !important;
	font-size: 25px !important;
}
.advantages-box li{
	font-size: 17px;
}
.disadvantages-box li{
	font-size: 17px;
}
.accordion-button{
	color: black !important;
	background-color: white !important;
	font-weight: 600;
	font-size: 16px !important;
}
.disadvantages-box{
	box-shadow: none !important;
	background-color: black !important;
}
.applications-h4 {
	color: black !important;
	font-size: 25px !important;
	margin: 10px 0px;
}
.applications-heading{
	font-size: 20px;
	margin-bottom: 10px !important;
}
.applications-downloads{
	background-color: white;
	margin: 50px 0px ;
	padding: 50px 0px;
}
.modelloop3d{
/* 	margin: 50px 0px ; */
	padding: 50px 0px;
}
.related-machines{
	background-color: #fff;
	padding: 50px 0px;
}
.related{
	margin: 0px !important;
}
.Casting-Process {
	background-color: white;
	margin: 50px 0px ;
	padding: 50px 0px;
}
.casting-h2{
	font-size: 40px !important;
}
.casting p , li{
   font-size: 18px !important;
}
.V-Process p {
	 font-size: 18px !important;
}
.V-Process h3{
	font-size: 40px !important;
}
#about-us{
	background:#f9f9f9 !important;
}
.about-us{
	margin: 20px 0px;
}
.why-choose{
	margin: 50px 0px;
   background-color: #fff;
}
.subscribe-section{
/* 	margin: 50px 0px ; */
	padding:50px 0px;
	background-color: #f9f9f9 !important;
}
.vision-mission{
	background-color: #f9f9f9 !important;
}
.durability{
	font-size: 20px;
}
.Casting-Section{
	background-color: white;
	margin: 50px 0px ;
	padding: 50px 0px;
}
.modelloop{
	margin: 0px !important;
}
.product-overview{
	background-color: white !important;
}
	.subscribe-section {
  background-color: #ddd; /* Light grey background */
}

.subscribe-form input[type="email"] {
	color: white;
	background-color:#383838;
    font-size: 15px;
    height: 50px;
    border: none;
    padding: 21px 20px;
    max-width: 300px;
}
.subscribe-form button {
  height: auto;
  padding: 12px 15px;
  margin: 0px !important;
  background-color: #e33019;
  border: none;
  border-radius: 10px !important;
  color: #fff;
  font-weight: 600;
}

.subscribe-form input[type="email"]::placeholder {
  color: #fff;
}


.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 1rem 0;
}
.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid #e0e0e0;
}
.card-header {
  background: #383838;
  padding: 16px 20px 14px;
}

.card-title span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right:5px;
}
.card-title {
  margin: 4px 0 2px;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
}
.card-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.card-body {
  padding: 14px 20px 18px;
}
.card-desc {
  font-size: 13px;
  color: #666666;
  margin: 0 0 12px;
  line-height: 1.5;
}
.card-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-item {
  font-size: 13px;
  color: #222222;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.arrow {
  color: #383838;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 1.5rem 0; }
.card { background: var(--color-background-primary); border: 0.5px solid #7a7a7a; border-radius: 5px; overflow: hidden; }
.card-img { width: 100%; aspect-ratio: 4/3; background:#484848; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--color-text-tertiary); font-size: 13px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-body { padding: 1rem 1.25rem; }
.gallery .card-title { font-size: 15px; font-weight: 500; color: #484848; margin: 0; }
.placeholder-icon { width: 40px; height: 40px; }

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.bg-black {
    background-color: #383838 !important;
}
.dropdown-toggle::after{
	display:none;
}
/* Contact Form 7 placeholder color fix */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #a9a5a5 !important; /* change color */
  opacity: 1;
}
  .cols-section {
    background: #f9f9f9;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
  }

  .cols-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0 auto;
  }

  .col-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .col-card:nth-child(1) { animation: enterUp 0.55s ease 0.1s forwards; }
  .col-card:nth-child(2) { animation: enterUp 0.55s ease 0.22s forwards; }
  .col-card:nth-child(3) { animation: enterUp 0.55s ease 0.34s forwards; }
  .col-card:nth-child(4) { animation: enterUp 0.55s ease 0.46s forwards; }

  .col-card:hover {
    border-color: #e33019;
    transform: translateY(-6px);
  }

 .col-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

  .col-img-placeholder {
  width: 100%;
  height: 270px;
  overflow: hidden;
  display: block;
  line-height: 0;
}

  .col-body {
    padding: 18px 16px 20px;
    border-top: 1px solid #e0e0e0;
    transition: border-color 0.3s ease;
  }

  .col-card:hover .col-body {
    border-color: #e33019;
  }

  .col-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
  }

  .col-card:hover .col-title {
    color: #e33019;
  }
  .top-bar-card {
    height: 3px;
    background: #e33019;
    width: 0;
    transition: width 0.35s ease;
  }

  .col-card:hover .top-bar {
    width: 100%;
  }

  @keyframes enterUp {
    to { opacity: 1; transform: translateY(0); }
  }
/* Large tablets */
@media (max-width: 1024px) {
  .cols-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .cols-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .cols-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .cols-section,
  .contact-form-section,
  .subscribe-section,
  .py-5,
  .mt-5,
  .Casting-Process,
  #contact,
  #process,
  #products,
  #foundry-form,
  #our-product,
  #industrial-systems,
  #company-section,
  #features-section,
  #form,
  #applications-section {
    padding: 40px 10px !important;
  }

  .col-md-6 {
    margin-bottom: 20px;
  }
	.container {
    padding: 2px !important;
  }
	.content-new{
		padding:0px 30px;
	}
}
