@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Montserrat';
    src: url('/fonts/montserrat/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #fff;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

/* top Section */

.top-section {
    padding: 10px 0;
    background-color: #000;
}

/* .req-btn {
    text-align: right;
} */
.req-btn svg{
    width: 21px;
    fill: #fff;
}

.req-btn>ul {
    display: flex;
    justify-content: left;
}

.req-btn>ul>li {
    padding: 2px 18px;
}

.req-btn>ul>li>a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}
.req-btn>ul>li>a:hover{
    color: #FC7B32;
}

.req-btn>ul>li:first-child {
    border-right: 1px solid #c7c7c7;
    padding-left: 0;
}
.req-btn>ul>li:last-child{
    padding-right: 0;
}

/* .req-btn>ul>li.down a {
    font-size: 17px;
    padding: 9px 20px 10px 20px;
    background-color: #CE4C03;
    color: #fff;
    border: 2px solid #CE4C03;
    text-transform: capitalize;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.4s ease-in-out;
} */

/* .req-btn>ul>li.down a:hover {
    background-color: transparent;
    color: #CE4C03;
} */

/* .logo {
    width: 100%;
    margin: 0 auto;
} */

/* .menu-header {
    background-color: #CE4C03;
} */

.social {
    display: flex;
    position: relative;
    justify-content: flex-end;
}

.facebook {
    /* width: 35px;
    height: 35px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s all ease;
    cursor: pointer;
}
.facebook:last-child{
    margin-right: 0;
}

.facebook a {
    color: #fff;
    line-height: 0;
    transition: 0.4s all ease;
}
.facebook a svg{
    fill: #fff;
    width: 20px;
    transition: 0.4s all ease;
}

.facebook:hover a svg {
    fill: #FC7B32;
}

.second-foot h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
}

/* navbar */

.header-top-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 0;
    position: relative;
}

.logo {
    width: 255px;
    position: absolute;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 10px;
    top: 0;
    z-index: 9;
}

.logo a img {
    width: 100%
}

header {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* padding: 10px 0 */
    position: sticky;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: 0 0 40px #414141;
}

nav {
    padding: 0 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.menu-toggle {
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 24px;
    color: #B3001C;
    cursor: pointer;
    display: none;
    z-index: 1100
}

.menu-toggle.active::before {
    content: "\2715"
}

.menu-toggle::before {
    content: "\2630"
}

ul.menus {
    list-style: none;
    display: flex;
    align-items: center
}

ul.menus li {
    position: relative
}

ul.menus li a {
    color: #000;
    padding: 18px 10px;
    display: block;
    font-size: 17px;
    transition: 0.4s all ease;
    position: relative;
    font-weight: 500
}

ul.menus li a:hover {
    transition: 0.4s all ease;
    color: #CE4C03;
}

ul.menus ul {
    display: none;
    position: absolute;
    background: #444;
    top: 100%;
    left: 0;
    min-width: 305px;
    z-index: 999999;
}

ul.menus ul ul {
    left: 100%;
    top: 0
}

ul.menus li:hover>ul {
    display: block
}

.submenu-toggle {
    display: none;
    position: absolute;
    right: 16px;
    top: 9px;
    cursor: pointer;
    color: #000;
    font-size: 14px
}

ul.menus ul li a:hover {
    background-color: #CE4C03;
    color: #fff !important
}

ul.menus ul ul li a {
    width: 250px
}

.in-pro {
    background-color: #fff !important;
    transition: 0.4s ease all;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.in-pro li a {
    color: #000 !important;
    padding: 8px 16px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 16px !important
}

.in-pro li {
    border-bottom: 1px solid #e9e9e9;
}

.in-pro li:last-child {
    border-bottom: none
}

.in-pro li a:hover {
    color: #fff !important
}

.in-pro li a i {
    font-size: 10px;
    color: #fff
}

.in-pro li a:hover i {
    color: #fff !important
}

.menu-chev {
    width: 21px;
    fill: #000;
    position: relative;
    top: -1px
}

.rote {
    width: 14px;
    fill: #fff;
    position: relative
}

.rote path {
    stroke: #fff;
    stroke-width: 15;
}

/* Banner */

.banner img{
    width: 100%;    
}
.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

/* About Us */

.about{
   padding: 50px 0; 
}
.about-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1; /* 576 x 576 = perfect square ratio */
    border-radius: 10px;
}
.about-info{
    padding-left: 20px;
}
.about-info h2{
    font-size: 33px;
    color: #000;
    font-weight: 700;
    padding-bottom: 13px;
}
.about-info h2 span{
    color: #CE4C03;
}
.about-info p{
    color: #000;
    font-size: 17px;
    line-height: 28px;
    padding-bottom: 8px;
    text-align: justify;
}
.about-info p span{
    font-weight: 600;
}
.read-btn a{
    color: #fff;
    background-color: #CE4C03;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
    font-size: 18px;
    margin-top: 15px;
    transition: 0.3s ease;
}
.read-btn a:hover{
    color: #fff;
    background-color: #000;
}

/* Products */

.product-time{
    padding: 50px 0;
    background-image: url(../images/product-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.product-time::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000000cc;
    left: 0px;
    top: 0px;
}
.product-time h2{
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    position: relative;
    text-align: center;
    margin-bottom: 35px;
}
.pro-box{
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.pro-box img{
    border-radius: 10px 10px 0 0;
    transition: 0.3s ease;
    overflow: hidden;
}
.cnc-btn a{
    color: #fff;
    background-color: #CE4C03;
    display: block !important;
    text-align: center;
    padding: 10px 0;
    font-size: 19px;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    position: relative;
    transition: 0.3s ease;
}
.cnc-btn a:hover{
    background-color: #000;
    color: #fff;
}
.pro-box:hover img{
    transform: scale(1.1);
}
.pro-read a{
    color: #000;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
    font-size: 18px;
    margin-top: 15px;
    transition: 0.3s ease;
    position: relative;
    font-weight: 500;
}
.pro-read a:hover{
    color: #fff;
    background-color: #CE4C03;
}

/* Certificate */

.certi-time{
    padding: 50px 0;
}
.certi-time h2{
    font-size: 36px;
    color: #000;
    font-weight: 700;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}
.certi-time p{
    color: #000;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 8px;
    text-align: justify;
}
.certi-time p:last-child{
    padding-bottom: 0;
}

/* Client Time */

.client-time{
    padding: 50px 0;
    background-color: #F5CAA3;
}
.client-time h2{
    font-size: 36px;
    color: #000;
    font-weight: 700;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
  }
  
  .logo-track {
    display: inline-block;
    animation: scroll-right 10s linear infinite;
  }
  
  .logo-track img {
    margin: 10px 15px 0px 15px;
    vertical-align: middle;
    padding: 5px;
    border: 1px solid rgb(34 34 34 / 12%);
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    transition: 0.8s all;
  }
  
  @keyframes scroll-right {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }


  /* Footer Css */

footer {
    padding: 50px 0 50px 0;
    background-color: #111;
    position: relative;
}

.foot-logo img {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 10px;
    position: relative;
}

.first-foot p {
    color: #fff;
    padding-top: 20px;
    text-align: justify;
    line-height: 28px;
    font-size: 17px;
    position: relative;

}

/* .social {
    display: flex;
    margin-top: 18px;
    position: relative;
}

.facebook {
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s all ease;
    cursor: pointer;
}

.facebook a {
    color: #CE4C03;
    line-height: 0;
    transition: 0.4s all ease;
}

.facebook:hover {
    background-color: #000;
    transform: translateY(-5px);
}
.facebook a svg{
    fill: #CE4C03;
    width: 20px;
    transition: 0.4s all ease;
}

.facebook:hover a svg {
    fill: #fff;
} */

.second-foot h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
}

/* .second-foot li {
    padding-left: 25px;
} */

.second-foot li a {
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 3px;
    transition: 0.3s all ease;
    font-size: 17px;
    margin-top: 7px;
    font-weight: 500;
    padding-left: 23px;
}

.second-foot li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z" fill="white" stroke="white" stroke-width="15"/></svg>') no-repeat center center;
    background-size: contain;
    color: #fff;
}


.second-foot li a:hover {
    color: #FC7B32;
    padding-left: 28px;
}

.second-foot {
    padding-left: 15px;
}

.third-foot{
    padding-left: 55px;
}

.third-foot h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 20px;
    position: relative;
}

.last-foot{
    padding-left: 40px;
}

.last-foot h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 27px;
    position: relative;
}

.third-foot li {
    position: relative;
}

.third-foot li a {
    position: relative;
    color: #fff;
    padding-left: 20px;
    display: block;
    padding-top: 3px;
    transition: 0.3s all ease;
    font-size: 17px;
    margin-top: 7px;
    font-weight: 500;
    padding-left: 23px;
}

.third-foot li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z" fill="white" stroke="white" stroke-width="15"/></svg>') no-repeat center center;
    background-size: contain;
    color: #fff;
}

.third-foot li a:hover {
    color: #FC7B32;
    padding-left: 28px;
}

.address {
    display: flex;
    padding-bottom: 10px;
}

.loca {
    width: 26px;
}


.loca svg{
    fill: #fff;
    position: relative;
    width: 22px;
    top: 1px;
}

.add {
    width: calc(100% - 26px);
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-size: 17px;
    position: relative;
    font-weight: 500;
    padding-left: 5px;
}

.add a {
    color: #fff;
    transition: 0.3s all ease;
}

.add a:hover {
    color: #FC7B32;
}

footer .container {
    max-width: 1265px;
}

.copy {
    background-color: #CE4C03;
    padding-top: 15px;
    padding-bottom: 15px;
}

.copy .container {
    max-width: 1220px;
}

.first-copy {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.power {
    text-align: right;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.power a {
    color: #fff;
    transition: 0.3s all ease;
}

.power a:hover {
    color: #000;
}
.first-foot{
    padding-right: 5px;
}

/* About Us Page */

.breadcrum {
    /* background-image: url(../images/pro-bg-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    padding: 80px 0;
    position: relative;
}
.breadcrum::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
}
.bread-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 15px;
}
.bread-cont h1 {
    position: relative;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    padding: 0 10px;
    text-align: center;
}
.bread-last {
    position: relative;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 0 10px;
}
.bread-last a {
    color: #fff;
    transition: 0.3s ease;
    font-weight: 500;
}
.bread-last svg{
    fill: #fff;
    width: 22px;
    position: relative;
    top: -2px;
}
.bread-last svg path{
    stroke-width: 10;
    stroke: #fff;
}
.abo-page{
    padding: 50px 0;
}
.in-info{
    padding-left: 0;
}
.our-strenth{
    padding: 0px 0 50px 0;
}
.our-strenth h2{
    font-size: 28px;
    color: #000;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}
.indirect-box {
    box-shadow: 0 4px 10px #ccc;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    transition: 0.3s all ease;
    background-color: #f3bc8b;
    border-radius: 10px;
    height: 80px;
}
.number-time {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s all ease;
}
.gst {
    width: calc(100% - 40px);
    padding-left: 20px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s all ease;
}
.indirect-box:hover {
    background-color: #CE4C03;
    cursor: pointer;
}
.indirect-box:hover .number-time {
    background-color: #fff;
    color: #CE4C03;
}
.indirect-box:hover .gst {
    color: #fff;
}
.in-abo-img img{
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 100%;
    height: auto;
    aspect-ratio: 600/450; /* EXACT aspect ratio */
    display: block;
}

/* Km-lock-nut */

.locknut-sec {
    padding: 50px 0;
    background-color: #f5f5f5;
}
.km-img {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    background-color: #fff;
}
.km-img img {
    border-radius: 15px;
}
.km-data h2 {
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 10px;
    line-height: 36px;
    color: #CE4C03;
}
.km-data p{
    padding-bottom: 10px;
    font-size: 17px;
    line-height: 28px;
}
.km-data ul li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 3px;
}
.km-data ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z' fill='black' stroke='black' stroke-width='15'/%3E%3C/svg%3E") 
    no-repeat center center;    
    background-size: contain;
}
.km-in-det {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    padding: 20px 20px;
}
.lock-nuthead {
    font-size: 24px;
    font-weight: 600;
}
.km-in-det p {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 28px;
    font-size: 17px;
}
.nuts {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
}
.km-in-det ul li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 3px;
    font-size: 17px;
}
.km-in-det ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M96 96c-9.4 9.4-9.4 24.6 0 34l118.1 118.1L96 366.1c-9.4 9.4-9.4 24.6 0 34s24.6 9.4 34 0l136-136c9.4-9.4 9.4-24.6 0-34l-136-136c-9.4-9.4-24.6-9.4-34 0z' fill='black' stroke='black' stroke-width='15'/%3E%3C/svg%3E") 
    no-repeat center center;    
    background-size: contain;
}
.km-seco {
    padding: 50px 0;
    background-color: #f5f5f5;
}
.km-proimg {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.cnc-page{
    padding-bottom: 50px;
    background-color: #f5f5f5;
}
.km-info{
    background-color: #f5f5f5;
}

/* List of Machinery */

.list-machine{
    padding: 50px 0;
}
.list-machine h2{
    font-size: 32px;
    color: #CE4C03;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
}
.list-machine p{
    font-size: 17px;
    line-height: 28px;
}
.list-in{
    font-size: 26px;
    color: #000;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 20px;
}
.cnc-btns {
    color: #fff;
    background-color: #CE4C03;
    display: block;
    text-align: center;
    padding: 7px 0;
    font-size: 17px;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    position: relative;
    transition: 0.3s ease;
}
.table-list{
    padding-bottom: 50px;
}
.table-list table{
    width: 100%;
    border-collapse: collapse;
}
.table-list tr.odd {
    background-color: #ebebeb;
}
.table-list th {
    background-color: #1d1d1d;
    color: #fff;
    padding: 10px 10px;
    text-align: center;
}
tr.even {
    background-color: #f3bc8b;
}
.table-list tr {
    border-width: 1px !important;
}
.table-list td {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 5px;
    text-align: center;
    border: 1px solid #4d4d4d;
}

/* Gallery */

.gaalery{
    padding: 50px 0;
}
.gallery a {
    position: relative;
    display: inline-block;
  }
  
  .gallery a img {
    /* display: block; */
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #214572;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay color */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
  }
  
  .overlay svg {
    border: 1px solid #fff;
    padding: 7px;
    border-radius: 5px;
    fill: #fff;
    position: relative;
    width: 40px;

  }
  
  .gallery a:hover .overlay {
    opacity: 1;
  }


  /* Enquiry Form Css */

.page-part {
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-control-feedback {
    display: none;
}

.has-feedback label~.form-control-feedback {
    top: 0 !important;
}

.error {
    text-align: left !important;
    display: table !important;
}

.thnak4 {
    margin-top: 50px;
}

.has-feedback .form-control {
    font-size: 16px !important;
    padding: 18px;
}

.form-group {
    margin: 15px 0 !important;
}

.form-group input {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #CE4C03;
}

.form-group textarea {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #CE4C03;
}

.form-group select {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #CE4C03;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    width: 100% !important;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    width: 100% !important;
    border-bottom: 2px solid #31aad6;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 20px 0;
    width: 100% !important;
}

.Submit-box {
    background-color: #CE4C03;
    color: #fff;
    padding: 9px 14px;
    border: 1px solid #CE4C03;
    font-size: 17px;
    border-radius: 2px;
    transition: 0.3s ease;
}

.Submit-box:hover {
    background-color: #000;
    border: 1px solid #000;
}

.form-control:focus {
    box-shadow: none !important;
    border: 1px solid #CE4C03;
    border-bottom: 2px solid #CE4C03;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
}

.get {
    color: #CE4C03;
    font-weight: 600;
    font-size: 32px;
    line-height: 30px;
    padding-bottom: 15px;
    text-align: center;
}

.fill {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px !important;
}

.Submit-box {
    font-weight: 600;
}

::placeholder{
    color: #333333 !important;
    font-weight: 500;
    font-size: 15px;
}

/* Product Page */

.propro a img{
    border-radius: 6px 6px 0 0;
    border-bottom: none;
    border-color: #CE4C03;
}

/* Enquiry Form Css End*/

/* Contact Us */

.contact-page{
    padding: 50px 0;
}
.contact-page .cont-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 15px;
    background-color: #CE4C03;
    border-radius: 10px;
    height: 245px;
}
.contact-page .cont-box .icon-box {
    border-radius: 50%;
    padding: 15px;
    background-color: #fff;
    margin-bottom: 10px;
}
.contact-page .cont-box .icon-box img {
    width: 40px;
    height: 40px;
}
.cont-per{
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 5px;
}
.contact-page .cont-box .text p, address {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
address{
    margin-bottom: 0;
}
.contact-page .cont-box .text .flex {
    display: flex;
    flex-direction: column;
}
.contact-page .cont-box .text a {
    font-size: 16px;
    color: #fff;
    padding-bottom: 2px;
    font-weight: 500;
}
.map-time img{
    border: 2px solid #CE4C03;
    border-radius: 10px;
}
.map-time{
    margin-top: 30px;
}

/* Fixed Whatsapp Button */

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9;
}
.btn-whatsapp-pulse svg{
    width: 35px;
    height: 35px;
    fill: #fff;
}
.btn-whatsapp-pulse svg path{
    stroke: #fff; 
    stroke-width: 10;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}


.fix-enq {
    position: fixed;
    top: 45%;
    left: 1%;
    z-index: 9
}

.modal {
    z-index: 999999
}

.modal-header {
    background-color: #373435;
    padding: 0;
    display: flex;
    justify-content: space-between
}

.modal-title {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    padding-left: 15px
}

.modal-header .btn-close {
    background-color: red;
    color: #fff !important
}

.pop-img {
    width: 255px;
    margin-top: 30px;
    margin-bottom: 14px;
    height: auto
}

.cross-btn {
    background-color: #CE4C03;
    border: none;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    padding: 6px 15px
}





/* Media Query Start */

@media only screen and (min-width:1400px){

    .km-img{
        text-align: center;
    }
    .pro-box img{
        width: 100%;
    }
    .about-img{
        text-align: center;
    }
    .about-info{
        padding-left: 0;
    }

}

@media only screen and (max-width:1199px){

    header{
        padding: 8px 0;
    }
    .header-top-main {
        display: block;
    }

    ul.menus li a {
        padding: 40px 14px
    }

    nav {
        padding: 0 5px
    }

    .get {
        font-size: 30px;
        line-height: 28px
    }

    .fill {
        font-size: 18px
    }

    .why-helix h2 {
        font-size: 31px
    }

    .menu-toggle {
        display: block
    }

    nav {
        justify-content: flex-start
    }

    ul.menus {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #CE4C03;
    }

    ul.menus.active {
        display: flex;
        position: relative;
        top: 20px;
        z-index: 9999
    }

    ul.menus li a {
        color: #fff
    }

    ul.menus li {
        width: 100%;
        border-bottom: 1px solid #c7c7c7;
    }

    ul.menus ul,
    ul.menus ul ul {
        position: static;
        width: 100%
    }

    ul.menus li:hover>ul {
        display: none
    }

    ul.menus li.show>ul {
        display: block
    }

    .submenu-toggle {
        display: block
    }

    ul.menus li a i {
        display: none
    }

    ul.menus ul ul li a {
        width: 89%
    }

    ul.menus li a {
        padding: 8px 16px
    }

    .t-white {
        color: #fff
    }

    .menu-toggle {
        top: -62px;
        font-size: 24px;
        background-color: #CE4C03;
        color: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    nav {
        padding: 0
    }

    ul.menus.active {
        top: 7px
    }

    .submenu-toggle i {
        color: #fff;
        padding: 4px;
        background-color: #B3001C
    }

    ul.menus li a {
        font-size: 17px;
        font-weight: 500
    }

    .logo {
        width: 230px;
        position: relative;
        padding: 0;
    }

    .submenu-toggle i {
        background-color: #fff;
        color: #0A0A0A
    }

    .submenu-toggle svg {
        fill: #0A0A0A;
        padding: 1px;
        background-color: #fff;
        width: 20px
    }

    .menu-chev {
        display: none
    }

    /* ********* */

    .top-section{
        padding: 8px 0;
    }
    .about-info {
        padding-left: 3px;
    }
    .about-info h2{
        font-size: 30px;
        padding-bottom: 10px;
    }
    .about-info p{
        font-size: 16px;
        line-height: 26px;
    }
    .read-btn a{
        padding: 10px 15px;
        margin-top: 10px;
    }
    .cnc-btn a{
        font-size: 17px;
    }
    .pro-read a{
        padding: 10px 15px;
    }
    .certi-time h2{
        font-size: 32px;
        margin-bottom: 10px;
    }
    .client-time{
        padding: 35px 0;
    }
    .client-time h2{
        font-size: 30px;
    }
    .last-foot {
        padding-left: 0;
        padding-top: 25px;
    }
    .third-foot {
        padding-left: 35px;
    }
    .contact-page .cont-box{
        height: 280px;
    }
    .breadcrum{
        padding: 70px 0;
    }
    .bread-cont h1{
        font-size: 36px;
    }
    .bread-cont{
        gap: 10px;
    }
    .km-data h2{
        font-size: 24px;
        line-height: 30px;
    }

}

@media only screen and (max-width:991px){

    .logo{
        width: 210px;
    }
    .menu-toggle{
        top: -60px;
    }
    .palat{
        display: flex;
        flex-direction: column-reverse;
    }
    .about-img{
        padding-top: 25px;
    }
    .certi-img{
        padding-top: 25px;
    }
    .first-foot p{
        line-height: 26px;
        font-size: 16px;
    }
    .second-foot {
        padding-left: 40px;
    }
    .third-foot{
        padding-left: 0;
        padding-top: 25px;
    }
    .second-foot h2{
        padding-bottom: 10px;
    }
    .third-foot h2{
        padding-bottom: 10px;
    }
    .last-foot h2{
        padding-bottom: 17px;
    }
    .first-copy{
        text-align: center;
    }
    .power{
        text-align: center;
    }
    .copy{
        padding: 12px 0;
    }
    .bread-cont h1 {
        font-size: 32px;
    }
    .bread-last{
        font-size: 17px;
    }
    .km-img{
        margin-top: 25px;
    }
    .locknut-sec{
        padding: 35px 0;
    }
    .km-data h2 {
        font-size: 21px;
    }
    .km-in-det p{
        padding-top: 5px;
        padding-bottom: 10px;
        font-size: 16px;
    }
    .in-abo-img{
        padding-top: 25px;
        text-align: center;
    }
    .abo-page {
        padding: 35px 0;
    }
    .indirect-box{
        height: auto;
    }
}

@media only screen and (max-width:767px){

    .top-section{
        display: none;
    }
    .logo {
        width: 190px;
    }
    .menu-toggle {
        top: -55px;
    }
    .about {
        padding: 30px 0;
    }
    .about-info h2{
        font-size: 26px;
    }
    .cnc-btn a {
        font-size: 16px;
    }
    .product-time{
        padding: 30px 0;
    }
    .product-time h2{
        font-size: 32px;
        margin-bottom: 30px;
    }
    .certi-time {
        padding: 30px 0;
    }
    .certi-time h2{
        font-size: 28px;
    }
    footer{
        padding: 35px 0 25px 0;
    }
    .contact-page .cont-box{
        height: auto;
    }
    .map-time {
        margin-top: 5px;
    }
    .contact-page {
        padding: 35px 0;
    }
    .bread-cont h1 {
        font-size: 28px;
    }
    .breadcrum {
        padding: 60px 0;
    }
    .get{
        font-size: 25px;
        padding-bottom: 10px;
    }
    .fill {
        font-size: 17px;
    }
    .page-part {
        padding-top: 35px;
        padding-bottom: 40px;
    }
    .list-machine {
        padding: 30px 0;
    }
    .list-machine h2{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .list-machine p{
        font-size: 16px;
    }
    .list-in{
        font-size: 22px;
    }
    .km-data p{
        font-size: 16px;
    }
    .km-data h2 {
        font-size: 20px;
    }
    .our-strenth h2{
        font-size: 26px;
        margin-bottom: 25px;
    }

}

@media only screen and (max-width:576px){

    .logo {
        width: 180px;
    }
    .about-info h2 {
        font-size: 22px;
        text-align: center;
    }
    .read-btn{
        text-align: center;
    }
    .pro-box img{
        width: 100%;
    }
    .foot-logo{
        text-align: center;
    }
    .foot-logo img{
        width: 60%;
    }
    .second-foot{
        padding-left: 0;
        padding-top: 25px;
    }
    .first-copy{
        font-size: 15px;
        padding-bottom: 5px;
    }
    .power{
        padding-bottom: 5px;
    }
    .read-btn a{
        font-size: 17px;
    }
    .bread-cont h1 {
        font-size: 24px;
    }
    .breadcrum {
        padding: 50px 0;
    }
    .page-part {
        padding-top: 25px;
        padding-bottom: 30px;
    }
    .get {
        font-size: 21px;
        padding-bottom: 5px;
    }
    .fill {
        font-size: 16px;
        font-weight: 500;
    }
    .has-feedback .form-control{
        padding: 15px;
    }
    .gaalery {
        padding: 35px 0;
    }
    .list-machine h2{
        font-size: 24px;
        text-align: center;
        margin-bottom: 5px;
    }
    .list-machine p{
        text-align: center;
    }
    .list-in{
        text-align: center;
    }
    .locknut-sec {
        padding: 25px 0;
    }
    .km-seco{
        padding: 35px 0;
    }
    .our-strenth h2{
        font-size: 24px;
        text-align: center;
    }
    .gst{
        font-size: 17px;
    }
    .about-info p span{
        font-weight: normal;
    }
    .dmo {
        display: none;
    }


}

@media only screen and (max-width:450px){

    .menu-toggle{
        width: 36px;
        height: 36px;
        font-size: 23px;
    }
    .menu-toggle {
        top: -52px;
    }
    .logo {
        width: 170px;
    }
    .menu-toggle {
        top: -50px;
    }
    ul.menus li a {
        font-size: 16px;
        font-weight: 500;
    }
    .product-time h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .pro-read a{
        margin-top: 10px;
        font-size: 16px;
    }
    .certi-time h2 {
        font-size: 26px;
    }
    .client-time {
        padding: 20px 0;
    }
    .client-time h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .second-foot h2{
        font-size: 22px;
        padding-bottom: 5px;
    }
    .third-foot h2{
        font-size: 22px;
        padding-bottom: 5px;
    }
    .last-foot h2{
        padding-bottom: 12px;
        font-size: 22px;
    }
    .power{
        font-size: 15px;
        padding-bottom: 0;
    }
    .second-foot li a{
        font-size: 16px;
    }
    .third-foot li a{
        font-size: 16px;
    }
    .add{
        font-size: 16px;
    }
    .cont-per{
        font-size: 20px;
        padding-bottom: 2px;
    }
    .contact-page .cont-box .icon-box img {
        width: 35px;
        height: 35px;
    }
    .contact-page .cont-box .icon-box{
        padding: 13px;
    }
    .get {
        font-size: 18px;
        padding-bottom: 2px;
    }
    .fill{
        font-size: 15px;
        margin-bottom: 0 !important;
    }
    .list-machine p{
        line-height: 26px;
    }
    .km-data h2{
        text-align: center;
        line-height: 28px;
    }
    .km-data p{
        line-height: 26px;
        text-align: center;
    }
    .nuts{
        text-align: center;
    }
    .lock-nuthead{
        text-align: center;
    }
    .our-strenth h2{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .btn-whatsapp-pulse{
        left: 10px;
        bottom: 10px;
        width: 51px;
        height: 51px;
    }
    .btn-whatsapp-pulse svg{
        width: 30px;
        height: 30px;
    }
    .fix-enq img {
        width: 30px;
        height: auto;
    }

}

@media only screen and (max-width:400px){

    .about {
        padding: 20px 0;
    }
    .about-info p{
        padding-bottom: 5px;
        font-size: 15px;
    }
    .read-btn a {
        font-size: 16px;
    }
    .product-time {
        padding: 25px 0;
    }
    .product-time h2{
        font-size: 24px;
    }
    .certi-time {
        padding: 25px 0;
    }
    .certi-time h2 {
        font-size: 23px;
    }
    .client-time h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .second-foot{
        padding-top: 20px;
    }
    .third-foot{
        padding-top: 20px;
    }
    .last-foot{
        padding-top: 20px;
    }
    .second-foot h2{
        font-size: 21px;
    }
    .third-foot h2{
        font-size: 21px;
    }
    .last-foot h2{
        font-size: 21px;
    }
    .breadcrum {
        padding: 40px 0;
    }
    .bread-last{
        font-size: 16px;
    }
    .get{
        font-size: 16px;
    }
    .fill{
        font-size: 14px;
    }
    .has-feedback .form-control {
        padding: 13px;
    }
    .gaalery {
        padding: 25px 0;
    }
    .list-machine h2{
        font-size: 22px;
    }
    .cnc-btns{
        font-size: 16px;
    }
    .km-data h2{
        font-size: 18px;
    }
    .our-strenth h2{
        font-size: 21px;
    }
    .gst{
        padding-left: 10px;
        font-size: 16px;
    }
    .number-time{
        width: 38px;
        height: 38px;
    }

}

.social-icon{
    display: flex;
    gap: 14px;
    margin-top: 10px;
}
.social-icon a img{
    height: 35px;
    width: 35px;
}