/* Add this at the very top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #000000;
  --accent: #ab601b;
  --light: #f2f2f2;
  --gray: #666666;
  --font-primary: 'Poppins'; /* Define font variable */
}

/* Remove or comment out the Georgia font-face declarations
@font-face {
  font-family: "georgiabold";
  src: url("../fonts/georgia_bold-webfont.woff") format("woff2"),
    url("georgia_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "georgiaitalic";
  src: url("georgia_italic-webfont.woff") format("woff2"),
    url("georgia_italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "georgiaregular";
  src: url("georgia_regular_font-webfont.woff") format("woff2"),
    url("georgia_regular_font-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
*/

body {
  font-family: var(--font-primary); /* Use Poppins everywhere */
  background: #f2f2f2;
  color: #000000;
  /* Remove the duplicate font-family declaration below */
  /* font-family: Arial, Helvetica, sans-serif; */
}

/* Update all other font-family declarations throughout your CSS */
/* For example: */

.banner-cnt-div h1,
.project-usp-item p,
.project-usp-item h2,
.project-title h3,
.project-title p,
.btn,
.nav-link,
.price_inner .rc_one,
.location-cnt ul li,
.about-developer-cnt p,
footer p,
.accordion button,
.modal-title,
.about-developer-form h4,
.faq-div .card h2 .btn,
.cta-section-1 h3,
.itawacta p,
.auto-popup-left h4,
.auto-popup-left ul li,
.contact-info,
.contact-form,
.services-section .section-title h3,
.service-item,
.vision-box h3,
.mission-box h3,
.operation-steps li,
.section-title h2,
.section-title h3,
.machinery-section .section-title h3,
.machine-table,
.industrial-machine-table,
.precision-instrument-list li,
.inquiry-title,
.inquiry-subtitle,
.inquiry-benefits li,
.vms-footer,
.gallery-section .section-title,
.gallery-content h4,
.gallery-content p {
  font-family: var(--font-primary);
}

/* For specific elements that might need different weights */
.btn {
  font-weight: 600; /* Make buttons bolder */
}

.project-title h3 {
  font-weight: 600;
}

.nav-link {
  font-weight: 500;
}

/* Add these if you need different font weights */
.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}
:root {
  --primary: #000000;
  --accent: #ab601b;
  --light: #f2f2f2;
  --gray: #666666;
}

@font-face {
  font-family: "georgiabold";
  src: url("../fonts/georgia_bold-webfont.woff") format("woff2"),
    url("georgia_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "georgiaitalic";
  src: url("georgia_italic-webfont.woff") format("woff2"),
    url("georgia_italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "georgiaregular";
  src: url("georgia_regular_font-webfont.woff") format("woff2"),
    url("georgia_regular_font-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Poppins";
  background: #f2f2f2;
  color: #000000;

  font-family: Arial, Helvetica, sans-serif;
}

.same-gap {
  margin-bottom: 30px;
}

img[width="1"] {
  display: none;
}

.btn {
  background-color: #ab601b;
  border-radius: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* HEADER CSS STARTS */
/* ===== Header Styles ===== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.4s ease;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Header when scrolled */
header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.container-fluid {
  padding: 0 30px;
}

.inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  z-index: 1001; /* Above overlay */
}

.logo img {
  transition: all 0.3s ease;
  max-height: 80px;
  width: auto;
}

header.scrolled .logo img {
  max-height: 50px;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 768px) {
  .container-fluid {
    padding: 0 15px;
  }
  
  .logo img {
    max-height: 60px;
  }
  
  header.scrolled .logo img {
    max-height: 40px;
  }
}

@media only screen and (max-width: 480px) {
  header {
    padding: 0px 0;
  }
  
  .container-fluid {
    padding: 0 10px;
  }
  
  .logo img {
    max-height: 50px;
  }
  
  header.scrolled {
    padding: 8px 0;
  }
  
  header.scrolled .logo img {
    max-height: 35px;
  }
}
/* ===== Navigation Menu ===== */
.menu {
  display: flex;
  align-items: center;
}

/* Hamburger Menu Button */
.button_container {
  position: relative;
  width: 35px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.button_container span {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.button_container span.top {
  top: 0;
}

.button_container span.middle {
  top: 50%;
  transform: translateY(-50%);
}

.button_container span.bottom {
  bottom: 0;
}

/* Active state for hamburger */
.button_container.active .top {
  transform: translateY(11px) rotate(45deg);
}

.button_container.active .middle {
  opacity: 0;
}

.button_container.active .bottom {
  transform: translateY(-11px) rotate(-45deg);
}

/* Overlay Menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.overlay-menu {
  text-align: center;
}

.overlay-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.overlay-menu li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.overlay.open li {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for menu items */
.overlay.open li:nth-child(1) {
  transition-delay: 0.15s;
}
.overlay.open li:nth-child(2) {
  transition-delay: 0.25s;
}
.overlay.open li:nth-child(3) {
  transition-delay: 0.35s;
}
.overlay.open li:nth-child(4) {
  transition-delay: 0.45s;
}
.overlay.open li:nth-child(5) {
  transition-delay: 0.55s;
}
.overlay.open li:nth-child(6) {
  transition-delay: 0.65s;
}
.overlay.open li:nth-child(7) {
  transition-delay: 0.75s;
}
.overlay.open li:nth-child(8) {
  transition-delay: 0.85s;
}

.nav-link {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover,
.nav-link:focus {
  color: #ab601b;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ab601b;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== Responsive Styles ===== */
@media (min-width: 992px) {
  /* Desktop Styles */
  .button_container {
    display: none;
  }

  .overlay {
    position: static;
    height: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .overlay-menu ul {
    display: flex;
    gap: 25px;
  }

  .overlay-menu li {
    margin: 0;
    opacity: 1;
    transform: none;
  }

  .nav-link {
    font-size: 1rem;
    padding: 10px 0;
  }

  .nav-link::after {
    bottom: 5px;
  }
}

@media (max-width: 991px) {
  .container-fluid {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .logo img {
    max-height: 50px;
  }

  header.scrolled .logo img {
    max-height: 40px;
  }

  .nav-link {
    font-size: 1.3rem;
  }
}

@media (max-width: 575px) {
  .container-fluid {
    padding: 0 15px;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}
/* HEADER CSS ENDS */
.banner {
  position: relative;
  height: 100vh;
}

.banner .swiper1 {
  height: 100%;
}

.banner-wrap-div {
  height: 100%;
}

.banner-img {
  height: 100%;
}

.banner-img .img-fluid {
  height: 100%;
}

/* banner */
.banner-cnt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 80px;
  z-index: 1;
}

.banner-cnt-div h1 {
  color: #fff;
  font-size: 30px;
}

.banner-cnt-div p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}

.banner-enquier-btn {
  position: fixed;
  background: #fff;
  transform: rotate(270deg);
  right: -61px;
  top: 50%;
  z-index: 1;
}

.banner-enquier-btn .btn {
  /* color: #000; */
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.project-usp {
  background-color: #000000;
}

.project-usp-item p {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 18px;
  text-transform: uppercase;
}

.project-usp-item h2 {
  color: #fff;
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.project-usp-item {
  padding: 15px 0;
  text-align: center;
}

.project-title h3 {
  margin-bottom: 25px;
  color: #000;
  font-size: 35px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}

.project-title p {
  margin-bottom: 10;
  color: #000;
  font-size: 18px;
  text-align: center;
  font-style: poppins;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #000000;
  text-align: center;
}

.project-highlight .table td .value {
  font-size: 20px;
}

.project-highlight .table td .metric {
  font-size: 16px;
}

.highlight-cnt {
  background-color: #000000;
  text-align: center;
  padding: 20px 20px 4px 20px;
}

.highlight-cnt p {
  color: #fff;
  height: 50px;
}

.other-highlight-item {
  height: 100%;
  background-color: #000000;
}

.know-more {
  text-align: center;
  margin: 15px 0;
}

.price_inner {
  border: 1px solid rgb(54, 41, 110, 30%);
  background-color: #fff;
  position: relative;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 0 5px gray;
}

.price_inner .rc_one {
  border-bottom: 1px solid rgb(54, 41, 110, 15%);
  line-height: 170%;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #262a29;
}

.price_inner .rc_one span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: none;
}

.portfolio-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 1;
}

.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 1;
}

.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid #262a29;
  border-right: 1px solid #262a29;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid #262a29;
  border-left: 1px solid #262a29;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item {
  position: relative;
  margin-top: 20px;
}

.portfolio-item:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}

.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #262a29;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}

.portfolio-overlay .magnify-icon i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
  position: relative;
  top: 0;
}

.portfolio-item .overlay-content {
  position: relative;
  z-index: 9;
}

.location-cnt ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.location-cnt ul li {
  font-size: 18px;
  margin-bottom: 15px;
}

.accordion .fa {
  margin-right: 0.5rem;
}

.accordion button,
.accordion button:hover,
.accordion button:focus {
  text-decoration: none;
}

footer {
  text-align: center;
  background-color: #000000;
  padding: 5px 0;
  width: 100%;
  display: inline-block;
}

footer p {
  color: #fff;
  font-size: 14px;
  margin: 10px 0 10px 0;
  line-height: 20px;
}

.floor-master-slider-div {
  position: relative;
  overflow: hidden;
}

.mySwiper .swiper-slide {
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.key-feature-div .table-bordered td,
.key-feature-div .table-bordered th {
  width: 33.33%;
}

.project-highlight .table-bordered td,
.project-highlight .table-bordered th {
  width: 25%;
}

.about-developer {
  padding: 0px 0;
}

.about-developer-cnt p {
  margin: 15px 0 0 0;
  line-height: 30px;
  text-align: justify;
  color: #000000;
}

/* .about-developer-form {
  border: 2px solid #00162c;
  padding: 20px;
  text-align: center;
} */
.about-developer-form {
  padding: 15px;
  text-align: center;
  background-color: #9a7d26;
}

.about-developer-form h4 {
  color: #fff;
  font-size: 30px;
  /* text-transform: uppercase; */
  font-weight: 600;
  margin-bottom: 25px;
}

.form-control {
  border-radius: 0;
  border-color: #000;
  padding: 10px 15px;
  height: auto;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.countryCode {
  position: absolute;
  left: 1px;
  width: 140px;
  border-radius: 0;
  border: none;
  height: 96%;
  top: 1px;
}

.countryCode ~ .form-control {
  padding-left: 150px;
}

.about-developer-form .submit-btn {
  width: 100%;
  padding: 10px 15px;
}

.know-more .btn {
  background-color: #ab601b;
  color: #fff;
}

.know-more .btn a:hover {
  background-color: #000000;
  color: #fff;
}

.price_inner .know-more {
  margin: 15px 0 0 0;
}

.price_inner .know-more .btn {
  background-color: #ab601b;
  color: #fff;
}

.floor-master-div .know-more .btn {
  margin-bottom: 0;
  background-color: #000000;
  color: #fff;
}

.floor-master-div .know-more .btn a:hover {
  margin-bottom: 0;
  background-color: #000000;
  color: #fff;
}

.modal-title {
  color: #000000;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

a.whatsapp_float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 9;
  background-color: #31c131;
  font-size: 25px;
  padding: 0 0;
  color: #fff;
  text-decoration: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.calltoactionresponsive {
  display: none;
}

.faq-div .card h2 .btn {
  width: 100%;
  text-align: left;
  background-color: transparent;
  color: #000;
  font-weight: 600;
  position: relative;
  display: block;
  padding: 15px 35px 15px 15px;
  white-space: normal;
}

.faq-div .card h2 .btn .fa {
  position: absolute;
  right: 12px;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}

.floor-master .portfolio-item {
  margin-bottom: 20px;
}

.card-header {
  padding: 0;
}

.mySwiper2 {
  margin-bottom: 15px;
}

.about-developer-form .contact-number a {
  width: 100%;
  margin-top: 20px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  position: static;
  padding: 10px 15px;
  transform: translateY(0);
}

.modal-body .about-developer-form {
  background-color: transparent;
  padding: 0;
}

.project-video-inner-div {
  position: relative;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}

.pad-tb {
  padding-top: 90px;
  padding-bottom: 90px;
}

.cta-section-1 {
  background-image: url("https://static.vecteezy.com/system/resources/thumbnails/050/680/626/small_2x/group-of-four-young-adults-collaborating-on-a-technology-project-in-a-bright-modern-workspace-photo.jpg");
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-size: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  background-attachment: fixed;
}

.cta-section-1::before {
  content: "";
  position: absolute;
  background: rgb(0 0 0 / 60%);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
}

.itawacta {
  position: relative;
}

.cta-section-1 h3 {
  color: #fff;
}

.itawacta p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8em;
  text-align: center;
  margin: 0;
}

.modal-header .close {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 0;
  margin: 0;
}

/* banner */

/* auto popup desing */
.auto-popup-left {
  background-color: #fafafa;
  padding: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
}

.auto-popup-left h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.auto-popup-right {
  text-align: center;
}

.auto-popup-logo {
  text-align: center;        /* center the logo */
  margin: 20px 0;            /* spacing above and below */
}

/* Popup Logo Image */
.modal-logo {
  width: 323px;              /* fixed width */
  height: auto;              /* maintain aspect ratio */
  border-radius: 7px;        /* rounded corners */
  max-width: 90%;            /* responsive on smaller screens */
  display: inline-block;
}
.modal-dialog {
  max-width: 615px;
}

.auto-popup-left ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.auto-popup-left ul li {
  margin-bottom: 10px;
}

.auto-popup-right .btn {
  width: 100%;
}

a.popup-mobile-number {
  background-color: #000000;
  color: #fff !important;
  text-align: center;
  padding: 15px 0;
  font-size: 20px;
  text-decoration: none;
}

button.close {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 30px;
  z-index: 9;
}

.modal-dialog .modal-content .modal-body {
  padding: 15px;
}

/* auto popup desing */

/* RESPONSIVE CSS STARTS HERE */
@media only screen and (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}

@media only screen and (max-width: 1400px) {
  .logo {
    max-width: 170px;
  }
  .logo img {
    max-width: 40px;
  }

  .menu ul li a {
    font-size: 16px;
    padding: 10px 10px;
  }

  .contact-number a {
    font-size: 18px;
    padding: 10px 10px;
  }

  .banner-cnt-div h1 {
    font-size: 25px;
  }

  .project-usp-item p {
    font-size: 16px;
  }

  .project-usp-item h2 {
    font-size: 18px;
  }

  .project-title h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-family: Arial;
  }

  .project-title p {
    font-size: 16px;
    margin-top: -8px;
  }

  .project-highlight .table-bordered td .img-fluid {
    width: 20px;
  }

  .project-highlight .table td .value {
    font-size: 16px;
  }

  .project-highlight .table td .metric {
    font-size: 16px;
    color: #000000;
  }

  .highlight-cnt p {
    font-size: 15px;
  }

  .btn {
    font-size: 16px;
  }

  .price_inner .rc_one span {
    font-size: 1rem;
  }

  .location-cnt ul li {
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 10px;
  }

  .modal-title {
    font-size: 20px;
  }

  .about-developer-form h4 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 1199px) {
  .logo {
    max-width: 150px;
  }

  .menu ul li a {
    padding: 5px 7px;
    font-size: 8px;
  }

  .contact-number a {
    font-size: 14px;
  }

  .banner-cnt-div h1 {
    font-size: 22px;
  }

  .banner-cnt-div p {
    font-size: 15px;
  }

  .project-usp-item p {
    font-size: 15px;
  }

  .project-usp-item h2 {
    font-size: 15px;
  }

  .project-title h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .location-cnt ul li {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .about-developer-cnt p {
    font-size: 15px;
  }

  .same-gap {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .button_container {
    position: absolute;
    top: 50%;
    right: 0;
    width: 34px;
    height: 25px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .button_container span {
    background: #fff;
    border: none;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
  }

  .button_container span:nth-of-type(2) {
    top: 11px;
  }

  .button_container span:nth-of-type(3) {
    top: 17px;
  }

  .contact-number a {
    padding: 0;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #fff;
    font-size: 18px;
  }

  @-webkit-keyframes widgetPulse {
    0% {
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
      opacity: 1;
    }

    100% {
      -webkit-transform: scale(1.8, 1.8);
      transform: scale(1.8, 1.8);
      opacity: 0;
    }
  }

  @keyframes widgetPulse2 {
    0% {
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
      opacity: 1;
    }

    100% {
      -webkit-transform: scale(1.4, 1.4);
      transform: scale(1.4, 1.4);
      opacity: 0;
    }
  }

  .contact-number a span {
    /* display: none; */
  }

  .overlay {
    position: fixed;
    background: #fff;
    top: 64px;
    left: 0;
    width: 100%;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    max-height: 0;
    -webkit-transition: max-height 0.3s, -webkit-transform 0.3s;
    transition: max-height 0.3s, -webkit-transform 0.3s;
    -o-transition: max-height 0.3s, transform 0.3s;
    transition: max-height 0.3s, transform 0.3s;
    transition: max-height 0.3s, transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    overflow: auto;
  }

  .overlay nav {
    text-align: center;
  }

  .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    width: 100%;
  }

  .overlay ul li {
    display: block;
    position: relative;
    opacity: 0;
    margin: 0;
  }

  .overlay ul li a,
  .overlay ul li span {
    display: block;
    position: relative;
    color: #000;
    text-decoration: none;
    overflow: hidden;
    font-size: 18px;
  }

  .overlay.open li {
    -webkit-animation: fadeInRight 0.5s ease forwards;
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 0s;
    animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
    opacity: 1;
    border-bottom: 1px solid gray;
  }

  .button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #fff;
  }

  .button_container.active .middle {
    opacity: 0;
    background: #fff;
  }

  .button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff;
  }

  .overlay.open {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    max-height: 100vh;
  }

  .calltoactionresponsive {
    display: flex;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .calltoactionresponsive a,
  .calltoactionresponsive span {
    width: 50%;
    text-align: center;
    background-color: #1e2f5c;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    text-decoration: none;
  }

  .calltoactionresponsive a.mobile-whatsaap-icon {
    background-color: #31c131;
  }

  .calltoactionresponsive a.mobile-whatsaap-icon .fa {
    font-size: 16px;
    margin: 0 10px 0 0;
  }

  a.whatsapp_float {
    display: none;
  }

  .project-usp-item p {
    font-size: 14px;
  }

  .project-usp-item h2 {
    font-size: 14px;
  }

  .project-title h3 {
    font-size: 20px;
  }

  .highlight-cnt {
    padding: 15px 8px 4px 8px;
  }

  .price_inner {
    margin-bottom: 20px;
  }

  .about-developer-form h4 {
    font-size: 20px;
  }

  .about-developer-form {
    padding: 12px;
  }

  footer {
    padding-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .border-right-size {
    border-bottom: 1px solid #fff;
  }

  .border-right-type {
    border-right: none !important;
    border-bottom: 1px solid #fff;
  }

  .project-usp .container {
    max-width: 100%;
  }

  .banner-enquier-btn {
    display: none;
  }

  .project-highlight .table-bordered td,
  .project-highlight .table-bordered th {
    width: auto;
    padding: 5px;
  }

  .project-highlight .table td .value {
    font-size: 14px;
  }

  .project-highlight .table td .metric {
    font-size: 13px;
    margin: 0;
  }

  .highlight-cnt {
    padding: 20px 20px 4px 20px;
  }

  .highlight-cnt p {
    height: auto;
  }

  .other-highlight-item {
    height: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .key-feature-div .table-bordered td p,
  .key-feature-div .table-bordered th p {
    font-size: 13px;
  }

  .location-cnt {
    margin-top: 20px;
  }

  .about-developer-cnt {
    text-align: center;
  }

  .about-developer-form {
    margin-top: 20px;
  }

  .faq-div .card h2 .btn {
    font-size: 14px;
  }

  .faq-div .card-body p {
    font-size: 14px;
  }

  .banner {
    height: auto;
  }

  .banner-cnt {
    display: none;
  }

  /* .mobile-form {
    padding: 0px 0 0;
  } */

  .mobile-configuration-title {
    border-bottom: 1px dashed #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .mobile-configuration-title h1 {
    font-size: 30px;
    margin: 0;
  }

  .mobile-configuration-title p {
    margin: 0;
  }

  .mobile-configuration-type p span {
    font-size: 18px;
  }

  .mobile-configuration {
    text-align: center;
  }

  .mobile-configuration-type p {
    margin: 0;
  }

  .mobile-configuration-type {
    border-bottom: 1px dashed #000;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .project-usp {
    display: none;
  }

  .usp-item {
    display: flex;
    margin-bottom: 30px;
  }

  .usp-img {
    width: 45px;
  }

  .usp-cnt {
    width: 85%;
    padding: 0 0 0 10px;
  }

  .usp-cnt span {
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
  }

  .usp-cnt p {
    font-size: 14px;
  }

  .mobile-usp-div-inner {
    border-bottom: 1px solid #153276;
    padding-top: 20px;
  }

  .highlight-content ul {
    padding: 0;
    list-style: none;
  }

  .google-location-map {
    margin-top: 20px;
  }

  .google-location-map iframe {
    max-width: 100%;
    height: 300px;
  }

  .price_inner .know-more .btn {
    width: 100%;
  }

  .know-more .btn {
    width: 100%;
  }

  #highlight .know-more {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 575px) {
  .calltoactionresponsive a,
  .calltoactionresponsive span {
    padding: 8px;
    font-size: 12px;
  }

  a.whatsapp_float {
    width: 35px;
    height: 34px;
  }

  .banner-cnt-div h1 {
    font-size: 20px;
  }

  .banner-cnt-div p {
    font-size: 14px;
  }

  .project-title h3 {
    font-size: 16px;
    padding: 17px 0 0 0;
  }

  .project-title p {
    font-size: 14px;
  }

  .about-developer-cnt p {
    font-size: 13px;
  }

  .about-developer-form h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  footer p {
    font-size: 10px;
    line-height: 15px;
  }

  .about-developer {
    padding: 25px 0;
  }

  .same-gap {
    margin-bottom: 20px;
  }

  .logo {
    max-width: 80px;
  }

  .contact-number a {
    font-size: 16px;
  }

  .overlay {
    top: 64px;
  }

  .play-btn {
    width: 40px;
  }

  .usp-cnt span {
    font-size: 16px;
  }

  .usp-cnt p {
    font-size: 13px;
  }

  .usp-item {
    margin-bottom: 10px;
  }

  .mobile-configuration-title h1 {
    font-size: 22px;
  }

  .pad-tb {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .itawacta p {
    font-size: 14px;
    line-height: normal;
  }

  .faq-div .card h2 .btn {
    font-size: 13px;
    padding: 10px 25px 10px 10px;
  }

  .faq-div .card-body p {
    font-size: 13px;
    margin: 0;
  }

  .card .card-body {
    padding: 10px;
  }
}

.btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.btn:hover span {
  padding-right: 25px;
}

.btn:hover span:after {
  opacity: 1;
  right: 0;
}
/* Contact Section Styles */
.industrial-contact {
  padding: 80px 0;
  background: #1a1a1a; /* Dark background to match banner */
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #ab601b; /* Gold heading */
  margin-bottom: 15px;
}

.section-header p {
  color: #ccc; /* Light gray for readability */
  font-size: 1.1rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #262626; /* Dark gray card */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #262626;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.icon {
  width: 50px;
  height: 50px;
  background: #ab601b; /* Gold icon background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #1a1a1a; /* Dark text inside gold */
  font-size: 1.2rem;
}
.icons {
  width: 50px;
  height: 50px;
  background: #ab601b; /* Gold icon background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #1a1a1a; /* Dark text inside gold */
  font-size: 1.2rem;
}
.details h4 {
  font-size: 1.2rem;
  color: #ab601b;
  margin-bottom: 5px;
}

.details p ,.details a {
  color: #ffffff;
  line-height: 1.6;
}

.emails {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 8px 20px; /* spacing */
  margin-top: 8px;
}

.emails a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

h4 {
  font-size: 1.2rem;
  color: #ab601b;
  margin-bottom: 5px;
}

.location-advantages {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.location-advantages h4 {
  font-size: 1.2rem;
  color: #ab601b;
  margin-bottom: 15px;
}

.location-advantages ul {
  list-style: none;
}

.location-advantages li {
  margin-bottom: 10px;
  color: #eee;
}

.location-advantages i {
  color: #ab601b; /* Gold tick marks */
  margin-right: 8px;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #ab601b;
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 4px;
  font-size: 1rem;
  color: #000000;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #ab601b;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #7c410a; /* Slightly darker gold on hover */
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    min-width: 100%;
  }
}
/* ============================================= */
/* SERVICES SECTION */
/* ============================================= */
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.services-section .section-title h3 {
    font-size: 2.5rem;
    color: #222;
    font-weight: 600;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
     font-style: poppins;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Responsive Columns */
@media (min-width: 768px) {
    .col-md-3 {
        width: 25%;
        float: left;
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .col-sm-6 {
        width: 50%;
        float: left;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .col-sm-6 {
        width: 100%;
        padding: 0 10px;
    }
}

/* Container styling */
.container::after {
    content: "";
    display: table;
    clear: both;
}


/* ============================================= */
/* VISION & MISSION SECTION */
.vision-mission-row {
  margin-top: 20px;
}

.vision-box,
.mission-box {
  padding: 40px;
  background: #ab601b;
  color: white;
  border-radius: 8px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
   font-style: poppins;
}

.vision-box:hover,
.mission-box:hover {
  transform: translateY(-10px);
}

/* Heading style */
.vision-box h3,
.mission-box h3 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  font-weight: bold;
}

.vision-box h3::after,
.mission-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

/* ✅ Mobile Responsive */
@media (max-width: 767px) {
  .vision-mission-row .col-md-6 {
    margin-bottom: 20px; /* gap between stacked cards */
  }
}

/* ============================================= */
/* CUSTOMER SATISFACTION SECTION */
/* ============================================= */
.customer-satisfaction {
  background: var(--light);
  padding: 80px 0;
}

/* Certificate Box Styling */
.certificate-box {
  text-align: center;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.certificate-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


/* Image Styling */
.certificate-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: block;
  object-fit: contain;
  max-height: 400px;
  margin: 0 auto;
}

.certificate-box:hover img {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Optional Decorative Elements */
.certificate-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ab601b, #000000);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .certificate-box {
    padding: 20px;
    border-radius: 10px;
  }

  .certificate-box img {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .certificate-box {
    padding: 15px;
    border-radius: 8px;
  }

  .certificate-box img {
    max-height: 250px;
    border-radius: 6px;
  }
}

/* ============================================= */
/* OPERATION PROFILE SECTION */
/* ============================================= */
.operation-profile {
  padding: 80px 0;
}

.operation-steps {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
  gap: 30px;
}


.operation-steps li {
   background: #ab601b; /* soft warm cream */
color: white;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  padding-left: 80px;
  transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.operation-steps li:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.operation-steps li strong {
  color: #ffd0ab; /* Light cream color (adjust as needed) */
  font-size: 15px;
 
}


.operation-steps li h4 {
  position: absolute;
  left: 30px;
  top: 30px;
  font-size: 36px;
  color: white;
  margin: 0;
  opacity: 0.7;
}

/* ============================================= */
/* COMMON SECTION STYLES */
/* ============================================= */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-size: 36px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 18px;
  max-width: 800px;
  margin: 20px auto 0;
}

.same-gap {
  padding: 80px 0;
}
/* ===== MACHINERY SECTION ===== */
.machinery-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.machinery-section .section-title h3 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.machinery-section .section-title h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ab601b;
}

.inventory-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  max-width: 800px;
}

/* Modern Centered Table Styling */
.machine-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
}

.machine-table thead {
  background-color: #000000;
}

.machine-table th {
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.machine-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}

.machine-table tr:last-child td {
  border-bottom: none;
}

.machine-table tr:hover td {
  background-color: #f5f5f5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .machinery-section {
    padding: 40px 0;
  }

  .machinery-section .section-title h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .inventory-card {
    padding: 20px;
  }

  .machine-table th,
  .machine-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .machine-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .inventory-card {
    padding: 15px;
  }
}
/* ===== Industrial Machinery Section ===== */
.industrial-machinery-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
}

.machine-inventory-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.machine-inventory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.industrial-machine-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
}

.industrial-machine-table thead {
  background-color: #ab601b;
}

.industrial-machine-table th {
  color: #fff;
  padding: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.industrial-machine-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e9ecef;
  color: #495057;
}

.industrial-machine-table tr:last-child td {
  border-bottom: none;
}

.industrial-machine-table tr:hover td {
  background-color: #f1f8ff;
}

/* ===== Precision Instruments Section ===== */
.precision-instruments-section {
  padding: 80px 0;
}

.instrument-catalog-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.instrument-catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.precision-instrument-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.precision-instrument-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 16px;
  color: #343a40;
  border-bottom: 1px dashed #dee2e6;
}

.precision-instrument-list li:before {
  content: "→";
  color: #ab601b;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.instrument-calibration-badge {
  background: #e9f7ef;
  color: #28a745;
  padding: 8px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}
/* Image inside instrument card */
.precision-instrument-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.precision-instrument-img:hover {
  transform: scale(1.05);
}

/* ===== Common Styles ===== */
.section-gap {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}
.section-title h3 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
 
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
  .section-gap {
    padding: 60px 0;
  }

  .machine-inventory-card,
  .instrument-catalog-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .industrial-machine-table th,
  .industrial-machine-table td {
    padding: 10px 12px;
  }

  .precision-instrument-list li {
    padding: 10px 0 10px 25px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .section-gap {
    padding: 50px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .machine-inventory-card,
  .instrument-catalog-card {
    padding: 20px;
  }

  .precision-instrument-list li {
    font-size: 14px;
  }
}

/* Inquiry Section Styles */
.inquiry-section {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.inquiry-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;

  border-radius: 50%;
  transform: translate(30%, -30%);
}

.inquiry-header {
  margin-bottom: 40px;
}

.inquiry-title {
  font-size: 2.2rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.inquiry-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ab601b;
}

.inquiry-subtitle {
  font-size: 1.1rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto;
}

.inquiry-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 22, 44, 0.1);
  overflow: hidden;
}

.inquiry-info {
  padding: 30px;
  background: #f8f9fa;
  height: 100%;
}

.inquiry-info h4 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.inquiry-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.inquiry-benefits li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.inquiry-benefits i {
  color: #ab601b;
  position: absolute;
  left: 0;
  top: 10px;
}

.contact-alternative {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.contact-alternative p {
  color: #6c757d;
  margin-bottom: 10px;
}

.phone-link {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.phone-link:hover {
  color: #864910;
}

.phone-link i {
  margin-right: 8px;
}

.inquiry-form {
  padding: 30px;
}

.form-control {
  border-radius: 4px;
  border: 1px solid #ced4da;
  padding: 12px 15px;
  margin-bottom: 20px;
  height: auto;
}

.form-control:focus {
  border-color: #000000;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.inquiry-submit-btn {
  background: #ab601b;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inquiry-submit-btn:hover {
  background: #864910;
  transform: translateY(-2px);
}

.inquiry-submit-btn i {
  margin-left: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .inquiry-info {
    padding: 20px;
  }

  .inquiry-form {
    padding: 20px;
  }

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

@media (max-width: 576px) {
  .inquiry-section {
    padding: 50px 0;
  }

  .inquiry-title {
    font-size: 1.5rem;
  }

  .inquiry-subtitle {
    font-size: 1rem;
  }
}

/* Footer Styles */
.vms-footer {
  background-color: rgba(0, 0, 0, 0.9); /* Dark Navy */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  width: 100px;
  border-radius: 8px;
}

.footer-logo p {
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid #ab601b; /* Accent Red */
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #ab601b; /* Accent Red */
}


/* Contact Info */
.footer-contact p {
  margin: 5px 0;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ab601b;
}

/* Optional: Wrap long emails for mobile */
.footer-contact .email-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Social Media Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ab601b;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links h4,
  .footer-contact h4 {
    border-bottom: none;
  }

  .footer-contact .email-list {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}


/* ================================
   Gallery Section
================================ */
.gallery-section {
  padding: 60px 0;
  background: #f9fafb; /* optional subtle background */
}

.gallary-container {
  margin-top: 50px;
}

/* Section Title */
.gallery-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000; 
  margin-bottom: 10px;
  text-align: center;
}

.gallery-section .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
}

/* Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Always 2 per row on desktop */
  gap: 24px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* On mobile: 1 per row */
  }
}

/* Gallery Card */
.gallery-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
    border-top: 4px solid #ab601b;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image */
.gallery-item img {
  width: 100%;
  height: auto;            /* natural height */
  max-height: 260px;       /* control max height */
  object-fit: contain;     /* show entire image */
  background: #fff;        /* fill empty space if aspect ratio differs */
margin-top: 20px;

}

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

/* Content */
.gallery-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
}

.gallery-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004080;
  margin-bottom: 8px;
}

.gallery-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Buttons */
.gallery-btn {
  display: inline-block;
  padding: 10px 18px;
  background: rgb(171, 96, 27);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.gallery-btn:hover {
  background: rgb(129, 70, 15);
  transform: scale(1.05);
  color: white;
}
.gallery-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;  
  margin: 12px 0;
}

  body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f5f5f5;
      color: #333;
    }

    .gallery-section {
      padding: 50px 20px;
      max-width: 1300px;
      margin: auto;
    }

    .gallery-section h2 {
      text-align: center;
      font-size: 34px;
      margin-bottom: 15px;
      color: #222;
    }

    .gallery-section p {
      text-align: center;
      max-width: 850px;
      margin: auto;
      margin-bottom: 40px;
      font-size: 16px;
      color: #555;
    }

    .category {
      margin-bottom: 50px;
    }

    .category h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #444;
      border-left: 5px solid #ab601b;
      padding-left: 10px;
    }

    .photo-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }

    .photo-row img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.15);
      transition: transform 0.3s;
    }

    .photo-row img:hover {
      transform: scale(1.05);
    }
    /* General Mobile First Adjustments */
@media (max-width: 1400px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
  .banner-cnt-div h1 {
    font-size: 28px;
  }
  
  .project-title h3 {
    font-size: 28px;
  }
  
  .section-title h2 {
    font-size: 30px;
  }
  
  .operation-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices (767px and below) */
@media (max-width: 767px) {
  /* Header adjustments */
  header {
    padding: 1px 0;
  }
  
  .logo img {
    max-height: 45px;
  }
  
  header.scrolled .logo img {
    max-height: 35px;
  }
  
  /* Banner adjustments */
  .banner {
    height: auto;
    min-height: 10vh;
  }
  
  .banner-cnt {
    bottom: 40px;
  }
  
  .banner-cnt-div h1 {
    font-size: 22px;
  }
  
  .banner-cnt-div p {
    font-size: 14px;
  }
  
  /* Section spacing */
  .same-gap, 
  .pad-tb {
    padding: 40px 0;
  }
  
  /* Project USP */
  .project-usp-item {
    padding: 10px 0;
    margin-bottom: 15px;
  }
  
  .project-usp-item p {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .project-usp-item h2 {
    font-size: 16px;
  }
  
  /* Project title */
  .project-title h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .project-title p {
    font-size: 10px;
  }
  
  /* Tables */
  .table-responsive {
    overflow-x: auto;
    display: block;
    width: 100%;
  }
  
  .project-highlight .table td .value {
    font-size: 14px;
  }
  
  .project-highlight .table td .metric {
    font-size: 12px;
  }
  
  /* Buttons */
  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  /* Forms */
  .form-control {
    font-size: 14px;
  }
  
  .countryCode {
    width: 100px;
  }
  
  .countryCode ~ .form-control {
    padding-left: 110px;
  }
  
  /* Vision & Mission */
  .vision-box, 
  .mission-box {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  /* Operation Steps */
  .operation-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .operation-steps li {
    padding: 20px 20px 20px 65px;
  }
  
  .operation-steps li h4 {
    left: 20px;
    top: 20px;
    font-size: 28px;
  }
  
  /* Machinery Tables */
  .machine-table, 
  .industrial-machine-table {
    font-size: 14px;
  }
  
  .machine-table th, 
  .machine-table td,
  .industrial-machine-table th, 
  .industrial-machine-table td {
    padding: 8px 10px;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-item {
    min-height: 280px;
      border-top: 4px solid #ab601b;
  }
  
  .gallery-item img {
    height: 160px;
  }
  
  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-links ul {
    margin-bottom: 20px;
  }
  
  /* Contact section */
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info, 
  .contact-form {
    min-width: 100%;
  }
  
  /* Inquiry section */
  .inquiry-title {
    font-size: 24px;
  }
  
  .inquiry-card {
    flex-direction: column;
  }
  
  /* Services section */
  .service-item {
    margin-bottom: 20px;
  }
  
  /* Certificate box */
  .certificate-box {
    padding: 20px;
  }
  
  .certificate-box img {
    max-height: 250px;
  }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .container-fluid {
    padding: 0 10px;
  }
  
  .banner-cnt-div h1 {
    font-size: 18px;
  }
  
  .project-title h3 {
    font-size: 18px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title h2:after {
    width: 60px;
  }
  
  .btn {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .vision-box h3, 
  .mission-box h3 {
    font-size: 18px;
  }
  
  .operation-steps li {
    padding: 15px 15px 15px 55px;
  }
  
  .operation-steps li h4 {
    font-size: 24px;
    left: 15px;
    top: 15px;
  }
  
  .machine-table, 
  .industrial-machine-table {
    font-size: 12px;
  }
  
  .gallery-item {
    min-height: 250px;
      border-top: 3px solid #ab601b;
  }
  
  .gallery-item img {
    height: 140px;
  }
  
  .inquiry-title {
    font-size: 20px;
  }
  
  /* Call to action buttons */
  .calltoactionresponsive a, 
  .calltoactionresponsive span {
    font-size: 11px;
    padding: 8px 5px;
  }
  
  /* WhatsApp float button */
  a.whatsapp_float {
    width: 40px;
    height: 40px;
    font-size: 20px;
    left: 15px;
    bottom: 20px;
  }
}

/* Orientation-specific adjustments */
@media (max-width: 767px) and (orientation: landscape) {
  .banner {
    min-height: 100vh;
  }
  
  .banner-cnt {
    bottom: 30px;
  }
}

/* High-resolution devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Add any high-resolution specific styles if needed */
}

/* Print styles */
@media print {
  header, 
  footer, 
  .btn, 
  .banner-enquier-btn,
  .calltoactionresponsive,
  a.whatsapp_float {
    display: none !important;
  }
  
  body, 
  .container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ============================================= */
/* TOUCH DEVICE OPTIMIZATIONS */
/* ============================================= */
@media (hover: none) and (pointer: coarse) {
  /* Improve touch target sizes */
  .btn, 
  .nav-link, 
  .form-control,
  .gallery-item {
    min-height: 44px; /* Apple's recommended minimum touch target size */
  }
  
  /* Remove hover effects on touch devices */
  .portfolio-item:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
  }
  
  .service-item:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
}

/* ============================================= */
/* ACCESSIBILITY IMPROVEMENTS */
/* ============================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .portfolio-overlay,
  .service-item,
  .vision-box,
  .mission-box,
  .certificate-box {
    transition: none !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* This will ensure text remains readable in dark mode */
  body {
    color: #f2f2f2;
    background: #121212;
  }
  
  .project-title h3,
  .project-title p,
  .about-developer-cnt p {
    color: #f2f2f2;
  }
  
  .service-item {
    background-color: #1e1e1e;
    color: #f2f2f2;
  }
}

/* ============================================= */
/* UTILITY CLASSES FOR RESPONSIVE DESIGN */
/* ============================================= */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.tablet-only {
  display: none;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .tablet-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  .tablet-only {
    display: none;
  }
}

/* Responsive text alignment */
.text-center-mobile {
  text-align: left;
}

@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center;
  }
}

/* Responsive spacing */
.mb-mobile-0 {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .mb-mobile-0 {
    margin-bottom: 0;
  }
}

/* Responsive flex behaviors */
.flex-mobile-column {
  display: flex;
  flex-direction: row;
}

@media (max-width: 767px) {
  .flex-mobile-column {
    flex-direction: column;
  }
}
.social-icons {
  margin-top: 15px;
  margin-left: 30px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 22px;
  color: white; /* default color */
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0d9488; /* teal highlight */
}
.recognition-content {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

.recognition-content p {
  margin-bottom: 15px;
}

.recognition-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.recognition-content ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

.recognition-content strong {
  font-weight: 600;
}
/* Award cards */
.award-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  max-width: 320px;   /* ✅ small card size */
  margin: 0 auto;
}

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

.award-card:hover {
  transform: scale(1.03);
}

/* Responsive layout */
@media (max-width: 767px) {
  .award-column {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .award-card {
    flex: 1 1 45%;
    max-width: 200px;
  }
}
/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  /* height: 100vh; */
   /* full screen */
  overflow: hidden;
}

.banner-swiper {
  width: 100%;
  height: 100%;
}

.banner-img {
  width: 100%;
  height: 100%;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 110px;
  max-height: 100vh;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .banner-img img {
    height: auto;
    max-height: none;
    object-fit: contain; /* or 'cover', depending on need */
    margin: 0; /* remove margin-top on mobile */
    margin-top: 20px;
  }
}

/* Desktop & Mobile Control */
.desktop-img {
  display: block;
}
.mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }
  .mobile-img {
    display: block;
  }
}

/* Navigation Buttons */
.banner-swiper-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}

/* -----------------------
   Basic Reset
------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

/* -----------------------
   Header Styles
------------------------ */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #111;
  padding: 15px 0;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  max-height: 60px;
  border-radius: 10px;
}

/* -----------------------
   Desktop Menu (Hidden)
------------------------ */
.site-menu-toggle {
  position: relative;
}

.menu-toggle-button {
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.menu-toggle-button .bar {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger to X Animation */
.menu-toggle-button.active .top {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle-button.active .middle {
  opacity: 0;
}

.menu-toggle-button.active .bottom {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -----------------------
   Mobile Overlay Menu
------------------------ */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.96);
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-overlay-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-overlay-menu li {
  margin: 15px 0;
}

.mobile-overlay-menu a {
  color: #fff;
  font-size: 22px;
  transition: color 0.3s;
}

.mobile-overlay-menu a:hover {
  color: #f0c040;
}

/* -----------------------
   Banner Section
------------------------ */
.home-banner {
  margin-top: 110px; /* height of header */
  height: calc(100vh - 110px);
  position: relative;
  overflow: hidden;
}

.home-banner-swiper {
  width: 100%;
  height: 100%;
}

.home-banner-slide {
  width: 100%;
  height: 100%;
}

.home-banner-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.desktop-banner-img,
.mobile-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 100vh;
}

/* Hide mobile image by default */
.mobile-banner-img {
  display: none;
}

/* Swiper Navigation Buttons */
.home-banner-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
}

.home-banner-prev,
.home-banner-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

/* -----------------------
   Responsive Design
------------------------ */
@media (max-width: 768px) {
  .menu-toggle-button {
    display: flex;
  }

  /* Show mobile image, hide desktop */
  .desktop-banner-img {
    display: none;
  }

  .mobile-banner-img {
    display: block;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .home-banner {
    height: auto;
    margin-top: 80px;
  }

  .mobile-overlay-menu a {
    font-size: 20px;
  }
}
